Instructions to convert a MAP file to other formats

Convert to FITS

Maplet2FITS --configFile fitsConfig_orex_spc.ini RAD201.MAP RAD201-fullv1.fits

Convert to GeoTIFF

Fits file to tif

gdal_translate -b 3 -a_srs RAD201-v5.prj -a_ullr -8510 8510 8510 -8510 RAD201-fullv1.fits RAD201-fullv1.tif

Use spheremapsB

Use this when you want to fix the map projection of the DEM. The output will be a PGM. Often you will want the "ref Radius" to be the datum for the object, and not the value of the maplet VLM (though this is subject to change).

Set proper values

This is still a work in progress, but I think this is close (21 Aug 2020). When you initially create the tif, the "values" will be in DN space and you will need to convert them to meters. You do this by setting the scale (multiplicative) and offset (additive), and then separately unscaling the pixels. You can't do these processes with one command line, you have to use two.

gdal_translate -a_srs INGV02_jrw.prj -a_scale 2.406482777E-03 -a_offset -3.627833373E+03 -a_ullr -4552.5 4552.5 4552.5 -4552.5 ING2EQ_DTM.pgm ING2EQ_DTMtemp.tif
gdal_translate -unscale -ot Float32 ING2EQ_DTMtemp.tif ING2EQ_DTM.tif

gdalinfo -stats ING2EQ_DTM.tif

Below is from Mercury_Messenger_USGS_DEM_Global_665m_v2.tif

Band 1 Block=23040x1 Type=Int16, ColorInterp=Gray
  Min=-10764.000 Max=8994.000 
  Minimum=-10764.000, Maximum=8994.000, Mean=-478.084, StdDev=2265.894
  NoData Value=-32768
  Offset: 0,   Scale:0.5
  Metadata:
    STATISTICS_MAXIMUM=8994
    STATISTICS_MEAN=-478.0844394489
    STATISTICS_MINIMUM=-10764
    STATISTICS_STDDEV=2265.8943218627
    STATISTICS_VALID_PERCENT=100