gpt4 book ai didi

java - twitter4j geo 流媒体香港的纬度/经度

转载 作者:行者123 更新时间:2023-12-01 11:24:59 25 4
gpt4 key购买 nike

我正在尝试使用 twitter4j 的流媒体方法从香港地区捕获推文。然而,无论我选择什么纬度或经度坐标(来自 http://www.latlong.net/convert-address-to-lat-long.html ),我总是会得到无效的纬度/经度错误。

Latitude/longitude are not valid: 22.27, 114.17, 22.35, 114.21

我使用的代码工作正常:

    TwitterStream twitterStream = new TwitterStreamFactory(cb.build()).getInstance();
FilterQuery fq = new FilterQuery();
fq.locations(
new double[][]{
new double[]{ 22.274286d, 114.166875d},
new double[]{22.351943d, 114.214683d}
});
twitterStream.addListener(listener);
twitterStream.filter(fq);

我错过了什么?纬度/经度有限制吗?我已经注意将西南点排在数组的第一位。

最佳答案

坐标应为{southwestLon,southwestLat},{northeastLon,northeastLat}

https://dev.twitter.com/streaming/overview/request-parameters#locations

new double[][]{
new double[]{114.166875d, 22.274286d},
new double[]{114.214683d, 22.351943d}
}

关于java - twitter4j geo 流媒体香港的纬度/经度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30886007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com