From 8df732e6afcd6501453b8d552ddd0ee89d7ce58f Mon Sep 17 00:00:00 2001 From: Gareth Simons Date: Thu, 25 Nov 2021 17:07:40 +0000 Subject: [PATCH] Releases version 1.1.7 --- cityseer/tools/graphs.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cityseer/tools/graphs.py b/cityseer/tools/graphs.py index 9d250367..ce07454c 100644 --- a/cityseer/tools/graphs.py +++ b/cityseer/tools/graphs.py @@ -196,7 +196,7 @@ def nX_wgs_to_utm(networkX_multigraph: nx.MultiGraph, lat = d['y'] # check for unintentional use of conversion if abs(lng) > 180 or abs(lat) > 90: - raise ValueError('x, y coordinates exceed WGS bounds. Please check your coordinate system.') + raise ValueError(f'x, y coordinates {lng}, {lat} exceed WGS bounds. Please check your coordinate system.') # to avoid issues across UTM boundaries, use the first point to set (and subsequently force) the UTM zone if zone_number is None: zone_number = utm.from_latlon(lat, lng)[2] # zone number is position 2 diff --git a/setup.py b/setup.py index 3649ac56..30138bce 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='cityseer', - version='1.1.7b9', + version='1.1.7', packages=['cityseer', 'cityseer.algos', 'cityseer.metrics', 'cityseer.tools'], description='Computational tools for urban analysis', url='https://github.com/benchmark-urbanism/cityseer-api',