-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from C2SM-RCM/master
Update with the most recent code
- Loading branch information
Showing
116 changed files
with
12,445 additions
and
2,582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Categories Manipulations | ||
======================== | ||
|
||
.. autofunction:: emiproc.inventories.utils.validate_group | ||
|
||
.. autofunction:: emiproc.inventories.utils.group_categories |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Exporting | ||
========= | ||
|
||
.. autofunction:: emiproc.exports.netcdf.nc_cf_attributes | ||
|
||
.. autofunction:: emiproc.exports.icon.export_icon_oem | ||
|
||
.. autofunction:: emiproc.exports.icon.make_icon_time_profiles | ||
|
||
.. autofunction:: emiproc.exports.icon.make_icon_vertical_profiles | ||
|
||
.. autoenum:: emiproc.exports.icon.TemporalProfilesTypes | ||
|
||
.. autofunction:: emiproc.exports.rasters.export_raster_netcdf | ||
|
||
.. autofunction:: emiproc.exports.profiles.export_inventory_profiles | ||
|
||
.. autofunction:: emiproc.exports.utils.get_temporally_scaled_array | ||
|
||
.. autofunction:: emiproc.exports.wrf.export_wrf_hourly_emissions | ||
|
||
|
||
Gral | ||
---- | ||
.. automodule:: emiproc.exports.gral | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Grid Class | ||
========== | ||
|
||
General Grids | ||
^^^^^^^^^^^^^ | ||
|
||
.. autoclass:: emiproc.grids.Grid | ||
|
||
.. autoclass:: emiproc.grids.RegularGrid | ||
|
||
.. autoclass:: emiproc.grids.GeoPandasGrid | ||
|
||
|
||
Model Grids | ||
^^^^^^^^^^^ | ||
|
||
.. autoclass:: emiproc.exports.wrf.WRF_Grid | ||
|
||
.. autoclass:: emiproc.grids.ICONGrid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
=== | ||
API | ||
=== | ||
|
||
All the code of emiproc is there. | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
inventories | ||
grids | ||
categories | ||
speciation | ||
operators | ||
profiles | ||
models | ||
exports | ||
utilities | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Inventories | ||
=========== | ||
|
||
|
||
Inventory Class | ||
--------------- | ||
|
||
.. autoclass:: emiproc.inventories.Inventory | ||
:members: | ||
|
||
|
||
Available Inventories | ||
--------------------- | ||
|
||
.. autoclass:: emiproc.inventories.tno.TNO_Inventory | ||
:special-members: __init__ | ||
|
||
.. autofunction:: emiproc.inventories.tno.read_tno_gridded_profiles | ||
|
||
.. autoclass:: emiproc.inventories.edgar.EDGAR_Inventory | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.swiss.SwissRasters | ||
:special-members: __init__ | ||
|
||
.. autofunction:: emiproc.inventories.swiss.read_prtr | ||
|
||
.. autoclass:: emiproc.inventories.zurich.MapLuftZurich | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.EmiprocNetCDF | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.gfas.GFAS_Inventory | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.gfed.GFED4_Inventory | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.lpjguess.LPJ_GUESS_Inventory | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.saunois.SaunoisInventory | ||
:special-members: __init__ | ||
|
||
.. autoclass:: emiproc.inventories.gral.GralInventory | ||
:special-members: __init__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Emission models | ||
=============== | ||
|
||
Functions that can be used to generate some parts of inventory data. | ||
|
||
Heating Degree Days (HDD) | ||
^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. automodule:: emiproc.profiles.hdd | ||
:members: | ||
|
||
|
||
Human Respiration | ||
^^^^^^^^^^^^^^^^^ | ||
|
||
.. automodule:: emiproc.human_respiration | ||
:members: | ||
|
||
|
||
VPRM | ||
^^^^ | ||
|
||
.. automodule:: emiproc.profiles.vprm | ||
:members: |
Oops, something went wrong.