Class SatDisplay

java.lang.Object
  extended by SatDisplay

public class SatDisplay
extends java.lang.Object

Example class to display a satellite image in VisAD.


Constructor Summary
SatDisplay(java.lang.String mapFile, java.lang.String imageSource, boolean display3D, boolean remap)
          Construct a satellite display using the specified McIDAS map file, image source.
 
Method Summary
static void main(java.lang.String[] args)
           run 'java -mx64m SatDisplay' for globe display run 'java -mx64m SatDisplay X remap' for remapped globe display run 'java -mx64m SatDisplay X 2D' for flat display
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SatDisplay

public SatDisplay(java.lang.String mapFile,
                  java.lang.String imageSource,
                  boolean display3D,
                  boolean remap)
Construct a satellite display using the specified McIDAS map file, image source. The image can be displayed on a 3D globe or on a flat rectillinear projection.

Parameters:
mapFile - location of the McIDAS map file (path or URL)
imageSource - location of the image source (path or URL)
display3D - if true, use 3D display, otherwise flat rectillinear
remap - remap the image into a domain over North America
Method Detail

main

public static void main(java.lang.String[] args)