类 AzimuthalProjection
- java.lang.Object
-
- org.meteoinfo.projection.proj4j.proj.Projection
-
- org.meteoinfo.projection.proj4j.proj.AzimuthalProjection
-
- 所有已实现的接口:
java.lang.Cloneable
- 直接已知子类:
EqualAreaAzimuthalProjection,EquidistantAzimuthalProjection,GnomonicAzimuthalProjection,OrthographicAzimuthalProjection,StereographicAzimuthalProjection
public abstract class AzimuthalProjection extends Projection
The superclass for all azimuthal map projections
-
-
字段概要
字段 修饰符和类型 字段 说明 protected doublecosphi0static intEQUATORprotected intmodestatic intNORTH_POLEstatic intOBLIQUEprotected doublesinphi0static intSOUTH_POLE-
从类继承的字段 org.meteoinfo.projection.proj4j.proj.Projection
a, alpha, DTR, e, ellipsoid, EPS10, es, falseEasting, falseNorthing, fromMetres, geocentric, HALFPI, heightOfOrbit, isSouth, lonc, maxLatitude, maxLongitude, minLatitude, minLongitude, name, one_es, proj4Name, projectionLatitude, projectionLatitude1, projectionLatitude1Degrees, projectionLatitude2, projectionLatitude2Degrees, projectionLatitudeDegrees, projectionLongitude, projectionLongitudeDegrees, rone_es, RTD, scaleFactor, spherical, totalScale, trueScaleLatitude, trueScaleLatitudeDegrees, unit
-
-
构造器概要
构造器 构造器 说明 AzimuthalProjection()AzimuthalProjection(double projectionLatitude, double projectionLongitude)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 doublegetMapRadius()voidinitialize()Initialize the projection.booleaninside(double lon, double lat)Returns true if the given lat/long point is visible in this projectionvoidsetMapRadius(double mapRadius)Set the map radius (in degrees). 180 shows a hemisphere, 360 shows the whole globe.-
从类继承的方法 org.meteoinfo.projection.proj4j.proj.Projection
clone, getAlpha, getEllipsoid, getEPSGCode, getEquatorRadius, getFalseEasting, getFalseNorthing, getFromMetres, getHeightOfOrbit, getLonC, getMaxLatitude, getMaxLatitudeDegrees, getMaxLongitude, getMaxLongitudeDegrees, getMinLatitude, getMinLatitudeDegrees, getMinLongitude, getMinLongitudeDegrees, getName, getPROJ4Description, getProj4Name, getProjectionLatitude, getProjectionLatitude1, getProjectionLatitude1Degrees, getProjectionLatitude2, getProjectionLatitude2Degrees, getProjectionLatitudeDegrees, getProjectionLongitude, getProjectionLongitudeDegrees, getScaleFactor, getSouthernHemisphere, getTrueScaleLatitude, getTrueScaleLatitudeDegrees, hasInverse, inverseProject, inverseProjectRadians, isConformal, isEqual, isEqualArea, isRectilinear, normalizeLongitude, normalizeLongitudeRadians, parallelsAreParallel, project, project, projectInverse, projectRadians, setAlphaDegrees, setEllipsoid, setFalseEasting, setFalseNorthing, setFromMetres, setHeightOfOrbit, setLonCDegrees, setMaxLatitude, setMaxLongitude, setMaxLongitudeDegrees, setMinLatitude, setMinLongitude, setMinLongitudeDegrees, setName, setProjectionLatitude, setProjectionLatitude1, setProjectionLatitude1Degrees, setProjectionLatitude2, setProjectionLatitude2Degrees, setProjectionLatitudeDegrees, setProjectionLongitude, setProjectionLongitudeDegrees, setScaleFactor, setSouthernHemisphere, setTrueScaleLatitude, setTrueScaleLatitudeDegrees, setUnits, toString
-
-
-
-
字段详细资料
-
NORTH_POLE
public static final int NORTH_POLE
- 另请参阅:
- 常量字段值
-
SOUTH_POLE
public static final int SOUTH_POLE
- 另请参阅:
- 常量字段值
-
EQUATOR
public static final int EQUATOR
- 另请参阅:
- 常量字段值
-
OBLIQUE
public static final int OBLIQUE
- 另请参阅:
- 常量字段值
-
mode
protected int mode
-
sinphi0
protected double sinphi0
-
cosphi0
protected double cosphi0
-
-
方法详细资料
-
initialize
public void initialize()
从类复制的说明:ProjectionInitialize the projection. This should be called after setting parameters and before using the projection. This is for performance reasons as initialization may be expensive.- 覆盖:
initialize在类中Projection
-
inside
public boolean inside(double lon, double lat)从类复制的说明:ProjectionReturns true if the given lat/long point is visible in this projection- 覆盖:
inside在类中Projection
-
setMapRadius
public void setMapRadius(double mapRadius)
Set the map radius (in degrees). 180 shows a hemisphere, 360 shows the whole globe.
-
getMapRadius
public double getMapRadius()
-
-