|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface TrajectoryObsDataset
A collection of TrajectoryObsDatatype. To open a data file as a TrajectoryObsDataset and access the trajectories it contains use TrajectoryObsDatasetFactory.open() and TrajectoryObsDataset.getTrajectories(), for example:
TrajectoryObsDataset trajDs = TrajectoryObsDatasetFactory.open (uriString);
for ( Iterator it = trajDs.getTrajectories().iterator(); it.hasNext(); )
{
TrajectoryObsDatatype traj = (TrajectoryObsDatatype) it.next();
}
| Method Summary | |
|---|---|
java.util.List |
getTrajectories()
Get trajectories contained in this dataset. |
TrajectoryObsDatatype |
getTrajectory(java.lang.String trajectoryId)
Get the named trajectory |
java.util.List<java.lang.String> |
getTrajectoryIds()
Get a list of String IDs for the available trajectories. |
boolean |
syncExtend()
Syncronize with the underlying dataset if it has been extended in a way that is compatible with the existing structural metadata (for instance, if the unlimited dimension has grown). |
| Methods inherited from interface ucar.nc2.dt.TypedDataset |
|---|
close, findGlobalAttributeIgnoreCase, getBoundingBox, getDataVariable, getDataVariables, getDescription, getDetailInfo, getEndDate, getGlobalAttributes, getLocationURI, getNetcdfFile, getStartDate, getTitle |
| Method Detail |
|---|
java.util.List<java.lang.String> getTrajectoryIds()
java.util.List getTrajectories()
TrajectoryObsDatatype getTrajectory(java.lang.String trajectoryId)
trajectoryId - id of trajectory
boolean syncExtend()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||