|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InvDatasetImpl | |
---|---|
thredds.catalog | Reads and writes THREDDS Dataset Inventory Catalog XML documents. |
thredds.catalog.parser.jdom | |
thredds.cataloggen | |
thredds.cataloggen.config | |
ucar.nc2.thredds | Connects NetCDF-Java to THREDDS Catalogs and Datasets. |
Uses of InvDatasetImpl in thredds.catalog |
---|
Subclasses of InvDatasetImpl in thredds.catalog | |
---|---|
class |
InvCatalogRef
A reference to a InvCatalog. |
class |
InvDatasetFcFmrc
Feature Collection for Fmrc Generate anew each call; use object caching if needed to improve efficiency |
class |
InvDatasetFcPoint
Feature Collection for Point types |
class |
InvDatasetFeatureCollection
Feature Collection Dataset. |
class |
InvDatasetFmrc
Deprecated. use InvDatasetFeatureCollection (must replace datasetFmrc with featureCollection in the TDS config catalog) |
class |
InvDatasetImplProxy
Proxy an InvDatasetImpl to another InvDatasetImpl. |
class |
InvDatasetScan
Represents server-side information on how to scan a collection of datasets for catalog generation. |
Fields in thredds.catalog declared as InvDatasetImpl | |
---|---|
protected InvDatasetImpl |
InvCatalog.topDataset
|
Methods in thredds.catalog that return InvDatasetImpl | |
---|---|
InvDatasetImpl |
InvDatasetImplProxy.findDatasetByName(String p0)
|
InvDatasetImpl |
InvCatalogRef.findDatasetByName(String p0)
|
InvDatasetImpl |
InvDataset.findDatasetByName(String name)
Find an immediate child dataset by its name. |
InvDatasetImpl |
InvCatalog.getDataset()
Deprecated. use getDatasets() |
InvDatasetImpl |
InvCatalogRef.getProxyDataset()
This triggers a read of the referenced catalog the first time its called. |
Methods in thredds.catalog with parameters of type InvDatasetImpl | |
---|---|
void |
InvDatasetImpl.addDataset(int index,
InvDatasetImpl ds)
Add a nested dataset at the location indicated by index. |
void |
InvCatalogImpl.addDataset(InvDatasetImpl ds)
Add Dataset (1.0) |
void |
InvDatasetImpl.addDataset(InvDatasetImpl ds)
Add a nested dataset. |
void |
InvDatasetImplProxy.addDataset(InvDatasetImpl p0)
|
void |
InvCatalogImpl.addDatasetByID(InvDatasetImpl ds)
Add Dataset to internal hash. |
static InvDatasetFeatureCollection |
InvDatasetFeatureCollection.factory(InvDatasetImpl parent,
String name,
String path,
FeatureType featureType,
FeatureCollectionConfig config)
|
boolean |
InvCatalogImpl.removeDataset(InvDatasetImpl ds)
Remove the given dataset from this catalog if it is a direct child of this catalog. |
boolean |
InvDatasetImpl.removeDataset(InvDatasetImpl ds)
Remove the given dataset element from this dataset if it is in the dataset. |
boolean |
InvDatasetImplProxy.removeDataset(InvDatasetImpl p0)
|
void |
InvCatalogImpl.removeDatasetByID(InvDatasetImpl ds)
Find the dataset in this catalog by its ID. |
boolean |
InvCatalogImpl.replaceDataset(InvDatasetImpl remove,
InvDatasetImpl add)
Replace the given dataset if it is a nested dataset. |
boolean |
InvDatasetImpl.replaceDataset(InvDatasetImpl remove,
InvDatasetImpl add)
Replace the given dataset if it is a nesetd dataset. |
void |
InvCatalogImpl.setDataset(InvDatasetImpl ds)
Deprecated. Use addDataset() instead; datamodel now allows multiple top level datasets. |
void |
InvDatasetImpl.setParent(InvDatasetImpl parent)
Set the parent dataset. |
void |
InvDatasetImplProxy.setParent(InvDatasetImpl p0)
|
void |
InvDatasetImpl.transferMetadata(InvDatasetImpl fromDs,
boolean copyInheritedMetadataFromParents)
Transfer all inheritable metadata from fromDs to the local metadata of this dataset. |
static void |
InvDatasetImpl.writeHtmlDescription(StringBuilder buff,
InvDatasetImpl ds,
boolean complete,
boolean isServer,
boolean datasetEvents,
boolean catrefEvents)
Deprecated. Instead use writeHtmlDescription(StringBuilder buff, InvDatasetImpl ds, boolean complete, boolean isServer, boolean datasetEvents, boolean catrefEvents, boolean resolveRelativeUrls) |
static void |
InvDatasetImpl.writeHtmlDescription(StringBuilder buff,
InvDatasetImpl ds,
boolean complete,
boolean isServer,
boolean datasetEvents,
boolean catrefEvents,
boolean resolveRelativeUrls)
Write an Html representation of the given dataset. |
Constructors in thredds.catalog with parameters of type InvDatasetImpl | |
---|---|
InvCatalogRef(InvDatasetImpl parent,
String title,
String href)
Constructor. |
|
InvDatasetFcFmrc(InvDatasetImpl parent,
String name,
String path,
FeatureType featureType,
FeatureCollectionConfig config)
|
|
InvDatasetFcPoint(InvDatasetImpl parent,
String name,
String path,
FeatureType featureType,
FeatureCollectionConfig config)
|
|
InvDatasetFeatureCollection(InvDatasetImpl parent,
String name,
String path,
FeatureType featureType,
FeatureCollectionConfig config)
|
|
InvDatasetFmrc(InvDatasetImpl parent,
String name,
String path,
boolean runsOnly)
Deprecated. |
|
InvDatasetImpl(InvDatasetImpl from)
copy constructor |
|
InvDatasetImpl(InvDatasetImpl parent,
String name,
FeatureType dataType,
String serviceName,
String urlPath)
Constructor from Catalog XML info. |
|
InvDatasetImplProxy(String aliasName,
InvDatasetImpl proxy)
|
|
InvDatasetScan(InvCatalogImpl catalog,
InvDatasetImpl parent,
String name,
String path,
String scanLocation,
CrawlableDatasetFilter filter,
boolean addDatasetSize,
String addLatest,
boolean sortOrderIncreasing,
String datasetNameMatchPattern,
String startTimeSubstitutionPattern,
String duration)
Constructor. |
|
InvDatasetScan(InvCatalogImpl catalog,
InvDatasetImpl parent,
String name,
String path,
String scanLocation,
String filter,
boolean addDatasetSize,
String addLatest,
boolean sortOrderIncreasing,
String datasetNameMatchPattern,
String startTimeSubstitutionPattern,
String duration)
Constructor. |
|
InvDatasetScan(InvDatasetImpl parent,
String name,
String path,
String scanLocation,
String id,
InvDatasetScan from)
|
|
InvDatasetScan(InvDatasetImpl parent,
String name,
String path,
String scanLocation,
String configClassName,
Object configObj,
CrawlableDatasetFilter filter,
CrawlableDatasetLabeler identifier,
CrawlableDatasetLabeler namer,
boolean addDatasetSize,
CrawlableDatasetSorter sorter,
Map proxyDatasetHandlers,
List childEnhancerList,
CatalogRefExpander catalogRefExpander)
|
Uses of InvDatasetImpl in thredds.catalog.parser.jdom |
---|
Methods in thredds.catalog.parser.jdom that return InvDatasetImpl | |
---|---|
protected InvDatasetImpl |
InvCatalogFactory10.readDataset(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected InvDatasetImpl |
InvCatalogFactory10.readDatasetFmrc(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected InvDatasetImpl |
InvCatalogFactory10.readFeatureCollection(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
Methods in thredds.catalog.parser.jdom with parameters of type InvDatasetImpl | |
---|---|
protected InvAccessImpl |
InvCatalogFactory10.readAccess(InvDatasetImpl dataset,
org.jdom.Element accessElem)
|
protected InvCatalogRef |
InvCatalogFactory10.readCatalogRef(InvCatalogImpl cat,
InvDatasetImpl parent,
org.jdom.Element catRefElem,
URI baseURI)
|
protected InvDatasetImpl |
InvCatalogFactory10.readDataset(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected InvDatasetImpl |
InvCatalogFactory10.readDatasetFmrc(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected void |
InvCatalogFactory10.readDatasetInfo(InvCatalogImpl catalog,
InvDatasetImpl dataset,
org.jdom.Element dsElem,
URI base)
|
protected InvDatasetScan |
InvCatalogFactory10.readDatasetScan(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected InvDatasetScan |
InvCatalogFactory10.readDatasetScanNew(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected InvDatasetImpl |
InvCatalogFactory10.readFeatureCollection(InvCatalogImpl catalog,
InvDatasetImpl parent,
org.jdom.Element dsElem,
URI base)
|
protected InvMetadata |
InvCatalogFactory10.readMetadata(InvCatalog catalog,
InvDatasetImpl dataset,
org.jdom.Element mdataElement)
|
protected void |
InvCatalogFactory10.readThreddsMetadata(InvCatalog catalog,
InvDatasetImpl dataset,
org.jdom.Element parent,
ThreddsMetadata tmg)
|
Uses of InvDatasetImpl in thredds.cataloggen |
---|
Methods in thredds.cataloggen with parameters of type InvDatasetImpl | |
---|---|
void |
CollectionLevelScanner.setTopLevelMetadataContainer(InvDatasetImpl topLevelMetadataContainer)
Set the InvDatasetImpl that contains the metadata for the top level dataset. |
Constructors in thredds.cataloggen with parameters of type InvDatasetImpl | |
---|---|
CatGenAndWrite(String collectionId,
String collectionTitle,
String collectionUrlId,
InvService service,
CrawlableDataset collectionCrDs,
CrawlableDataset topCatCrDs,
CrawlableDatasetFilter filter,
InvDatasetImpl topLevelMetadataContainer,
File catWriteDir)
|
|
StandardCatalogBuilder(String collectionPath,
String collectionName,
CrawlableDataset collectionCrDs,
CrawlableDatasetFilter filter,
InvService service,
String collectionId,
CrawlableDatasetLabeler identifier,
CrawlableDatasetLabeler namer,
boolean doAddDatasetSize,
CrawlableDatasetSorter sorter,
Map proxyDatasetHandlers,
List childEnhancerList,
InvDatasetImpl topLevelMetadataContainer,
CatalogRefExpander catalogRefExpander)
|
Uses of InvDatasetImpl in thredds.cataloggen.config |
---|
Methods in thredds.cataloggen.config with parameters of type InvDatasetImpl | |
---|---|
boolean |
DatasetNamer.nameDataset(InvDatasetImpl dataset)
Try to name the given dataset. |
Uses of InvDatasetImpl in ucar.nc2.thredds |
---|
Methods in ucar.nc2.thredds with parameters of type InvDatasetImpl | |
---|---|
static ThreddsMetadata.GeospatialCoverage |
MetadataExtractor.extractGeospatial(InvDatasetImpl threddsDataset)
Extract the lat/lon/alt bounding boxes from the dataset. |
static ThreddsMetadata.Variables |
MetadataExtractor.extractVariables(InvDatasetImpl threddsDataset)
Extract a list of data variables (and their canonical names if possible) from the dataset. |
static ThreddsMetadata.Variables |
MetadataExtractor.extractVariables(InvDatasetImpl threddsDataset,
GridDataset gridDataset)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |