Skip to content

Commit 8a32f19

Browse files
committed
update readme to include air quality information
1 parent 5446c2c commit 8a32f19

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,13 @@ The main domains across our indicators: retail services, health services, ph
126126
dataframe of postcodes of which the smallest value for each postcode
127127
is taken
128128

129-
### 4. Combine into index `ahah/create_index.py`
129+
### 4. Process air quality data `ahah/process_air.py`
130+
131+
- Create raster of interpolated values from monitoring station points
132+
- Exclude points that are _MISSING_
133+
- Aggregate to LSOA by taking mean values
134+
135+
### 5. Combine into index `ahah/create_index.py`
130136

131137
- Combine both processed secure and open data
132138
- Intermediate variables calculated

ahah/process_air.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import geopandas as gpd
22
import numpy as np
33
import pandas as pd
4-
from ahah.common.logger import logger
5-
from ahah.common.utils import Config, clean_air, combine_lsoa
64
from scipy.interpolate import griddata
75
from shapely.geometry import Polygon
86

7+
from ahah.common.logger import logger
8+
from ahah.common.utils import Config, clean_air, combine_lsoa
9+
910
GRID_SIZE = 1000
1011

1112

join_carto.py

-9
This file was deleted.

0 commit comments

Comments
 (0)