我有一个 GeoTIFF,我想将其转换为 epsg:3857 (WGS84)
PROJCRS["NAD27 / California zone III",
BASEGEOGCRS["NAD27",
DATUM["North American Datum 1927",
ELLIPSOID["Clarke 1866",6378206.4,294.978698213898,
LENGTHUNIT["metre",1]]],
PRIMEM["Greenwich",0,
ANGLEUNIT["degree",0.0174532925199433]],
ID["EPSG",4267]],
CONVERSION["California CS27 zone III",
METHOD["Lambert Conic Conformal (2SP)",
ID["EPSG",9802]],
PARAMETER["Latitude of false origin",36.5,
ANGLEUNIT["degree",0.0174532925199433],
ID["EPSG",8821]],
PARAMETER["Longitude of false origin",-120.5,
ANGLEUNIT["degree",0.0174532925199433],
ID["EPSG",8822]],
PARAMETER["Latitude of 1st standard parallel",38.4333333333333,
ANGLEUNIT["degree",0.0174532925199433],
ID["EPSG",8823]],
PARAMETER["Latitude of 2nd standard parallel",37.0666666666667,
ANGLEUNIT["degree",0.0174532925199433],
ID["EPSG",8824]],
PARAMETER["Easting at false origin",2000000,
LENGTHUNIT["US survey foot",0.304800609601219],
ID["EPSG",8826]],
PARAMETER["Northing at false origin",0,
LENGTHUNIT["US survey foot",0.304800609601219],
ID["EPSG",8827]]],
CS[Cartesian,2],
AXIS["easting (X)",east,
ORDER[1],
LENGTHUNIT["US survey foot",0.304800609601219]],
AXIS["northing (Y)",north,
ORDER[2],
LENGTHUNIT["US survey foot",0.304800609601219]],
USAGE[
SCOPE["Engineering survey, topographic mapping."],
AREA["United States (USA) - California - counties Alameda; Calaveras; Contra Costa; Madera; Marin; Mariposa; Merced; Mono; San Francisco; San Joaquin; San Mateo; Santa Clara; Santa Cruz; Stanislaus; Tuolumne."],
BBOX[36.73,-123.02,38.71,-117.83]],
ID["EPSG",26743]]
Data axis to CRS axis mapping: 1,2
Origin = (-13664581.709400000050664,4579419.400500000454485)
Pixel Size = (2.624064075471658,-3.346106433962419)
Metadata:
AREA_OR_POINT=Area
Image Structure Metadata:
INTERLEAVE=PIXEL
Corner Coordinates:
Upper Left (-13664581.709, 4579419.401) (176d34'52.26"W, 35d47'11.67"N)
Lower Left (-13664581.709, 4561685.036) (176d32'50.98"W, 35d44'46.90"N)
Upper Right (-13650674.170, 4579419.401) (176d32'32.91"W, 35d48'29.18"N)
Lower Right (-13650674.170, 4561685.036) (176d30'31.67"W, 35d46' 4.37"N)
Center (-13657627.940, 4570552.218) (176d32'41.95"W, 35d46'38.04"N)
我尝试了一些命令
gdalwarp -s_srs epsg:4326 -t_srs epsg:3857 org.tif new.tif
gdalwarp -s_srs epsg:4267 -t_srs epsg:3857 org.tif new.tif
但我会得到错误
错误 1:项目:webmerc:纬度无效
如何转换此 GeoTIFF?