Commit f6299daf authored by Eric Duminil's avatar Eric Duminil
Browse files

FIXME

parent 22571333
Showing with 1 addition and 0 deletions
+1 -0
......@@ -103,6 +103,7 @@ def wkt_polygon_to_grid_coords(location_name: str, wkt: str) -> tuple[int, int,
def download_rectangle(output_dir: Path, x1: int, x2: int, y1: int, y2: int) -> None:
"""Downloads every zip of a given region, to output_dir, and extracts CityGML files."""
# FIXME: Too many uninteresting tiles for complex shapes. Check if the tile is interesecting with the polygon!
for x in range(x1, x2 + 1, RASTER):
for y in range(y1, y2 + 1, RASTER):
citygml_zip = f"LoD2_{UTM}_{x}_{y}_{RASTER}_{BUNDESLAND}.zip"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment