Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bbauerma authored Jun 12, 2024
1 parent d0635da commit 25e0ff8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ North America EPSG:27705
Oceania EPSG:27706
South America EPSG:27707
```
For example, when using `pyproj>=3.6.1` in python, you can transform coordinates like this:

```py
from pyproj import Transformer
lon, lat = Transformer.from_crs("EPSG:27704", "EPSG:4326", always_xy=True).transform(x, y)
```

Shapefiles for the continental zone boundaries and tilings are here

Expand Down

0 comments on commit 25e0ff8

Please sign in to comment.