我找到了代表一个国家及其成分的地理数据来源。我正在建立一个服务,我想让用户选择一个国家,然后根据该国家选择他们想要的结果。我正在尝试下载数据并将其导入MongoDB,但我不确定哪种文件格式最适合下载,以及我需要哪些工具来转换数据以导入它。文件选项包括Shapefile
,R file
,Google Earth (.kmz)
,Geopackage
,ESRI personal geodatabase
和$ is_dir ~
YES
$ is_dir /tmp
YES
$ is_dir ~/bin
YES
$ mkdir '/tmp/test me'
$ is_dir '/tmp/test me'
YES
$ is_dir /asdf/asdf
NO
# Example of calling it in another script
DIR=~/mydata
if [ $(is_dir $DIR) == "NO" ]
then
echo "Folder doesnt exist: $DIR";
exit;
fi
。我选择哪一个以及下一步需要哪些工具?这甚至是收集国家及其州/地区的正确方法吗?
这是开源数据 gadm.org
答案 0 :(得分:0)
MongoDB使用GeoJSON格式的子集作为其地理空间数据。我会看看哪种格式最接近。出现了一个快速的网络搜索this tool,用于将kml文件转换为GeoJSON。