Skip to content

Commit 24af215

Browse files
author
Herfort
committed
remove print statements
1 parent 23d67a4 commit 24af215

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

import_module/create_groups.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -449,15 +449,12 @@ def create_tasks(xmin, xmax, ymin, ymax, config):
449449
def create_groups(groups, config):
450450
# this function will create a json file to upload in firebase groups table
451451

452-
print(config)
452+
453453
# Create the output Driver
454454
outDriver = ogr.GetDriverByName('GeoJSON')
455-
print(outDriver)
456455
# Create the output GeoJSON
457456
outfile = '/data/groups_{}.geojson'.format(config["project_id"])
458-
print(outfile)
459457
outDataSource = outDriver.CreateDataSource(outfile)
460-
print(outDataSource)
461458
outLayer = outDataSource.CreateLayer(outfile, geom_type=ogr.wkbPolygon)
462459

463460
outLayer.CreateField(ogr.FieldDefn('project_id', ogr.OFTInteger))

0 commit comments

Comments
 (0)