We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does
pyproj.Proj( "+init=epsg:%d" % ( theEPSG ) ),
work, while
theInitString = "epsg:%d" % ( theEPSG ) pyproj.Proj( init=theInitString )
fails ? I see an error saying the data for proj cannot be found with the latter form. I'm running on Ubuntu 14.04
The text was updated successfully, but these errors were encountered:
I cannot see a problem with this line of code.. What version of pyproj are you using?
Sorry, something went wrong.
I ran it on Ubuntu 15.10 (using Python 3.4.3). It seems to work.
Console:
In [1]: import pyproj In [2]: theEPSG=4326 In [3]: pyproj.Proj( "+init=epsg:%d" % ( theEPSG ) ) Out[3]: <pyproj.Proj at 0xb686647c> In [4]: theInitString = "epsg:%d" % ( theEPSG ); pyproj.Proj( init=theInitString ) Out[4]: <pyproj.Proj at 0xb5eac7ac>
No branches or pull requests
Why does
pyproj.Proj( "+init=epsg:%d" % ( theEPSG ) ),
work, while
theInitString = "epsg:%d" % ( theEPSG ) pyproj.Proj( init=theInitString )
fails ? I see an error saying the data for proj cannot be found with the latter form. I'm running on Ubuntu 14.04
The text was updated successfully, but these errors were encountered: