com.partnersoft.v3x.geometry.projections
Interface Projection

All Known Implementing Classes:
AlbersEqualArea, LambertConformalConic, NullProjection, StandardProjection, TransverseMercator, TransverseMercatorProj, UTM

public interface Projection

A projection from lat/long to some sort of x, y coordinates.


Method Summary
 DoublePoint project(double longitude, double latitude)
          Project from latlong to xy.
 DoublePoint reverse(double x, double y)
          Reverse project from xy to latlong.
 

Method Detail

project

DoublePoint project(double longitude,
                    double latitude)
Project from latlong to xy.


reverse

DoublePoint reverse(double x,
                    double y)
Reverse project from xy to latlong. Results are returned with point.x = long, point.y = lat.