coa-project / pycoa

pycoa Python source code
MIT License
18 stars 0 forks source link

GBR json missing subregion #108

Closed odadoun closed 3 years ago

odadoun commented 3 years ago

it seems that not all the subregion is present in the JSON file. For instance this Cornwall and Isles of Scilly code E06000052 Do have any idea how we should update the json ?

jfexbrayat commented 3 years ago

Have you tried the geojson in this repository: https://github.com/martinjc/UK-GeoJSON

gb = gpd.read_file("https://raw.githubusercontent.com/martinjc/UK-GeoJSON/master/json/administrative/gb/lad.json")
gb.query("LAD13NM.str.contains('Scilly|Cornwall')", engine="python")

image

tjbtjbtjb commented 3 years ago

Dear Jean-François,

Thanks for the suggestion. The issue should have been closed. It was solved with the couple of data https://opendata.arcgis.com/datasets/3a4fa2ce68f642e399b4de07643eeed3_0.geojson and http://geoportal1-ons.opendata.arcgis.com/datasets/0c3a9643cc7c4015bb80751aad1d2594_0.csv, the latest defining the regions of England.

Then we got a quite nice map for GBR now. We unfortunatly still have missing covid19 data for some region (outside England). But the geo information is ok.

image

Cheers,

Tristan