Package ucar.nc2.dataset
Interface CoordSysBuilderIF
-
- All Known Implementing Classes:
ADASConvention
,ATDRadarConvention
,AvhrrConvention
,AWIPSConvention
,AWIPSsatConvention
,CEDRICRadarConvention
,CF1Convention
,COARDSConvention
,CoordSysBuilder
,Cosmic1Convention
,CSMConvention
,DefaultConvention
,EpicInsitu
,FslWindProfiler
,GDVConvention
,GIEFConvention
,HdfEosModisConvention
,HdfEosOmiConvention
,IFPSConvention
,IridlConvention
,Jason2Convention
,M3IOConvention
,MADISStation
,ModisSatellite
,Nimbus
,NppConvention
,NsslRadarMosaicConvention
,NUWGConvention
,Suomi
,UnidataObsConvention
,WRFConvention
,ZebraConvention
@Deprecated public interface CoordSysBuilderIF
Deprecated.do not useImplement this interface to add Coordinate Systems to a NetcdfDataset.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addUserAdvice(String advice)
Deprecated.Give advice for a user trying to figure out why things arent workingvoid
augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask)
Deprecated.Make changes to the dataset that are needed before processing scale/offset in NetcdfDataset.void
buildCoordinateSystems(NetcdfDataset ncDataset)
Deprecated.Create the coordinate system objects: coordinate axes, coordinate systems, coordinate transforms.String
getConventionUsed()
Deprecated.Get the name of the Convention.String
getParseInfo()
Deprecated.Detailed information when the coordinate systems were parsedString
getUserAdvice()
Deprecated.Specific advice to a user about problems with the coordinate information in the file.void
setConventionUsed(String convName)
Deprecated.Pass in the name of the Convention used to locate this CoordSysBuilderIF.
-
-
-
Method Detail
-
setConventionUsed
void setConventionUsed(String convName)
Deprecated.Pass in the name of the Convention used to locate this CoordSysBuilderIF.- Parameters:
convName
- the name of the Convention
-
getConventionUsed
String getConventionUsed()
Deprecated.Get the name of the Convention. In the case where the Convention attribute is not set in the file, this name cannot be used to identify the Convention. The isMine() method is called instead.- Returns:
- Convention name
-
getParseInfo
String getParseInfo()
Deprecated.Detailed information when the coordinate systems were parsed- Returns:
- String containing parsing info
-
getUserAdvice
String getUserAdvice()
Deprecated.Specific advice to a user about problems with the coordinate information in the file.- Returns:
- String containing advice to a user about problems with the coordinate information in the file.
-
augmentDataset
void augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask) throws IOException
Deprecated.Make changes to the dataset that are needed before processing scale/offset in NetcdfDataset.- Parameters:
ncDataset
- modify this datasetcancelTask
- give user a chance to bail out- Throws:
IOException
- on error
-
buildCoordinateSystems
void buildCoordinateSystems(NetcdfDataset ncDataset)
Deprecated.Create the coordinate system objects: coordinate axes, coordinate systems, coordinate transforms.- Parameters:
ncDataset
- add to this dataset
-
addUserAdvice
void addUserAdvice(String advice)
Deprecated.Give advice for a user trying to figure out why things arent working- Parameters:
advice
- add this advice to the User Advice String
-
-