|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjwo.landserf.process.proj.Swiss
public class Swiss
Class for representing the Swiss coordinate system. This is an oblique Mercator projection with a 90 degree azimuth, centre at the the old observatory at Bern and scale factor of 1.0.
Field Summary | |
---|---|
static int |
FROM_LAT_LONG
Indicates a transformation from longitude/latitude. |
static int |
TO_LAT_LONG
Indicates a transformation to longitude/latitude. |
Constructor Summary | |
---|---|
Swiss()
Initialises the transformer assuming a forward transformation is from longitude/latitude to Swiss coordinates. |
|
Swiss(int direction)
Initialises the transformer in the given direction. |
Method Summary | |
---|---|
boolean |
doInterpolation()
Indicates whether the transformation should use nearest neighbour (false) or some interpolator (true). |
String |
getDescription()
Provides a general description of the transformation. |
Ellipsoid |
getEllipsoid()
Reports the ellipsoid used in the transformation. |
Footprint |
invTransformCoords(Footprint fpIn)
Performs an inverse Swiss grid to longitude/latitude transform on the given location. |
Footprint |
latLongToSwiss(float lng,
float lat)
Converts the given longitude/latitude coordinates into Swiss grid. |
void |
setInterpolation(boolean doInterpolation)
Sets whether the transformation should use nearest neighbour (false) or some interpolator (true). |
Footprint |
swissToLatLong(float easting,
float northing)
Converts the given Swiss coordinates to longitude/latitude location. |
Footprint |
transformCoords(Footprint fpIn)
Performs a forward longitude/latitude to Swiss grid transform on the given location. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int FROM_LAT_LONG
public static final int TO_LAT_LONG
Constructor Detail |
---|
public Swiss()
public Swiss(int direction)
direction
- Indicates whether transforming to or from longitude/latitude.Method Detail |
---|
public Footprint latLongToSwiss(float lng, float lat)
lng
- Longitude (+-180.0).lat
- Latitude (+-90.0).
public Footprint swissToLatLong(float easting, float northing)
easting
- Swiss easting.northing
- Swiss northing.
public Footprint transformCoords(Footprint fpIn)
transformCoords
in interface Transformable
fpIn
- Incoming footprint to transform.
public Footprint invTransformCoords(Footprint fpIn)
invTransformCoords
in interface Transformable
fpIn
- Incoming footprint to transform.
public String getDescription()
getDescription
in interface Transformable
public boolean doInterpolation()
doInterpolation
in interface Transformable
public void setInterpolation(boolean doInterpolation)
doInterpolation
- True if transformation should perform some local interpolation.public Ellipsoid getEllipsoid()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |