|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NetcdfDataset | |
|---|---|
| thredds.catalog | Reads and writes THREDDS Dataset Inventory Catalog XML documents. |
| ucar.nc2.dataset | An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. |
| ucar.nc2.dataset.conv | Parses the information in netCDF datasets using Conventions, and extracts information about coordinate systems. |
| ucar.nc2.dataset.transform | Pluggable framework for handling Coordinate Transforms, both Projections and Vertical. |
| ucar.nc2.dt | Scientific data types package. |
| ucar.nc2.dt.fmrc | Support classes for Forecast Model Run Collections. |
| ucar.nc2.dt.grid | Scientific data type "Grid", uses cartesian coordinate system. |
| ucar.nc2.dt.point | Scientific data type "Point", collections of point observation data. |
| ucar.nc2.dt.radial | Scientific data type "Radial", uses spherical coordinate system. |
| ucar.nc2.dt.trajectory | Scientific data type "Trajectory". |
| ucar.nc2.ft | Scientific feature types package |
| ucar.nc2.ft.grid | |
| ucar.nc2.ft.point | package ucar.nc2.ft.point : Implementation of Point Feature Types |
| ucar.nc2.ft.point.remote | |
| ucar.nc2.ft.point.standard | package ucar.nc2.ft.point.standard : Standard Implementation of Point Feature Types |
| ucar.nc2.ft.point.standard.plug | package ucar.nc2.ft.point.plug : Pluggable AAnalysers of Point Feature Type datasets |
| ucar.nc2.ft.radial | |
| ucar.nc2.iosp.adde | IOSP for ADDE servers |
| ucar.nc2.iosp.mcidas | |
| ucar.nc2.ncml | Netcdf Markup Language (NcML) Implementation classes see NcML home page |
| ucar.nc2.thredds | Connects NetCDF-Java to THREDDS Catalogs and Datasets. |
| Uses of NetcdfDataset in thredds.catalog |
|---|
| Methods in thredds.catalog that return NetcdfDataset | |
|---|---|
NetcdfDataset |
InvDatasetFmrc.getDataset(java.lang.String path)
Get the dataset named by the path |
| Uses of NetcdfDataset in ucar.nc2.dataset |
|---|
| Fields in ucar.nc2.dataset declared as NetcdfDataset | |
|---|---|
NetcdfDataset |
CoordSysBuilder.VarProcess.ds
|
protected NetcdfDataset |
CoordinateSystem.ds
|
protected NetcdfDataset |
CoordinateAxis.ncd
|
| Methods in ucar.nc2.dataset that return NetcdfDataset | |
|---|---|
static NetcdfDataset |
NetcdfDataset.acquireDataset(FileFactory fac,
java.lang.String location,
java.util.Set<NetcdfDataset.Enhance> enhanceMode,
int buffer_size,
CancelTask cancelTask,
java.lang.Object iospMessage)
Same as openDataset, but file is acquired through the File Cache. |
static NetcdfDataset |
NetcdfDataset.acquireDataset(java.lang.String location,
CancelTask cancelTask)
Same as openDataset, but file is acquired through the File Cache, with defaultEnhanceMode. |
NetcdfDataset |
CoordinateSystem.getNetcdfDataset()
Get the underlying NetcdfDataset |
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables. |
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location,
boolean enhance,
CancelTask cancelTask)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables. |
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location,
boolean enhance,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables. |
static NetcdfDataset |
NetcdfDataset.openDataset(java.lang.String location,
java.util.Set<NetcdfDataset.Enhance> enhanceMode,
int buffer_size,
CancelTask cancelTask,
java.lang.Object spiObject)
Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables. |
static NetcdfDataset |
NetcdfDataset.wrap(NetcdfFile ncfile,
java.util.Set<NetcdfDataset.Enhance> enhanceMode)
Make NetcdfFile into NetcdfDataset with given enhance mode |
| Methods in ucar.nc2.dataset with parameters of type NetcdfDataset | |
|---|---|
protected void |
CoordSysBuilder.assignCoordinateSystemsExplicit(NetcdfDataset ncDataset)
Assign explicit CoordinateSystem objects to variables. |
protected void |
CoordSysBuilder.assignCoordinateTransforms(NetcdfDataset ncDataset)
Assign CoordinateTransform objects to Coordinate Systems. |
void |
CoordSysBuilderIF.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask)
Make changes to the dataset, like adding new variables, attribuites, etc. |
void |
CoordSysBuilder.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask)
This is where subclasses make changes to the dataset, like adding new variables, attribuites, etc. |
void |
CoordSysBuilderIF.buildCoordinateSystems(NetcdfDataset ncDataset)
Create the coordinate system objects: coordinate axes, coordinate systems, coordinate transforms. |
void |
CoordSysBuilder.buildCoordinateSystems(NetcdfDataset ncDataset)
Heres where the work is to identify coordinate axes and coordinate systems. |
static void |
NetcdfDataset.debugDump(java.io.PrintStream out,
NetcdfDataset ncd)
Debugging |
static CoordSysBuilderIF |
CoordSysBuilder.factory(NetcdfDataset ds,
CancelTask cancelTask)
Get a CoordSysBuilder whose job it is to add Coordinate information to a NetcdfDataset. |
static CoordinateAxis |
CoordinateAxis.factory(NetcdfDataset ncd,
VariableDS vds)
Create a coordinate axis from an existing Variable. |
static CoordinateAxis1DTime |
CoordinateAxis1DTime.factory(NetcdfDataset ncd,
VariableDS org,
java.util.Formatter errMessages)
|
protected void |
CoordSysBuilder.findCoordinateAxes(NetcdfDataset ncDataset)
Identify coordinate axes, set VarProcess.isCoordinateAxis = true. |
protected void |
CoordSysBuilder.findCoordinateSystems(NetcdfDataset ncDataset)
Identify coordinate systems, set VarProcess.isCoordinateSystem = true. |
protected void |
CoordSysBuilder.findCoordinateTransforms(NetcdfDataset ncDataset)
Identify coordinate transforms, set VarProcess.isCoordinateTransform = true. |
protected AxisType |
CoordSysBuilder.getAxisType(NetcdfDataset ncDataset,
VariableEnhanced v)
Identify what kind of AxisType the named variable is. |
protected void |
CoordSysBuilder.makeCoordinateAxes(NetcdfDataset ncDataset)
Take previously identified Coordinate Axis and Coordinate Variables and make them into a CoordinateAxis. |
protected void |
CoordSysBuilder.makeCoordinateSystems(NetcdfDataset ncDataset)
Take all previously identified Coordinate Systems and create a CoordinateSystem object. |
protected void |
CoordSysBuilder.makeCoordinateSystemsImplicit(NetcdfDataset ncDataset)
Make implicit CoordinateSystem objects for variables that dont already have one, by using the variables' list of coordinate axes, and any coordinateVariables for it. |
protected void |
CoordSysBuilder.makeCoordinateSystemsMaximal(NetcdfDataset ncDataset)
If a variable still doesnt have a coordinate system, use hueristics to try to find one that was probably forgotten. |
CoordinateTransform |
CoordTransBuilderIF.makeCoordinateTransform(NetcdfDataset ds,
Variable ctv)
Make a CoordinateTransform from a Coordinate Transform Variable. |
protected CoordinateTransform |
CoordSysBuilder.makeCoordinateTransform(NetcdfDataset ds,
Variable ctv)
|
static CoordinateTransform |
CoordTransBuilder.makeCoordinateTransform(NetcdfDataset ds,
Variable ctv,
java.util.Formatter parseInfo,
java.util.Formatter errInfo)
Make a CoordinateTransform object from the paramaters in a Coordinate Transform Variable, using an intrinsic or registered CoordTransBuilder. |
protected void |
CoordSysBuilder.makeCoordinateTransforms(NetcdfDataset ncDataset)
Take all previously identified Coordinate Transforms and create a CoordinateTransform object by calling CoordTransBuilder.makeCoordinateTransform(). |
protected VariableDS |
CoordSysBuilder.makeCoordinateTransformVariable(NetcdfDataset ds,
CoordinateTransform ct)
|
static VariableDS |
CoordTransBuilder.makeDummyTransformVariable(NetcdfDataset ds,
CoordinateTransform ct)
Create a "dummy" Coordinate Transform Variable based on the given CoordinateTransform. |
static VariableDS |
CoordSysBuilder.makeDummyTransformVariable(NetcdfDataset ds,
CoordinateTransform ct)
Deprecated. use CoordTransBuilder.makeDummyTransformVariable |
VerticalTransform |
CoordTransBuilderIF.makeMathTransform(NetcdfDataset ds,
Dimension timeDim,
VerticalCT vCT)
Make a VerticalTransform. |
VerticalTransform |
VerticalCT.makeVerticalTransform(NetcdfDataset ds,
Dimension timeDim)
Use the builder to make the Vertical Transform function |
static void |
DatasetConstructor.transferDataset(NetcdfFile src,
NetcdfDataset target,
ReplaceVariableCheck replaceCheck)
Copy contents of "src" to "target". |
| Constructors in ucar.nc2.dataset with parameters of type NetcdfDataset | |
|---|---|
CoordinateAxis(NetcdfDataset ds,
Group group,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when theres no underlying variable. |
|
CoordinateAxis(NetcdfDataset ncd,
VariableDS vds)
Create a coordinate axis from an existing Variable. |
|
CoordinateAxis1D(NetcdfDataset ds,
Group group,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when theres no underlying variable. |
|
CoordinateAxis1D(NetcdfDataset ncd,
VariableDS vds)
Create a 1D coordinate axis from an existing Variable |
|
CoordinateAxis2D(NetcdfDataset ncd,
VariableDS vds)
Create a 2D coordinate axis from an existing VariableDS |
|
CoordinateSystem(NetcdfDataset ds,
java.util.Collection<CoordinateAxis> axes,
java.util.Collection<CoordinateTransform> coordTrans)
Constructor. |
|
CoordSysBuilder.VarProcess(NetcdfDataset ds)
|
|
StructureDS(NetcdfDataset ds,
Group group,
Structure parentStructure,
java.lang.String shortName,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when theres no underlying variable. |
|
VariableDS(NetcdfDataset ds,
Group group,
Structure parentStructure,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when there's no underlying variable. |
|
| Uses of NetcdfDataset in ucar.nc2.dataset.conv |
|---|
| Methods in ucar.nc2.dataset.conv with parameters of type NetcdfDataset | |
|---|---|
protected void |
WRFConvention.assignCoordinateTransforms(NetcdfDataset ncDataset)
Assign CoordinateTransform objects to Coordinate Systems. |
protected void |
ADASConvention.assignCoordinateTransforms(NetcdfDataset ncDataset)
Assign CoordinateTransform objects to Coordinate Systems. |
void |
ZebraConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
WRFConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
UnidataObsConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
create a NetcdfDataset out of this NetcdfFile, adding coordinates etc. |
void |
NUWGConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
NsslRadarMosaicConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
Nimbus.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
ModisSatellite.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
MADISStation.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
M3IOVGGridConvention.augmentDataset(NetcdfDataset ncd,
CancelTask cancelTask)
|
void |
M3IOConvention.augmentDataset(NetcdfDataset ncd,
CancelTask cancelTask)
|
void |
IFPSConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
GIEFConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
GDVConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
FslWindProfiler.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
EpicInsitu.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
DefaultConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
CSMConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
CF1Convention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
BUFRConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
create a NetcdfDataset out of this NetcdfFile, adding coordinates etc. |
void |
AWIPSsatConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
AWIPSConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
AvhrrConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
|
void |
ATDRadarConvention.augmentDataset(NetcdfDataset ncDataset,
CancelTask cancelTask)
|
void |
ADASConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
create a NetcdfDataset out of this NetcdfFile, adding coordinates etc. |
protected void |
M3IOVGGridConvention.constructCoordAxes(NetcdfDataset ds)
|
protected void |
M3IOConvention.constructCoordAxes(NetcdfDataset ds)
|
protected void |
GDVConvention.findCoordinateAxes(NetcdfDataset ds)
look for aliases. |
protected void |
DefaultConvention.findCoordinateAxes(NetcdfDataset ds)
|
protected void |
CSMConvention.findCoordinateAxes(NetcdfDataset ds)
The attribute "coordinates" is an alias for _CoordinateAxes. |
protected AxisType |
WRFConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
NUWGConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
M3IOVGGridConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
M3IOConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
GDVConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
DefaultConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
CSMConvention.getAxisType(NetcdfDataset ncd,
VariableEnhanced v)
|
protected AxisType |
COARDSConvention.getAxisType(NetcdfDataset ncDataset,
VariableEnhanced v)
|
protected AxisType |
CF1Convention.getAxisType(NetcdfDataset ncDataset,
VariableEnhanced v)
Augment CSM axis type identification with "projection_x_coordinate", "projection_y_coordinate" and the various dimensionless vertical coordinates |
protected AxisType |
AWIPSsatConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
AWIPSConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected AxisType |
ADASConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
|
protected java.lang.String |
IFPSConvention.getZisPositive(NetcdfDataset ds,
CoordinateAxis v)
|
protected CoordinateTransform |
CSMConvention.makeCoordinateTransform(NetcdfDataset ds,
Variable ctv)
|
protected void |
WRFConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
NUWGConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
M3IOConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
GDVConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
DefaultConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
AWIPSsatConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
AWIPSConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
protected void |
ADASConvention.makeCoordinateTransforms(NetcdfDataset ds)
|
| Uses of NetcdfDataset in ucar.nc2.dataset.transform |
|---|
| Uses of NetcdfDataset in ucar.nc2.dt |
|---|
| Fields in ucar.nc2.dt declared as NetcdfDataset | |
|---|---|
protected NetcdfDataset |
TypedDatasetImpl.ncfile
|
| Methods in ucar.nc2.dt with parameters of type NetcdfDataset | |
|---|---|
boolean |
TypedDatasetFactoryIF.isMine(NetcdfDataset ncd)
Determine if this dataset belongs to you |
static TypedDataset |
TypedDatasetFactory.open(FeatureType datatype,
NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
Open a dataset as a TypedDataset. |
TypedDataset |
TypedDatasetFactoryIF.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
Open a NetcdfDataset as a TypedDataset. |
| Constructors in ucar.nc2.dt with parameters of type NetcdfDataset | |
|---|---|
TypedDatasetImpl(NetcdfDataset ncfile)
Construtor when theres a NetcdfFile underneath |
|
| Uses of NetcdfDataset in ucar.nc2.dt.fmrc |
|---|
| Methods in ucar.nc2.dt.fmrc that return NetcdfDataset | |
|---|---|
NetcdfDataset |
ForecastModelRunCollection.getBestTimeSeries()
Get a NetcdfDataset that has the "best" time series, across model runs. |
NetcdfDataset |
FmrcImpl.getBestTimeSeries()
|
NetcdfDataset |
ForecastModelRunCollection.getFmrcDataset()
Get a NetcdfDataset that is the underlying datasets with the "2d time" |
NetcdfDataset |
FmrcImpl.getFmrcDataset()
|
NetcdfDataset |
ForecastModelRunCollection.getForecastOffsetDataset(double hours)
Get a NetcdfDataset that has all the data for a fixed forecast offset, across model runs. |
NetcdfDataset |
FmrcImpl.getForecastOffsetDataset(double hours)
|
NetcdfDataset |
ForecastModelRunCollection.getForecastTimeDataset(java.util.Date forecastTime)
Get a NetcdfDataset that has all the data for a fixed forecast time, across model runs. |
NetcdfDataset |
FmrcImpl.getForecastTimeDataset(java.util.Date forecastTime)
|
NetcdfDataset |
ForecastModelRunCollection.getRunTimeDataset(java.util.Date runTime)
Get a NetcdfDataset that has all the data for a model run. |
NetcdfDataset |
FmrcImpl.getRunTimeDataset(java.util.Date wantRuntime)
|
| Constructors in ucar.nc2.dt.fmrc with parameters of type NetcdfDataset | |
|---|---|
FmrcImpl(NetcdfDataset ncd)
|
|
| Uses of NetcdfDataset in ucar.nc2.dt.grid |
|---|
| Methods in ucar.nc2.dt.grid that return NetcdfDataset | |
|---|---|
NetcdfDataset |
GridDataset.getNetcdfDataset()
|
| Constructors in ucar.nc2.dt.grid with parameters of type NetcdfDataset | |
|---|---|
GridDataset(NetcdfDataset ds)
Create a GridDataset from a NetcdfDataset. |
|
GridDataset(NetcdfDataset ds,
java.util.Formatter parseInfo)
Create a GridDataset from a NetcdfDataset. |
|
| Uses of NetcdfDataset in ucar.nc2.dt.point |
|---|
| Fields in ucar.nc2.dt.point declared as NetcdfDataset | |
|---|---|
protected NetcdfDataset |
RecordDatasetHelper.ncfile
|
| Methods in ucar.nc2.dt.point with parameters of type NetcdfDataset | |
|---|---|
static PointObsDataset |
DapperDataset.factory(NetcdfDataset ds)
|
static LatLonRect |
UnidataObsDatasetHelper.getBoundingBox(NetcdfDataset ds)
|
static Variable |
UnidataObsDatasetHelper.getCoordinate(NetcdfDataset ds,
AxisType a)
Tries to find the coordinate variable of the specified type. |
static java.util.Date |
UnidataObsDatasetHelper.getEndDate(NetcdfDataset ds)
|
static java.util.Date |
UnidataObsDatasetHelper.getStartDate(NetcdfDataset ds)
|
boolean |
UnidataStationObsMultidimDataset.isMine(NetcdfDataset ds)
|
boolean |
UnidataStationObsDataset2.isMine(NetcdfDataset ds)
Deprecated. |
boolean |
UnidataStationObsDataset.isMine(NetcdfDataset ds)
|
boolean |
UnidataPointObsDataset.isMine(NetcdfDataset ds)
|
boolean |
SequenceObsDataset.isMine(NetcdfDataset ds)
|
boolean |
OldUnidataStationObsDataset.isMine(NetcdfDataset ds)
|
boolean |
OldUnidataPointObsDataset.isMine(NetcdfDataset ds)
|
boolean |
NdbcDataset.isMine(NetcdfDataset ds)
|
boolean |
MadisStationObsDataset.isMine(NetcdfDataset ds)
|
boolean |
MadisPointObsDataset.isMine(NetcdfDataset ds)
|
boolean |
DapperDataset.isMine(NetcdfDataset ds)
|
boolean |
CFstationObsDataset.isMine(NetcdfDataset ds)
|
TypedDataset |
UnidataStationObsMultidimDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
UnidataStationObsDataset2.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
Deprecated. |
TypedDataset |
UnidataStationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
UnidataPointObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
SequenceObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
OldUnidataStationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
OldUnidataPointObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
NdbcDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
MadisStationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
MadisPointObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
DapperDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
CFstationObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
| Constructors in ucar.nc2.dt.point with parameters of type NetcdfDataset | |
|---|---|
CFstationObsDataset(NetcdfDataset ds)
|
|
DapperDataset(NetcdfDataset ds)
|
|
MadisPointObsDataset(NetcdfDataset ds)
|
|
MadisStationObsDataset(NetcdfDataset ds)
|
|
NdbcDataset(NetcdfDataset ds)
|
|
OldUnidataPointObsDataset(NetcdfDataset ds)
|
|
OldUnidataStationObsDataset(NetcdfDataset ds)
|
|
OldUnidataStationObsDataset(NetcdfDataset ds,
java.lang.String ncmlURL)
|
|
PointObsDatasetImpl(NetcdfDataset ncfile)
|
|
RecordDatasetHelper(NetcdfDataset ncfile,
java.lang.String obsTimeVName,
java.lang.String nomTimeVName,
java.util.List typedDataVariables)
Constructor. |
|
RecordDatasetHelper(NetcdfDataset ncfile,
java.lang.String obsTimeVName,
java.lang.String nomTimeVName,
java.util.List typedDataVariables,
java.lang.StringBuffer errBuffer)
|
|
RecordDatasetHelper(NetcdfDataset ncfile,
java.lang.String obsTimeVName,
java.lang.String nomTimeVName,
java.util.List typedDataVariables,
java.lang.String recDimName,
java.lang.StringBuffer errBuffer)
Constructor. |
|
SequenceHelper(NetcdfDataset ncfile,
boolean isProfile,
StructureDS sequenceOuter,
StructureDS sequenceInner,
Variable latVar,
Variable lonVar,
Variable altVar,
Variable timeVar,
java.util.List typedDataVariables,
java.lang.StringBuffer errBuffer)
Constructor. |
|
SequenceObsDataset(NetcdfDataset ds,
CancelTask task)
|
|
StationObsDatasetImpl(NetcdfDataset ncfile)
|
|
UnidataPointObsDataset(NetcdfDataset ds)
|
|
UnidataStationObsDataset(NetcdfDataset ds)
|
|
UnidataStationObsDataset2(NetcdfDataset ds)
Deprecated. |
|
UnidataStationObsMultidimDataset(NetcdfDataset ds)
|
|
| Uses of NetcdfDataset in ucar.nc2.dt.radial |
|---|
| Constructors in ucar.nc2.dt.radial with parameters of type NetcdfDataset | |
|---|---|
Dorade2Dataset(NetcdfDataset ds)
Constructor. |
|
LevelII2Dataset(NetcdfDataset ds)
Constructor. |
|
Netcdf2Dataset(NetcdfDataset ds)
Constructor. |
|
Nids2Dataset(NetcdfDataset ds)
Constructor. |
|
RadialDatasetSweepAdapter(NetcdfDataset ds)
|
|
UF2Dataset(NetcdfDataset ds)
Constructor. |
|
| Uses of NetcdfDataset in ucar.nc2.dt.trajectory |
|---|
| Methods in ucar.nc2.dt.trajectory with parameters of type NetcdfDataset | |
|---|---|
boolean |
ZebraClassTrajectoryObsDataset.isMine(NetcdfDataset ds)
|
boolean |
UnidataTrajectoryObsDataset2.isMine(NetcdfDataset ds)
|
boolean |
UnidataTrajectoryObsDataset.isMine(NetcdfDataset ds)
|
boolean |
SimpleTrajectoryObsDataset.isMine(NetcdfDataset ds)
|
boolean |
RafTrajectoryObsDataset.isMine(NetcdfDataset ds)
|
boolean |
Float10TrajectoryObsDataset.isMine(NetcdfDataset ds)
|
boolean |
ARMTrajectoryObsDataset.isMine(NetcdfDataset ds)
|
static boolean |
ZebraClassTrajectoryObsDataset.isValidFile(NetcdfDataset ncd)
|
static boolean |
SimpleTrajectoryObsDataset.isValidFile(NetcdfDataset ncd)
|
static boolean |
RafTrajectoryObsDataset.isValidFile(NetcdfDataset ds)
|
static boolean |
Float10TrajectoryObsDataset.isValidFile(NetcdfDataset ds)
|
static boolean |
ARMTrajectoryObsDataset.isValidFile(NetcdfDataset ncd)
|
TypedDataset |
ZebraClassTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
UnidataTrajectoryObsDataset2.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
UnidataTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
SimpleTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
RafTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
Float10TrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
TypedDataset |
ARMTrajectoryObsDataset.open(NetcdfDataset ncd,
CancelTask task,
java.lang.StringBuilder errlog)
|
| Constructors in ucar.nc2.dt.trajectory with parameters of type NetcdfDataset | |
|---|---|
ARMTrajectoryObsDataset(NetcdfDataset ncd)
|
|
Float10TrajectoryObsDataset(NetcdfDataset ncd)
|
|
MultiTrajectoryObsDataset(NetcdfDataset ncfile)
|
|
RafTrajectoryObsDataset(NetcdfDataset ncf)
|
|
SimpleTrajectoryObsDataset(NetcdfDataset ncd)
|
|
SingleTrajectoryObsDataset(NetcdfDataset ncfile)
|
|
UnidataTrajectoryObsDataset(NetcdfDataset ncd)
|
|
UnidataTrajectoryObsDataset2(NetcdfDataset ncd)
|
|
ZebraClassTrajectoryObsDataset(NetcdfDataset ncd)
|
|
| Uses of NetcdfDataset in ucar.nc2.ft |
|---|
| Fields in ucar.nc2.ft declared as NetcdfDataset | |
|---|---|
protected NetcdfDataset |
FeatureDatasetImpl.ncfile
|
| Methods in ucar.nc2.ft with parameters of type NetcdfDataset | |
|---|---|
static FeatureType |
FeatureDatasetFactoryManager.findFeatureType(NetcdfDataset ncd)
Try to determine the feature type of the dataset, by looking at its metadata. |
java.lang.Object |
FeatureDatasetFactory.isMine(FeatureType wantFeatureType,
NetcdfDataset ncd,
java.util.Formatter errlog)
Determine if the factory can open this dataset as an instance of the given feature type |
FeatureDataset |
FeatureDatasetFactory.open(FeatureType ftype,
NetcdfDataset ncd,
java.lang.Object analysis,
CancelTask task,
java.util.Formatter errlog)
Open a NetcdfDataset as a FeatureDataset. |
static FeatureDataset |
FeatureDatasetFactoryManager.wrap(FeatureType wantFeatureType,
NetcdfDataset ncd,
CancelTask task,
java.util.Formatter errlog)
Wrap a NetcdfDataset as a FeatureDataset. |
| Constructors in ucar.nc2.ft with parameters of type NetcdfDataset | |
|---|---|
FeatureDatasetImpl(NetcdfDataset ncfile)
Constructor when theres a NetcdfFile underneath |
|
| Uses of NetcdfDataset in ucar.nc2.ft.grid |
|---|
| Methods in ucar.nc2.ft.grid with parameters of type NetcdfDataset | |
|---|---|
java.lang.Object |
GridDatasetStandardFactory.isMine(FeatureType wantFeatureType,
NetcdfDataset ncd,
java.util.Formatter errlog)
|
FeatureDataset |
GridDatasetStandardFactory.open(FeatureType ftype,
NetcdfDataset ncd,
java.lang.Object analysis,
CancelTask task,
java.util.Formatter errlog)
|
| Uses of NetcdfDataset in ucar.nc2.ft.point |
|---|
| Fields in ucar.nc2.ft.point declared as NetcdfDataset | |
|---|---|
protected NetcdfDataset |
RecordDatasetHelper.ncfile
|
| Constructors in ucar.nc2.ft.point with parameters of type NetcdfDataset | |
|---|---|
PointDatasetImpl(NetcdfDataset ds,
FeatureType featureType)
|
|
RecordDatasetHelper(NetcdfDataset ncfile,
java.lang.String obsTimeVName,
java.lang.String nomTimeVName,
java.util.List<VariableSimpleIF> typedDataVariables,
java.lang.String recDimName,
java.util.Formatter errBuffer)
Constructor. |
|
| Uses of NetcdfDataset in ucar.nc2.ft.point.remote |
|---|
| Constructors in ucar.nc2.ft.point.remote with parameters of type NetcdfDataset | |
|---|---|
PointDatasetRemote(FeatureType wantFeatureType,
NetcdfDataset ncd,
NcStreamRemote ncremote)
|
|
| Uses of NetcdfDataset in ucar.nc2.ft.point.standard |
|---|
| Fields in ucar.nc2.ft.point.standard declared as NetcdfDataset | |
|---|---|
protected NetcdfDataset |
TableAnalyzer.ds
|
| Methods in ucar.nc2.ft.point.standard that return NetcdfDataset | |
|---|---|
NetcdfDataset |
TableAnalyzer.getNetcdfDataset()
|
| Methods in ucar.nc2.ft.point.standard with parameters of type NetcdfDataset | |
|---|---|
static Table |
Table.factory(NetcdfDataset ds,
TableConfig config)
|
static TableAnalyzer |
TableAnalyzer.factory(TableConfigurer tc,
FeatureType wantFeatureType,
NetcdfDataset ds)
Create a TableAnalyser for this dataset with the given TableConfigurer |
static CoordinateAxis |
CoordSysEvaluator.findCoordByType(NetcdfDataset ds,
AxisType atype)
Look for Axis by Type. |
static java.lang.String |
CoordSysEvaluator.findCoordNameByType(NetcdfDataset ds,
AxisType atype)
Look for Axis by Type. |
static void |
CoordSysEvaluator.findCoords(TableConfig nt,
NetcdfDataset ds)
Look for Axis by Type, assign to TableConfig if found. |
static Dimension |
CoordSysEvaluator.findDimensionByType(NetcdfDataset ds,
AxisType atype)
Look for Axis by Type. |
TableConfig |
TableConfigurer.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
Create a TableConfig for this dataset. |
static Dimension |
Evaluator.getDimension(NetcdfDataset ds,
java.lang.String key,
java.util.Formatter errlog)
|
static FeatureType |
Evaluator.getFeatureType(NetcdfDataset ds,
java.lang.String key,
java.util.Formatter errlog)
Turn the key into a String and return the corresponding featureType, if any. |
static java.lang.String |
Evaluator.getLiteral(NetcdfDataset ds,
java.lang.String key,
java.util.Formatter errlog)
Translate key to value |
static Structure |
Evaluator.getStructureWithDimensions(NetcdfDataset ds,
Dimension dim0,
Dimension dim1)
|
static TableConfigurer |
TableAnalyzer.getTableConfigurer(FeatureType wantFeatureType,
NetcdfDataset ds)
Find a TableConfigurer for this dataset, if there is one. |
static java.lang.String |
Evaluator.getVariableName(NetcdfDataset ds,
java.lang.String key,
java.util.Formatter errlog)
|
static java.lang.String |
Evaluator.getVariableWithAttribute(NetcdfDataset ds,
java.lang.String attName,
java.lang.String attValue)
|
static boolean |
Evaluator.hasRecordStructure(NetcdfDataset ds)
|
boolean |
TableConfigurer.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
Determine if this is a dataset that can be opened as a point obs dataset. |
java.lang.Object |
PointDatasetStandardFactory.isMine(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
Check if this is a POINT datatype. |
FeatureDataset |
PointDatasetStandardFactory.open(FeatureType wantFeatureType,
NetcdfDataset ncd,
java.lang.Object analyser,
CancelTask task,
java.util.Formatter errlog)
|
| Constructors in ucar.nc2.ft.point.standard with parameters of type NetcdfDataset | |
|---|---|
Table(NetcdfDataset ds,
TableConfig config)
|
|
TableAnalyzer(NetcdfDataset ds,
TableConfigurer tc)
|
|
| Uses of NetcdfDataset in ucar.nc2.ft.point.standard.plug |
|---|
| Methods in ucar.nc2.ft.point.standard.plug with parameters of type NetcdfDataset | |
|---|---|
static LatLonRect |
UnidataPointDatasetHelper.getBoundingBox(NetcdfDataset ds)
|
TableConfig |
UnidataPointObs.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
UnidataPointFeature.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
Deprecated. |
TableConfig |
Ndbc.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
Madis.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
Iridl.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
GempakCdm.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
FslWindProfiler.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
Cosmic.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
CFpointObs.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
TableConfig |
BufrCdm.getConfig(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
static Variable |
UnidataPointDatasetHelper.getCoordinate(NetcdfDataset ds,
AxisType a)
Tries to find the coordinate variable of the specified type. |
static java.lang.String |
UnidataPointDatasetHelper.getCoordinateName(NetcdfDataset ds,
AxisType a)
Tries to find the coordinate variable of the specified type. |
static java.lang.String |
UnidataPointDatasetHelper.getCoordinateName(NetcdfDataset ds,
AxisType a,
Dimension dim)
Tries to find the coordinate variable of the specified type, which has the specified dimension as its firsst dimension |
static java.util.Date |
UnidataPointDatasetHelper.getEndDate(NetcdfDataset ds,
DateUnit timeUnit)
|
protected TableConfig |
CFpointObs.getPointConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
CFpointObs.getProfileConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
static java.util.Date |
UnidataPointDatasetHelper.getStartDate(NetcdfDataset ds,
DateUnit timeUnit)
|
protected TableConfig |
GempakCdm.getStationAsPointConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
GempakCdm.getStationConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
CFpointObs.getStationConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
CFpointObs.getStationProfileConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
BufrCdm.getStationProfileConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
CFpointObs.getTrajectoryConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
protected TableConfig |
BufrCdm.getTrajectoryConfig(NetcdfDataset ds,
java.util.Formatter errlog)
|
boolean |
UnidataPointObs.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
UnidataPointFeature.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
Deprecated. |
boolean |
Ndbc.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
Madis.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
Iridl.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
GempakCdm.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
FslWindProfiler.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
Cosmic.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
CFpointObs.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
boolean |
BufrCdm.isMine(FeatureType wantFeatureType,
NetcdfDataset ds)
|
| Uses of NetcdfDataset in ucar.nc2.ft.radial |
|---|
| Methods in ucar.nc2.ft.radial with parameters of type NetcdfDataset | |
|---|---|
java.lang.Object |
RadialDatasetStandardFactory.isMine(FeatureType wantFeatureType,
NetcdfDataset ds,
java.util.Formatter errlog)
|
FeatureDataset |
RadialDatasetStandardFactory.open(FeatureType ftype,
NetcdfDataset ncd,
java.lang.Object analysis,
CancelTask task,
java.util.Formatter errlog)
|
| Uses of NetcdfDataset in ucar.nc2.iosp.adde |
|---|
| Constructors in ucar.nc2.iosp.adde with parameters of type NetcdfDataset | |
|---|---|
AddeVariable(NetcdfDataset ncfile,
Structure parentStructure,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc,
int nparam)
|
|
| Uses of NetcdfDataset in ucar.nc2.iosp.mcidas |
|---|
| Methods in ucar.nc2.iosp.mcidas with parameters of type NetcdfDataset | |
|---|---|
void |
McIDASSatConvention.augmentDataset(NetcdfDataset ds,
CancelTask cancelTask)
Augment the dataset |
protected void |
McIDASSatConvention.findCoordinateAxes(NetcdfDataset ds)
The attribute "coordinates" is an alias for _CoordinateAxes. |
protected AxisType |
McIDASSatConvention.getAxisType(NetcdfDataset ds,
VariableEnhanced ve)
Get the axis type |
CoordinateTransform |
McIDASAreaTransformBuilder.makeCoordinateTransform(NetcdfDataset ds,
Variable ctv)
Make the coordinate transform |
| Uses of NetcdfDataset in ucar.nc2.ncml |
|---|
| Fields in ucar.nc2.ncml declared as NetcdfDataset | |
|---|---|
protected NetcdfDataset |
Aggregation.ncDataset
|
| Methods in ucar.nc2.ncml that return NetcdfDataset | |
|---|---|
static NetcdfDataset |
NcMLReader.mergeNcML(NetcdfFile ref,
org.jdom.Element parentElem)
Use NCML to modify the referenced dataset, create a new dataset with the merged info Used to wrap each dataset of an aggregation before its aggregated |
static NetcdfDataset |
NcMLReader.readNcML(java.io.InputStream ins,
CancelTask cancelTask)
Read NcML doc from an InputStream, and construct a NetcdfDataset. |
static NetcdfDataset |
NcMLReader.readNcML(java.io.Reader r,
CancelTask cancelTask)
Read NcML doc from a Reader, and construct a NetcdfDataset. |
static NetcdfDataset |
NcMLReader.readNcML(java.io.Reader r,
java.lang.String ncmlLocation,
CancelTask cancelTask)
Read NcML doc from a Reader, and construct a NetcdfDataset. |
static NetcdfDataset |
NcMLReader.readNcML(java.lang.String ncmlLocation,
CancelTask cancelTask)
Read an NcML file from a URL location, and construct a NetcdfDataset. |
static NetcdfDataset |
NcMLReader.readNcML(java.lang.String ncmlLocation,
org.jdom.Element netcdfElem,
CancelTask cancelTask)
Read NcML from a JDOM Document, and construct a NetcdfDataset. |
static NetcdfDataset |
NcMLReader.readNcML(java.lang.String ncmlLocation,
java.lang.String referencedDatasetUri,
CancelTask cancelTask)
Read an NcML file from a URL location, and construct a NetcdfDataset. |
| Methods in ucar.nc2.ncml with parameters of type NetcdfDataset | |
|---|---|
void |
NcMLReader.readNetcdf(java.lang.String ncmlLocation,
NetcdfDataset targetDS,
NetcdfFile refds,
org.jdom.Element netcdfElem,
CancelTask cancelTask)
parse a netcdf JDOM Element, and add contents to the targetDS NetcdfDataset. |
protected void |
Aggregation.setDatasetAcquireProxy(Aggregation.Dataset typicalDataset,
NetcdfDataset newds)
All non-agg variables use a proxy to acquire the file before reading. |
static void |
NcMLReader.wrapNcML(NetcdfDataset ncDataset,
java.lang.String ncmlLocation,
CancelTask cancelTask)
Use NCML to modify the dataset, getting NcML from a URL |
static void |
NcMLReader.wrapNcMLresource(NetcdfDataset ncDataset,
java.lang.String ncmlResourceLocation,
CancelTask cancelTask)
Use NCML to modify a dataset, getting the NcML document as a resource stream. |
void |
NcMLGWriter.writeXML(NetcdfDataset ncd,
java.io.OutputStream os,
boolean showCoords,
java.lang.String uri)
Write a NetcdfDataset as an NcML-G document to the specified stream. |
| Constructors in ucar.nc2.ncml with parameters of type NetcdfDataset | |
|---|---|
Aggregation(NetcdfDataset ncd,
java.lang.String dimName,
Aggregation.Type type,
java.lang.String recheckS)
Create an Aggregation for the given NetcdfDataset. |
|
AggregationExisting(NetcdfDataset ncd,
java.lang.String dimName,
java.lang.String recheckS)
|
|
AggregationFmrc(NetcdfDataset ncd,
java.lang.String dimName,
Aggregation.Type type,
java.lang.String recheckS)
|
|
AggregationFmrc(NetcdfDataset ncd,
java.lang.String dimName,
java.lang.String recheckS)
|
|
AggregationFmrcSingle(NetcdfDataset ncd,
java.lang.String dimName,
java.lang.String recheckS)
|
|
AggregationNew(NetcdfDataset ncd,
java.lang.String dimName,
java.lang.String recheckS)
|
|
AggregationOuterDimension(NetcdfDataset ncd,
java.lang.String dimName,
Aggregation.Type type,
java.lang.String recheckS)
Create an Aggregation for the given NetcdfDataset. |
|
AggregationTiled(NetcdfDataset ncd,
java.lang.String dimName,
java.lang.String recheckS)
|
|
AggregationUnion(NetcdfDataset ncd,
java.lang.String dimName,
java.lang.String recheckS)
|
|
| Uses of NetcdfDataset in ucar.nc2.thredds |
|---|
| Methods in ucar.nc2.thredds that return NetcdfDataset | |
|---|---|
NetcdfDataset |
ThreddsDataFactory.openDataset(InvAccess access,
boolean acquire,
CancelTask task,
java.util.Formatter log)
Try to open invAccess as a NetcdfDataset. |
NetcdfDataset |
ThreddsDataFactory.openDataset(InvDataset invDataset,
boolean acquire,
CancelTask task,
java.util.Formatter log)
Try to open as a NetcdfDataset. |
NetcdfDataset |
ThreddsDataFactory.openDataset(java.lang.String location,
boolean acquire,
CancelTask task,
java.util.Formatter log)
Open a NetcdfDataset from a URL location string. |
| Methods in ucar.nc2.thredds with parameters of type NetcdfDataset | |
|---|---|
static void |
ThreddsDataFactory.annotate(InvDataset ds,
NetcdfDataset ncDataset)
Add information from the InvDataset to the NetcdfDataset. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||