Package com.vividsolutions.jts.geom

Examples of com.vividsolutions.jts.geom.GeometryFactory.createLinearRing()


       
        for (int i = 0; i < numRings; i++) {
          Coordinate[] interior=decimate(line.getInteriorRingN(i)).getCoordinates();
          forceClosed(interior);
          if(interior.length>3)
            rings.add(gFac.createLinearRing(interior));
        }
        return gFac.createPolygon(ring, rings.toArray(new LinearRing[] {}));
      }
      return null;
    }
View Full Code Here


    public void testHeterogeneousGeometry() throws Exception {
        GeometryFactory gf = new GeometryFactory();
        Point point = gf.createPoint(new Coordinate(10, 10));
        LineString line = gf.createLineString(new Coordinate[] {
                new Coordinate(50, 50), new Coordinate(100, 100) });
        Polygon polygon = gf.createPolygon(gf
                .createLinearRing(new Coordinate[] { new Coordinate(0, 0),
                        new Coordinate(0, 200), new Coordinate(200, 200),
                        new Coordinate(200, 0), new Coordinate(0, 0) }), null);
       
        SimpleFeatureTypeBuilder ftb = new SimpleFeatureTypeBuilder();
View Full Code Here

        HolesRemover remover=new HolesRemover(result,hole,gFac);
        result=remover.cutHole();
      }
    }
    // return a new polygon from the new boundary
    LinearRing resultRing=gFac.createLinearRing(result.getCoordinates());
    return gFac.createPolygon(resultRing, new LinearRing[] {});
  }

 
 
View Full Code Here

 
 
  private static boolean skipHole(LineString hole,double scale) {
    GeometryFactory gFac=new GeometryFactory(hole.getPrecisionModel(),hole.getSRID());
    LinearRing ext=gFac.createLinearRing(hole.getCoordinates());
    Polygon holePoly=gFac.createPolygon(ext, new LinearRing[] {});
    // if hole area is less than the tolerance, skip it
    if(holePoly.getArea()<HOLE_AREA_TOLERANCE*scale*scale)     
      return true;
   
View Full Code Here

        coords[2] = lowerRight;
        coords[3] = new Coordinate(upperLeft.x, lowerRight.y);
        coords[4] = coords[0];

        GeometryFactory geomFac = new GeometryFactory();
        LinearRing boundary = geomFac.createLinearRing(coords); // this needs to be done with each FT so it can be reprojected
        Polygon pixelRect = geomFac.createPolygon(boundary, null);
        return pixelRect;
    }

    private FeatureCollection<SimpleFeatureType, SimpleFeature> wrapPixelInFeatureCollection(
View Full Code Here

        // reprojected geometries
        CoordinateReferenceSystem sourceCRS = (CoordinateReferenceSystem) CRS.decode(EPSG_4283);
        CoordinateReferenceSystem targetCRS = (CoordinateReferenceSystem) CRS.decode(EPSG_4326);
        MathTransform transform = CRS.findMathTransform(sourceCRS, targetCRS);
        GeometryFactory factory = new GeometryFactory();
        Polygon srcPolygon = factory.createPolygon(factory.createLinearRing(factory
                .getCoordinateSequenceFactory().create(
                        new Coordinate[] { new Coordinate(-1.2, 52.5), new Coordinate(-1.2, 52.6),
                                new Coordinate(-1.1, 52.6), new Coordinate(-1.1, 52.5),
                                new Coordinate(-1.2, 52.5) })), null);
        Polygon targetPolygon = (Polygon) JTS.transform(srcPolygon, transform);
View Full Code Here

  public static Geometry toPolygon(Vertex[] v) {
    Coordinate[] ringPts = new Coordinate[] { v[0].getCoordinate(),
        v[1].getCoordinate(), v[2].getCoordinate(), v[0].getCoordinate() };
    GeometryFactory fact = new GeometryFactory();
    LinearRing ring = fact.createLinearRing(ringPts);
    Polygon tri = fact.createPolygon(ring, null);
    return tri;
  }

  public static Geometry toPolygon(QuadEdge[] e) {
View Full Code Here

  public static Geometry toPolygon(QuadEdge[] e) {
    Coordinate[] ringPts = new Coordinate[] { e[0].orig().getCoordinate(),
        e[1].orig().getCoordinate(), e[2].orig().getCoordinate(),
        e[0].orig().getCoordinate() };
    GeometryFactory fact = new GeometryFactory();
    LinearRing ring = fact.createLinearRing(ringPts);
    Polygon tri = fact.createPolygon(ring, null);
    return tri;
  }

  /**
 
View Full Code Here

  // - if the ring is CW then the result line must be this: first
  // intersection coordinate--> second intersection coordinate.
  // - if the ring is CCW the the result line must be this: second
  // intersection coordinate --> first intersection coordinate.
  GeometryFactory factory = intersectingSegment.getFactory();
  LinearRing linearRing = factory.createLinearRing(ring
    .toArray(new Coordinate[ring.size()]));

  LineString adjustedSegment = null;
  if (isCW(linearRing)) {
View Full Code Here

    else
    {
      geometryFactory = new GeometryFactory( new PrecisionModel( PrecisionModel.FLOATING ), request.getSrid() );
    }
   
    return geometryFactory.createLinearRing( coords );
  }
 
  /**
   * Get the limb-generator for the requested algorithm.
   *
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.