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.
-
AREA
-
-
IMAGE
-
-
LINE
-
-
MATRIX
-
-
POINT
-
-
TEXT
-
-
UNKNOWN
-
-
getFamily(String)
- Gets the family by its type.
-
getFamilyType()
- Gets the family type.
-
toString()
- Gets the complete Family.
LINE
public static final OGDIFamily LINE
AREA
public static final OGDIFamily AREA
POINT
public static final OGDIFamily POINT
TEXT
public static final OGDIFamily TEXT
MATRIX
public static final OGDIFamily MATRIX
IMAGE
public static final OGDIFamily IMAGE
UNKNOWN
public static final OGDIFamily UNKNOWN
getFamilyType
public String getFamilyType()
- Gets the family type.
- Parameters:
- no - parameter
- Returns:
- the family type (Unknown is the default)
- Throws: no
- exception
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
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