Add mangrove country timeseries functionality

- Add `mangrove_country_timeseries` function in `pipelines.py` to fetch timeseries data.
- Implement `mangrove_country_timeseries` endpoint in `route.py` to handle requests.
- Define `mangrove_country_timeseries_schema` in `schemas.py` for data serialization
This commit is contained in:
Sam 2024-11-15 14:35:42 +00:00
parent db9fc35715
commit 84bc4fe599
10 changed files with 64 additions and 27 deletions

View File

@ -12,6 +12,14 @@ def mangrove_by_country_latest():
order by cumulative_pixels_diff desc order by cumulative_pixels_diff desc
""" """
def mangrove_country_timeseries(args):
country_name = args["country_with_parent"]
return f"""
select year, total_n_pixels from models_final.final__protected_mangroves_summary_stats_by_country_agg
where country_with_parent = '{country_name}'
order by year
"""
def bitcoin_business_growth_timeseries(args): def bitcoin_business_growth_timeseries(args):
days_ago = parse_int(args["days_ago"]) days_ago = parse_int(args["days_ago"])
country_name = args["country_name"] country_name = args["country_name"]

View File

@ -24,6 +24,19 @@ async def mangrove_by_country_latest():
serializedData = serializer.serialize_many(rawData) serializedData = serializer.serialize_many(rawData)
return serializedData return serializedData
@router.get("/mangrove_country_timeseries")
async def mangrove_country_timeseries(query: str):
args = parse_args_to_dict(query)
pipeline = pipelines.mangrove_country_timeseries(args)
handler = PostgresHandler()
schema = schemas.mangrove_country_timeseries_schema
serializer = DataSerializer(schema)
rawData = handler.execute_query(pipeline)
serializedData = serializer.serialize_many(rawData)
return serializedData
@router.get("/bitcoin_business_growth_timeseries") @router.get("/bitcoin_business_growth_timeseries")
async def bitcoin_business_growth_timeseries(query: str): async def bitcoin_business_growth_timeseries(query: str):
args = parse_args_to_dict(query) args = parse_args_to_dict(query)

View File

@ -7,6 +7,12 @@ def mangrove_by_country_latest_schema(data):
"cumulative_pct_diff": float(data["cumulative_pct_diff"]), "cumulative_pct_diff": float(data["cumulative_pct_diff"]),
} }
def mangrove_country_timeseries_schema(data):
return {
"year": str(data["year"]),
"total_n_pixels": int(data["total_n_pixels"]),
}
def mangrove_by_country_agg_schema(data): def mangrove_by_country_agg_schema(data):
return { return {
"country_with_parent": str(data["country_with_parent"]), "country_with_parent": str(data["country_with_parent"]),

View File

@ -18,7 +18,7 @@ The chart always reflects the countries selected in the table.
{{< dropdown_filter id="days_ago_dropdown_filter" id_filter="days_ago" options="1 day:1,7 day:7,28 day:28,1 year:365,5 year:1826,10 year:3652,all time:10000" default_selection="7 day" targets="bitcoin-business-growth-chart bitcoin-business-growth-table" >}} {{< dropdown_filter id="days_ago_dropdown_filter" id_filter="days_ago" options="1 day:1,7 day:7,28 day:28,1 year:365,5 year:1826,10 year:3652,all time:10000" default_selection="7 day" targets="bitcoin-business-growth-chart bitcoin-business-growth-table" >}}
{{< table id="bitcoin-business-growth-table" endpoint="bitcoin_business_growth_percent_diff" headers="{'country_name': 'Country', 'date_range': 'Date Range', 'first_value': 'Previous #', 'last_value': 'Current #', 'difference': 'Diff', 'percent_difference': '% Diff'}" maxHeight="400px" sortable="true" valueId="country_name" selectableRows="multi" targets="bitcoin-business-growth-chart" defaultFirstSelected="true" >}} {{< table id="bitcoin-business-growth-table" endpoint="bitcoin_business_growth_percent_diff" headers="{'country_name': 'Country', 'date_range': 'Date Range', 'first_value': 'Previous #', 'last_value': 'Current #', 'difference': 'Diff', 'percent_difference': '% Diff'}" maxHeight="400px" sortable="true" valueId="country_name" selectableRows="multi" targets="bitcoin-business-growth-chart" defaultFirstSelected="true" >}}
{{< chart id="bitcoin-business-growth-chart" endpoint="bitcoin_business_growth_timeseries" chartType="line" xAxisField="date" yAxisField="cumulative_value" scaleChart=true >}} {{< chart id="bitcoin-business-growth-chart" endpoint="bitcoin_business_growth_timeseries" chartType="line" xAxisField="date" yAxisField="cumulative_value" scaleChart=true xAxisType="category" >}}
#### Attribution and License #### Attribution and License
Data obtained from © [OpenStreetMap](https://www.openstreetmap.org/copyright) Data obtained from © [OpenStreetMap](https://www.openstreetmap.org/copyright)

View File

@ -9,8 +9,7 @@ tags: ["Bitcoin", "Stats"]
script: "/js/mangrove-map.js" script: "/js/mangrove-map.js"
--- ---
{{< table id="mangrove_countries" endpoint="mangrove_by_country_latest" headers="{'country_with_parent': 'Country', 'original_pixels': '1996 Cover', 'total_n_pixels': '2020 Cover', 'cumulative_pixels_diff': 'Diff', 'cumulative_pct_diff': '% Diff'}" maxHeight="400px" sortable="true" valueId="country_with_parent" selectableRows="single" defaultFirstSelected="true" >}} {{< table id="mangrove_countries" endpoint="mangrove_by_country_latest" headers="{'country_with_parent': 'Country', 'original_pixels': '1996 Cover', 'total_n_pixels': '2020 Cover', 'cumulative_pixels_diff': 'Diff', 'cumulative_pct_diff': '% Diff'}" maxHeight="400px" sortable="true" valueId="country_with_parent" selectableRows="single" defaultFirstSelected="true" targets="mangrove-country-timeseries-chart" >}}
{{< chart id="mangrove_countries" endpoint="mangrove_by_country_agg" chartType="bar" xAxisField="year" yAxisField="total_pixels" scaleChart=true >}}
{{< map id="map" style="https://tiles.semitamaps.com/styles/maptiler-basic/style.json">}} {{< chart id="mangrove-country-timeseries-chart" endpoint="mangrove_country_timeseries" chartType="bar" xAxisField="year" yAxisField="total_n_pixels" scaleChart=true xAxisType="category" >}}
{{< chart id="mangrove-country-timeseries-chart" endpoint="mangrove_country_timeseries" chartType="line" xAxisField="date" yAxisField="n_pixels" scaleChart=true >}}

View File

@ -1,4 +1,5 @@
<!doctype html> <!doctype html>
<script src="/js/chart-params.js"></script>
<head> <head>
{{ partial "head.html" . }} {{ partial "head.html" . }}
</head> </head>

View File

@ -9,6 +9,8 @@
yAxisField, yAxisField,
sortField = null, sortField = null,
scaleChart = false, scaleChart = false,
xAxisType = "time",
formatValueDecimalPlaces = null
) { ) {
async function fetchDataForChart(query, valueId) { async function fetchDataForChart(query, valueId) {
try { try {
@ -34,7 +36,6 @@
} }
function updateChart() { function updateChart() {
console.log(chartData);
let chartDataMap = new Map(); let chartDataMap = new Map();
for (let objectId in chartData) { for (let objectId in chartData) {
chartDataMap.set(objectId, chartData[objectId]); chartDataMap.set(objectId, chartData[objectId]);
@ -46,11 +47,11 @@
tooltip: { tooltip: {
...tooltip, ...tooltip,
valueFormatter(value, index) { valueFormatter(value, index) {
return nFormatter(value, 0); return formatValueDecimalPlaces == null ? value : nFormatter(value, formatValueDecimalPlaces);
}, },
}, },
xAxis: { xAxis: {
type: "time", type: xAxisType,
}, },
yAxis: { yAxis: {
scale: scaleChart, scale: scaleChart,
@ -93,4 +94,3 @@
}); });
} }
</script> </script>
<script src="/js/chart-params.js"></script>

View File

@ -98,6 +98,16 @@
document.dispatchEvent(event); document.dispatchEvent(event);
} }
} else if (selectableRows === "single") { } else if (selectableRows === "single") {
const event = new CustomEvent("filterChange", {
detail: {
filterId: valueId,
filterValue: this.value,
filterActions: ["selected"],
filterTargets: filterTargets,
},
});
document.dispatchEvent(event);
if (this.classList.contains("selected")) { if (this.classList.contains("selected")) {
this.classList.remove("selected"); this.classList.remove("selected");
} else { } else {

View File

@ -3,7 +3,7 @@
<div class = "chart" id='{{ .Get "id" }}'> <div class = "chart" id='{{ .Get "id" }}'>
<script> <script>
document.addEventListener("DOMContentLoaded", function () { document.addEventListener("DOMContentLoaded", function () {
createChart(id={{ .Get "id" }}, endpoint={{ .Get "endpoint" }}, chartType={{ .Get "chartType" }}, xAxisField={{ .Get "xAxisField" }}, yAxisField={{ .Get "yAxisField" }}, sortField={{ .Get "sortField" }}, scaleChart={{ .Get "scaleChart" }}) createChart(id={{ .Get "id" }}, endpoint={{ .Get "endpoint" }}, chartType={{ .Get "chartType" }}, xAxisField={{ .Get "xAxisField" }}, yAxisField={{ .Get "yAxisField" }}, sortField={{ .Get "sortField" }}, scaleChart={{ .Get "scaleChart" }}, xAxisType={{ .Get "xAxisType" }})
}); });
</script> </script>
</div> </div>

View File

@ -1,17 +1,17 @@
maplibregl.addProtocol("cog", MaplibreCOGProtocol.cogProtocol); // maplibregl.addProtocol("cog", MaplibreCOGProtocol.cogProtocol);
//
map.on("load", () => { // map.on("load", () => {
map.addSource("imageSource", { // map.addSource("imageSource", {
type: "raster", // type: "raster",
url: `cog://http://localhost:5000/cog?year=${year}&pid=${pid}`, // url: `cog://http://localhost:5000/cog?year=${year}&pid=${pid}`,
tileSize: 256, // tileSize: 256,
minzoom: 0, // minzoom: 0,
}); // });
//
map.addLayer({ // map.addLayer({
id: "imageLayer", // id: "imageLayer",
source: "imageSource", // source: "imageSource",
type: "raster", // type: "raster",
}); // });
}); // });
//