openmethane-prior
Method to calculate a gridded, prior emissions estimate for methane across Australia
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
3 of 9 committers (33.3%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.6%) to scientific vocabulary
Keywords from Contributors
Repository
Method to calculate a gridded, prior emissions estimate for methane across Australia
Basic Info
- Host: GitHub
- Owner: openmethane
- License: apache-2.0
- Language: Python
- Default Branch: main
- Size: 94.6 MB
Statistics
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 24
- Releases: 4
Metadata Files
README.md
Open Methane Prior emissions estimate
Method to calculate a gridded, prior emissions estimate for methane across Australia.
This repository is matched with downloadable input data so that it will run out of the box.
Initialise
Copy the .env.example file to .env and customise the paths as you need.
In order to download the GFAS emissions data, credentials for the Copernicus Atmospheric Data Store (ADS) API are required. Instructions for registering for the ADS API and setting up the credentials are provided at ADS Docs.
Step-by-step: - Register for an ECMWF account - While logged in to ECMWF, register your account with ADS - Accept the ADS terms and conditions - Accept the License to use Copernicus products, by visiting the Download tab of the dataset you wish to use and scrolling to the Terms of use section: https://ads.atmosphere.copernicus.eu/datasets/cams-global-fire-emissions-gfas?tab=download
Note: the ADS API is different from the CDS (Climate Data Store) API even though they are both parts of the Copernicus program and share the same credentials file.
Requirements
Before installation, you will need to make sure that poetry version 1 is installed.
Step-by-step:
- Install pipx
bash
python -m pip install --user pipx
- Install poetry and downgrading your poetry version to version v1.
bash pipx install poetry~=1.0 --force
Installation
The Open Methane prior can be installed from source into a virtual environment with:
bash
make virtual-environment
The Makefile contains the set of commands to create the virtual environment.
You can read the instructions out and run the commands by hand if you wish.
Input Data
To download all the required input files, run:
console
make download
This will download input files that match the data in .env,
so you have a working set to get started with.
The downloaded files will be stored in data/inputs by default.
Domain Info
The domain of interest for the prior is defined using an input domain netCDF file. The format of the input domain is based on the CMAQ domain file format, but updated to follow (CF Conventions)[https://cfconventions.org/cf-conventions/cf-conventions.html].
Note that the input domain uses a staggered grid, so x, y coordinates, as
well as lat, lon coordinates, represent the center point of each grid cell.
The edges of each grid cell are made available in x_bounds and y_bounds
based on the CF Conventions "bounds" methodology.
This domain input file should contain the following:
- Coordinates:
xy
- Variables
latlonx_boundsy_boundsland_mask- binary land/sea masklambert_conformal- projection detailscell_name- unique name for each grid cell based on grid.x.y format- (Optionally)
inventory_mask- binary mask denoting the area covered by the inventory figures present in the input files
- Attributes
DX/XCELL- size of each grid cell in grid projection coordinatesDY/YCELL- size of each grid cell in grid projection coordinatesdomain_name- the name of the domain of interestdomain_version- a version string for the domain, typicallyv1,v2, etcdomain_slug- a short, URL-safe name for the grid, often the same asdomain_name
As part of the Open Methane project, we have provided a domain file for a 10km grid over Australia.
This file will be downloaded with the other layer inputs (see Source data) using the default configuration values.
A new domain can be created using one of the provided scripts:
- scripts/create_prior_domain.py
- create a domain from WRF and MCIP files
- scripts/create_subset_domain.py
- create a domain by subsetting an existing Open Methane domain
Or you can use these scripts as the basis for creating your domain from other sources.
Clean outputs
These two commands are set up so that not all generated files have to be deleted manually
Delete all files in the intermediates and outputs directory with
make clean
Or delete all files in intermediates, outputs, and inputs directory with
make clean-all
Run
All layers
To calculate emissions for all layers, run omPrior.py with a start and end date:
poetry run python scripts/omPrior.py --start-date 2022-07-01 --end-date 2022-07-01
or use the make target
console
make run
This takes a while to process (~10 minutes) with the vast majority of that time spent on the layers
in omAgLulucfWasteEmis.py.
To skip re-projecting raster layers (you only need to do this once for every time you change the raster input files),
add the --skip-reproject option.
Single layers
You can run and re-run individual layers one-by-one. Just run each file on it's own (GFAS and Wetlands require a start and end date as below):
console
poetry run python src/openmethane_prior/layers/omWetlandEmis.py --start-date 2022-07-01 --end-date 2022-07-01
Console output
The detail of console output can be controlled by setting the LOG_LEVEL env
variable. By default, this is set to INFO, but more or less can be achieved
by setting other log levels:
```shell
verbose debug output
LOG_LEVEL=DEBUG poetry run python scripts/omPrior.py --start-date 2022-07-01 --end-date 2022-07-01
only warnings and errors
LOG_LEVEL=WARNING poetry run python scripts/omPrior.py --start-date 2022-07-01 --end-date 2022-07-01 ```
Log output can also be written to a file while still logging to the console
with the LOG_FILE env variable.
shell
LOG_FILE=/var/log/prior.log poetry run python scripts/omPrior.py --start-date 2022-07-01 --end-date 2022-07-01
Outputs
Outputs can be found in the data/outputs folder. The emissions layers will be written as variables to a copy of the
input domain file, with an ch4_sector_ prefix for the methane layer variable names. The sum of all layers will be stored in
the ch4_total layer.
The name of the layered output file will be om-prior-output.nc.
The data/processed folder will contain any re-projected raster data, and any files downloaded or generated in the
process.
Outputs can be plotted using the ncl file plot_emis.ncl.
console
ncl plot_emis.ncl
Source data
For details about all data sources used by the prior, see Data sources.
Data directories
data/inputsThis folder should contain all the required input files, which should be referenced in the.envfile at the root. A set of input files has been included in the repository so that it functions out of the box (see Input Data), but you can add your own data here.data/inputs/domainsThe domain of interest is stored in this folder (see domain info).data/intermediatesThis folder contains any intermediate files generated through the process. Everything within this folder should be ignored.data/outputsOutputs files will be saved here.
Run in a Docker container
To carry out the steps described above in a Docker container, first build the Docker image with
make build
Then run the commands to download the input data in the docker container
docker run --rm -v </your/path/to/openmethane-prior>:/opt/project openmethane-prior python scripts/omDownloadInputs.py
Replace the python files according to the commands in the Makefile for the other steps.
For developers
The ruff-fixes target runs a series of ruff commands to format the code, check and fix linting issues, and then format the code again to ensure that all formatting and fixes are applied.
make ruff-fixes
The test target will run all the tests
make test
Owner
- Name: Open Methane
- Login: openmethane
- Kind: organization
- Website: https://openmethane.org
- Repositories: 1
- Profile: https://github.com/openmethane
GitHub Events
Total
- Create event: 32
- Release event: 4
- Issues event: 40
- Watch event: 1
- Delete event: 22
- Member event: 1
- Issue comment event: 117
- Push event: 137
- Pull request review event: 20
- Pull request event: 50
- Fork event: 1
Last Year
- Create event: 32
- Release event: 4
- Issues event: 40
- Watch event: 1
- Delete event: 22
- Member event: 1
- Issue comment event: 117
- Push event: 137
- Pull request review event: 20
- Pull request event: 50
- Fork event: 1
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Lindsay Gaines | l****s@s****u | 137 |
| Jared Lewis | j****d@j****z | 101 |
| Daniel Busch | d****h@c****m | 92 |
| Peter Rayner | p****r@u****u | 65 |
| Gerard Mason | g****n@s****u | 32 |
| crdanielbusch | 1****h | 7 |
| aethr | c****r@o****d | 4 |
| Mika Pflüger | m****r@c****m | 1 |
| Ida Jandl | i****4@g****u | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 46
- Total pull requests: 115
- Average time to close issues: 22 days
- Average time to close pull requests: 7 days
- Total issue authors: 6
- Total pull request authors: 7
- Average comments per issue: 1.96
- Average comments per pull request: 1.79
- Merged pull requests: 81
- Bot issues: 0
- Bot pull requests: 4
Past Year
- Issues: 30
- Pull requests: 57
- Average time to close issues: 6 days
- Average time to close pull requests: 6 days
- Issue authors: 3
- Pull request authors: 4
- Average comments per issue: 1.67
- Average comments per pull request: 1.88
- Merged pull requests: 37
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- aethr (26)
- Ida-droid (8)
- crdanielbusch (5)
- lewisjared (3)
- NasimehShahrokhi (2)
- prayner (2)
Pull Request Authors
- aethr (54)
- lewisjared (32)
- crdanielbusch (14)
- prayner (6)
- dependabot[bot] (4)
- Ida-droid (3)
- mikapfl (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
- Total downloads: unknown
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 5
proxy.golang.org: github.com/openmethane/openmethane-prior
- Documentation: https://pkg.go.dev/github.com/openmethane/openmethane-prior#section-documentation
- License: apache-2.0
-
Latest release: v1.1.0
published 6 months ago
Rankings
Dependencies
- Shapely *
- netCDF4 *
- numpy *
- pandas *
- pyception *
- python_dateutil *
- scipy *
- bisect *
- cdsapi *
- colorama *
- geopandas *
- netCDF4 *
- numpy *
- pandas *
- pyproj *
- python-dotenv *
- rioxarray *
- samgeo *
- shapely *
- xarray *