Remove etl from gitignore. Add the ER's building point to the module

This commit is contained in:
Alireza Adli 2023-08-25 14:47:12 -04:00
parent 0cc0ed385f
commit a14b825f1f
2 changed files with 3 additions and 3 deletions

1
.gitignore vendored
View File

@ -10,7 +10,6 @@ html/norton*.html
.vscode .vscode
# Data # Data
etl/
etl/cache/* etl/cache/*
etl/images/* etl/images/*
etl/*.geojson etl/*.geojson

View File

@ -18,8 +18,9 @@ osmnx.config(log_console=True, use_cache=True)
# configure the image display # configure the image display
size = 256 size = 256
# load buildings from about 1.5km² around UCL # (load buildings from about 1.5km² around UCL)
point = (51.524498, -0.133874) # Latitude and longitude of the ER building:
point = (45.49622606275548, -73.58014026995295)
dist = 612 dist = 612
tags = {"building": True} tags = {"building": True}
gdf = osmnx.features_from_point(point, tags, dist=dist) gdf = osmnx.features_from_point(point, tags, dist=dist)