16,548
社区成员




OGRSpatialReference utm;
OGRSpatialReference mm;
OGRCoordinateTransformation *transform;
utm.SetProjCS("UTM / WGS84");
utm.SetWellKnownGeogCS("WGS84");
utm.SetUTM(17, TRUE);
mm.SetMercator(0, 0, 1, 0, 0);
mm.SetWellKnownGeogCS("WGS84");
transform = OGRCreateCoordinateTransformation(&utm, &mm);
);
OGRCoordinateTransformation CPL_DLL *
OGRCreateCoordinateTransformation( OGRSpatialReference *poSource,
OGRSpatialReference *poTarget );