I'm using gdalwarp to convert MODIS NDVI mosaics from Sinusoidal to epsg:4326. To save space I'm using VRT files until I reach the final product. Here is my workflow.
gdalwarp -t_srs epsg:4326 -tr 0.002 0.002 modis_mosaic.vrt reprojetc_mosaic.tifGdalinfo on the reprojected file shows that NoData values are kept (-3000) but nodata pixels in the image are converted to 0.I'm using gdal 1.11.1 in Ubuntu linux
أكثر...
- Mosaic NDVI Modis tiles using pyModis and output as VRT. NoData value (-3000) is kept
- gdalwarp the VRT mosaic to epsg:4326, tiff output. Pixels with NoData recieve value 0
gdalwarp -t_srs epsg:4326 -tr 0.002 0.002 modis_mosaic.vrt reprojetc_mosaic.tifGdalinfo on the reprojected file shows that NoData values are kept (-3000) but nodata pixels in the image are converted to 0.I'm using gdal 1.11.1 in Ubuntu linux
أكثر...