Skip to content

Commit

Permalink
Be more explicit in lat lon ordering (#476)
Browse files Browse the repository at this point in the history
Not everyone knows where this cities are located and lat lon / lon lat ordering is a bane of GIS software

At least of my software
  • Loading branch information
matkoniecz committed Mar 20, 2021
1 parent 313fe5c commit c0686f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Geopy can calculate geodesic distance between two points using the
with a default of the geodesic distance available as the function
`geopy.distance.distance`.

Here's an example usage of the geodesic distance:
Here's an example usage of the geodesic distance, taking pair of :code:`(lat, lon)` tuples:

.. code:: pycon
Expand All @@ -101,7 +101,7 @@ Here's an example usage of the geodesic distance:
>>> print(geodesic(newport_ri, cleveland_oh).miles)
538.390445368
Using great-circle distance:
Using great-circle distance, also taking pair of :code:`(lat, lon)` tuples:

.. code:: pycon
Expand Down

0 comments on commit c0686f6

Please sign in to comment.