-
Notifications
You must be signed in to change notification settings - Fork 39
Nepal Ministry of Forests and Environment Department of Environment
The Nepal Ministry of Forests and Environment Department of Environment provides air quality monitoring through its site at https://pollution.gov.np/. The portal has a country-wide dashboard and location specific dashboards.
![Screenshot 2023-08-09 at 9 06 19 AM](https://private-user-images.githubusercontent.com/8487728/259455533-dd8c25f5-95a4-4122-9c97-89c275e26120.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxNjM0MjUsIm5iZiI6MTczOTE2MzEyNSwicGF0aCI6Ii84NDg3NzI4LzI1OTQ1NTUzMy1kZDhjMjVmNS05NWE0LTQxMjItOWM5Ny04OWMyNzVlMjYxMjAucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTBUMDQ1MjA1WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZjkxNjZmMzgyOGQ4NGUxZWQ0NzdjNDM5ZDRkNTNhYjlhMzQzOGM3ZmY0MDY4NjE3N2U3NzU5ZmNmMzllOTA4YSZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.bo9aWyrSQ1aqXay6bLwQHlJCuRZ-j4Fyz9X_lmVCAUc)
![Screenshot 2023-08-09 at 9 06 42 AM](https://private-user-images.githubusercontent.com/8487728/259455553-bbc1afc9-a640-4e0a-83cc-3d7a4e3c880d.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxNjM0MjUsIm5iZiI6MTczOTE2MzEyNSwicGF0aCI6Ii84NDg3NzI4LzI1OTQ1NTU1My1iYmMxYWZjOS1hNjQwLTRlMGEtODNjYy0zZDdhNGUzYzg4MGQucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTBUMDQ1MjA1WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9MDk1MzAxZmJkNTFmYTAyZjlhNWRmYWUyNWU1NzVmYmM3ODViMWRmNWMxNWJiNzBlOTdkNTY4NzZkMmI2NTFhMCZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.QndiDqIgNZp-4Gk-oB9o7UXUeq0OEx0lGysvNIv6dEo)
The website dashboards are powered by an API: https://pollution.gov.np/gss/api/ but there does not seem to be any technical documentation to support the API.
Provides information on the parameters measured by station
- station_id - the unique station ID
[
{
"qc_rules": null,
"parameter_unit": {
"symbol": "°C",
"name": "Degree Centigrade",
"id": 1
},
"property": "Continuous",
"table": null,
"tolerance": 0,
"start_time": "00:00",
"interval": null,
"parameter_unit_id": 1,
"parameter_id": 3,
"name": "Air Temperature Inst",
"id": 1711
},...
]
Provides pollutant values for a given series_id and time period.
-
series_id (required) - this appears to be an identifier for both station and pollutant. e.g. 1676 provides the PM2.5 values for station #69 Hetauda
-
date_from (required) - a datetime (YYY-mm-ddTHH:MM:SS without timezone)
-
date_to (required) - a datetime (YYY-mm-ddTHH:MM:SS without timezone)
Returns a data
array with objects containing a datetime
and value
. datetime
is the minutely period (time-ending vs time-beginning is unclear) and is shown in UTC.
{
"parameter_name": "PM2.5 Inst",
"parameter_code": "PM2.5_I",
"series_name": "PM2.5 Inst",
"data": [
{
"datetime": "2023-08-04T00:00:00+00:00",
"value": 9.69999980927
},
{
"datetime": "2023-08-04T00:01:00+00:00",
"value": 11.1999998093
}...
]
}
There is little to no information on the types of instruments used. More research is needed.