Package org.geotools.geometry.jts.spatialschema.geometry.primitive

Examples of org.geotools.geometry.jts.spatialschema.geometry.primitive.SurfaceBoundaryImpl


     * @return
     * @throws MismatchedReferenceSystemException
     * @see org.opengis.geometry.coordinate.Factory#createSurfaceBoundary(org.opengis.geometry.primitive.Ring, java.util.List)
     */
    public SurfaceBoundary createSurfaceBoundary(Ring exterior, List interiors) throws MismatchedReferenceSystemException {
        return new SurfaceBoundaryImpl(crs, exterior, (Ring []) interiors.toArray(new Ring[interiors.size()]));
    }
View Full Code Here


                interiorRings[n-1] = JTSUtils.linearRingToRing(
                    (com.vividsolutions.jts.geom.LineString)
                      mls.getGeometryN(i),
                    crs);
            }
            SurfaceBoundaryImpl result = new SurfaceBoundaryImpl(crs,
                exteriorRing, interiorRings);
            return result;
        }
        else {
            throw new UnsupportedOperationException("Computing the boundary " +
View Full Code Here

TOP

Related Classes of org.geotools.geometry.jts.spatialschema.geometry.primitive.SurfaceBoundaryImpl

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.