Package | Description |
---|---|
dap4.cdm | |
dap4.servlet | |
thredds.catalog |
Reads and writes THREDDS Dataset Inventory Catalog XML documents.
|
ucar.nc2 |
The public API to the Java-NetCDF library.
|
ucar.nc2.dataset.transform |
Pluggable framework for handling Coordinate Transforms, both Projections and Vertical.
|
ucar.nc2.dt |
Scientific data types package.
|
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 polar coordinate system.
|
ucar.nc2.dt.trajectory |
Scientific data type "Trajectory".
|
ucar.nc2.ft |
Scientific feature types package
|
ucar.nc2.ft.cover.impl | |
ucar.nc2.ft.point.collection | |
ucar.nc2.ft.point.standard |
package ucar.nc2.ft.point.standard : Standard Implementation of Point Feature Types
|
ucar.nc2.ft.point.writer |
package ucar.nc2.ft.point.writer : Write Point Feature Types to netcdf/CF files
|
ucar.nc2.grib.collection | |
ucar.nc2.iosp |
General classes for I/O Service Providers
|
ucar.nc2.iosp.dmsp |
I/O Service Provider for Defense Meteorological Satellite Program (DMSP) format files
|
ucar.nc2.iosp.hdf5 |
I/O Service Provider for HDF-5 and netCDF-4 format files
|
ucar.nc2.iosp.netcdf3 |
I/O Service Provider for NetCDF-3 format files
|
ucar.nc2.jni.netcdf | |
ucar.nc2.ncml |
Netcdf Markup Language (NcML) Implementation classes
see NcML home page
|
ucar.nc2.thredds |
Connects NetCDF-Java to THREDDS Catalogs and Datasets.
|
ucar.nc2.util |
Miscellaneous utility classes.
|
ucar.nc2.write |
Modifier and Type | Method and Description |
---|---|
protected Attribute |
DSPToCDM.createAttribute(DapAttribute dapattr,
NodeMap nodemap)
Our goal is to convert, where possible, to a
list of objects to a list of values
acceptable to the ucar.nc2.Attribute class
|
protected Attribute |
DSPToCDM.createAttribute(String prefix,
DapAttribute dapattr,
NodeMap nodemap) |
Modifier and Type | Method and Description |
---|---|
protected DapAttribute |
CDMDSP.buildattribute(Attribute attr) |
Modifier and Type | Method and Description |
---|---|
protected void |
CDMDSP.buildattributes(DapNode node,
List<Attribute> attributes) |
Modifier and Type | Method and Description |
---|---|
void |
ThreddsMetadata.Variable.setVocabularyId(Attribute id) |
Modifier and Type | Method and Description |
---|---|
void |
ThreddsMetadata.addProperties(List<Attribute> atts) |
Modifier and Type | Field and Description |
---|---|
protected List<Attribute> |
Group.attributes |
protected List<Attribute> |
Variable.attributes |
protected List<Attribute> |
NetcdfFile.gattributes |
Modifier and Type | Method and Description |
---|---|
Attribute |
Group.addAttribute(Attribute att)
Add new Attribute; replace old if has same name.
|
Attribute |
AttributeContainer.addAttribute(Attribute att)
Add new or replace old if has same name
|
Attribute |
Variable.addAttribute(Attribute att)
Add new or replace old if has same name
|
Attribute |
NetcdfFile.addAttribute(Group parent,
Attribute att)
Add an attribute to a group.
|
Attribute |
NetcdfFile.addAttribute(Group parent,
String name,
String value)
Add optional String attribute to a group.
|
Attribute |
NetcdfFileWriteable.addGlobalAttribute(Attribute att)
Deprecated.
Add a Global attribute to the file.
|
Attribute |
NetcdfFileWriteable.addGlobalAttribute(String name,
Array values)
Deprecated.
Add a Global attribute of type Array to the file.
|
Attribute |
NetcdfFileWriteable.addGlobalAttribute(String name,
Number value)
Deprecated.
Add a Global attribute of type Number to the file.
|
Attribute |
NetcdfFileWriteable.addGlobalAttribute(String name,
String value)
Deprecated.
Add a Global attribute of type String to the file.
|
Attribute |
NetcdfFileWriter.addGroupAttribute(Group g,
Attribute att)
Add a Global attribute to the file.
|
Attribute |
NetcdfFile.addVariableAttribute(Variable v,
Attribute att)
Add a variable attribute.
|
Attribute |
NetcdfFileWriteable.deleteGlobalAttribute(String attName)
Deprecated.
Delete a global Attribute.
|
Attribute |
NetcdfFileWriter.deleteGroupAttribute(Group g,
String attName)
Delete a group Attribute.
|
Attribute |
NetcdfFileWriteable.deleteVariableAttribute(String varName,
String attName)
Deprecated.
Delete a variable Attribute.
|
Attribute |
NetcdfFileWriter.deleteVariableAttribute(Variable v,
String attName)
Delete a variable Attribute.
|
Attribute |
Group.findAttribute(String name)
Find an Attribute in this Group by its name.
|
Attribute |
VariableIF.findAttribute(String attName) |
Attribute |
Variable.findAttribute(String name)
Find an Attribute by name.
|
Attribute |
NetcdfFile.findAttribute(String fullNameEscaped)
Find an attribute, with the specified (escaped full) name.
|
Attribute |
Group.findAttributeIgnoreCase(String name)
Find an Attribute in this Group by its name, ignore case.
|
Attribute |
VariableIF.findAttributeIgnoreCase(String attName) |
Attribute |
VariableSimpleImpl.findAttributeIgnoreCase(String name) |
Attribute |
VariableSimpleAdapter.findAttributeIgnoreCase(String attName) |
Attribute |
Variable.findAttributeIgnoreCase(String name)
Find an Attribute by name, ignoring the case.
|
Attribute |
VariableSimpleIF.findAttributeIgnoreCase(String name)
find the attribute for the variable with the given name, ignoring case.
|
Attribute |
NetcdfFileWriter.findGlobalAttribute(String attName) |
Attribute |
NetcdfFile.findGlobalAttribute(String name)
Look up global Attribute by (full) name.
|
Attribute |
NetcdfFile.findGlobalAttributeIgnoreCase(String name)
Look up global Attribute by name, ignore case.
|
Attribute |
NetcdfFileWriter.renameGlobalAttribute(Group g,
String oldName,
String newName)
Rename a group Attribute.
|
Attribute |
NetcdfFileWriteable.renameGlobalAttribute(String oldName,
String newName)
Deprecated.
Rename a global Attribute.
|
Attribute |
NetcdfFileWriteable.renameVariableAttribute(String varName,
String attName,
String newName)
Deprecated.
Rename a variable Attribute.
|
Attribute |
NetcdfFileWriter.renameVariableAttribute(Variable v,
String attName,
String newName)
Rename a variable Attribute.
|
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
Group.getAttributes()
Get the set of attributes contained directly in this Group.
|
List<Attribute> |
VariableIF.getAttributes() |
List<Attribute> |
AttributeContainer.getAttributes()
Returns the set of attributes for this variable.
|
List<Attribute> |
VariableSimpleImpl.getAttributes() |
List<Attribute> |
VariableSimpleAdapter.getAttributes() |
List<Attribute> |
Variable.getAttributes()
Returns the set of attributes for this variable.
|
List<Attribute> |
VariableSimpleIF.getAttributes()
Attributes for the variable.
|
List<Attribute> |
NetcdfFile.getGlobalAttributes()
Returns the set of global attributes associated with this file.
|
static Map<String,Attribute> |
Attribute.makeMap(List<Attribute> atts)
Turn a list into a map
|
Modifier and Type | Method and Description |
---|---|
VariableSimpleImpl |
VariableSimpleImpl.add(Attribute att) |
Attribute |
Group.addAttribute(Attribute att)
Add new Attribute; replace old if has same name.
|
Attribute |
AttributeContainer.addAttribute(Attribute att)
Add new or replace old if has same name
|
Attribute |
Variable.addAttribute(Attribute att)
Add new or replace old if has same name
|
Attribute |
NetcdfFile.addAttribute(Group parent,
Attribute att)
Add an attribute to a group.
|
Attribute |
NetcdfFileWriteable.addGlobalAttribute(Attribute att)
Deprecated.
Add a Global attribute to the file.
|
Attribute |
NetcdfFileWriter.addGroupAttribute(Group g,
Attribute att)
Add a Global attribute to the file.
|
void |
NetcdfFileWriteable.addVariableAttribute(String varName,
Attribute att)
Deprecated.
Add an attribute to the named Variable.
|
boolean |
NetcdfFileWriter.addVariableAttribute(Variable v,
Attribute att)
Add an attribute to the named Variable.
|
Attribute |
NetcdfFile.addVariableAttribute(Variable v,
Attribute att)
Add a variable attribute.
|
boolean |
Group.remove(Attribute a)
Remove an Attribute : uses the attribute hashCode to find it.
|
boolean |
Variable.remove(Attribute a)
Remove an Attribute : uses the attribute hashCode to find it.
|
void |
NetcdfFileWriter.updateAttribute(Variable v2,
Attribute att)
Update the value of an existing attribute.
|
void |
NetcdfFileWriteable.updateAttribute(Variable v2,
Attribute att)
Deprecated.
Update the value of an existing attribute.
|
void |
FileWriter.writeAttribute(String varName,
Attribute att)
Deprecated.
Write a Variable attribute to the file.
|
void |
FileWriter.writeGlobalAttribute(Attribute att)
Deprecated.
Write a global attribute to the file.
|
Modifier and Type | Method and Description |
---|---|
void |
Group.addAll(Iterable<Attribute> atts)
Add all; replace old if has same name
|
void |
AttributeContainer.addAll(Iterable<Attribute> atts)
Add all; replace old if has same name
|
void |
Variable.addAll(Iterable<Attribute> atts)
Add all; replace old if has same name
|
static Map<String,Attribute> |
Attribute.makeMap(List<Attribute> atts)
Turn a list into a map
|
Constructor and Description |
---|
Attribute(String name,
Attribute from)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
protected double[] |
AbstractCoordTransBuilder.readAttributeDouble2(Attribute att)
Read an attribute as double[2].
|
Modifier and Type | Method and Description |
---|---|
Attribute |
GridDatatype.findAttributeIgnoreCase(String name)
Convenience function; lookup Attribute by name.
|
Attribute |
VariableSimpleSubclass.findAttributeIgnoreCase(String attName)
Deprecated.
|
Attribute |
TypedDatasetImpl.findGlobalAttributeIgnoreCase(String name)
Deprecated.
|
Attribute |
TypedDataset.findGlobalAttributeIgnoreCase(String name)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
GridDatatype.getAttributes()
Get a List of Attribute specific to the Grid
|
List<Attribute> |
VariableSimpleSubclass.getAttributes()
Deprecated.
|
List<Attribute> |
TypedDatasetImpl.getGlobalAttributes()
Deprecated.
|
List<Attribute> |
TypedDataset.getGlobalAttributes()
Deprecated.
List of global attributes.
|
Modifier and Type | Method and Description |
---|---|
Attribute |
GeoGrid.findAttributeIgnoreCase(String name)
Convenience function; lookup Attribute by name.
|
Attribute |
GridDataset.findGlobalAttributeIgnoreCase(String name) |
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
GeoGrid.getAttributes() |
List<Attribute> |
GridDataset.getGlobalAttributes() |
Constructor and Description |
---|
CFPointObWriter(DataOutputStream stream,
List<Attribute> globalAtts,
String altUnits,
List<PointObVar> dataVars,
int numrec)
Deprecated.
Constructor
|
WriterCFPointDataset(DataOutputStream stream,
List<Attribute> globalAtts,
String altUnits)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Attribute |
RadialDatasetSweepAdapter.MyRadialVariableAdapter.findAttributeIgnoreCase(String attName) |
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
RadialDatasetSweepAdapter.MyRadialVariableAdapter.getAttributes() |
Constructor and Description |
---|
MyRadialVariableAdapter(String vName,
List<Attribute> atts) |
Modifier and Type | Method and Description |
---|---|
Attribute |
UnidataTrajectoryObsDataset2.findGlobalAttributeIgnoreCase(String name)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
UnidataTrajectoryObsDataset2.getGlobalAttributes()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Attribute |
FeatureDatasetImpl.findGlobalAttributeIgnoreCase(String name) |
Attribute |
FeatureDataset.findGlobalAttributeIgnoreCase(String name)
Return the global attribute with the given name, ignoring case.
|
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
FeatureDatasetImpl.getGlobalAttributes() |
List<Attribute> |
FeatureDataset.getGlobalAttributes()
List of global attributes.
|
Modifier and Type | Method and Description |
---|---|
Attribute |
CoverageImpl.findAttributeIgnoreCase(String name) |
Attribute |
CoverageDatasetImpl.findGlobalAttributeIgnoreCase(String name) |
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
CoverageImpl.getAttributes() |
List<Attribute> |
CoverageDatasetImpl.getGlobalAttributes() |
Modifier and Type | Method and Description |
---|---|
protected CoverageProto.Attribute.Builder |
CoverageIndexWriter.writeAttribute(Attribute att) |
Modifier and Type | Field and Description |
---|---|
protected List<Attribute> |
CompositePointCollection.globalAttributes |
protected List<Attribute> |
CompositeStationCollection.globalAttributes |
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
CompositePointCollection.getGlobalAttributes() |
List<Attribute> |
CompositeStationCollection.getGlobalAttributes() |
Modifier and Type | Field and Description |
---|---|
Attribute |
Evaluator.VarAtt.att |
Constructor and Description |
---|
VarAtt(Variable var,
Attribute att) |
Modifier and Type | Method and Description |
---|---|
static Attribute |
CFPointWriterUtils.findCDMAtt(List<Attribute> atts,
String attName) |
Modifier and Type | Method and Description |
---|---|
static Attribute |
CFPointWriterUtils.findCDMAtt(List<Attribute> atts,
String attName) |
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
GribCollectionImmutable.getGlobalAttributes() |
Modifier and Type | Method and Description |
---|---|
protected void |
Grib2Partition.addGlobalAttributes(List<Attribute> result) |
protected void |
Grib1Partition.addGlobalAttributes(List<Attribute> result) |
protected abstract void |
GribCollectionImmutable.addGlobalAttributes(List<Attribute> result) |
protected void |
Grib1Collection.addGlobalAttributes(List<Attribute> result) |
protected void |
Grib2Collection.addGlobalAttributes(List<Attribute> result) |
Modifier and Type | Method and Description |
---|---|
void |
IOServiceProviderWriter.updateAttribute(Variable v2,
Attribute att)
Update the value of an existing attribute.
|
Modifier and Type | Method and Description |
---|---|
Attribute |
DMSPHeader.getDatasetIdAtt() |
Attribute |
DMSPHeader.getFileIdAtt() |
Attribute |
DMSPHeader.getProcessingDateAtt() |
Attribute |
DMSPHeader.getProcessingSystemAtt() |
Attribute |
DMSPHeader.getStartDateAtt() |
Attribute |
DMSPHeader.getSuborbitHistoryAtt() |
Modifier and Type | Method and Description |
---|---|
Attribute |
H5header.MessageAttribute.getNcAttribute() |
Modifier and Type | Method and Description |
---|---|
void |
N3iosp.updateAttribute(Variable v2,
Attribute att)
Update the value of an existing attribute.
|
Modifier and Type | Method and Description |
---|---|
void |
Nc4Iosp.updateAttribute(Variable v2,
Attribute att) |
Modifier and Type | Method and Description |
---|---|
static org.jdom2.Element |
NcMLWriter.writeAttribute(Attribute att,
String elementName,
org.jdom2.Namespace ns) |
Constructor and Description |
---|
MetadataExtractorAcdd(Map<String,Attribute> ncfile,
InvDatasetImpl ds,
ThreddsMetadata tmi) |
Modifier and Type | Method and Description |
---|---|
boolean |
CompareNetcdf2.ObjFilter.attCheckOk(Variable v,
Attribute att) |
boolean |
CompareNetcdf2.Netcdf4ObjectFilter.attCheckOk(Variable v,
Attribute att) |
Modifier and Type | Method and Description |
---|---|
protected Attribute |
Nc4ChunkingStrategy.getChunkAttribute(Variable v) |
Copyright © 1999–2015 UCAR/Unidata. All rights reserved.