|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Table | |
|---|---|
| ucar.nc2.ft.point.standard | package ucar.nc2.ft.point.standard : Standard Implementation of Point Feature Types |
| Uses of Table in ucar.nc2.ft.point.standard |
|---|
| Subclasses of Table in ucar.nc2.ft.point.standard | |
|---|---|
static class |
Table.TableArrayStructure
ArrayStructure is passed in config.as Used by UnidataPointFeature: type StationProfile (deprecated) |
static class |
Table.TableConstruct
When theres no seperate station table, but info is duplicated in the obs structure. |
static class |
Table.TableContiguous
Contiguous children, using start and numRecords variables in the parent. |
static class |
Table.TableLinkedList
Linked list of children, using start variable in the parent, and next in the child. |
static class |
Table.TableMultiDimInner
A collection of Multdimensional Variables: Variable stn(outDim) Variable v1(outDim, innerDim, ...) Variable v2(outDim, innerDim) can be thought of as a structure: Structure { stn; v1(innerDim, ...) v2(innerDim); } so(outerDim); and as nested structures: Structure { stn; Structure { v1(...), v2 } si(innerDim); } so(outerDim); 1) When outerDim is the record variable, (ie it really is a structure) it makes sense to read the entire record at once: Structure { v1(innerDim, ...) v2(innerDim); stn; } so(outerDim); and return the StructureData with the inner variables removed: StructureData { stn1; stn2 } so(outerDim); LOOK (This may be hard, when is subset done ?? since inner need access to other members) And for the inner iterator, given the original StructureData for outerDim=fixed StructureData { v1(innerDim, ...) v2(innerDim); stn; } so(outerDim=fixed); rearrange it into an ArrayStructure: ArrayStructure(innerDim) { StructureData { v1(...); v2; } } Use Table types MultdimOuter, MultidimInner for this case 2) When its not, it makes sense to read the outer variables seperately: outer iterator is over outDim Variable stn1(outDim) Variable stn2(outDim) inner iterator over innerDim: Variable v1(outDim=fixed, innerDim, ...) Variable v2(outDim=fixed, innerDim) Use Table types Structure(psuedo, with vars set), TableMultiDimStructure (psuedo) for this case |
static class |
Table.TableMultiDimStructure
Used for Structure(station, time). |
static class |
Table.TableMultiDimStructurePsuedo
Used for PsuedoStructure(station, time). |
static class |
Table.TableNestedStructure
A Structure inside of a parent Structure. |
static class |
Table.TableParentIndex
The children have a parentIndex, child -> parent. |
static class |
Table.TableSingleton
Table is a single StructureData, passed in as config.sdata. |
static class |
Table.TableStructure
A Structure or PsuedoStructure. |
static class |
Table.TableTop
Table is a single StructureData, which is empty. |
| Methods in ucar.nc2.ft.point.standard that return Table | |
|---|---|
static Table |
Table.factory(NetcdfDataset ds,
TableConfig config)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||