|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectps2.GeoFeature
public class GeoFeature extends Object
A GeoFeature represents a path from one location to another along a single geographic feature. GeoFeatures are immutable.
GeoFeature abstracts over a sequence of GeoSegments, all of which have the same name, thus providing a representation for nonlinear or nonatomic geographic features. As an example, a GeoFeature might represent the course of a winding river, or travel along a road through intersections but remaining on the same road.
GeoFeatures are immutable. New GeoFeatures can be constructed by adding a segment to the end of a GeoFeature. An added segment must be properly oriented; that is, its p1 field must correspond to the end of the original GeoFeature, and its p2 field corresponds to the end of the new GeoFeature, and the name of the GeoSegment being added must match the name of the existing GeoFeature.
Because a GeoFeature is not necessarily straight, its length -- the distance traveled by following the path from start to end -- is not necessarily the same as the distance along a straight line between its endpoints.
start
- : GeoPoint // location of the start of the geo feature
end
- : GeoPoint // location of the end of the geo feature
startHeading
- : angle // direction of travel at the start of the geo feature, in degrees
endHeading
- : angle // direction of travel at the end of the geo feature, in degrees
geoSegments
- : sequence // a sequence of segments that make up this geographic feature
name
- : String // name of geographical feature
length
: real // total length of the geo feature, in milesConstructor and Description |
---|
GeoFeature(GeoSegment gs)
Constructs a new GeoFeature. |
Modifier and Type | Method and Description |
---|---|
GeoFeature |
addSegment(GeoSegment gs)
Creates a new GeoFeature that is equal to this GeoFeature with gs appended to its end. |
boolean |
equals(Object o)
Compares the argument with this GeoFeature for equality. |
GeoPoint |
getEnd()
|
double |
getEndHeading()
|
List<GeoSegment> |
getGeoSegments()
Returns a List of GeoSegment objects. |
double |
getLength()
|
String |
getName()
|
GeoPoint |
getStart()
|
double |
getStartHeading()
|
int |
hashCode()
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public GeoFeature(GeoSegment gs)
Method Detail |
---|
public String getName()
public GeoPoint getStart()
public GeoPoint getEnd()
public double getStartHeading()
public double getEndHeading()
public double getLength()
public GeoFeature addSegment(GeoSegment gs)
public List<GeoSegment> getGeoSegments()
this.start = a.get(0).p1 && this.startHeading = a.get(0).heading && this.end = a.get(a.size - 1).p2 && this.endHeading = a.get(a.size - 1).heading && this.length = sum (0 ≤ i < a.size) . a.get(i).length && for all integers i . (0 ≤ i < a.size - 1 ⇒ (a.get(i).name = a.get(i+1).name && a.get(i).p2 = a.get(i+1).p1))
GeoSegment
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |