当我们有坐标列表时,如何在JTS中创建多边形?

2022-09-02 23:09:57

我们可以使用坐标列表创建一个LineString,如下所示:

     Geometry g1 = new GeometryFactory().createLineString(coordinates);

如何使用坐标列表创建多边形?

提前致谢。


答案 1

被接受的答案在2012年可能仍然有效(仍然很尴尬),但现在你真的应该像这样做:

// Create a GeometryFactory if you don't have one already
GeometryFactory geometryFactory = new GeometryFactory();

// Simply pass an array of Coordinate or a CoordinateSequence to its method
Polygon polygonFromCoordinates = geometryFactory.createPolygon(coordinates);

答案 2

使用以下代码行:

 GeometryFactory fact = new GeometryFactory();
 LinearRing linear = new GeometryFactory().createLinearRing(coordinates);
 Polygon poly = new Polygon(linear, null, fact);

我希望它能帮助:)


推荐