9

I am trying to get the uk's regions map, http://en.wikipedia.org/wiki/Regions_of_England, on GeoJSON format to use it on a web visits map on a website. Is there any place where you can get the data for different countries on GeoJSON format?

4

5 回答 5

14

您可以从以下网址下载英国行政边界:https ://www.ordnancesurvey.co.uk/opendatadownload/products.html

向下滚动页面,直到看到边界线。

您需要使用 GIS 工具将形状文件转换为 geojson。这是一个分步教程:

http://blog-en.openalfa.com/how-to-add-interactive-maps-to-a-web-site/

条例调查提供的形状文件具有不同的详细程度。听起来您只需要转换european_region_region.shp形状文件。

ogr2ogr -f GeoJSON european_region_region.json european_region_region.shp

编辑:如果您想使用 Leaflet、Google Maps 等,请不要忘记从 Northing/Easting 转换为 Lat/Long

ogr2ogr -t_srs WGS84 -f GeoJSON european_region_region.json european_region_region.shp

条例调查有一项许可政策,您需要遵守:

https://www.ordnancesurvey.co.uk/oswebsite/docs/licences/os-opendata-licence.pdf

于 2012-11-22T14:48:56.953 回答
2

有一个有用的 github 存储库,其中包含英国的 GeoJSON 边界数据,从 ONS shapefile 转换而来https://github.com/martinjc/UK-GeoJSON

  • 地方当局区 (LAD)
  • 欧洲选举区 (EER)
  • 威斯敏斯特议会选区 (WPC)
  • 选区
  • 英格兰、苏格兰和威尔士的欧盟统计局边界(NUTS 1 级和 2 级)
  • ONS使用的统计区域(超输出等)

由于政府机构“公共”信息的严格许可,北爱尔兰是个例外。

于 2015-06-12T10:51:19.303 回答
1

如果您只想要英国边界的 GeoJson 文件(包括 NI),您应该使用 - http://mapit.mysociety.org

北爱尔兰 LGD(理事会)边界 - http://mapit.mysociety.org/areas/LGD.html

于 2014-03-21T13:34:52.023 回答
0

我不知道您是在寻找国家级边界还是次国家级边界。如果是前者,那么:

d3.js 的一些示例使用包含世界上所有国家/地区的 GeoJSON 文件。你可以在这里找到它:https ://github.com/mbostock/d3/blob/master/examples/data/world-countries.json 。

D3.js 也是一个在 svg 中实际呈现这些数据的优秀框架,所以如果你还没有,你可能想研究一下。例如:http ://bl.ocks.org/2206590 。

于 2012-11-19T20:59:57.503 回答
0

这是 ONS 网站数据,您可以下载不同格式的数据

https://data.gov.uk/data/search?theme-primary=Mapping&res_format=GeoJSON

于 2017-10-17T19:17:01.410 回答