All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.las.ogdi.OGDIFamily

java.lang.Object
   |
   +----com.las.ogdi.OGDIFamily

public class OGDIFamily
extends Object
The Family class defines a type of objects to access in a given coverage. The possible values are Point, Line, Area, Text, Matrix and Image.
 - Point represents point features such as elevation point, buildings, 
   survey points etc;
 - Line represents linear features such as roads, railroads, rivers, etc.;
 - Area represents polygon features such as lakes, built-up areas, etc.;
 - Text represents text features such as place names;
 - Matrix represents any 8-bit matrix or raster coverage. This can be an 
   elevation coverage, or a scanned map;
 - Image represents a 32-bit capable raster coverage. 
The example below contains a scanned raster map:
 -family Matrix 
 -url gltp:/rpf/c:/forthood/cib/rpf 
 -coverage 10M@1@CIB@DMASC@2

Version:
1.1
Author:
Las Inc.

Variable Index

 o AREA
 o IMAGE
 o LINE
 o MATRIX
 o POINT
 o TEXT
 o UNKNOWN

Method Index

 o getFamily(String)
Gets the family by its type.
 o getFamilyType()
Gets the family type.
 o toString()
Gets the complete Family.

Variables

 o LINE
 public static final OGDIFamily LINE
 o AREA
 public static final OGDIFamily AREA
 o POINT
 public static final OGDIFamily POINT
 o TEXT
 public static final OGDIFamily TEXT
 o MATRIX
 public static final OGDIFamily MATRIX
 o IMAGE
 public static final OGDIFamily IMAGE
 o UNKNOWN
 public static final OGDIFamily UNKNOWN

Methods

 o getFamilyType
 public String getFamilyType()
Gets the family type.

Parameters:
no - parameter
Returns:
the family type (Unknown is the default)
Throws: no
exception
 o getFamily
 public static OGDIFamily getFamily(String type)
Gets the family by its type.

Parameters:
the - family type
Returns:
the family (UNKNOWN is the default)
Throws: no
exception
 o toString
 public String toString()
Gets the complete Family.

Parameters:
no - parameter
Returns:
the family as a string
Throws: no
exception
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index