Quickstart
Creating a project
What is a project?
In terms of this API, a project represents a single asset that you would like to have monitored or be assessed. This can include a large area of forest, a set of farm parcels, or a single location given by a lat/lon coordinate.
π Info
We are testing endpoints that deal with portfolios of projects/locations. This is a new feature and is not yet available to all users. If you are interested in this feature, please contact us at api@fix6.io
Example workflow for creating a project
As an example for a project letβs start with Central Park in New York City. This guide assumes that you have created a GeoJSON or KML file of the area of interest.
1. Create a project
With a GeoJSON or KML file, we can create a project.
The response contains some important information about the project.
The id
is the unique identifier for the project and will be used to access information about the project.
The area of the project is also returned in area_hectares
and will be subtracted from your quota.
2. Retrieving your projects
You can retrieve a list of your projects using the GET /projects
endpoint.
This returns metadata for your projects, without the geometry. To retrieve the geometry you can call the GET /projects/{project_id}
endpoint.
3. Seeing data available for your project
When you submit a new project, it kicks of a process of collecting data for your area of interest from terabytes of satellite imagery, remote sensing, and climate data.
We then automatically start running our models on this data to generate insights for your project.
This process can take a roughly fifteen minutes to a few hours depending on the size of your project and the amount of data available.
If you would like to see the status of your project, you can use the GET /projects/{project_id}/available_data
endpoint.
The response will contain a list of the data that is available for your project, with an example given below.
remote_sensing_indices
contains the date range of the satellite imagery that is available for your projectclimate_risk
contains a list of climate indicatorscarbon_programs
contains information about carbon programs and a status of analyses done to dateclimate_programs
contains information about climate reporting programs and a status of analyses done to date
These analyses are an optional part of your plan and determined during onboarding.
Any analyses that are is in the process of being run will contain null
.
The example below shows that the project is eligible for the Verra ARR program, but the analyses have not yet been run to
determine the baseline sequestration or performance benchmark for the project.