Skip to content

Instantly share code, notes, and snippets.

@bblay
Created April 27, 2017 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bblay/0b5f9d260aafaf62c9667a10d22ce322 to your computer and use it in GitHub Desktop.
Save bblay/0b5f9d260aafaf62c9667a10d22ce322 to your computer and use it in GitHub Desktop.
from cartopy.crs import PlateCarree, TransverseMercator
plate_carree = PlateCarree()
trans_merc = TransverseMercator()
print trans_merc.transform_point(1, 55, src_crs=plate_carree)
@bblay
Copy link
Author

bblay commented Apr 27, 2017

output:
(63993.020310989996, 6097687.783353443)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment