From 125eadaf71837b2b214ce38444070b338745d7d8 Mon Sep 17 00:00:00 2001 From: Philipp Spitzer Date: Wed, 22 Nov 2023 22:46:59 +0100 Subject: [PATCH] Disable the creation of a shapefile. --- tools/austria_simplified.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/austria_simplified.py b/tools/austria_simplified.py index 653e5f4..c903014 100644 --- a/tools/austria_simplified.py +++ b/tools/austria_simplified.py @@ -59,7 +59,6 @@ def main(country_name: str, shapefile: str | None): if __name__ == '__main__': parser = argparse.ArgumentParser(description='Creates a simplified version of a country') parser.add_argument('--country', default='Austria', help='Country to simplify (e.g. Switzerland)') - parser.add_argument('--shapefile', default='simplified_austria.shp', - help='Write result to shape file with this name') + parser.add_argument('--shapefile', help='Write result to shape file with this name') args = parser.parse_args() main(args.country, args.shapefile) -- 2.39.5