com.vividsolutions.jts.geom.Geometry.createPointFromInternalCoord()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(170)

本文整理了Java中com.vividsolutions.jts.geom.Geometry.createPointFromInternalCoord()方法的一些代码示例,展示了Geometry.createPointFromInternalCoord()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.createPointFromInternalCoord()方法的具体详情如下:
包路径:com.vividsolutions.jts.geom.Geometry
类名称:Geometry
方法名:createPointFromInternalCoord

Geometry.createPointFromInternalCoord介绍

暂无

代码示例

代码示例来源:origin: com.vividsolutions/jts

  1. /**
  2. * Computes an interior point of this <code>Geometry</code>.
  3. * An interior point is guaranteed to lie in the interior of the Geometry,
  4. * if it possible to calculate such a point exactly. Otherwise,
  5. * the point may lie on the boundary of the geometry.
  6. * <p>
  7. * The interior point of an empty geometry is <code>POINT EMPTY</code>.
  8. *
  9. * @return a {@link Point} which is in the interior of this Geometry
  10. */
  11. public Point getInteriorPoint()
  12. {
  13. if (isEmpty())
  14. return factory.createPoint((Coordinate) null);
  15. Coordinate interiorPt = null;
  16. int dim = getDimension();
  17. if (dim == 0) {
  18. InteriorPointPoint intPt = new InteriorPointPoint(this);
  19. interiorPt = intPt.getInteriorPoint();
  20. }
  21. else if (dim == 1) {
  22. InteriorPointLine intPt = new InteriorPointLine(this);
  23. interiorPt = intPt.getInteriorPoint();
  24. }
  25. else {
  26. InteriorPointArea intPt = new InteriorPointArea(this);
  27. interiorPt = intPt.getInteriorPoint();
  28. }
  29. return createPointFromInternalCoord(interiorPt, this);
  30. }

代码示例来源:origin: com.vividsolutions/jts

  1. centPt = cent.getCentroid();
  2. return createPointFromInternalCoord(centPt, this);

代码示例来源:origin: com.vividsolutions/jts-core

  1. /**
  2. * Computes the centroid of this <code>Geometry</code>.
  3. * The centroid
  4. * is equal to the centroid of the set of component Geometries of highest
  5. * dimension (since the lower-dimension geometries contribute zero
  6. * "weight" to the centroid).
  7. * <p>
  8. * The centroid of an empty geometry is <code>POINT EMPTY</code>.
  9. *
  10. * @return a {@link Point} which is the centroid of this Geometry
  11. */
  12. public Point getCentroid()
  13. {
  14. if (isEmpty())
  15. return factory.createPoint((Coordinate) null);
  16. Coordinate centPt = Centroid.getCentroid(this);
  17. return createPointFromInternalCoord(centPt, this);
  18. }

代码示例来源:origin: com.vividsolutions/jts-core

  1. /**
  2. * Computes an interior point of this <code>Geometry</code>.
  3. * An interior point is guaranteed to lie in the interior of the Geometry,
  4. * if it possible to calculate such a point exactly. Otherwise,
  5. * the point may lie on the boundary of the geometry.
  6. * <p>
  7. * The interior point of an empty geometry is <code>POINT EMPTY</code>.
  8. *
  9. * @return a {@link Point} which is in the interior of this Geometry
  10. */
  11. public Point getInteriorPoint()
  12. {
  13. if (isEmpty())
  14. return factory.createPoint((Coordinate) null);
  15. Coordinate interiorPt = null;
  16. int dim = getDimension();
  17. if (dim == 0) {
  18. InteriorPointPoint intPt = new InteriorPointPoint(this);
  19. interiorPt = intPt.getInteriorPoint();
  20. }
  21. else if (dim == 1) {
  22. InteriorPointLine intPt = new InteriorPointLine(this);
  23. interiorPt = intPt.getInteriorPoint();
  24. }
  25. else {
  26. InteriorPointArea intPt = new InteriorPointArea(this);
  27. interiorPt = intPt.getInteriorPoint();
  28. }
  29. return createPointFromInternalCoord(interiorPt, this);
  30. }

相关文章