Export Jobs: Pulse Meter Measurements Interface
Table of Contents
Once you have set up your export jobs (see Export Jobs: Setup), each job invocation will create a data file/stream. The service supports Four types of data: Catalog, Measurements, Pulse Meter Measurements, and Pan42 Measurements. This guide will discuss what to expect in the Pulse Meter Measurements export job type.
Pulse Meter Measurements
The Pulse Meter Measurements document data structure consists of the actual electrical readings measured by Third party Pulse Meters that are connected via a Bridge.
Name | Description |
---|---|
Meter_id | The ID of an electrical third party pulse meter connected via a bridge. |
Meter_type | The Meter type: Electricity, Electricity Pulse Meter, Water, Gas, Heat, Air. |
Meter_name | The meter name as assigned at installation time. |
Meter_Unit | The meter units (m3 ,Nm3, Sm3, ft3, SCF, Gallon). |
measurement_time (UTC) | The time of the measurement in the UTC time zone, in ISO 8601 format. |
resolution (minutes) | The number of minutes this measurement data is relevant for. |
site_id | A unique identifier of the physical site in the software, in which the device is located. |
site_name | The site’s name as assigned at installation time. For example, "New York site". |
power (W) | Electrical power |
energy (Wh) | Electrical energy |
Flow | Flow readings, units of the flow are defined in the Meter_Unit fields |
Volume | Volume readings, units of the flow are defined in the Meter_Unit fields |
CSV Pulse Meter Measurements Example
Below is an example of the Pulse Meter Measurements export in a CSV format.
CSV Pulse Meter Measurements Example.csv
JSON Pulse Meter Measurements Example
{
"measurements": [
{
"METER_ID": 2796,
"METER_TYPE": "Electricity",
"METER_NAME": "M1_LG_Pano_1",
"METER_UNIT": "kWh",
"MEASUREMENT_TIME(UTC)": "2019-04-08T17:10:00Z",
"RESOLUTION(min)": 1,
"SITE_ID": 3026,
"SITE_NAME": "Panoramic Offices",
"POWER(W)": "192000.01",
"ENERGY(Wh)": "3.20",
"FLOW": "N/A",
"VOLUME": "N/A"
},
{
"METER_ID": 2806,
"METER_TYPE": "Water",
"METER_NAME": "Water",
"METER_UNIT": "ft³",
"MEASUREMENT_TIME(UTC)": "2019-04-08T17:13:00Z",
"RESOLUTION(min)": 1,
"SITE_ID": 41944,
"SITE_NAME": "Volume meters",
"POWER(W)": "N/A",
"ENERGY(Wh)": "N/A",
"FLOW": "290.00",
"VOLUME": "4.57"
},
{
"METER_ID": 2807,
"METER_TYPE": "Air",
"METER_NAME": "Air",
"METER_UNIT": "Nm³",
"MEASUREMENT_TIME(UTC)": "2019-04-08T17:10:00Z",
"RESOLUTION(min)": 1,
"SITE_ID": 41944,
"SITE_NAME": "Volume meters",
"POWER(W)": "N/A",
"ENERGY(Wh)": "N/A",
"FLOW": "390.00",
"VOLUME": "6.50"
}
]
}