-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add pysquirrel to docs * Add nuts to api table of contents
- Loading branch information
1 parent
4ae6fa3
commit d2b0cb7
Showing
3 changed files
with
52 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ API documentation | |
api/codelist | ||
api/regionprocessor | ||
api/countries | ||
api/nuts | ||
api/testing |
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,30 @@ | ||
.. _nuts: | ||
|
||
.. currentmodule:: nomenclature.nuts | ||
|
||
NUTS classification | ||
=================== | ||
|
||
The :class:`nomenclature` package makes use of the :class:`pysquirrel` package | ||
(`link <https://github.com/iiasa/pysquirrel>`_) to provide a utility for region | ||
names based on the `NUTS classification <https://ec.europa.eu/eurostat/web/nuts>`_. | ||
|
||
This feature allows users to define an agreed list of territorial units with | ||
multiple levels of resolution, adding functionality to facilitate scenario | ||
analysis and model comparison. | ||
|
||
The full list of NUTS regions is accessible in Eurostat's `Excel file`_. | ||
|
||
.. _GitHub: https://github.com/IAMconsortium/nomenclature/blob/main/nomenclature/countries.py | ||
|
||
.. _`Excel template`: https://ec.europa.eu/eurostat/documents/345175/629341/NUTS2021-NUTS2024.xlsx | ||
|
||
.. code:: python | ||
from nomenclature import nuts | ||
# list of NUTS region codes | ||
nuts.codes | ||
# list of NUTS region names | ||
nuts.names |
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