I have two numpy meshgrids (X, Y both 2D) in Lambert Conformal conic with the following information:
latitude_of_projection_origin: 25.0longitude_of_central_meridian: 265.0standard_parallel: 25.0earth_radius: 6371229.0I'd like to directly (or indirectly if not possible) project them to UTM. I have both pyproj and gdal installed, but wasn't able to figure out how to use them. I found solutions for converting from llc to WGS84 here and here, but couldn't use either of them since I only have latitude_of_projection_origin, longitude_of_central_meridian, standard_parallel and earth_radius as information about my llc projection.
Even if somehow I can convert from llc to WGS84, then I can use Python UTM package and utm.from_latlon to get UTM out of it.
I'd appreciate your help. Thanks.
أكثر...
latitude_of_projection_origin: 25.0longitude_of_central_meridian: 265.0standard_parallel: 25.0earth_radius: 6371229.0I'd like to directly (or indirectly if not possible) project them to UTM. I have both pyproj and gdal installed, but wasn't able to figure out how to use them. I found solutions for converting from llc to WGS84 here and here, but couldn't use either of them since I only have latitude_of_projection_origin, longitude_of_central_meridian, standard_parallel and earth_radius as information about my llc projection.
Even if somehow I can convert from llc to WGS84, then I can use Python UTM package and utm.from_latlon to get UTM out of it.
I'd appreciate your help. Thanks.
أكثر...