Uses of Class
com.bbn.openmap.omGraphics.OMRaster

Packages that use OMRaster
com.bbn.openmap.dataAccess.dted   
com.bbn.openmap.dataAccess.image   
com.bbn.openmap.dataAccess.shape This package provides read and write access to ESRI shape files, including the .shp, .dbf and .shx files. 
com.bbn.openmap.gui.time   
com.bbn.openmap.layer.etopo Provides a layer that displays ETOPO data. 
com.bbn.openmap.layer.link Provide classes to handle the link protocol: a layer that displays link data, classes to assist in writing a link server, and methods that read and write in the link protocol format. 
com.bbn.openmap.layer.location Provides a layer that can display location data - data that represents a location with a graphic and a name. 
com.bbn.openmap.omGraphics Provides geographically based graphics classes. 
com.bbn.openmap.omGraphics.grid Provides a number of generator classes for OMGrid data. 
com.bbn.openmap.omGraphics.time   
com.bbn.openmap.omGraphics.util This package contains simple utility classes used specifically for OMGraphics. 
com.bbn.openmap.plugin.earthImage This package contains a plugin that can read in an image, assumed to be in the Mercator projection and covering the entire Earth, and warp it to any OpenMap projection. 
 

Uses of OMRaster in com.bbn.openmap.dataAccess.dted
 

Fields in com.bbn.openmap.dataAccess.dted declared as OMRaster
protected  OMRaster DTEDSlopeGenerator.raster
          The cached OMScalingRaster, which can be reused instead of regenerated in some projection circumstances.
 

Methods in com.bbn.openmap.dataAccess.dted that return OMRaster
protected  OMRaster DTEDSlopeGenerator.getRaster(OMGrid grid)
          Called from within generate to create an OMRaster object for the OMGrid.
 

Uses of OMRaster in com.bbn.openmap.dataAccess.image
 

Subclasses of OMRaster in com.bbn.openmap.dataAccess.image
 class ErrImageTile
          An ErrImageTile is an ImageTile that can't be displayed due to projection incompatibilities or some other problem.
 class ImageTile
          This is an extension to OMRaster that automatically scales itself to match the current projection.
 

Uses of OMRaster in com.bbn.openmap.dataAccess.shape
 

Subclasses of OMRaster in com.bbn.openmap.dataAccess.shape
 class EsriIconPoint
          An extension to OMPoint that typecasts a specific Esri graphic type.
 

Uses of OMRaster in com.bbn.openmap.gui.time
 

Fields in com.bbn.openmap.gui.time declared as OMRaster
protected  OMRaster TimelineLayer.CurrentTimeMarker.lowerMark
           
protected  OMRaster TimelineLayer.CurrentTimeMarker.upperMark
           
 

Uses of OMRaster in com.bbn.openmap.layer.etopo
 

Methods in com.bbn.openmap.layer.etopo that return OMRaster
protected  OMRaster ETOPOLayer.buildRaster()
           
protected  OMRaster ETOPOJarLayer.buildRaster()
           
 

Uses of OMRaster in com.bbn.openmap.layer.link
 

Methods in com.bbn.openmap.layer.link that return OMRaster
static OMRaster LinkRaster.read(java.io.DataInputStream dis)
          Read the DataInputStream, and create an OMRaster.
static OMRaster LinkRaster.read(java.io.DataInputStream dis, LinkProperties propertiesBuffer)
          Read the DataInputStream, and create an OMRaster.
 

Methods in com.bbn.openmap.layer.link with parameters of type OMRaster
static void LinkRaster.write(OMRaster raster, Link link, LinkProperties props)
          Write a raster to the link.
 

Uses of OMRaster in com.bbn.openmap.layer.location
 

Methods in com.bbn.openmap.layer.location that return OMRaster
static OMRaster ByteRasterLocation.getIconRaster(double lat, double lon, byte[] bytearr)
          Create an OMRaster at a latitude/longitude, from a image byte array.
static OMRaster ByteRasterLocation.getIconRaster(double lat, double lon, int x, int y, byte[] bytearr)
          Create a lat/lon OMRaster, pffset to a certain pixel location, with an image byte array.
static OMRaster URLRasterLocation.getIconRaster(double lat, double lon, int x, int y, java.lang.String iconURL)
          Create an OMRaster at a latitude/longitude with an x/y pixel offset, using an image URL.
static OMRaster URLRasterLocation.getIconRaster(double lat, double lon, int x, int y, java.net.URL iconURL)
          Create an OMRaster at a latitude/longitude, from a image URL.
static OMRaster URLRasterLocation.getIconRaster(double lat, double lon, java.lang.String iconURL)
          Create an OMRaster at a latitude/longitude, using an image URL.
static OMRaster URLRasterLocation.getIconRaster(double lat, double lon, java.net.URL iconURL)
          Create an OMRaster at a latitude/longitude, using an image URL.
static OMRaster ByteRasterLocation.getIconRaster(int x, int y, byte[] bytearr)
          Create a x/y OMRaster with an image byte array.
static OMRaster URLRasterLocation.getIconRaster(int x, int y, java.lang.String iconURL)
          Create an OMRaster at a latitude/longitude, using an image URL.
static OMRaster URLRasterLocation.getIconRaster(int x, int y, java.net.URL iconURL)
          Create an OMRaster at an x, y screen location, using an image URL.
 

Uses of OMRaster in com.bbn.openmap.omGraphics
 

Subclasses of OMRaster in com.bbn.openmap.omGraphics
 class OMScalingIcon
          This is an extension to OMScalingRaster that scales an icon.
 class OMScalingRaster
          This is an extension to OMRaster that automatically scales itelf to match the current projection.
 

Fields in com.bbn.openmap.omGraphics declared as OMRaster
protected  OMRaster OMWarpingImage.raster
           
 

Uses of OMRaster in com.bbn.openmap.omGraphics.grid
 

Methods in com.bbn.openmap.omGraphics.grid that return OMRaster
 OMRaster SlopeGenerator.generateRasterForProjection(OMGrid grid, Projection proj)
          A more defining API method to get what this SlopeGenerator can create.
protected  OMRaster SlopeGenerator.getRaster(OMGrid grid)
          Called from within generate to create an OMRaster object for the OMGrid.
 

Uses of OMRaster in com.bbn.openmap.omGraphics.time
 

Subclasses of OMRaster in com.bbn.openmap.omGraphics.time
 class TemporalOMScalingIcon
           
 

Uses of OMRaster in com.bbn.openmap.omGraphics.util
 

Methods in com.bbn.openmap.omGraphics.util that return OMRaster
 OMRaster ImageWarp.getOMRaster(Projection p)
          Return an OMRaster that covers the given projection, with the image warped for the projection.
 

Uses of OMRaster in com.bbn.openmap.plugin.earthImage
 

Methods in com.bbn.openmap.plugin.earthImage that return OMRaster
 OMRaster EarthImagePlugIn.ImageTranslator.getImage(Projection p)
          Given a projection, create an OMRaster that reflects the image warped to that projection.
 



Copyright (C) BBNT Solutions LLC; See http://openmap.bbn.com/ for details