diff --git a/doc/buildings.png b/doc/buildings.png index ba0e18f..a2f6bd4 100644 Binary files a/doc/buildings.png and b/doc/buildings.png differ diff --git a/doc/grid.png b/doc/grid.png index b8d7a7f..7495f78 100644 Binary files a/doc/grid.png and b/doc/grid.png differ diff --git a/doc/time.png b/doc/time.png index ef1d29a..00d3b29 100644 Binary files a/doc/time.png and b/doc/time.png differ diff --git a/doc/trees.png b/doc/trees.png index 1b5139b..5cd4790 100644 Binary files a/doc/trees.png and b/doc/trees.png differ diff --git a/doc/user.png b/doc/user.png index cc6d3d4..31b0b5e 100644 Binary files a/doc/user.png and b/doc/user.png differ diff --git a/doc/viewpoints.png b/doc/viewpoints.png index 214ed0d..10a5083 100644 Binary files a/doc/viewpoints.png and b/doc/viewpoints.png differ diff --git a/roentgen/osm_reader.py b/roentgen/osm_reader.py index 8bde972..2e20435 100644 --- a/roentgen/osm_reader.py +++ b/roentgen/osm_reader.py @@ -150,7 +150,7 @@ def get_value(key: str, text: str): if key + '="' in text: start_index: int = text.find(key + '="') + 2 end_index: int = start_index + len(key) - value = text[end_index:text.find('"', end_index + 2)] + value = text[end_index:text.find('"', end_index)] return value