WKT:如何定义具有 3 个环(==2 个孔)的多边形?

发布于 2024-12-16 12:09:07 字数 313 浏览 2 评论 0原文

我在这里文档。我读过它,但我一直想知道如何在 WKT 中定义具有 3 个环的多边形?

I found in here this document. I read it but I keep wondering how to define a Polygon with 3 rings in WKT?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看春风乍起 2024-12-23 12:09:07

您可以使用 POLYGON 或 MULTIPOLYGON 类型,但请确保首先列出外容器环,然后列出内孔环。内环的方向并不重要,因为孔在语法中是明确的。

X& Y 以空格分隔,坐标以逗号分隔,环范围以括号限制并以逗号分隔。多边形(外环加上任何内环)也由括号限制。

最后,内环不能相互交叉,也不能与外环交叉。

示例:
多边形 ((10 10, 110 10, 110 110, 10 110), (20 20, 20 30, 30 30, 30 20), (40 20, 40 30, 50 30, 50 20))
多多边形 (((10 10, 110 10, 110 110, 10 110), (20 20, 20 30, 30 30, 30 20), (40 20, 40 30, 50 30, 50 20)))

You can use either the POLYGON or the MULTIPOLYGON type, but make sure the outer container ring is listed first followed by the inner hole rings. The orientations of the inner rings are not important since holes are explicit in the syntax.

X & Y are space separated, coordinates are comma separated, and ring extents are limited by parentheses and separated by commas. Polygons (outer ring plus any inner rings) are also limited by parentheses.

Finally, inner rings cannot cross each other, nor can they cross the outer ring.

Examples:
POLYGON ((10 10, 110 10, 110 110, 10 110), (20 20, 20 30, 30 30, 30 20), (40 20, 40 30, 50 30, 50 20))
MULTIPOLYGON (((10 10, 110 10, 110 110, 10 110), (20 20, 20 30, 30 30, 30 20), (40 20, 40 30, 50 30, 50 20)))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文