【发布时间】:2011-03-08 03:02:41
【问题描述】:
哪些 R 包可用于计算大圆的最小边界框?
例如:
box <- polycirc( c( longitude, latitude ), distance=35 )
这将返回给定坐标(地球上)距离中心点 35 公里半径的圆的边界框。地点:
box.longitude_min = The longitude of the circle's western-most point.
box.longitude_max = The longitude of the circle's eastern-most point.
box.latitude_min = The latitude of the circle's southern-most point.
box.latitude_max = The latitude of the circle's northern-most point.
类似的东西应该已经存在于 R 中,但我找不到。我目前正在变形为 R 的最接近的(来自 SO)是:
http://janmatuschek.de/LatitudeLongitudeBoundingCoordinates
另外,圆的最小外接矩形是什么词(如果有的话)? (与circumscribed相反。)
【问题讨论】:
标签: r geometry great-circle