Package org.apache.sis.referencing.cs

Examples of org.apache.sis.referencing.cs.DefaultVerticalCS


            case 5714: name = "MSL height"; alias = "mean sea level height"; cs = "Vertical CS. Axis: height (H)."; c = 6499; axis = 114; break;
            case 5715: name = "MSL depth";  alias = "mean sea level depth";  cs = "Vertical CS. Axis: depth (D).";  c = 6498; axis = 113; break;
            default:   throw new AssertionError(code);
        }
        return new DefaultVerticalCRS(properties(code, name, alias, true), datum,
                new DefaultVerticalCS(properties(c, cs, null, false), createAxis(axis)));
    }
View Full Code Here


            if (i >= 0) {
                final CoordinateSystemAxis axis = cs.getAxis(i);
                VerticalCRS c = CommonCRS.Vertical.ELLIPSOIDAL.crs();
                if (!c.getCoordinateSystem().getAxis(0).equals(axis)) {
                    final Map<String,?> properties = IdentifiedObjects.getProperties(c);
                    c = new DefaultVerticalCRS(properties, c.getDatum(), new DefaultVerticalCS(properties, axis));
                }
                return c;
            }
        }
        return null;
View Full Code Here

TOP

Related Classes of org.apache.sis.referencing.cs.DefaultVerticalCS

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.