resource_manager.data_loader

Description:

This file contains the Loader class, which is responsible for loading various datasets related to land cover life cycle assessment.

The Loader class is designed to provide easy access to different types of environmental data, such as land use features, emissions factors, IPCC SOC factors, national forest inventory, and exported peat. This is achieved through an instance of the DataManager class, which manages the actual data retrieval processes.

The Loader class serves as an interface for accessing these datasets, abstracting the underlying data management complexities. It is typically used in environmental assessment and modeling projects that require comprehensive and diverse datasets related to land cover and its impact.

Note

This class is part of a larger suite of tools developed for environmental life cycle assessment and modeling, and it relies on the DataManager class from the landcover_lca.database_manager module for data management.

Module Contents

Classes

Loader

A class that loads data for land cover life cycle assessment.

class resource_manager.data_loader.Loader(ef_country)

A class that loads data for land cover life cycle assessment.

dataframes

An instance of the DataManager class for managing data.

Type:

DataManager

land_use_features()

Returns the land use features.

landuse_emissions_factors()

Returns the land use emissions factors.

ipcc_soc_factors()

Returns the IPCC SOC factors.

national_forest_inventory()

Returns the national forest inventory.

exported_peat()

Returns the exported peat.

nutrient_export_factors()

Returns the nutrient export factors.

land_use_features()

Returns the land use features.

Returns:

The land use features.

Return type:

pandas.DataFrame

landuse_emissions_factors()

Returns the land use emissions factors.

Returns:

The land use emissions factors.

Return type:

pandas.DataFrame

ipcc_soc_factors()

Returns the IPCC SOC factors.

Returns:

The IPCC SOC factors.

Return type:

pandas.DataFrame

national_forest_inventory()

Returns the national forest inventory.

Returns:

The national forest inventory.

Return type:

pandas.DataFrame

exported_peat()

Returns the exported peat.

Returns:

The exported peat.

Return type:

pandas.DataFrame

nutrient_export_factors()

Returns the nutrient export factors.

Returns:

The nutrient export factors.

Return type:

pandas.DataFrame