From af8c9668ecbcfdbb027ed7608f654c69678c7565 Mon Sep 17 00:00:00 2001 From: Themistoklis Arvanits Date: Wed, 18 Sep 2024 11:45:03 +0200 Subject: [PATCH] added bounding box selection at atlas demo --- demos/atlas_demo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demos/atlas_demo.py b/demos/atlas_demo.py index 06b7509..04a55b4 100644 --- a/demos/atlas_demo.py +++ b/demos/atlas_demo.py @@ -1,4 +1,4 @@ -from dtcc_atlas.atlas import download_roadnetwork, download_footprints, download_laz +from dtcc_atlas.atlas import download_roadnetwork, download_footprints, download_laz, get_bounding_box from shapely import box # NOTE: The server is still under the process of scraping all the data. Currently the server contains only a small portion of the whole dataset. @@ -21,3 +21,5 @@ download_roadnetwork(bbox_gpkg) +# Commented for CI. Opens a map that the user can draw a bounding box. returns the coordinates of the bounding box +# print(get_bounding_box()) \ No newline at end of file