Closed pokulo closed 10 years ago
can we always assume _pjBase != 0 here? Code like this
gk2 = CoordinateSystem("code=epsg:31466") # DHDN / 3-degree Gauss-Kruger zone 2
g1 = g.transform(gk2)
causes
ILWIS Error: (di feb 11 17:49:36 2014) projection error:major axis or radius = 0 or not given
solved here e687f18
How can we transform Coordinates given in WGS84 into other CoordinateSystem?
if we use simply
the coordinates are passed through to LatLon ProjectionImplementationProj4::coord2latlon(const Coordinate &crd) and go unmodified into pj_transform() which should only take radians but no degrees.
What is goin wrong?