Skip to content

Commit

Permalink
Remove indent while making GeoJSON
Browse files Browse the repository at this point in the history
Made the files really large
  • Loading branch information
DenisCarriere committed Dec 15, 2015
1 parent 178107c commit d3770e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etl2osm/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def write_geojson(self, outfile):
logging.info('Writing GeoJSON: %s' % outfile)

with open(outfile, 'wb') as f:
f.write(json.dumps(self.geojson, indent=4))
f.write(json.dumps(self.geojson))

def write_osm(self, outfile):
""" Writes data to OSM format """
Expand Down

0 comments on commit d3770e1

Please sign in to comment.