Giter Site home page Giter Site logo

census-mapping's Introduction

Interactive Mapping in Python with UK Census Data

This is the code for my Medium article on this subject.

Files

The files in the order they are discussed are:

census_read_data.py - read Census Index, Table and Data, also Geography lookup

census_read_geopandas.py - read local Shapefile for Wards and LADs

census_geopandas_script.py - plot map using GeoPandas and Matplotlib

census_read_geojson.py - read cached GeoJSON for Wards and LADs

census_plotly_script.py - plot map using GeoJSON and Plotly

census_plotly_script_better.py - plot map using GeoJSON and Plotly, improved layout

census_dash_script_simple.py - simple interactive map using GeoJSON and Plotly Dash

census_dash_script_full.py - full interactive map using GeoJSON and Plotly Dash

Python Packages

I used Python 3.9 on Windows 11 and normally use pip to install packages. However, geopandas depends on packages that are implemented in C/C++, so special procedures are required to install it on Windows. (Apparently the install is straightforward on Linux and Mac.)

These are the steps I followed:

    pip install wheel
    pip install pipwin
    pipwin install numpy
    pipwin install pandas
    pipwin install gdal
    # Add the new GDAL path to the Windows PATH environment variable, e.g.:
    # C:\Users\<username>\AppData\Local\Programs\Python\Python39\Lib\site-packages\osgeo
    # It seems this must be done before installing Fiona.
    pipwin install fiona
    pipwin install pyproj
    pipwin install rtree
    pipwin install shapely
    pipwin install six
    pip install geopandas

census-mapping's People

Contributors

pohara60 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.