Package thredds.inventory

Examples of thredds.inventory.FeatureCollectionConfig$UpdateConfig


      logger.error( "featureCollection "+name+" must have a spec attribute." );
      return null;
    }
    String collName = (specName != null) ? specName : name;
    Element innerNcml = dsElem.getChild( "netcdf", ncmlNS );
    FeatureCollectionConfig config = new FeatureCollectionConfig(collName, spec, olderThan, recheckAfter, innerNcml);

    // update element optional
    Element updateElem = dsElem.getChild( "update", defNS );
    if (updateElem != null) {
      String startup = updateElem.getAttributeValue("startup");
View Full Code Here


    DateExtractor dateExtractor = null;
    if (runMatcher != null)
      dateExtractor = new DateExtractorFromName(runMatcher, false); // uses path
    if (dateExtractor == null && dateFormatMark != null)
      dateExtractor = new DateExtractorFromName(dateFormatMark, true);
    fmrc = new Fmrc(datasetManager, new FeatureCollectionConfig());

    // fill in the ncDataset
    fmrc.getDataset2D( ncDataset);
  }
View Full Code Here

TOP

Related Classes of thredds.inventory.FeatureCollectionConfig$UpdateConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.