Package org.opengis.referencing.cs

Examples of org.opengis.referencing.cs.TimeCS


                String axisName = timeAxis.getShortName();

                String t_csName = "time_CS";
                final Map<String, String> csMap = Collections.singletonMap("name", t_csName);
                final TimeCS timeCS = NetCDFCRSUtilities.FACTORY_CONTAINER.getCSFactory().createTimeCS(csMap, getAxis(axisName, getDirection(direction), units));

                // Creating the Temporal Datum
                if (t_datumName == null) {
                    t_datumName = "Unknown";
                }
View Full Code Here


    return cs;
  }

  public TimeCS createTimeCS(String code) throws FactoryException {
    final String key = toKey(code);
    TimeCS cs = (TimeCS) cache.get(key);
    if (cs == null) {
      try {
        cache.writeLock(key);
        cs = (TimeCS) cache.peek(key);
        if (cs == null) {
View Full Code Here

TOP

Related Classes of org.opengis.referencing.cs.TimeCS

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.