|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.c5corp.c5utm.Point
com.c5corp.c5utm.StatisticalPoint
public class StatisticalPoint
A Statistical Point extends a Point. A Point
is a structure
to hold the fields from a UTM_COORDS record, and a StatisicalPoint adds the
attributes (if any) stored in the associated record in the UTM_POINT_STATS table.
Note that these need to be processed into a relational database with
the com.c5corp.c5utm.util classes. It provides constructor and accessor
methods for all fields. Usually you will not create and instance
of this class yourself, but will use the static methods in the C5UTM class
class to create a StasticalPoint from a query of some sort.
Points
,
com.c5corp.c5utm.util
Constructor Summary | |
---|---|
protected |
StatisticalPoint(int zone,
int easting,
int northing,
int elevation,
java.lang.String dem_id,
java.lang.String id,
int low,
int high,
int mean,
int median,
double stdev,
int percentile,
int contiguous_modality_percentage,
int topographic_descriptor,
int terrain_descriptor)
Constructor for the StatisticalPoint class. |
Method Summary | |
---|---|
int |
getClosestMean()
Returns the closest elevation to the mean found in the associated set |
int |
getClosestMedian()
Returns the (snapped) median elevation found in the associated set |
int |
getContiguousModalityPercentage()
Returns the contiguous modality percentage of the associated set, with -1 indicating a perfectly flat area, and -2 an error. |
int |
getHighest()
Returns the highest elevation found in the associated set |
int |
getLowest()
Returns the lowest elevation found in the associated set |
int |
getPercentile()
Returns the percentile of this Point compared to the elevations in the associated set. |
double |
getStandardDeviation()
Returns the standard deviation of the points surroundin this point |
int |
getTerrainDescriptor()
Returns a descriptor describing the terrain imediately around the point |
int |
getTopographicDescriptor()
Returns a descriptor describing the area surrounding the point |
java.lang.String |
toString()
overrides toString() of the Object class |
Methods inherited from class com.c5corp.c5utm.Point |
---|
getDemId, getEasting, getElevation, getId, getNorthing, getZone |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected StatisticalPoint(int zone, int easting, int northing, int elevation, java.lang.String dem_id, java.lang.String id, int low, int high, int mean, int median, double stdev, int percentile, int contiguous_modality_percentage, int topographic_descriptor, int terrain_descriptor)
zone
- the UTM zoneeasting
- the UTM eastingnorthing
- the UTM northingelevation
- the elevationdem_id
- the database id for the demid
- the database idlow
- the lowest elevation represented in the set represented by this pointhigh
- the highest elevation represented in the set represented by this pointmean
- the mean elevation represented in the set represented by this pointmedian
- the median elevation represented in the set represented by this pointstdev
- the stdev of the area represented in the set represented by this pointpercentile
- the percentile of this points elevation realtive to the rest of the areacontiguous_modality_percentage
- the cmp associated with this pointtopographic_descriptor
- topographic descriptor for this pointterrain_descriptor
- the terrain descriptor for this pointMethod Detail |
---|
public int getLowest()
public int getHighest()
public int getClosestMean()
public int getClosestMedian()
public double getStandardDeviation()
public int getPercentile()
public int getContiguousModalityPercentage()
public int getTerrainDescriptor()
public int getTopographicDescriptor()
public java.lang.String toString()
toString
in class Point
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |