public class CoordinateSystem
extends java.lang.Object
F(i,j,k,...) -> (S1, S2, ...Sn) where i,j,k are integers, and S is the set of reals (R) or Strings.The components of F are just its coordinate axes:
F = (A1, A2, ...An) A1(i,j,k,...) -> S1 A2(i,j,k,...) -> S2 An(i,j,k,...) -> SnConcretely, a CoordinateSystem is a set of coordinate axes, and an optional set of coordinate transforms. The domain rank of F is the number of dimensions it is a function of. The range rank is the number of coordinate axes.
An important class of CoordinateSystems are georeferencing Coordinate Systems, that locate a Variable's values in space and time. A CoordinateSystem that has a Lat and Lon axis, or a GeoX and GeoY axis and a Projection CoordinateTransform will have isGeoReferencing() true. A CoordinateSystem that has a Height, Pressure, or GeoZ axis will have hasVerticalAxis() true.
Further CoordinateSystems specialization is done by "data type specific" classes such as ucar.nc2.ft2.coverage.grid.GridCoordSys.
Modifier and Type | Class and Description |
---|---|
static class |
CoordinateSystem.Builder<T extends CoordinateSystem.Builder<T>> |
Modifier and Type | Method and Description |
---|---|
static CoordinateSystem.Builder<?> |
builder()
Get Builder for this class that allows subclassing.
|
boolean |
containsAxes(java.util.List<CoordinateAxis> wantAxes)
Do we have all the axes in the list?
|
boolean |
containsAxis(java.lang.String axisName)
Do we have the named axis?
|
boolean |
containsAxisType(AxisType wantAxisType)
Do we have an axes of the given type?
|
boolean |
containsAxisTypes(java.util.List<AxisType> wantAxes)
Do we have all the axes types in the list?
|
boolean |
containsDomain(java.util.List<Dimension> wantDimensions)
Do we have all the dimensions in the list?
|
static int |
countDomain(Variable[] axes) |
boolean |
equals(java.lang.Object oo)
Instances which have same name, axes and transforms are equal.
|
CoordinateAxis |
findAxis(AxisType type)
Find the CoordinateAxis that has the given AxisType.
|
CoordinateAxis |
getAzimuthAxis()
get the CoordinateAxis with AxisType.RadialAzimuth, or null if none.
|
com.google.common.collect.ImmutableList<CoordinateAxis> |
getCoordinateAxes()
Get the List of CoordinateAxis objects
|
com.google.common.collect.ImmutableList<CoordinateTransform> |
getCoordinateTransforms()
Get the List of CoordinateTransform objects
|
com.google.common.collect.ImmutableCollection<Dimension> |
getDomain()
get the Collection of Dimensions that constitute the domain.
|
CoordinateAxis |
getElevationAxis()
get the CoordinateAxis with AxisType.RadialElevation, or null if none.
|
CoordinateAxis |
getEnsembleAxis()
get the CoordinateAxis with AxisType.Ensemble, or null if none.
|
CoordinateAxis |
getHeightAxis()
get the CoordinateAxis with AxisType.Height, or null if none.
|
CoordinateAxis |
getLatAxis()
get the CoordinateAxis with AxisType.Lat, or null if none.
|
CoordinateAxis |
getLonAxis()
get the CoordinateAxis with AxisType.Lon, or null if none.
|
java.lang.String |
getName()
get the name of the Coordinate System
|
NetcdfDataset |
getNetcdfDataset()
Get the underlying NetcdfDataset
|
CoordinateAxis |
getPressureAxis()
get the CoordinateAxis with AxisType.Pressure, or null if none.
|
ucar.unidata.geoloc.ProjectionImpl |
getProjection()
Get the Projection for this coordinate system.
|
ProjectionCT |
getProjectionCT()
Find the first ProjectionCT from the list of CoordinateTransforms.
|
CoordinateAxis |
getRadialAxis()
get the CoordinateAxis with AxisType.RadialDistance, or null if none.
|
int |
getRankDomain()
Get the domain rank of the coordinate system = number of dimensions it is a function of.
|
int |
getRankRange()
Get the range rank of the coordinate system = number of coordinate axes.
|
CoordinateAxis |
getTaxis()
get the CoordinateAxis with AxisType.Time, or null if none.
|
CoordinateAxis |
getXaxis()
get the CoordinateAxis with AxisType.GeoX, or null if none.
|
CoordinateAxis |
getYaxis()
get the CoordinateAxis with AxisType.GeoY, or null if none.
|
CoordinateAxis |
getZaxis()
get the CoordinateAxis with AxisType.GeoZ, or null if none.
|
int |
hashCode()
Override Object.hashCode() to implement equals.
|
boolean |
hasTimeAxis()
true if has Time axis
|
boolean |
hasVerticalAxis()
true if has Height, Pressure, or GeoZ axis
|
boolean |
isComplete(Variable v)
Check if this Coordinate System is complete for v, ie if all its dimensions are also used by v.
|
boolean |
isCoordinateSystemFor(Variable v)
Check if this Coordinate System can be used for the given variable.
|
boolean |
isGeoReferencing()
true if isGeoXY or isLatLon
|
boolean |
isGeoXY()
true if it has X and Y CoordinateAxis, and a CoordTransform Projection
|
boolean |
isImplicit()
Implicit Coordinate System are constructed based on which Coordinate Variables exist for the Dimensions of the
Variable.
|
boolean |
isLatLon()
true if it has Lat and Lon CoordinateAxis
|
boolean |
isProductSet()
true if all axes are CoordinateAxis1D
|
boolean |
isRadial()
true if it has radial distance and azimuth CoordinateAxis
|
boolean |
isRegular()
true if all axes are CoordinateAxis1D and are regular
|
static boolean |
isSubset(java.util.Collection<Dimension> subset,
java.util.Collection<Dimension> set)
Test if all the Dimensions in subset are in set
|
static boolean |
isSubset(java.util.Set<java.lang.String> subset,
java.util.Set<java.lang.String> set) |
static java.util.Set<Dimension> |
makeDomain(java.lang.Iterable<? extends Variable> axes) |
static java.lang.String |
makeName(java.util.List<CoordinateAxis> axes)
Create standard name from list of axes.
|
CoordinateSystem.Builder<?> |
toBuilder() |
java.lang.String |
toString() |
public static CoordinateSystem.Builder<?> builder()
public boolean containsAxes(java.util.List<CoordinateAxis> wantAxes)
wantAxes
- List of CoordinateAxispublic boolean containsAxis(java.lang.String axisName)
axisName
- (full unescaped) name of axispublic boolean containsAxisType(AxisType wantAxisType)
wantAxisType
- want this AxisTypepublic boolean containsAxisTypes(java.util.List<AxisType> wantAxes)
wantAxes
- List of AxisTypepublic boolean containsDomain(java.util.List<Dimension> wantDimensions)
wantDimensions
- List of Dimensionspublic static int countDomain(Variable[] axes)
public boolean equals(java.lang.Object oo)
equals
in class java.lang.Object
public CoordinateAxis findAxis(AxisType type)
type
- look for this axisTypepublic CoordinateAxis getAzimuthAxis()
public com.google.common.collect.ImmutableList<CoordinateAxis> getCoordinateAxes()
public com.google.common.collect.ImmutableList<CoordinateTransform> getCoordinateTransforms()
public com.google.common.collect.ImmutableCollection<Dimension> getDomain()
public CoordinateAxis getElevationAxis()
public CoordinateAxis getEnsembleAxis()
public CoordinateAxis getHeightAxis()
public CoordinateAxis getLatAxis()
public CoordinateAxis getLonAxis()
public java.lang.String getName()
public NetcdfDataset getNetcdfDataset()
public CoordinateAxis getPressureAxis()
public ucar.unidata.geoloc.ProjectionImpl getProjection()
public ProjectionCT getProjectionCT()
public CoordinateAxis getRadialAxis()
public int getRankDomain()
public int getRankRange()
public CoordinateAxis getTaxis()
public CoordinateAxis getXaxis()
public CoordinateAxis getYaxis()
public CoordinateAxis getZaxis()
public int hashCode()
hashCode
in class java.lang.Object
public boolean hasTimeAxis()
public boolean hasVerticalAxis()
public boolean isComplete(Variable v)
v
- check for this variablepublic boolean isCoordinateSystemFor(Variable v)
v
- check for this variablepublic boolean isGeoReferencing()
public boolean isGeoXY()
public boolean isImplicit()
public boolean isLatLon()
public boolean isProductSet()
public boolean isRadial()
public boolean isRegular()
public static boolean isSubset(java.util.Collection<Dimension> subset, java.util.Collection<Dimension> set)
subset
- is this a subsetset
- of this?public static boolean isSubset(java.util.Set<java.lang.String> subset, java.util.Set<java.lang.String> set)
public static java.util.Set<Dimension> makeDomain(java.lang.Iterable<? extends Variable> axes)
public static java.lang.String makeName(java.util.List<CoordinateAxis> axes)
axes
- list of CoordinateAxispublic CoordinateSystem.Builder<?> toBuilder()
public java.lang.String toString()
toString
in class java.lang.Object