Changes between Version 9 and Version 10 of Processing/AplUserGuide


Ignore:
Timestamp:
Aug 3, 2012, 10:10:26 AM (12 years ago)
Author:
emca
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Processing/AplUserGuide

    v9 v10  
    119119If you want to map your data to Ordnance Survey National Grid coordinates then you need to use a command line like:
    120120
    121 {{{apltran -igm line01.igm -output line01 OSNG.igm -outproj osng gridfile.gsb}}}
     121{{{apltran -igm line01.igm -output line01_OSNG.igm -outproj osng gridfile.gsb}}}
    122122
    123123where the gridfile.gsb is the NTv2 format file that performs the OSTN02 grid shift.
     
    128128ellipsoid) then you would use a command like:
    129129
    130 {{{apltran -igm line01.igm -output line01 UTM30.igm -outproj utm wgs84N 30}}}
     130{{{apltran -igm line01.igm -output line01_UTM30.igm -outproj utm wgs84N 30}}}
    131131
    132132
     
    175175To map bands 100, 60 and 30 of the level-1 file to a square pixel size of 5 metres using nearest neighbour interpolation:
    176176
    177 {{{aplmap -igm line01 UTM30.igm -lev1 line01 calibrated.bil -mapname line01 mapped.bil -bandlist 100 60 30 -pixelsize 5 5 -interpolation nearest}}}
     177{{{aplmap -igm line01_UTM30.igm -lev1 line01_calibrated.bil -mapname line01 mapped.bil -bandlist 100 60 30 -pixelsize 5 5 -interpolation nearest}}}
    178178
    179179To map all bands of the level-1 file to a square pixel size of 5m using inverse distance weighted interpolation with 5 points and a maximum interpolation distance of 20m:
    180180
    181 {{{aplmap -igm line01 UTM30.igm -lev1 line01 calibrated.bil -mapname line01 mapped.bil -bandlist ALL -pixelsize 5 5 -interpolation idw 5 -maxinterpdistance 20}}}
     181{{{aplmap -igm line01_UTM30.igm -lev1 line01_calibrated.bil -mapname line01 mapped.bil -bandlist ALL -pixelsize 5 5 -interpolation idw 5 -maxinterpdistance 20}}}
    182182
    183183To map bands 10 to 20 and 50 to 79 inclusive, to a pixel resolution of 1m, using bilinear interpolation:
    184184
    185 {{{aplmap -igm line01 OSNG.igm -lev1 line01 calibrated.bil -mapname line01 mapped.bil -bandlist 10-20 50-79 -pixelsize 1 1 -interpolation bilinear}}}
     185{{{aplmap -igm line01_OSNG.igm -lev1 line01_calibrated.bil -mapname line01 mapped.bil -bandlist 10-20 50-79 -pixelsize 1 1 -interpolation bilinear}}}
    186186