Class MolleweideProjection
java.lang.Object
org.locationtech.proj4j.proj.Projection
org.locationtech.proj4j.proj.CylindricalProjection
org.locationtech.proj4j.proj.PseudoCylindricalProjection
org.locationtech.proj4j.proj.MolleweideProjection
- All Implemented Interfaces:
Serializable, Cloneable
- Direct Known Subclasses:
Wagner4Projection, Wagner5Projection
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate doubleprivate doubleprivate doubleprivate static final intstatic final intprivate static final doubleprivate intstatic final intstatic final intFields inherited from class Projection
a, alpha, DTR, e, ellipsoid, EPS10, es, falseEasting, falseNorthing, fromMetres, geocentric, lonc, maxLatitude, maxLongitude, minLatitude, minLongitude, name, one_es, projectionLatitude, projectionLatitude1, projectionLatitude2, projectionLongitude, rone_es, RTD, scaleFactor, spherical, totalScale, trueScaleLatitude, unit -
Constructor Summary
ConstructorsConstructorDescriptionMolleweideProjection(double p) MolleweideProjection(double cx, double cy, double cp) MolleweideProjection(int type) -
Method Summary
Modifier and TypeMethodDescriptionbooleanRepresents quality between possible outputs ofProjection.project(ProjCoordinate, ProjCoordinate).inthashCode()Hash of those fields considered in Projection equalituy.booleanTests whether this projection has an inverse.voidinit(double p) booleanTests whether this projection is equal-area An equal-area projection preserves relative sizes of projected areas.project(double lplam, double lpphi, ProjCoordinate xy) Computes the projection of a given point (i.e.projectInverse(double x, double y, ProjCoordinate lp) Computes the inverse projection of a given point (i.e.toString()Methods inherited from class PseudoCylindricalProjection
isRectilinearMethods inherited from class Projection
clone, getAlpha, getAxisOrder, getEllipsoid, getEPSGCode, getEquatorRadius, getFalseEasting, getFalseNorthing, getFromMetres, getHeightOfOrbit, getLonC, getMaxLatitude, getMaxLatitudeDegrees, getMaxLongitude, getMaxLongitudeDegrees, getMinLatitude, getMinLatitudeDegrees, getMinLongitude, getMinLongitudeDegrees, getName, getPrimeMeridian, getPROJ4Description, getProjectionLatitude, getProjectionLatitude1, getProjectionLatitude1Degrees, getProjectionLatitude2, getProjectionLatitude2Degrees, getProjectionLatitudeDegrees, getProjectionLongitude, getProjectionLongitudeDegrees, getScaleFactor, getSouthernHemisphere, getTrueScaleLatitude, getTrueScaleLatitudeDegrees, getUnits, initialize, inside, inverseProject, inverseProjectRadians, isConformal, isGeographic, normalizeLongitude, normalizeLongitudeRadians, parallelsAreParallel, project, projectRadians, setAlpha, setAlphaDegrees, setAxisOrder, setEllipsoid, setFalseEasting, setFalseNorthing, setFromMetres, setGamma, setGammaDegrees, setHeightOfOrbit, setLonC, setLonCDegrees, setMaxLatitude, setMaxLongitude, setMaxLongitudeDegrees, setMinLatitude, setMinLongitude, setMinLongitudeDegrees, setName, setNoUoff, setPrimeMeridian, setProjectionLatitude, setProjectionLatitude1, setProjectionLatitude1Degrees, setProjectionLatitude2, setProjectionLatitude2Degrees, setProjectionLatitudeDegrees, setProjectionLongitude, setProjectionLongitudeDegrees, setRadius, setScaleFactor, setSouthernHemisphere, setTrueScaleLatitude, setTrueScaleLatitudeDegrees, setUnits
-
Field Details
-
MOLLEWEIDE
public static final int MOLLEWEIDE- See Also:
-
WAGNER4
public static final int WAGNER4- See Also:
-
WAGNER5
public static final int WAGNER5- See Also:
-
MAX_ITER
private static final int MAX_ITER- See Also:
-
TOLERANCE
private static final double TOLERANCE- See Also:
-
type
private int type -
cx
private double cx -
cy
private double cy -
cp
private double cp
-
-
Constructor Details
-
MolleweideProjection
public MolleweideProjection() -
MolleweideProjection
public MolleweideProjection(int type) -
MolleweideProjection
public MolleweideProjection(double p) -
MolleweideProjection
public MolleweideProjection(double cx, double cy, double cp)
-
-
Method Details
-
init
public void init(double p) -
project
Description copied from class:ProjectionComputes the projection of a given point (i.e. from geographics to projection space). This should be overridden for all projections.- Overrides:
projectin classProjection- Parameters:
lplam- the geographic x ordinate (in radians)lpphi- the geographic y ordinatee (in radians)xy- the projected coordinate (in coordinate system units)- Returns:
- the target coordinate
-
projectInverse
Description copied from class:ProjectionComputes the inverse projection of a given point (i.e. from projection space to geographics). This should be overridden for all projections.- Overrides:
projectInversein classProjection- Parameters:
x- the projected x ordinate (in coordinate system units)y- the projected y ordinate (in coordinate system units)lp- the inverse-projected geographic coordinate (in radians)- Returns:
- the target coordinate
-
hasInverse
public boolean hasInverse()Description copied from class:ProjectionTests whether this projection has an inverse. If this method returnstruethen theProjection.inverseProject(ProjCoordinate, ProjCoordinate)andProjection.inverseProjectRadians(ProjCoordinate, ProjCoordinate)methods will return meaningful results.- Overrides:
hasInversein classProjection- Returns:
- true if this projection has an inverse
-
isEqualArea
public boolean isEqualArea()Description copied from class:ProjectionTests whether this projection is equal-area An equal-area projection preserves relative sizes of projected areas.- Overrides:
isEqualAreain classProjection- Returns:
- true if this projection is equal-area
-
toString
- Overrides:
toStringin classPseudoCylindricalProjection
-
equals
Description copied from class:ProjectionRepresents quality between possible outputs ofProjection.project(ProjCoordinate, ProjCoordinate). Subclasses of Projection should capture additional state that is used in the project method and delgate to base. Note: The name of the projection is not part of equality.- Overrides:
equalsin classProjection
-
hashCode
public int hashCode()Description copied from class:ProjectionHash of those fields considered in Projection equalituy. Subclasses that override equality should override hashCode.- Overrides:
hashCodein classProjection
-