Developer Portal
Connector Guides
API ReferenceConsole

RTE France EcoMix

RTEFrance_Logo

The RTE France EcoMix connector allows you to connect buildings in France to national energy metrics produced by RTE France, specifically CO2 per KwH.

Use Cases

Potential use cases include:

  • Generating metrics based off of base CO2 per KwH generated

Configuration

No credentials are required for this connector.

Mapped Concepts

Connector ConceptMapped Type
PlaceBuilding
ThingMeter
PointGHG_Emissions_Intensity_Per_Energy

Sample Code

Since you'll be looking for data from a specific sensor for this connector, quickest route is to filter by the thing id like so:

Request Response
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  things(filter: {id: {eq: "THGSR1zvEqunZaNAZD4HHPqP2"}}) {
    id
    name
    exactType
    points {
      id
      name
      exactType
      series(latest: true) {
        value {
          float64Value
        }
        timestamp
      }
    }
  }
}