SQLEXPRESS:几何边界框
我需要将数值添加到我的视图(xmin,ymin,xmax,ymax)数值中。 该表的几何形状为 varbinary(max) 值。
我如何从几何字段获取 bbox 值?
感谢您的任何建议。
I need for numeric values added to my view (xmin,ymin,xmax,ymax) number values.
The table has geometry as a varbinary(max) value.
How would i get the bbox values from geometry field?
thanx for any suggestion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,您可以在
varbinary
列上使用SUBSTRING()
来提取各个绑定值,然后将结果转换为int
(如果它们是int
)。像这样的东西:
From what I've understood, you can use
SUBSTRING()
on yourvarbinary
column to extract individual bound values and then cast the result toint
(if they areint
).Something like this: