-
Notifications
You must be signed in to change notification settings - Fork 923
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ok_geo.csv导出的数据的polygon数据为什么不是闭合的,而且里面的 ; 来分割数据,是分割成什么了? #45
Comments
README里面有polygon字段格式说明,自行解析可以参考一下;有 AreaCity-JsSpider-StatsGov/README.md Lines 122 to 138 in 57041e1
数据库里面可以用 ST_IsValid 检查解析后的数据是否有效;自己解析比较复杂,用库里面提供的转换工具可以很方便的导入到数据库里面 |
我想把ok_geo.csv数据导入到mongodb,但是发现polygon的数据有的有;分号分割,有的没有分割。我按照;分割,再分割结果发现,polygon的数据不是环所以没法用空间索引。请问下是解析分割错了么?如果是由;分号的是multiPolgon,没有;的是polygon,但是我发现分割出来的都不是环数组。 |
是不是要给每个polygon组读完后在末尾加上第一个经纬度坐标,来组成一个环? |
对,每个环结尾要加上这个环开头第一个坐标 |
@l-xue-yu 感谢你提出了这个问题,我今天也有一样的疑问。 |
因为数据不是闭合的所以无法创建地理空间索引,
The text was updated successfully, but these errors were encountered: