|
TNTmips Downloads Menu

|
tintor.sml
# tintor.sml
# Converts TIN object to Raster object.
# set up variables to use for method and flags
numeric methodLinear = 0;
numeric methodQuintic = 1;
numeric method;
numeric flagDefault = 0;
numeric flagCopyGeoref = 1;
numeric flagAutoscale = 2;
numeric flags;
TIN TinIn;
RASTER Rout;
# get the input and output objects
GetInputTIN( TinIn );
GetOutputRaster(Rout);
method = methodQuintic;
flags = flagCopyGeoref + flagAutoscale; # to do both
TINToRaster( TinIn, Rout, method, flags );
# other other optional function calls
# to use default method and flags
# TINToRaster( TinIn, Rout )
# to use default flags but set method
# TINToRaster( TinIn, Rout, method )
CloseRaster( Rout );
©MicroImages, Inc. 2013 Published in the United States of America
11th Floor - Sharp Tower, 206 South 13th Street, Lincoln NE 68508-2010 USA
Business & Sales: (402)477-9554 Support: (402)477-9562 Fax: (402)477-9559
Business info@microimages.com
Support support@microimages.com
Web webmaster@microimages.com
| |