我使用的是nettopologysuite(JTS Topology Suite的一個端口)。我正在使用SRTtree實現來存儲時區列表和相應的座標(基於此suggestion)。我從geonames中選取城市列表,抽出城市的時區和座標,並將它們存儲在STRtree中。我遇到的問題是該實現不提供「最近」功能。爲了做一個查詢,我必須提供一個起點和一個圓周。目前我在循環中以.1遞增周長,直到找到一些結果,然後我拿第一個結果。有沒有更好的方法來做到這一點?查找STRtree中的最近位置
下面是我在做什麼:
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;
}