Manage and load data to custom Data Commons instances
Custom Data Commons requires that you provide your data in a specific schema, format, and file structure.
At a high level, you need to provide the following:
- All observations data must be in CSV format, using a predefined schema.
- You must also provide a JSON configuration file, named
config.json
, that specifies how to map and resolve the CSV contents to the Data Commons schema knowledge graph. - Depending on how you define your statistical variables (metrics), you may need to provide MCF (Meta Content Framework) files.
- You may also need to define new custom entities.
Managing this workflow by hand is tedious and easy to get wrong.
The bblocks.datacommons_tools
package streamlines that process. It provides a Python API and command line utilities for building config files, generating MCF from CSV metadata and running the data load pipeline on Google Cloud.
Use this package when you want to:
- Manage
config.json
files programmatically. - Define statistical variables, entities or groups using MCF files.
- Programmatically upload CSVs, MCF files, and the
config.json
file to Cloud Storage, trigger the load job and redeploy your custom Data Commons service with code.
In short, datacommons-tools
removes much of the manual work involved in setting up and maintaining a custom Data Commons Knowledge Graph.
bblocks-datacommons-tools
is part of the bblocks
ecosystem,
a set of Python packages designed as building blocks for working with data in the international development
and humanitarian sectors.
Read the documentation for more details on how to use the package and the motivation for its creation.
The package can be installed in various ways.
Directly as
pip install bblocks-datacommons-tools
Or from the main bblocks
package with an extra:
pip install "bblocks[datacommons-tools]"
It can also be installed from GitHub:
pip install git+https://github.com/ONEcampaign/bblocks-datacommons-tools
Here's a simple example covering how to use the "implicit" Data Commons schema to load a single dataset. Please see the full documentation page for a thorough introduction to the package, and to learn how to use it.
The CustomDataManager object will handle generating the config.json
file, as well as (optionally) taking Pandas DataFrames and exporting them as CSVs (in the right format) for loading to the Knowlede Graph.
In this example, we assume a config.json
does not yet exist.
from bblocks.datacommons_tools import CustomDataManager
# Create the object and call it "manager"
manager = CustomDataManager()
# Configure it to include subdirectories
manager.set_includeInputSubdirs(True)
You can add or manage provenance information on the config.py
file.
In this example, we will add a provenance for ONE Data's Climate Finance Files.
manager.add_provenance(
provenance_name="ONE Climate Finance",
provenance_url="https://datacommons.one.org/data/climate-finance-files",
source_name="ONE Data",
source_url="https://data.one.org",
)
Next, you need to specify your data on the config.json
file.
Adding actual data data to the CustomDataManager
is an optional step.
For this example, we will assume a DataFrame is available via the
data
variable.
To add to the CustomDataManager
, using the Implicit Schema:
manager.add_implicit_schema_file(
file_name="climate_finance/one_cf_provider_commitments.csv",
provenance="ONE Climate Finance",
entityType="Country",
data=data,
ignoreColumns=["oecd_provider_code"],
observationProperties={"unit": "USDollar"},
)
Adding the data in the step above is optional. You can also create the inputFile in the config and add the data tied to that inputFile at a later stage by running:
manager.add_data(data=data, file_name='one_cf_provider_commitments.csv')
Or you can manually add the relevant CSV file (matching what you declared as file_name
).
Next, you need to specify information about the StatVars (variables) contained in your data file(s).
When using the Implicit Schema, you can specify additional information.
For convenience, you could loop through a dictionary of indicators and information. For this example we'll add a single indicator.
manager.add_variable_to_config(
statVar="climateFinanceProvidedCommitments",
name="Climate Finance Commitments (bilateral)",
group="ONE/Environment/Climate finance/Provider perspective/Commitments",
description="Funding for climate adaptation and mitigation projects",
searchDescriptions=[
"Climate finance commitments provided",
"Adaptation and mitigation finance provided",
],
properties={"measurementMethod": "Commitment"},
)
Next, once all the data is added and the config is set up, you can export the config.json
and data. When you export, the config.json
is validated automatically
manager.export_all("path/to/output/folder")
You can also programmatically push the data and config to a Google Cloud Storage Bucket, trigger the data load job, and redeploy your Data Commons instance.
To do this, you'll need to load information about your
project, Storage Bucket, etc. You can use .env
or .json
files,
or simply make the right information available as environment variables.
A detailed description of the needed information, can be found in the documentation.
First, load the settings using get_kg_settings
. In this example, we will load them from a .env
file available in our working directory.
from bblocks.datacommons_tools.gcp_utilities import (
upload_to_cloud_storage,
run_data_load,
redeploy_service,
get_kg_settings,
)
settings = get_kg_settings(source="env", env_file="customDC.env")
Second, we'll upload the directory which contains the config.json
file and
any CSV and/or MCF files.
upload_to_cloud_storage(settings=settings, directory="path/to/output/folder")
Third, we'll run the data load job on Google Cloud Platform.
run_data_load(settings=settings)
Last, we need to redeploy the Custom Data Commons instance.
redeploy_service(settings=settings)
Visit the documentation page for the full package documentation and examples.
Contributions are welcome! Please see the CONTRIBUTING page for details on how to get started, report bugs, fix issues, and submit enhancements.