Changes between Version 2 and Version 3 of Processing/AplUserGuide


Ignore:
Timestamp:
Feb 7, 2012, 11:50:40 AM (12 years ago)
Author:
mark1
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Processing/AplUserGuide

    v2 v3  
    163163Bilinear interpolation can be selected using -interpolation bilinear on the command line.
    164164
     165=== Example aplmap commands ===
    165166
     167For examples specific to your data set please see the read-me document supplied with your ARSF delivery.
    166168
     169To map bands 100, 60 and 30 of the level-1 file to a square pixel size of 5 metres using nearest neighbour interpolation:
     170
     171{{{aplmap -igm line01 UTM30.igm -lev1 line01 calibrated.bil -mapname line01 mapped.bil -bandlist 100 60 30 -pixelsize 5 5 -interpolation nearest}}}
     172
     173To 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:
     174
     175{{{aplmap -igm line01 UTM30.igm -lev1 line01 calibrated.bil -mapname line01 mapped.bil -bandlist ALL -pixelsize 5 5 -interpolation idw 5 -maxinterpdistance 20}}}
     176
     177To map bands 10 to 20 and 50 to 79 inclusive, to a pixel resolution of 1m, using bilinear interpolation:
     178
     179{{{aplmap -igm line01 OSNG.igm -lev1 line01 calibrated.bil -mapname line01 mapped.bil -bandlist 10-20 50-79 -pixelsize 1 1 -interpolation bilinear}}}
     180