A comprehensive guide to getting started and making the most of your AlliedOffsets Metabase platform access.
Welcome to AlliedOffsets! This guide will help you get started with the Metabase platform and make the most of the voluntary & compliance carbon market data available to you.
The AlliedOffsets Dashboard contains the world's largest data source on carbon offsetting projects and prices. It is an online interactive platform containing our full database of 34,000+ carbon offsetting projects around the world, 16,000+ corporate buyers' data, pricing, 12+ compliance scheme monitoring, and everything in between. The data is refreshed 3x a week (Monday, Wednesday, Friday) with updates direct from the registries.
In Metabase, Explorer users will have access to both Personal Collection and company-specific workspace:
When you log into Metabase, you'll see the following main elements:
For any further questions, feedback or requests, please message our Customer Success Coordinator Mo at [email protected].
The AlliedOffsets database provides comprehensive data on carbon offsetting projects, registries, methodologies, and transactions. This section provides an overview of the data structure and available tables. All tables shown on the schema below can have a question built through them.
The database is organised into several interconnected tables that allow for comprehensive analysis of the carbon offsetting market:
Understanding the relationships between tables is crucial for effective data analysis:
Important: When joining tables, be aware of potential data duplication. For example, joining Projects with Credits will duplicate project rows for each credit transaction.
Metabase provides powerful tools for exploring and visualising data. This section covers how to navigate the interface and use these exploration features.
To browse the available tables:
When viewing a table, you can:
The next step would be joining together the data to further build your custom view. Once you click on the 'Join Data' button, you will be prompted to select the data that you want to add.
In this example, we have joined the original 'AlliedOffsets Projects' data, with 'AlliedOffsets Credits' in order to get direct transaction data.
Metabase will then give you the option to select a type of join: the default is a left outer join, but you can change to right outer join, inner join, or full outer join.
The left outer join will select all records from 'AlliedOffsets Projects', along with records from 'AlliedOffsets Credits' that meet the join condition.
If you want to understand more about the different types of joining, you can look at the relevant page on the Metabase website.
A very common example is to join on an ID column in each table - so in this instance we have joined UID from "Credits" table on Project UID from the "Projects" table.
Filters allow you to focus on specific data points:
You can add multiple filters to narrow down your data further.
Once the filters are selected, you can then choose how to summarise the data. Through summarising, you are essentially choosing how to aggregate the data from the previous step. Common metrics are typically Count, Sum of, Average of etc.
In this example, if I want to see a count of Forestry and Land Use projects that are attributed to the ACR registry, I can summarise by Count, and group by 'Project Sector'.
When I click on 'Visualise', this is the view I will then see:
Metabase offers various visualization options:
To change visualization type:
To save your analysis:
To share your analysis with team members, save it to your Company Workspace where all team members with access can view it.
Metabase allows you to create custom questions (queries) to analyze the data in specific ways. This section covers how to create effective questions using both the interactive query builder and SQL.
For more advanced queries, you can use SQL directly:
Here are some example SQL queries for common analyses:
SELECT
"Country",
COUNT(*) as project_count
FROM
projects
GROUP BY
"Country"
ORDER BY
project_count DESC;
SELECT
b."Company",
SUM(c."Quantity") as total_credits
FROM
credits c
JOIN
buyer_info b ON c."Buyer" = b."Company"
GROUP BY
b."Company"
ORDER BY
total_credits DESC;
SELECT
p."Project name",
p."Registry",
p."Country",
c."Transaction type",
c."Quantity",
c."Transaction date"
FROM
projects p
JOIN
credits c ON p."UID" = c."Project UID"
ORDER BY
c."Transaction date" DESC;
This section provides examples of how to use the AlliedOffsets data for common analysis scenarios. This is by no means all that is possible, and please feel free to message Mo ([email protected]) to transform your use case into a question/dashboard.
To analyse supply and demand in a market over time:
This will show you the volume of credits issued vs retired over time in a specific market segment
To compare different project types:
For a more detailed analysis, you can join with the CREDITS table to see the volume of credits by project type.
To analyze buyer activity:
This will show you which sectors are most active in retiring carbon credits.
To analyse the geographic distribution of projects:
This will show you where carbon offsetting projects are concentrated globally.
Accessed through 'Prices and Markets' → 'Market Forecasts':
- Here you will be able to explore supply, demand and price forecasts for CDR and traditional VCM credits.
- We have various views including short term supply pipeline, corporate demand forecasts, as well as CDR price and capacity projections.
Accessed through 'Policy & Compliance' → 'Compliance Markets' → 'Compliance eligible carbon credits':
- Here, you can find VCM credits eligible for compliance schemes and track CORSIA updates.
- You can also view our compliance eligibility tracker here, whereby you can filter by scheme, liquidity and compliance obligations, to then view eligible credits and calculate potential savings from retiring credits
Metabase offers several advanced features for power users. This section covers some of the more sophisticated capabilities.
Dashboards allow you to combine multiple questions into a single view:
Dashboards are great for creating executive summaries or monitoring key metrics that you will be constantly looking at in the future.
You can create custom expressions in the query builder:
For example, you could create a custom expression to calculate the percentage of a project's credits that have been retired.
You can schedule regular exports of questions or dashboards:
This is useful for regular reporting or keeping team members updated.