Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以像这里所做的那样缩放 SQL 地理多边形?
理想情况下,我想在 SQL 的原始地理内部或外部添加一个 x 米的缓冲区。
如果 SQL 选项不可用,我也可以使用DotSpatial和 R。
我相信该STBuffer()方法可以满足您的要求。像这样:
STBuffer()
select geo.STBuffer(5) from dbo.myTable;
该方法的输入将采用特定于正在操作的地理实例的 SRID 的单位。如果您不确定,请咨询sys.spatial_reference_systems您的数据的 SRID。
sys.spatial_reference_systems