|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.partnersoft.geometry.projection.Projection
public abstract class Projection
A projection from lat/long to some sort of x, y coordinates.
Copyright 2001-2009 Partner Software, Inc.
| Constructor Summary | |
|---|---|
Projection()
|
|
| Method Summary | |
|---|---|
java.lang.String |
getName()
|
void |
project(DoubleBuffer coords)
Treats the given DoubleBuffer as an array of x,y pairs, and projects all of them. |
Point |
project(double longitude,
double latitude)
|
abstract void |
project(Point point)
Project from latlong to xy. |
XyPoint |
project(XyPoint lonLatPoint)
Transforms the given XyPoint from lonlat to meters. |
XyShape |
project(XyShape lonLatShape)
Transforms the given XyShape from lonlat to meters. |
void |
projectFeet(DoubleBuffer coords)
Same as project(DoubleBuffer), but produces feet instead of meters. |
Point |
projectFeet(double longitude,
double latitude)
|
void |
projectFeet(Point point)
Same as project, but returns US Survey feet instead of meters. |
XyPoint |
projectFeet(XyPoint lonLatPoint)
Transforms the given XyPoint from lonlat to US Survey Feet. |
XyShape |
projectFeet(XyShape lonLatShape)
Transforms the given XyShape from lonlat to US Survey Feet. |
void |
reverse(DoubleBuffer coords)
Treats the given DoubleBuffer as an array of x,y pairs, and reverse projects all of them. |
Point |
reverse(double x,
double y)
|
abstract void |
reverse(Point point)
Reverse project from xy to latlong. |
XyPoint |
reverse(XyPoint xyPoint)
Transforms the given XyPoint from meters to lonlat. |
XyShape |
reverse(XyShape xyShape)
Transforms the given XyShape from meters to lonlat. |
void |
reverseFeet(DoubleBuffer coords)
Same as reverse(DoubleBuffer), but treats input as feet instead of meters. |
Point |
reverseFeet(double x,
double y)
|
void |
reverseFeet(Point point)
Same as reverse, but with input in US Survey feet instead of meters. |
XyPoint |
reverseFeet(XyPoint xyPoint)
Transforms the given XyPoint from US Survey Feet to lonlat. |
XyShape |
reverseFeet(XyShape xyShape)
Transforms the given XyShape from US Survey Feet to lonlat. |
void |
setName(java.lang.String newName)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.partnersoft.cog.Coggable |
|---|
toCog |
| Constructor Detail |
|---|
public Projection()
| Method Detail |
|---|
public abstract void project(Point point)
public abstract void reverse(Point point)
public Point reverse(double x,
double y)
public Point project(double longitude,
double latitude)
public Point reverseFeet(double x,
double y)
public Point projectFeet(double longitude,
double latitude)
public void projectFeet(Point point)
public void reverseFeet(Point point)
public void project(DoubleBuffer coords)
public void reverse(DoubleBuffer coords)
public void projectFeet(DoubleBuffer coords)
public void reverseFeet(DoubleBuffer coords)
public XyShape project(XyShape lonLatShape)
public XyShape projectFeet(XyShape lonLatShape)
public XyShape reverse(XyShape xyShape)
public XyShape reverseFeet(XyShape xyShape)
public XyPoint project(XyPoint lonLatPoint)
public XyPoint projectFeet(XyPoint lonLatPoint)
public XyPoint reverse(XyPoint xyPoint)
public XyPoint reverseFeet(XyPoint xyPoint)
public void setName(java.lang.String newName)
public java.lang.String getName()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||