gcages.cmip7_scenariomip.pre_processing.reaggregation.basic#
Basic reaggregation
This is called 'basic' because it's the first one we thought about. It's also, in some ways, the simplest. It assumes that domestic aviation is reported at the model region level.
Classes:
| Name | Description |
|---|---|
GriddingSectorComponents |
Definition of the components of a gridding sector for reporting |
GriddingSectorComponentsCarbonRemovalReporting |
Definition of the components of a carbon removal gridding sector for reporting |
ReaggregatorBasic |
Reaggregator that follows this module's logic |
Functions:
| Name | Description |
|---|---|
aggregate_cols |
Aggregate columns |
assert_has_all_required_timeseries |
Assert that the data has all the required timeseries |
assert_is_internally_consistent |
Assert that the data is internally consistent |
get_complete_timeseries_index |
Get the index of complete data |
get_default_internal_conistency_checking_tolerances |
Get default tolerances used when checking the internal consistency of data |
get_example_input |
Get example input data |
get_internal_consistency_checking_index |
Get the index which selects only data relevant for checking internal consistency |
get_required_timeseries_index |
Get the index of required data |
to_complete |
Convert the raw data to complete data |
to_gridding_sectors |
Re-aggregate data to the sectors used for gridding |
Attributes:
| Name | Type | Description |
|---|---|---|
COMPLETE_MODEL_REGION_VARIABLES |
tuple[str, ...]
|
Complete set of variables at the model region level |
COMPLETE_WORLD_VARIABLES |
tuple[str, ...]
|
Complete set of variables at the world level |
OPTIONAL_MODEL_REGION_VARIABLES |
tuple[str, ...]
|
Optional set of variables at the model region level |
OPTIONAL_WORLD_VARIABLES |
tuple[str, ...]
|
Optional set of variables at the world level |
REQUIRED_MODEL_REGION_VARIABLES |
tuple[str, ...]
|
Required set of variables at the model region level |
REQUIRED_WORLD_VARIABLES |
tuple[str, ...]
|
Required set of variables at the world level |
SECTOR_DOMESTIC_AVIATION |
Domestic aviation sector |
|
gridding_sectors_reporting |
The reporting sector component definitions |
COMPLETE_MODEL_REGION_VARIABLES
module-attribute
#
COMPLETE_MODEL_REGION_VARIABLES: tuple[str, ...] = tuple(
v
for gs in gridding_sectors_reporting
if spatial_resolution == MODEL_REGION
for v in to_complete_variables()
)
Complete set of variables at the model region level
COMPLETE_WORLD_VARIABLES
module-attribute
#
COMPLETE_WORLD_VARIABLES: tuple[str, ...] = tuple(
v
for gs in gridding_sectors_reporting
if spatial_resolution == WORLD
for v in to_complete_variables()
)
Complete set of variables at the world level
OPTIONAL_MODEL_REGION_VARIABLES
module-attribute
#
OPTIONAL_MODEL_REGION_VARIABLES: tuple[str, ...] = tuple(
set(COMPLETE_MODEL_REGION_VARIABLES)
- set(REQUIRED_MODEL_REGION_VARIABLES)
)
Optional set of variables at the model region level
OPTIONAL_WORLD_VARIABLES
module-attribute
#
OPTIONAL_WORLD_VARIABLES: tuple[str, ...] = tuple(
set(COMPLETE_WORLD_VARIABLES)
- set(REQUIRED_WORLD_VARIABLES)
)
Optional set of variables at the world level
REQUIRED_MODEL_REGION_VARIABLES
module-attribute
#
REQUIRED_MODEL_REGION_VARIABLES: tuple[str, ...] = tuple(
v
for gs in gridding_sectors_reporting
if spatial_resolution == MODEL_REGION
for v in to_required_variables()
)
Required set of variables at the model region level
REQUIRED_WORLD_VARIABLES
module-attribute
#
REQUIRED_WORLD_VARIABLES: tuple[str, ...] = tuple(
v
for gs in gridding_sectors_reporting
if spatial_resolution == WORLD
for v in to_required_variables()
)
Required set of variables at the world level
SECTOR_DOMESTIC_AVIATION
module-attribute
#
Domestic aviation sector
gridding_sectors_reporting
module-attribute
#
gridding_sectors_reporting = (
GriddingSectorComponents(
gridding_sector="Agricultural Waste Burning",
spatial_resolution=MODEL_REGION,
input_sectors=("AFOLU|Agricultural Waste Burning",),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=("CO2",),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Agriculture",
spatial_resolution=MODEL_REGION,
input_sectors=(
"AFOLU|Agriculture",
"AFOLU|Land|Harvested Wood Products",
"AFOLU|Land|Land Use and Land-Use Change",
"AFOLU|Land|Other",
"AFOLU|Land|Wetlands",
),
input_sectors_optional=(
"AFOLU|Land|Harvested Wood Products",
"AFOLU|Land|Land Use and Land-Use Change",
"AFOLU|Land|Other",
"AFOLU|Land|Wetlands",
),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(
"BC",
"CO",
"OC",
"CO2",
"Sulfur",
),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Aircraft",
spatial_resolution=WORLD,
input_sectors=(
"Energy|Demand|Bunkers|International Aviation",
),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=("CH4",),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Domestic aviation headache",
spatial_resolution=MODEL_REGION,
input_sectors=(SECTOR_DOMESTIC_AVIATION,),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=("CH4",),
reporting_only=True,
),
GriddingSectorComponents(
gridding_sector="Transportation Sector",
spatial_resolution=MODEL_REGION,
input_sectors=("Energy|Demand|Transportation",),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Energy Sector",
spatial_resolution=MODEL_REGION,
input_sectors=("Energy|Supply",),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Forest Burning",
spatial_resolution=MODEL_REGION,
input_sectors=("AFOLU|Land|Fires|Forest Burning",),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=("CO2",),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Grassland Burning",
spatial_resolution=MODEL_REGION,
input_sectors=(
"AFOLU|Land|Fires|Grassland Burning",
),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=("CO2",),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Industrial Sector",
spatial_resolution=MODEL_REGION,
input_sectors=(
"Energy|Demand|Industry",
"Energy|Demand|Other Sector",
"Industrial Processes",
"Other",
),
all_species=COMPLETE_GRIDDING_SPECIES,
input_sectors_optional=(
"Energy|Demand|Other Sector",
"Other",
),
input_species_optional=(),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="International Shipping",
spatial_resolution=WORLD,
input_sectors=(
"Energy|Demand|Bunkers|International Shipping",
),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Peat Burning",
spatial_resolution=MODEL_REGION,
input_sectors=("AFOLU|Land|Fires|Peat Burning",),
input_sectors_optional=(
"AFOLU|Land|Fires|Peat Burning",
),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=COMPLETE_GRIDDING_SPECIES,
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Residential Commercial Other",
spatial_resolution=MODEL_REGION,
input_sectors=(
"Energy|Demand|Residential and Commercial and AFOFI",
),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Solvents Production and Application",
spatial_resolution=MODEL_REGION,
input_sectors=("Product Use",),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(
"BC",
"CH4",
"CO",
"NOx",
"OC",
"Sulfur",
),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Waste",
spatial_resolution=MODEL_REGION,
input_sectors=("Waste",),
input_sectors_optional=(),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(),
reporting_only=False,
),
GriddingSectorComponents(
gridding_sector="Other CDR",
spatial_resolution=MODEL_REGION,
input_sectors=("Other Capture and Removal",),
input_sectors_optional=(
"Other Capture and Removal",
),
all_species=COMPLETE_GRIDDING_SPECIES,
input_species_optional=(
"CH4",
"N2O",
"BC",
"CO",
"NH3",
"OC",
"NOx",
"Sulfur",
"VOC",
),
reporting_only=False,
),
GriddingSectorComponentsCarbonRemovalReporting(
gridding_sector="BECCS",
spatial_resolution=MODEL_REGION,
input_sectors=("Geological Storage|Biomass",),
input_sectors_optional=(
"Geological Storage|Biomass",
),
reporting_only=False,
),
GriddingSectorComponentsCarbonRemovalReporting(
gridding_sector="Enhanced Weathering",
spatial_resolution=MODEL_REGION,
input_sectors=("Enhanced Weathering",),
input_sectors_optional=("Enhanced Weathering",),
reporting_only=False,
),
GriddingSectorComponentsCarbonRemovalReporting(
gridding_sector="Direct Air Capture",
spatial_resolution=MODEL_REGION,
input_sectors=(
"Geological Storage|Direct Air Capture",
),
input_sectors_optional=(
"Geological Storage|Direct Air Capture",
),
reporting_only=False,
),
GriddingSectorComponentsCarbonRemovalReporting(
gridding_sector="Ocean",
spatial_resolution=MODEL_REGION,
input_sectors=("Ocean",),
input_sectors_optional=("Ocean",),
reporting_only=False,
),
GriddingSectorComponentsCarbonRemovalReporting(
gridding_sector="Biochar",
spatial_resolution=MODEL_REGION,
input_sectors=("Land Use|Biochar",),
input_sectors_optional=("Land Use|Biochar",),
reporting_only=False,
),
GriddingSectorComponentsCarbonRemovalReporting(
gridding_sector="Soil Carbon Management",
spatial_resolution=MODEL_REGION,
input_sectors=("Land Use|Soil Carbon Management",),
input_sectors_optional=(
"Land Use|Soil Carbon Management",
),
reporting_only=False,
),
)
The reporting sector component definitions
Note that this only defines the reporting sectors. The sectors used for aggregation are defined in to_gridding_sectors because the logic for how we do the re-aggregation is more complex than a straight mapping.
GriddingSectorComponents #
Definition of the components of a gridding sector for reporting
This is meant for internal use only.
OR logic is applied to the exclusions
i.e. a variable will not be required
if the sector is in input_sectors_optional
or the species is in input_species_optional
(i.e. we are maximally relaxed about optional reporting,
instead of using AND logic and being restrictive).
Methods:
| Name | Description |
|---|---|
to_complete_variables |
Convert to the complete set of variables for this gridding sector |
to_required_variables |
Convert to the required set of variables for this gridding sector |
Attributes:
| Name | Type | Description |
|---|---|---|
all_species |
tuple[str, ...]
|
The input species |
gridding_sector |
str
|
The gridding sector |
input_sectors |
tuple[str, ...]
|
The input sectors |
input_sectors_optional |
tuple[str, ...]
|
The input sectors that are optional |
input_species_optional |
tuple[str, ...]
|
The input species that are optional |
reporting_only |
bool
|
Is this definition only used for reporting, not aggregating? |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
input_sectors_optional
instance-attribute
#
The input sectors that are optional
input_species_optional
instance-attribute
#
The input species that are optional
reporting_only
instance-attribute
#
reporting_only: bool
Is this definition only used for reporting, not aggregating?
to_complete_variables #
Convert to the complete set of variables for this gridding sector
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
to_required_variables #
Convert to the required set of variables for this gridding sector
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
GriddingSectorComponentsCarbonRemovalReporting #
Definition of the components of a carbon removal gridding sector for reporting
This is for carbon removal i.e. is for CO2 only.
This is meant for internal use only.
Methods:
| Name | Description |
|---|---|
to_complete_variables |
Convert to the complete set of variables for this gridding sector |
to_required_variables |
Convert to the required set of variables for this gridding sector |
Attributes:
| Name | Type | Description |
|---|---|---|
gridding_sector |
str
|
The gridding sector |
input_sectors |
tuple[str, ...]
|
The input sectors |
input_sectors_optional |
tuple[str, ...]
|
The input sectors that are optional |
reporting_only |
bool
|
Is this definition only used for reporting, not aggregating? |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
input_sectors_optional
instance-attribute
#
The input sectors that are optional
reporting_only
instance-attribute
#
reporting_only: bool
Is this definition only used for reporting, not aggregating?
to_complete_variables #
Convert to the complete set of variables for this gridding sector
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
to_required_variables #
Convert to the required set of variables for this gridding sector
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
ReaggregatorBasic #
Reaggregator that follows this module's logic
Methods:
| Name | Description |
|---|---|
assert_has_all_required_timeseries |
Assert that the data has all the required timeseries |
assert_is_internally_consistent |
Assert that the data is internally consistent |
default_tols_internal_consistency |
Get default tolerances for internal consistency checks |
get_internal_consistency_checking_index |
Get the index which selects only data relevant for checking internal consistency |
to_complete |
Convert the raw data to complete data |
to_gridding_sectors |
Re-aggregate data to the sectors used for gridding |
Attributes:
| Name | Type | Description |
|---|---|---|
internal_consistency_tolerances |
Mapping[str, Mapping[str, float]] | Mapping[str, Mapping[str, PINT_SCALAR]]
|
Tolerances to apply when checking the internal consistency of the data |
model_regions |
tuple[str, ...]
|
Model regions to use while reaggregating |
region_level |
str
|
Region level in the data index |
unit_level |
str
|
Unit level in the data index |
variable_level |
str
|
Variable level in the data index |
world_region |
str
|
The value used when the data represents the sum over all regions |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 | |
internal_consistency_tolerances
class-attribute
instance-attribute
#
internal_consistency_tolerances: (
Mapping[str, Mapping[str, float]]
| Mapping[str, Mapping[str, PINT_SCALAR]]
) = field()
Tolerances to apply when checking the internal consistency of the data
model_regions
instance-attribute
#
Model regions to use while reaggregating
region_level
class-attribute
instance-attribute
#
region_level: str = 'region'
Region level in the data index
unit_level
class-attribute
instance-attribute
#
unit_level: str = 'unit'
Unit level in the data index
variable_level
class-attribute
instance-attribute
#
variable_level: str = 'variable'
Variable level in the data index
world_region
class-attribute
instance-attribute
#
world_region: str = 'World'
The value used when the data represents the sum over all regions
(Having a value for this is odd, there should really just be no region level when data is the sum, but this is the data format used so we have to follow this convention.)
assert_has_all_required_timeseries #
assert_has_all_required_timeseries(indf: DataFrame) -> None
Assert that the data has all the required timeseries
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
indf
|
DataFrame
|
Data to check |
required |
Raises:
| Type | Description |
|---|---|
NotCompleteError
|
|
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
assert_is_internally_consistent #
assert_is_internally_consistent(indf: DataFrame) -> None
Assert that the data is internally consistent
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
indf
|
DataFrame
|
Data to check |
required |
Raises:
| Type | Description |
|---|---|
InternalConsistencyError
|
The data is not internally consistent |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
default_tols_internal_consistency #
default_tols_internal_consistency() -> (
Mapping[str, Mapping[str, float]]
| Mapping[str, Mapping[str, PINT_SCALAR]]
)
Get default tolerances for internal consistency checks
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
get_internal_consistency_checking_index #
get_internal_consistency_checking_index() -> MultiIndex
Get the index which selects only data relevant for checking internal consistency
Returns:
| Type | Description |
|---|---|
MultiIndex
|
Internal consistency checking index |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
to_complete #
to_complete(raw: DataFrame) -> ToCompleteResult
Convert the raw data to complete data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
raw
|
DataFrame
|
Raw data |
required |
Returns:
| Type | Description |
|---|---|
ToCompleteResult
|
To complete result |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
to_gridding_sectors #
Re-aggregate data to the sectors used for gridding
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
indf
|
DataFrame
|
Data to re-aggregate |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
Data re-aggregated to the gridding sectors |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
aggregate_cols #
Aggregate columns
This is a helper function for to_gridding_sectors.
It does the aggregation in place so we can check that all the columns were used.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Starting pd.DataFrame |
required |
aggregations
|
dict[str, list[str]]
|
Aggregations to apply Each key is the output column, each value is the components that contribute to the output column. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
|
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
assert_has_all_required_timeseries #
assert_has_all_required_timeseries(
df: DataFrame,
model_regions: tuple[str, ...],
world_region: str = "World",
region_level: str = "region",
variable_level: str = "variable",
) -> None
Assert that the data has all the required timeseries
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Data to check |
required |
model_regions
|
tuple[str, ...]
|
Model regions to use while reaggregating |
required |
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
region_level
|
str
|
Region level in the data index |
'region'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
Raises:
| Type | Description |
|---|---|
NotCompleteError
|
|
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
assert_is_internally_consistent #
assert_is_internally_consistent(
df: DataFrame,
model_regions: tuple[str, ...],
tolerances: Mapping[str, Mapping[str, float]]
| Mapping[str, Mapping[str, PINT_SCALAR]],
world_region: str = "World",
region_level: str = "region",
unit_level: str = "unit",
variable_level: str = "variable",
) -> None
Assert that the data is internally consistent
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Data to check |
required |
model_regions
|
tuple[str, ...]
|
Model regions to use while reaggregating |
required |
tolerances
|
Mapping[str, Mapping[str, float]] | Mapping[str, Mapping[str, PINT_SCALAR]]
|
Tolerances to apply while checking internal consistency Each key should be a variable up to species info e.g. "Emission|CH4" and each value should be the tolerance arguments to pass to np.isclose. These tolerance arguments can be pint quantities, in which case they are converted to the data's units before passing to np.isclose. |
required |
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
region_level
|
str
|
Region level in the data index |
'region'
|
unit_level
|
str
|
Unit level in the data index |
'unit'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
Raises:
| Type | Description |
|---|---|
InternalConsistencyError
|
The data is not internally consistent at the given tolerances |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 | |
get_complete_timeseries_index #
get_complete_timeseries_index(
model_regions: tuple[str, ...],
world_region: str = "World",
region_level: str = "region",
variable_level: str = "variable",
) -> MultiIndex
Get the index of complete data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_regions
|
tuple[str, ...]
|
Model regions to use while reaggregating |
required |
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
region_level
|
str
|
Region level in the data index |
'region'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
Returns:
| Type | Description |
|---|---|
MultiIndex
|
Index of complete data |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
get_default_internal_conistency_checking_tolerances #
get_default_internal_conistency_checking_tolerances() -> (
Mapping[str, Mapping[str, float]]
| Mapping[str, Mapping[str, PINT_SCALAR]]
)
Get default tolerances used when checking the internal consistency of data
If openscm_units is available, we use pint quantities for the tolerances to add unit awareness. If not, we return plain floats.
Returns:
| Type | Description |
|---|---|
Mapping[str, Mapping[str, float]] | Mapping[str, Mapping[str, PINT_SCALAR]]
|
Tolerances to use when checking the internal consistency of the data |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
get_example_input #
get_example_input(
model_regions: tuple[str, ...],
global_only_variables: tuple[tuple[str, str], ...] = (
("Emissions|HFC|HFC23", "kt HFC23/yr"),
("Emissions|HFC", "kt HFC134a-equiv/yr"),
("Emissions|HFC|HFC134a", "kt HFC134a/yr"),
("Emissions|HFC|HFC43-10", "kt HFC43-10/yr"),
("Emissions|PFC", "kt CF4-equiv/yr"),
("Emissions|F-Gases", "Mt CO2-equiv/yr"),
("Emissions|SF6", "kt SF6/yr"),
("Emissions|CF4", "kt CF4/yr"),
("Emissions|C2F6", "kt C2F6/yr"),
("Emissions|C6F14", "kt C6F14/yr"),
),
timepoints: NP_ARRAY_OF_FLOAT_OR_INT = arange(
2010, 2100 + 1, 10.0
),
get_variable_unit: Callable[
[str], str
] = get_variable_unit_default,
rng: Generator = default_rng(),
world_region: str = "World",
model: str = "model",
scenario: str = "scenario",
region_level: str = "region",
variable_level: str = "variable",
model_level: str = "model",
scenario_level: str = "scenario",
unit_level: str = "unit",
columns_name: str = "year",
) -> DataFrame
Get example input data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_regions
|
tuple[str, ...]
|
Model regions to use in the example data |
required |
global_only_variables
|
tuple[tuple[str, str], ...]
|
Variables to include only at the global total level |
(('Emissions|HFC|HFC23', 'kt HFC23/yr'), ('Emissions|HFC', 'kt HFC134a-equiv/yr'), ('Emissions|HFC|HFC134a', 'kt HFC134a/yr'), ('Emissions|HFC|HFC43-10', 'kt HFC43-10/yr'), ('Emissions|PFC', 'kt CF4-equiv/yr'), ('Emissions|F-Gases', 'Mt CO2-equiv/yr'), ('Emissions|SF6', 'kt SF6/yr'), ('Emissions|CF4', 'kt CF4/yr'), ('Emissions|C2F6', 'kt C2F6/yr'), ('Emissions|C6F14', 'kt C6F14/yr'))
|
timepoints
|
NP_ARRAY_OF_FLOAT_OR_INT
|
Timepoints to use in the example |
arange(2010, 2100 + 1, 10.0)
|
get_variable_unit
|
Callable[[str], str]
|
Function to use to get the unit for each variable |
get_variable_unit_default
|
rng
|
Generator
|
Random number generator |
default_rng()
|
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
model
|
str
|
Model metadata value |
'model'
|
scenario
|
str
|
Scenario metadata value |
'scenario'
|
region_level
|
str
|
Region level in the data index |
'region'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
model_level
|
str
|
Model level in the data index |
'model'
|
scenario_level
|
str
|
Scenario level in the data index |
'scenario'
|
unit_level
|
str
|
Unit level in the data index |
'unit'
|
columns_name
|
str
|
Name of the columns in the output |
'year'
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
Example input expected by the re-aggregator |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 | |
get_internal_consistency_checking_index #
get_internal_consistency_checking_index(
model_regions: tuple[str, ...],
world_region: str = "World",
region_level: str = "region",
variable_level: str = "variable",
) -> MultiIndex
Get the index which selects only data relevant for checking internal consistency
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_regions
|
tuple[str, ...]
|
Model regions to use while reaggregating |
required |
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
region_level
|
str
|
Region level in the data index |
'region'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
Returns:
| Type | Description |
|---|---|
MultiIndex
|
Internal consistency checking index |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
get_required_timeseries_index #
get_required_timeseries_index(
model_regions: tuple[str, ...],
world_region: str = "World",
region_level: str = "region",
variable_level: str = "variable",
) -> MultiIndex
Get the index of required data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_regions
|
tuple[str, ...]
|
Model regions to use while reaggregating |
required |
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
region_level
|
str
|
Region level in the data index |
'region'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
Returns:
| Type | Description |
|---|---|
MultiIndex
|
Index for required data |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
to_complete #
to_complete(
indf: DataFrame,
model_regions: tuple[str, ...],
unit_level: str = "unit",
variable_level: str = "variable",
region_level: str = "region",
world_region: str = "World",
) -> ToCompleteResult
Convert the raw data to complete data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
indf
|
DataFrame
|
Data to process |
required |
model_regions
|
tuple[str, ...]
|
Model regions to use while reaggregating |
required |
unit_level
|
str
|
Unit level in the data index |
'unit'
|
variable_level
|
str
|
Variable level in the data index |
'variable'
|
region_level
|
str
|
Region level in the data index |
'region'
|
world_region
|
str
|
The value used when the data represents the sum over all regions |
'World'
|
Returns:
| Type | Description |
|---|---|
ToCompleteResult
|
To complete result |
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 | |
to_gridding_sectors #
to_gridding_sectors(
indf: DataFrame,
region_level: str = "region",
world_region: str = "World",
) -> DataFrame
Re-aggregate data to the sectors used for gridding
Parameters#
indf Data to re-aggregate
region_level Region level in the data index
world_region The value used when the data represents the sum over all regions
Returns#
: Data re-aggregated to the gridding sectors
Source code in src/gcages/cmip7_scenariomip/pre_processing/reaggregation/basic.py
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 | |