Uses of Interface
uk.ac.rdg.resc.edal.grid.ReferenceableAxis
-
Packages that use ReferenceableAxis Package Description uk.ac.rdg.resc.edal.domain uk.ac.rdg.resc.edal.graphics.style Definitions of the style-system, as well as implementations of various style typesuk.ac.rdg.resc.edal.grid Classes for handling gridded data.uk.ac.rdg.resc.edal.grid.cdm uk.ac.rdg.resc.edal.util.cdm -
-
Uses of ReferenceableAxis in uk.ac.rdg.resc.edal.domain
Methods in uk.ac.rdg.resc.edal.domain that return ReferenceableAxis Modifier and Type Method Description ReferenceableAxis<Double>
MapDomain. getXAxis()
ReferenceableAxis<Double>
MapDomain. getYAxis()
-
Uses of ReferenceableAxis in uk.ac.rdg.resc.edal.graphics.style
Constructors in uk.ac.rdg.resc.edal.graphics.style with parameters of type ReferenceableAxis Constructor Description MappedSegmentColorScheme2D(ReferenceableAxis<Double> xAxis, SegmentColourScheme[] schemes, Color nonMappedColor)
-
Uses of ReferenceableAxis in uk.ac.rdg.resc.edal.grid
Subinterfaces of ReferenceableAxis in uk.ac.rdg.resc.edal.grid Modifier and Type Interface Description interface
RegularAxis
A one-dimensional axis of a Grid, whose coordinate values are regularly spaced.interface
TimeAxis
A time axis.interface
VerticalAxis
A vertical axis in a ReferenceableGrid.Classes in uk.ac.rdg.resc.edal.grid that implement ReferenceableAxis Modifier and Type Class Description class
AbstractIrregularAxis<T extends Comparable<? super T>>
Partial implementation of an irregular axis.class
AbstractReferenceableAxis<T extends Comparable<? super T>>
Abstract superclass forReferenceableAxis
implementations.class
DefinedBoundsAxis
Defines aReferenceableAxis
where the bounds between cells are explicitly specified.class
ReferenceableAxisImpl
Immutable implementation of aReferenceableAxis
, whose values are not necessarily regularly spaced along the axis.class
RegularAxisImpl
Immutable implementation of aRegularAxis
, whose values are regularly spaced along the axis.class
TimeAxisImpl
An implementation of aTimeAxis
class
VerticalAxisImpl
Fields in uk.ac.rdg.resc.edal.grid declared as ReferenceableAxis Modifier and Type Field Description protected ReferenceableAxis<Double>
RectilinearGridImpl. xAxis
protected ReferenceableAxis<Double>
RectilinearGridImpl. yAxis
Methods in uk.ac.rdg.resc.edal.grid that return ReferenceableAxis Modifier and Type Method Description ReferenceableAxis<Double>
RectilinearGrid. getXAxis()
Gets the x axis of the grid.ReferenceableAxis<Double>
RectilinearGridImpl. getXAxis()
ReferenceableAxis<Double>
RectilinearGrid. getYAxis()
Gets the y axis of the grid.ReferenceableAxis<Double>
RectilinearGridImpl. getYAxis()
Constructors in uk.ac.rdg.resc.edal.grid with parameters of type ReferenceableAxis Constructor Description RectilinearGridImpl(ReferenceableAxis<Double> xAxis, ReferenceableAxis<Double> yAxis, org.opengis.referencing.crs.CoordinateReferenceSystem crs)
Instantiates a new rectilinear grid from the given axes -
Uses of ReferenceableAxis in uk.ac.rdg.resc.edal.grid.cdm
Constructors in uk.ac.rdg.resc.edal.grid.cdm with parameters of type ReferenceableAxis Constructor Description CdmTransformedGrid(ucar.unidata.geoloc.ProjectionImpl proj, ReferenceableAxis<Double> xAxis, ReferenceableAxis<Double> yAxis)
Create a newCdmTransformedGrid
from a definedProjectionImpl
and a pair of axes -
Uses of ReferenceableAxis in uk.ac.rdg.resc.edal.util.cdm
Methods in uk.ac.rdg.resc.edal.util.cdm that return ReferenceableAxis Modifier and Type Method Description static ReferenceableAxis<Double>
CdmUtils. createReferenceableAxis(ucar.nc2.dataset.CoordinateAxis1D axis)
Creates aReferenceableAxis
from the givenCoordinateAxis1D
.static ReferenceableAxis<Double>
CdmUtils. createReferenceableAxis(ucar.nc2.dataset.CoordinateAxis1D axis, boolean isLongitude)
Creates aReferenceableAxis
from the givenCoordinateAxis1D
.
-