|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Attribute | |
---|---|
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.dods | OpenDAP-netCDF library. |
ucar.nc2.dt | Scientific data types package. |
ucar.nc2.dt.grid | Scientific data type "Grid", uses cartesian coordinate system. |
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.writer | package ucar.nc2.ft.point.writer : Write (to files) Point Feature Types |
ucar.nc2.iosp | General classes for I/O Service Providers |
ucar.nc2.iosp.dmsp | I/O Service Provider for DMSP format files |
ucar.nc2.iosp.netcdf3 | I/O Service Provider for NetCDF-3 format files |
ucar.nc2.ncml | Netcdf Markup Language (NcML) Implementation classes see NcML home page |
Uses of Attribute in thredds.catalog |
---|
Methods in thredds.catalog with parameters of type Attribute | |
---|---|
void |
ThreddsMetadata.Variable.setVocabularyId(Attribute id)
|
Uses of Attribute in ucar.nc2 |
---|
Fields in ucar.nc2 with type parameters of type Attribute | |
---|---|
protected List<Attribute> |
Group.attributes
|
protected List<Attribute> |
Variable.attributes
|
protected List<Attribute> |
NetcdfFile.gattributes
|
Methods in ucar.nc2 that return Attribute | |
---|---|
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)
Add a Global attribute to the file. |
Attribute |
NetcdfFileWriteable.addGlobalAttribute(String name,
Array values)
Add a Global attribute of type Array to the file. |
Attribute |
NetcdfFileWriteable.addGlobalAttribute(String name,
Number value)
Add a Global attribute of type Number to the file. |
Attribute |
NetcdfFileWriteable.addGlobalAttribute(String name,
String value)
Add a Global attribute of type String to the file. |
Attribute |
NetcdfFile.addVariableAttribute(Variable v,
Attribute att)
Add a variable attribute. |
Attribute |
NetcdfFileWriteable.deleteGlobalAttribute(String attName)
Delete a global Attribute. |
Attribute |
NetcdfFileWriteable.deleteVariableAttribute(String varName,
String attName)
Delete a variable Attribute. |
Attribute |
VariableIF.findAttribute(String attName)
|
Attribute |
Group.findAttribute(String name)
Find an Attribute in this Group by its name. |
Attribute |
Variable.findAttribute(String name)
Find an Attribute by name. |
Attribute |
VariableSimpleIF.findAttributeIgnoreCase(String name)
find the attribute for the variable with the given name, ignoring case. |
Attribute |
VariableIF.findAttributeIgnoreCase(String attName)
|
Attribute |
Group.findAttributeIgnoreCase(String name)
Find an Attribute in this Group by its name, ignore case. |
Attribute |
Variable.findAttributeIgnoreCase(String name)
Find an Attribute by name, ignoring the case. |
Attribute |
VariableSimpleAdapter.findAttributeIgnoreCase(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 |
NetcdfFileWriteable.renameGlobalAttribute(String oldName,
String newName)
Rename a global Attribute. |
Attribute |
NetcdfFileWriteable.renameVariableAttribute(String varName,
String attName,
String newName)
Rename a variable Attribute. |
Methods in ucar.nc2 that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
VariableSimpleIF.getAttributes()
Attributes for the variable. |
List<Attribute> |
VariableIF.getAttributes()
|
List<Attribute> |
Group.getAttributes()
Get the set of attributes contained directly in this Group. |
List<Attribute> |
Variable.getAttributes()
Returns the set of attributes for this variable. |
List<Attribute> |
VariableSimpleAdapter.getAttributes()
|
List<Attribute> |
NetcdfFile.getGlobalAttributes()
Returns the set of global attributes associated with this file. |
Methods in ucar.nc2 with parameters of type Attribute | |
---|---|
void |
Group.addAttribute(Attribute att)
Add new Attribute; 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)
Add a Global attribute to the file. |
void |
NetcdfFileWriteable.addVariableAttribute(String varName,
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 |
NetcdfFileWriteable.updateAttribute(Variable v2,
Attribute att)
Update the value of an existing attribute. |
void |
FileWriter.writeAttribute(String varName,
Attribute att)
Write a Variable attribute to the file. |
void |
FileWriter.writeGlobalAttribute(Attribute att)
Write a global attribute to the file. |
Constructors in ucar.nc2 with parameters of type Attribute | |
---|---|
Attribute(String name,
Attribute from)
Copy constructor |
Uses of Attribute in ucar.nc2.dataset.transform |
---|
Methods in ucar.nc2.dataset.transform with parameters of type Attribute | |
---|---|
protected double[] |
AbstractCoordTransBuilder.readAttributeDouble2(Attribute att)
Read an attribute as double[2]. |
Uses of Attribute in ucar.nc2.dods |
---|
Subclasses of Attribute in ucar.nc2.dods | |
---|---|
class |
DODSAttribute
Adapter for dods.dap.Attribute into a ucar.nc2.Attribute. |
Uses of Attribute in ucar.nc2.dt |
---|
Methods in ucar.nc2.dt that return Attribute | |
---|---|
Attribute |
VariableSimpleSubclass.findAttributeIgnoreCase(String attName)
|
Attribute |
GridDatatype.findAttributeIgnoreCase(String name)
Convenience function; lookup Attribute by name. |
Attribute |
TypedDatasetImpl.findGlobalAttributeIgnoreCase(String name)
|
Attribute |
TypedDataset.findGlobalAttributeIgnoreCase(String name)
|
Methods in ucar.nc2.dt that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
VariableSimpleSubclass.getAttributes()
|
List<Attribute> |
GridDatatype.getAttributes()
Get a List of Attribute specific to the Grid |
List<Attribute> |
TypedDatasetImpl.getGlobalAttributes()
|
List<Attribute> |
TypedDataset.getGlobalAttributes()
List of global attributes. |
Uses of Attribute in ucar.nc2.dt.grid |
---|
Methods in ucar.nc2.dt.grid that return Attribute | |
---|---|
Attribute |
GeoGrid.findAttributeIgnoreCase(String name)
Convenience function; lookup Attribute by name. |
Attribute |
GridDataset.findGlobalAttributeIgnoreCase(String name)
|
Methods in ucar.nc2.dt.grid that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
GeoGrid.getAttributes()
|
List<Attribute> |
GridDataset.getGlobalAttributes()
|
Uses of Attribute in ucar.nc2.dt.radial |
---|
Methods in ucar.nc2.dt.radial that return Attribute | |
---|---|
Attribute |
RadialDatasetSweepAdapter.MyRadialVariableAdapter.findAttributeIgnoreCase(String attName)
|
Methods in ucar.nc2.dt.radial that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
RadialDatasetSweepAdapter.MyRadialVariableAdapter.getAttributes()
|
Constructor parameters in ucar.nc2.dt.radial with type arguments of type Attribute | |
---|---|
RadialDatasetSweepAdapter.MyRadialVariableAdapter(String vName,
List<Attribute> atts)
|
Uses of Attribute in ucar.nc2.dt.trajectory |
---|
Methods in ucar.nc2.dt.trajectory that return Attribute | |
---|---|
Attribute |
UnidataTrajectoryObsDataset2.findGlobalAttributeIgnoreCase(String name)
|
Methods in ucar.nc2.dt.trajectory that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
UnidataTrajectoryObsDataset2.getGlobalAttributes()
|
Uses of Attribute in ucar.nc2.ft |
---|
Methods in ucar.nc2.ft that return Attribute | |
---|---|
Attribute |
FeatureDataset.findGlobalAttributeIgnoreCase(String name)
Return the global attribute with the given name, ignoring case. |
Attribute |
FeatureDatasetImpl.findGlobalAttributeIgnoreCase(String name)
|
Methods in ucar.nc2.ft that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
FeatureDataset.getGlobalAttributes()
List of global attributes. |
List<Attribute> |
FeatureDatasetImpl.getGlobalAttributes()
|
Uses of Attribute in ucar.nc2.ft.grid |
---|
Methods in ucar.nc2.ft.grid that return Attribute | |
---|---|
Attribute |
Grid.findAttributeIgnoreCase(String name)
Convenience function; lookup Attribute by name. |
Methods in ucar.nc2.ft.grid that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
Grid.getAttributes()
Get a List of Attribute specific to the Grid |
Uses of Attribute in ucar.nc2.ft.point.writer |
---|
Constructor parameters in ucar.nc2.ft.point.writer with type arguments of type Attribute | |
---|---|
CFPointObWriter(DataOutputStream stream,
List<Attribute> globalAtts,
String altUnits,
List<PointObVar> dataVars,
int numrec)
Deprecated. Constructor |
|
WriterCFPointDataset(DataOutputStream stream,
List<Attribute> globalAtts,
String altUnits)
Deprecated. |
Uses of Attribute in ucar.nc2.iosp |
---|
Methods in ucar.nc2.iosp with parameters of type Attribute | |
---|---|
void |
IOServiceProviderWriter.updateAttribute(Variable v2,
Attribute att)
Update the value of an existing attribute. |
Uses of Attribute in ucar.nc2.iosp.dmsp |
---|
Methods in ucar.nc2.iosp.dmsp that return Attribute | |
---|---|
Attribute |
DMSPHeader.getDatasetIdAtt()
|
Attribute |
DMSPHeader.getFileIdAtt()
|
Attribute |
DMSPHeader.getProcessingDateAtt()
|
Attribute |
DMSPHeader.getProcessingSystemAtt()
|
Attribute |
DMSPHeader.getStartDateAtt()
|
Attribute |
DMSPHeader.getSuborbitHistoryAtt()
|
Uses of Attribute in ucar.nc2.iosp.netcdf3 |
---|
Methods in ucar.nc2.iosp.netcdf3 with parameters of type Attribute | |
---|---|
void |
N3iosp.updateAttribute(Variable v2,
Attribute att)
Update the value of an existing attribute. |
Uses of Attribute in ucar.nc2.ncml |
---|
Methods in ucar.nc2.ncml with parameters of type Attribute | |
---|---|
static org.jdom.Element |
NcMLWriter.writeAttribute(Attribute att,
String elementName,
org.jdom.Namespace ns)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |