Package ucar.nc2.dataset.conv
Class M3IOConvention
- java.lang.Object
-
- ucar.nc2.dataset.CoordSysBuilder
-
- ucar.nc2.dataset.conv.M3IOConvention
-
- All Implemented Interfaces:
CoordSysBuilderIF
public class M3IOConvention extends CoordSysBuilder
Models-3/EDSS Input/Output netcf format. The Models-3/EDSS Input/Output Applications Programming Interface (I/O API) is the standard data access library for both NCSC's EDSS project and EPA's Models-3. 6/24/09: Modified to support multiple projection types of data by Qun Heand Alexis Zubrow added makePolarStereographicProjection, UTM, and modified latlon 09/2010 plessel.todd@epa.gov add projections 7,8,9,10
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class ucar.nc2.dataset.CoordSysBuilder
CoordSysBuilder.ConventionNameOk, CoordSysBuilder.VarProcess
-
-
Field Summary
-
Fields inherited from class ucar.nc2.dataset.CoordSysBuilder
conventionName, coordVarMap, debug, log, parseInfo, resourcesDir, userAdvice, varList
-
-
Constructor Summary
Constructors Constructor Description M3IOConvention()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
augmentDataset(NetcdfDataset ncd, CancelTask cancelTask)
Make changes to the dataset that are needed before processing scale/offset in NetcdfDataset.protected void
constructCoordAxes(NetcdfDataset ds)
protected AxisType
getAxisType(NetcdfDataset ds, VariableEnhanced ve)
Identify what kind of AxisType the named variable is.static boolean
isMine(NetcdfFile ncfile)
Do we think this is a M3IO file.protected void
makeCoordinateTransforms(NetcdfDataset ds)
Take all previously identified Coordinate Transforms and create a CoordinateTransform object by calling CoordTransBuilder.makeCoordinateTransform().-
Methods inherited from class ucar.nc2.dataset.CoordSysBuilder
addCoordinateVariable, addUserAdvice, assignCoordinateSystemsExplicit, assignCoordinateTransforms, breakupConventionNames, buildConventionAttribute, buildCoordinateSystems, factory, findCoordinateAxes, findCoordinateAxis, findCoordinateSystems, findCoordinateTransforms, findVarProcess, getConventionUsed, getParseInfo, getUseMaximalCoordSys, getUserAdvice, isCoordinateAxisForVariable, makeCoordinateAxes, makeCoordinateSystems, makeCoordinateSystemsImplicit, makeCoordinateSystemsMaximal, makeCoordinateTransform, makeCoordinateTransformVariable, registerConvention, registerConvention, registerConvention, registerNcML, setConventionUsed, setUseMaximalCoordSys
-
-
-
-
Method Detail
-
isMine
public static boolean isMine(NetcdfFile ncfile)
Do we think this is a M3IO file.- Parameters:
ncfile
- the NetcdfFile to test- Returns:
- true if we think this is a M3IO file.
-
augmentDataset
public void augmentDataset(NetcdfDataset ncd, CancelTask cancelTask)
Description copied from interface:CoordSysBuilderIF
Make changes to the dataset that are needed before processing scale/offset in NetcdfDataset.- Specified by:
augmentDataset
in interfaceCoordSysBuilderIF
- Overrides:
augmentDataset
in classCoordSysBuilder
- Parameters:
ncd
- modify this datasetcancelTask
- give user a chance to bail out
-
constructCoordAxes
protected void constructCoordAxes(NetcdfDataset ds)
-
getAxisType
protected AxisType getAxisType(NetcdfDataset ds, VariableEnhanced ve)
Description copied from class:CoordSysBuilder
Identify what kind of AxisType the named variable is. Only called for variables already identified as Coordinate Axes. Default null - subclasses can override.- Overrides:
getAxisType
in classCoordSysBuilder
- Parameters:
ds
- for this datasetve
- a variable alreaddy identified as a Coodinate Axis- Returns:
- AxisType or null if unknown.
-
makeCoordinateTransforms
protected void makeCoordinateTransforms(NetcdfDataset ds)
Description copied from class:CoordSysBuilder
Take all previously identified Coordinate Transforms and create a CoordinateTransform object by calling CoordTransBuilder.makeCoordinateTransform().- Overrides:
makeCoordinateTransforms
in classCoordSysBuilder
- Parameters:
ds
- why
-
-