Uses of Class
org.geotools.api.referencing.cs.AxisDirection
Packages that use AxisDirection
Package
Description
Coordinate systems and their
axis.
Coordinate systems implementation.
Base classes for factories and
authority factories.
Matrix implementations on top of the
javax.vecmath package.-
Uses of AxisDirection in org.geotools.api.referencing.cs
Fields in org.geotools.api.referencing.cs declared as AxisDirectionModifier and TypeFieldDescriptionstatic final AxisDirectionAxisDirection.COLUMN_NEGATIVEAxis positive direction is towards lower pixel column.static final AxisDirectionAxisDirection.COLUMN_POSITIVEAxis positive direction is towards higher pixel column.static final AxisDirectionAxisDirection.DISPLAY_DOWNAxis positive direction is towards bottom of approximately vertical display surface.static final AxisDirectionAxisDirection.DISPLAY_LEFTAxis positive direction is left in display.static final AxisDirectionAxisDirection.DISPLAY_RIGHTAxis positive direction is right in display.static final AxisDirectionAxisDirection.DISPLAY_UPAxis positive direction is towards top of approximately vertical display surface.static final AxisDirectionAxisDirection.DOWNAxis positive direction is down relative to gravity.static final AxisDirectionAxisDirection.EASTAxis positive direction is π/2 radians clockwise from north.static final AxisDirectionAxisDirection.EAST_NORTH_EASTAxis positive direction is approximately east-north-east.static final AxisDirectionAxisDirection.EAST_SOUTH_EASTAxis positive direction is approximately east-south-east.static final AxisDirectionAxisDirection.FUTUREAxis positive direction is towards the future.static final AxisDirectionAxisDirection.GEOCENTRIC_XAxis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator with the prime meridian.static final AxisDirectionAxisDirection.GEOCENTRIC_YAxis positive direction is in the equatorial plane from the centre of the modelled earth towards the intersection of the equator and the meridian π/2 radians eastwards from the prime meridian.static final AxisDirectionAxisDirection.GEOCENTRIC_ZAxis positive direction is from the centre of the modelled earth parallel to its rotation axis and towards its north pole.static final AxisDirectionAxisDirection.NORTHAxis positive direction is north.static final AxisDirectionAxisDirection.NORTH_EASTAxis positive direction is approximately north-east.static final AxisDirectionAxisDirection.NORTH_NORTH_EASTAxis positive direction is approximately north-north-east.static final AxisDirectionAxisDirection.NORTH_NORTH_WESTAxis positive direction is approximately north-north-west.static final AxisDirectionAxisDirection.NORTH_WESTAxis positive direction is approximately north-west.static final AxisDirectionAxisDirection.OTHERUnknown or unspecified axis orientation.static final AxisDirectionAxisDirection.PASTAxis positive direction is towards the past.static final AxisDirectionAxisDirection.ROW_NEGATIVEAxis positive direction is towards lower pixel row.static final AxisDirectionAxisDirection.ROW_POSITIVEAxis positive direction is towards higher pixel row.static final AxisDirectionAxisDirection.SOUTHAxis positive direction is π radians clockwise from north.static final AxisDirectionAxisDirection.SOUTH_EASTAxis positive direction is approximately south-east.static final AxisDirectionAxisDirection.SOUTH_SOUTH_EASTAxis positive direction is approximately south-south-east.static final AxisDirectionAxisDirection.SOUTH_SOUTH_WESTAxis positive direction is approximately south-south-west.static final AxisDirectionAxisDirection.SOUTH_WESTAxis positive direction is approximately south-west.static final AxisDirectionAxisDirection.UPAxis positive direction is up relative to gravity.static final AxisDirectionAxisDirection.WESTAxis positive direction is 3π/2 radians clockwise from north.static final AxisDirectionAxisDirection.WEST_NORTH_WESTAxis positive direction is approximately west-north-west.static final AxisDirectionAxisDirection.WEST_SOUTH_WESTAxis positive direction is approximately west-south-west.Methods in org.geotools.api.referencing.cs that return AxisDirectionModifier and TypeMethodDescriptionAxisDirection.absolute()Returns the "absolute" direction of this axis.AxisDirection.family()Returns the list of enumerations of the same kind than this enum.CoordinateSystemAxis.getDirection()Direction of this coordinate system axis.AxisDirection.opposite()Returns the opposite direction of this axis.static AxisDirectionReturns the axis direction that matches the given string, or returns a new one if none match it.static AxisDirection[]AxisDirection.values()Returns the list ofAxisDirections.Methods in org.geotools.api.referencing.cs with parameters of type AxisDirectionModifier and TypeMethodDescriptionCSFactory.createCoordinateSystemAxis(Map<String, ?> properties, String abbreviation, AxisDirection direction, Unit<?> unit) Creates a coordinate system axis from an abbreviation and a unit. -
Uses of AxisDirection in org.geotools.referencing.cs
Fields in org.geotools.referencing.cs declared as AxisDirectionMethods in org.geotools.referencing.cs that return AxisDirectionModifier and TypeMethodDescriptionDefaultCoordinateSystemAxis.getDirection()Direction of this coordinate system axis.static AxisDirectionDefaultCoordinateSystemAxis.getDirection(String direction) Returns an axis direction constants from its name.DirectionAlongMeridian.getDirection()Returns the axis direction for this object.Methods in org.geotools.referencing.cs with parameters of type AxisDirectionModifier and TypeMethodDescriptionstatic doubleDefaultCoordinateSystemAxis.getAngle(AxisDirection source, AxisDirection target) Returns the arithmetic (counterclockwise) angle from the first direction to the second direction, in decimal degrees.static DefaultCoordinateSystemAxisDefaultCoordinateSystemAxis.getPredefined(String name, AxisDirection direction) Returns one of the predefined axis for the given name and direction, ornullif none.static booleanDefaultCoordinateSystemAxis.isCompassDirection(AxisDirection direction) Returnstrueif the specified direction is a compass direction.protected booleanAbstractCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultAffineCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultCylindricalCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultEllipsoidalCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultPolarCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultSphericalCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultTimeCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanDefaultVerticalCS.isCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanAbstractCS.isCompatibleUnit(AxisDirection direction, Unit<?> unit) Returnstrueis the specified unit is legal for the specified axis direction.protected booleanDefaultAffineCS.isCompatibleUnit(AxisDirection direction, Unit<?> unit) Returnstrueif the specified unit is compatible with meters.protected booleanDefaultEllipsoidalCS.isCompatibleUnit(AxisDirection direction, Unit<?> unit) Returnstrueif the specified unit is compatible with decimal degrees (or meters in the special case of height).protected booleanDefaultTimeCS.isCompatibleUnit(AxisDirection direction, Unit<?> unit) Returnstrueif the specified unit is compatible with seconds.static DirectionAlongMeridianDirectionAlongMeridian.parse(AxisDirection direction) Returns the dimension along meridian for the specified axis direction, ornullif none.static booleanDefaultCoordinateSystemAxis.perpendicular(AxisDirection first, AxisDirection second) Returnstrueif the specified directions are perpendicular.Constructors in org.geotools.referencing.cs with parameters of type AxisDirectionModifierConstructorDescriptionDefaultCoordinateSystemAxis(String abbreviation, AxisDirection direction, Unit<?> unit) Constructs an axis with the same name as the abbreviation.DefaultCoordinateSystemAxis(Map<String, ?> properties, String abbreviation, AxisDirection direction, Unit<?> unit) Constructs an unbounded axis from a set of properties.DefaultCoordinateSystemAxis(Map<String, ?> properties, String abbreviation, AxisDirection direction, Unit<?> unit, double minimum, double maximum, RangeMeaning rangeMeaning) Constructs an axis from a set of properties.DefaultCoordinateSystemAxis(InternationalString name, String abbreviation, AxisDirection direction, Unit<?> unit) Constructs an axis with a name as an international string and an abbreviation. -
Uses of AxisDirection in org.geotools.referencing.factory
Methods in org.geotools.referencing.factory that return AxisDirectionModifier and TypeMethodDescriptionprotected AxisDirectionOrderedAxisCRSAuthorityFactory.replace(AxisDirection direction) Replaces the specified direction, if applicable.protected AxisDirectionTransformedAuthorityFactory.replace(AxisDirection direction) Replaces the specified direction, if applicable.Methods in org.geotools.referencing.factory with parameters of type AxisDirectionModifier and TypeMethodDescriptionprotected static int[]OrderedAxisCRSAuthorityFactory.computeDirectionRanks(AxisDirection... axisOrder) Computes the rank for every direction in the specified.ReferencingObjectFactory.createCoordinateSystemAxis(Map<String, ?> properties, String abbreviation, AxisDirection direction, Unit<?> unit) Creates a coordinate system axis from an abbreviation and a unit.protected AxisDirectionOrderedAxisCRSAuthorityFactory.replace(AxisDirection direction) Replaces the specified direction, if applicable.protected AxisDirectionTransformedAuthorityFactory.replace(AxisDirection direction) Replaces the specified direction, if applicable.Constructors in org.geotools.referencing.factory with parameters of type AxisDirectionModifierConstructorDescriptionOrderedAxisAuthorityFactory(String authority, Hints userHints, AxisDirection... axisOrder) Creates a factory which will reorder the axis of all objects created by the default authority factories.OrderedAxisAuthorityFactory(AbstractAuthorityFactory factory, Hints userHints, AxisDirection... axisOrder) Creates a factory which will reorder the axis of all objects created by the supplied factory.OrderedAxisCRSAuthorityFactory(String authority, Hints userHints, AxisDirection... axisOrder) Creates a factory which will reorder the axis of all objects created by the default authority factories.OrderedAxisCRSAuthorityFactory(AbstractAuthorityFactory factory, Hints userHints, AxisDirection... axisOrder) Creates a factory which will reorder the axis of all objects created by the supplied factory. -
Uses of AxisDirection in org.geotools.referencing.operation.matrix
Constructors in org.geotools.referencing.operation.matrix with parameters of type AxisDirectionModifierConstructorDescriptionGeneralMatrix(Bounds srcRegion, AxisDirection[] srcAxis, Bounds dstRegion, AxisDirection[] dstAxis) Constructs a transform mapping a source region to a destination region.GeneralMatrix(AxisDirection[] srcAxis, AxisDirection[] dstAxis) Constructs a transform changing axis order and/or direction.