exfizik

Results 6 comments of exfizik

Sorry, not working on that project any more, can't follow up. You decide what to do with the issue.

Hmm if I change it to `"+proj=longlat +a=6371229 +b=6371229"` (`latlong -> longlat`) then it doesn't throw an exception and produces some numbers (the validity of which I haven't verified yet)....

According to https://trac.osgeo.org/proj/wiki/GenParms, it's `latlong`.

Also, if you run `proj -l` in a Linux console (assuming Proj.4 is installed) then you'll find ``` lonlat : Lat/long (Geodetic) latlon : Lat/long (Geodetic alias) ``` in the...

Conceptually, yes, it's a single point, but I believe it should return the same data structure regardless of dimension. 1xN grids do not degenerate to 1D arrays, do they? the...

I look at it this way: ```python a = ones((1,1)) print(a.shape) # (1,1) ```