├── .gitignore ├── .pylintrc ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── analyses ├── CarbonFluxQA │ ├── Components │ │ ├── 01_DownloadFiles.py │ │ ├── 02_CreateMasks.py │ │ ├── 03_ZonalStats_Masked.py │ │ ├── 04_ZonalStats_Annualized.py │ │ └── 05_ZonalStats_Clean.py │ ├── README.md │ ├── calculcate_zonal_stats.py │ ├── constants_and_names.py │ └── funcs.py ├── __init__.py ├── create_aggregated_display_maps.py ├── derivative_outputs.py ├── download_tile_set.py ├── mp_derivative_outputs.py ├── mp_net_flux.py ├── mp_tile_statistics.py ├── net_flux.py └── tile_statistics.py ├── carbon_pools ├── __init__.py ├── create_carbon_pools.py └── mp_create_carbon_pools.py ├── constants_and_names.py ├── data_import.bat ├── data_prep ├── __init__.py ├── continent_ecozone_tiles.py ├── create_inputs_for_C_pools.py ├── create_soil_C.py ├── model_extent.py ├── mp_continent_ecozone_tiles.py ├── mp_create_inputs_for_C_pools.py ├── mp_create_soil_C.py ├── mp_mangrove_processing.py ├── mp_model_extent.py ├── mp_peatland_processing.py ├── mp_prep_other_inputs_annual.py ├── mp_prep_other_inputs_one_off.py ├── peatland_processing.py ├── planted_forests_prep │ ├── .Rhistory │ ├── SDPTv2_RFupdates │ │ ├── SDPTv2_RFupdates.R │ │ └── SDPTv2_utils.R │ ├── __init__.py │ ├── mp_plantation_preparation.py │ └── plantation_preparation.py └── prep_other_inputs_one_off.py ├── docker-compose.yaml ├── ec2_launch_template_startup_instructions.TXT ├── emissions ├── __init__.py ├── calculate_gross_emissions.py ├── cpp_util │ ├── calc_gross_emissions_generic.cpp │ ├── calc_gross_emissions_soil_only.cpp │ ├── constants.h │ ├── equations.cpp │ └── flu_val.cpp ├── mp_calculate_gross_emissions.py └── node_codes.txt ├── htoprc ├── pg_hba.conf ├── pixel_area_tile_footprints.zip ├── pytest.ini ├── readme.md ├── removals ├── US_removal_rates.py ├── __init__.py ├── annual_gain_rate_AGC_BGC_all_forest_types.py ├── annual_gain_rate_IPCC_defaults.py ├── annual_gain_rate_mangrove.py ├── forest_age_category_IPCC.py ├── gain_year_count_all_forest_types.py ├── gross_removals_all_forest_types.py ├── mp_US_removal_rates.py ├── mp_annual_gain_rate_AGC_BGC_all_forest_types.py ├── mp_annual_gain_rate_IPCC_defaults.py ├── mp_annual_gain_rate_mangrove.py ├── mp_forest_age_category_IPCC.py ├── mp_gain_year_count_all_forest_types.py └── mp_gross_removals_all_forest_types.py ├── requirements.txt ├── run_full_model.py ├── sensitivity_analysis ├── Mekong_loss.py ├── US_removal_rates.py ├── __init__.py ├── legal_AMZ_loss.py ├── mp_Mekong_loss.py ├── mp_Saatchi_biomass_prep.py ├── mp_US_removal_rates.py └── mp_legal_AMZ_loss.py ├── standard_tile_lists.txt ├── test ├── __init__.py ├── carbon_pools │ ├── __init__.py │ ├── conftest.py │ ├── test_BGC_rasterio.py │ ├── test_deadwood_litter_equations.py │ └── test_deadwood_litter_rasterio.py ├── conftest.py ├── removals │ └── test_annual_removals_all_forest_types_rasterio.py ├── test_data │ ├── 00N_000E_Mg_AGC_ha_emis_year_top_005deg.tif │ ├── 00N_000E_elevation_top_005deg.tif │ ├── 00N_000E_fao_ecozones_bor_tem_tro_processed_top_005deg.tif │ ├── 00N_000E_fao_ecozones_continents_processed_top_005deg.tif │ ├── 00N_000E_mangrove_agb_t_ha_2000_top_005deg.tif │ ├── 00N_000E_precip_mm_annual_top_005deg.tif │ └── 00N_000E_t_aboveground_biomass_ha_2000_top_005deg.tif └── test_utilities.py └── universal_util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/.pylintrc -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/LICENSE -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/Components/01_DownloadFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/Components/01_DownloadFiles.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/Components/02_CreateMasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/Components/02_CreateMasks.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/Components/03_ZonalStats_Masked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/Components/03_ZonalStats_Masked.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/Components/04_ZonalStats_Annualized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/Components/04_ZonalStats_Annualized.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/Components/05_ZonalStats_Clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/Components/05_ZonalStats_Clean.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/README.md -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/calculcate_zonal_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/calculcate_zonal_stats.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/constants_and_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/constants_and_names.py -------------------------------------------------------------------------------- /analyses/CarbonFluxQA/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/CarbonFluxQA/funcs.py -------------------------------------------------------------------------------- /analyses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyses/create_aggregated_display_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/create_aggregated_display_maps.py -------------------------------------------------------------------------------- /analyses/derivative_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/derivative_outputs.py -------------------------------------------------------------------------------- /analyses/download_tile_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/download_tile_set.py -------------------------------------------------------------------------------- /analyses/mp_derivative_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/mp_derivative_outputs.py -------------------------------------------------------------------------------- /analyses/mp_net_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/mp_net_flux.py -------------------------------------------------------------------------------- /analyses/mp_tile_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/mp_tile_statistics.py -------------------------------------------------------------------------------- /analyses/net_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/net_flux.py -------------------------------------------------------------------------------- /analyses/tile_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/analyses/tile_statistics.py -------------------------------------------------------------------------------- /carbon_pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carbon_pools/create_carbon_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/carbon_pools/create_carbon_pools.py -------------------------------------------------------------------------------- /carbon_pools/mp_create_carbon_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/carbon_pools/mp_create_carbon_pools.py -------------------------------------------------------------------------------- /constants_and_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/constants_and_names.py -------------------------------------------------------------------------------- /data_import.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_import.bat -------------------------------------------------------------------------------- /data_prep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_prep/continent_ecozone_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/continent_ecozone_tiles.py -------------------------------------------------------------------------------- /data_prep/create_inputs_for_C_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/create_inputs_for_C_pools.py -------------------------------------------------------------------------------- /data_prep/create_soil_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/create_soil_C.py -------------------------------------------------------------------------------- /data_prep/model_extent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/model_extent.py -------------------------------------------------------------------------------- /data_prep/mp_continent_ecozone_tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_continent_ecozone_tiles.py -------------------------------------------------------------------------------- /data_prep/mp_create_inputs_for_C_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_create_inputs_for_C_pools.py -------------------------------------------------------------------------------- /data_prep/mp_create_soil_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_create_soil_C.py -------------------------------------------------------------------------------- /data_prep/mp_mangrove_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_mangrove_processing.py -------------------------------------------------------------------------------- /data_prep/mp_model_extent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_model_extent.py -------------------------------------------------------------------------------- /data_prep/mp_peatland_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_peatland_processing.py -------------------------------------------------------------------------------- /data_prep/mp_prep_other_inputs_annual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_prep_other_inputs_annual.py -------------------------------------------------------------------------------- /data_prep/mp_prep_other_inputs_one_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/mp_prep_other_inputs_one_off.py -------------------------------------------------------------------------------- /data_prep/peatland_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/peatland_processing.py -------------------------------------------------------------------------------- /data_prep/planted_forests_prep/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_prep/planted_forests_prep/SDPTv2_RFupdates/SDPTv2_RFupdates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/planted_forests_prep/SDPTv2_RFupdates/SDPTv2_RFupdates.R -------------------------------------------------------------------------------- /data_prep/planted_forests_prep/SDPTv2_RFupdates/SDPTv2_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/planted_forests_prep/SDPTv2_RFupdates/SDPTv2_utils.R -------------------------------------------------------------------------------- /data_prep/planted_forests_prep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_prep/planted_forests_prep/mp_plantation_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/planted_forests_prep/mp_plantation_preparation.py -------------------------------------------------------------------------------- /data_prep/planted_forests_prep/plantation_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/planted_forests_prep/plantation_preparation.py -------------------------------------------------------------------------------- /data_prep/prep_other_inputs_one_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/data_prep/prep_other_inputs_one_off.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /ec2_launch_template_startup_instructions.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/ec2_launch_template_startup_instructions.TXT -------------------------------------------------------------------------------- /emissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emissions/calculate_gross_emissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/calculate_gross_emissions.py -------------------------------------------------------------------------------- /emissions/cpp_util/calc_gross_emissions_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/cpp_util/calc_gross_emissions_generic.cpp -------------------------------------------------------------------------------- /emissions/cpp_util/calc_gross_emissions_soil_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/cpp_util/calc_gross_emissions_soil_only.cpp -------------------------------------------------------------------------------- /emissions/cpp_util/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/cpp_util/constants.h -------------------------------------------------------------------------------- /emissions/cpp_util/equations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/cpp_util/equations.cpp -------------------------------------------------------------------------------- /emissions/cpp_util/flu_val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/cpp_util/flu_val.cpp -------------------------------------------------------------------------------- /emissions/mp_calculate_gross_emissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/mp_calculate_gross_emissions.py -------------------------------------------------------------------------------- /emissions/node_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/emissions/node_codes.txt -------------------------------------------------------------------------------- /htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/htoprc -------------------------------------------------------------------------------- /pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/pg_hba.conf -------------------------------------------------------------------------------- /pixel_area_tile_footprints.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/pixel_area_tile_footprints.zip -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/pytest.ini -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/readme.md -------------------------------------------------------------------------------- /removals/US_removal_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/US_removal_rates.py -------------------------------------------------------------------------------- /removals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /removals/annual_gain_rate_AGC_BGC_all_forest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/annual_gain_rate_AGC_BGC_all_forest_types.py -------------------------------------------------------------------------------- /removals/annual_gain_rate_IPCC_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/annual_gain_rate_IPCC_defaults.py -------------------------------------------------------------------------------- /removals/annual_gain_rate_mangrove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/annual_gain_rate_mangrove.py -------------------------------------------------------------------------------- /removals/forest_age_category_IPCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/forest_age_category_IPCC.py -------------------------------------------------------------------------------- /removals/gain_year_count_all_forest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/gain_year_count_all_forest_types.py -------------------------------------------------------------------------------- /removals/gross_removals_all_forest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/gross_removals_all_forest_types.py -------------------------------------------------------------------------------- /removals/mp_US_removal_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_US_removal_rates.py -------------------------------------------------------------------------------- /removals/mp_annual_gain_rate_AGC_BGC_all_forest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_annual_gain_rate_AGC_BGC_all_forest_types.py -------------------------------------------------------------------------------- /removals/mp_annual_gain_rate_IPCC_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_annual_gain_rate_IPCC_defaults.py -------------------------------------------------------------------------------- /removals/mp_annual_gain_rate_mangrove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_annual_gain_rate_mangrove.py -------------------------------------------------------------------------------- /removals/mp_forest_age_category_IPCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_forest_age_category_IPCC.py -------------------------------------------------------------------------------- /removals/mp_gain_year_count_all_forest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_gain_year_count_all_forest_types.py -------------------------------------------------------------------------------- /removals/mp_gross_removals_all_forest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/removals/mp_gross_removals_all_forest_types.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_full_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/run_full_model.py -------------------------------------------------------------------------------- /sensitivity_analysis/Mekong_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/Mekong_loss.py -------------------------------------------------------------------------------- /sensitivity_analysis/US_removal_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/US_removal_rates.py -------------------------------------------------------------------------------- /sensitivity_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sensitivity_analysis/legal_AMZ_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/legal_AMZ_loss.py -------------------------------------------------------------------------------- /sensitivity_analysis/mp_Mekong_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/mp_Mekong_loss.py -------------------------------------------------------------------------------- /sensitivity_analysis/mp_Saatchi_biomass_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/mp_Saatchi_biomass_prep.py -------------------------------------------------------------------------------- /sensitivity_analysis/mp_US_removal_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/mp_US_removal_rates.py -------------------------------------------------------------------------------- /sensitivity_analysis/mp_legal_AMZ_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/sensitivity_analysis/mp_legal_AMZ_loss.py -------------------------------------------------------------------------------- /standard_tile_lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/standard_tile_lists.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/carbon_pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/carbon_pools/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/carbon_pools/conftest.py -------------------------------------------------------------------------------- /test/carbon_pools/test_BGC_rasterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/carbon_pools/test_BGC_rasterio.py -------------------------------------------------------------------------------- /test/carbon_pools/test_deadwood_litter_equations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/carbon_pools/test_deadwood_litter_equations.py -------------------------------------------------------------------------------- /test/carbon_pools/test_deadwood_litter_rasterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/carbon_pools/test_deadwood_litter_rasterio.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/removals/test_annual_removals_all_forest_types_rasterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/removals/test_annual_removals_all_forest_types_rasterio.py -------------------------------------------------------------------------------- /test/test_data/00N_000E_Mg_AGC_ha_emis_year_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_Mg_AGC_ha_emis_year_top_005deg.tif -------------------------------------------------------------------------------- /test/test_data/00N_000E_elevation_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_elevation_top_005deg.tif -------------------------------------------------------------------------------- /test/test_data/00N_000E_fao_ecozones_bor_tem_tro_processed_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_fao_ecozones_bor_tem_tro_processed_top_005deg.tif -------------------------------------------------------------------------------- /test/test_data/00N_000E_fao_ecozones_continents_processed_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_fao_ecozones_continents_processed_top_005deg.tif -------------------------------------------------------------------------------- /test/test_data/00N_000E_mangrove_agb_t_ha_2000_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_mangrove_agb_t_ha_2000_top_005deg.tif -------------------------------------------------------------------------------- /test/test_data/00N_000E_precip_mm_annual_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_precip_mm_annual_top_005deg.tif -------------------------------------------------------------------------------- /test/test_data/00N_000E_t_aboveground_biomass_ha_2000_top_005deg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_data/00N_000E_t_aboveground_biomass_ha_2000_top_005deg.tif -------------------------------------------------------------------------------- /test/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/test/test_utilities.py -------------------------------------------------------------------------------- /universal_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wri/carbon-budget/HEAD/universal_util.py --------------------------------------------------------------------------------