我正在使用
nettopologysuite(
JTS Topology Suite的一个端口).我正在使用SRTtree实现来存储时区列表和相应的坐标(基于此
suggestion ).我从地理名称中取出了城市列表,拉出了城市的时区和坐标,我将它们存储在STRtree中.我遇到的问题是这个实现没有提供“最近”的功能.为了进行查询,我必须提供一个起点和一个周长.目前我在循环中递增.1的循环,直到找到一些结果然后我拿第一个.有没有更好的方法呢?
这是我正在做的事情:
public static SRTtree Cities { get; set; }
public static string GetTimezone(double lat, double lng)
{
var envelope = new Envelope(new Coordinate(lat, lng));
IList results;
do
{
envelope.ExpandBy(.1);
results = Cities.Query(envelope);
} while (results.Count == 0);
return results[0] as string;
}
最佳答案 JTS 1.13提供了执行此操作的
STRTree.nearestNeighbour方法.我不知道是否已经移植到NTS,但如果没有,也许你可以请求它.