Skip to content

Commit

Permalink
Update dbGenerator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
purijs authored Sep 19, 2024
1 parent b971f8c commit 79e6bb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions preprocess/dbGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ def _calculate_bounds(self, parquet_files):
if __name__ == "__main__":

# Ideally, Output from parquetToGridConverter.py -> 'data/output/gpkg/geohash_resolution_6.gpkg'
geohash_grid_file = '' # Geohash grid file of lower resolution, 6
geohash_grid_file = 'data/output/gpkg/geohash_resolution_6.gpkg' # Geohash grid file of lower resolution, 6

# Input parquet files
dtm_parquet_files = [os.path.join('data/output/parquet/', file) for file in os.listdir('data/output/parquet/')]

buildings_parquet_files = ['data/input/parquet/buildings.parquet']
parcels_parquet_files = ['data/input/parquet/parcel.parquet']
parcels_parquet_files = ['data/input/parquet/parcels.parquet']

# Output base directory
output_base_dir = 'data/output/db/'
Expand Down

0 comments on commit 79e6bb5

Please sign in to comment.