Skip to content

Commit

Permalink
Releases version 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
songololo committed Nov 25, 2021
1 parent b40e890 commit 8df732e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cityseer/tools/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8df732e

Please sign in to comment.