I tried to change the projection of AMSR-2 in Python using:
'gdalwarp -geoloc -t_srs EPSG:4326 C:\GW1AM2_201301311114_050A_L1SGBTBR_1110110.vrt C:\test100.tif'
It said there are something wrong with 'EPSG:4326'(Invalid syntax). I do not know why?
I tried to change the projection of AMSR-2 in Python using:
'gdalwarp -geoloc -t_srs EPSG:4326 C:\GW1AM2_201301311114_050A_L1SGBTBR_1110110.vrt C:\test100.tif'
It said there are something wrong with 'EPSG:4326'(Invalid syntax). I do not know why?
Maybe python does not find the EPSG file in your file system.
Try "+proj=longlat +datum=WGS84 +no_defs" (with the quotes) instead.
"EPSG:4326"– nmtoken Mar 25 '16 at 08:32