Package org.opengis.geometry.primitive

Examples of org.opengis.geometry.primitive.SurfaceBoundary


  }
 
  private Primitive processRingToPrimitive(Envelope bounds, Ring ring, int dimension) {
    int D = crs.getCoordinateSystem().getDimension();
    if( dimension == D ){ // create Surface from ring and return     
      SurfaceBoundary boundary = createSurfaceBoundary( ring, Collections.EMPTY_LIST );
      return createSurface( boundary );
    }   
    CoordinateSystemAxis axis = crs.getCoordinateSystem().getAxis( dimension );
    if( axis.getDirection() == AxisDirection.OTHER ){
      return processRingToPrimitive( bounds, ring, dimension+1 );
View Full Code Here

TOP

Related Classes of org.opengis.geometry.primitive.SurfaceBoundary

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.