Created
November 21, 2014 01:15
-
-
Save andrewgiessel/08e5cb531b5bbd24cf6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyproj | |
wgs84 = pyproj.Proj('+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs')##4326 | |
geocentric= pyproj.Proj('+proj=geocent +datum=WGS84 +units=m +no_defs') ##4978 | |
for x, y in coords: | |
x2, y2, z2 = pyproj.transform( wgs84, geocentric, x, y, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment