Export Jobs: 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 Measurements export job type.
Measurements
The Measurements document data structure consists of the actual electrical readings measured by Panoramic Power sensors. (The device ID specified here is the same device ID specified in the Catalog).
Name | Description |
---|---|
device_id | The ID of an electrical device corresponding to the ID in the Catalog. |
device_name | The device name as assigned at installation time. |
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". |
current (A) | Electrical current reading |
voltage (V) | Electrical voltage reading |
power (W) | Electrical power |
power_factor | Electrical power factor |
energy (Wh) | Electrical energy |
CSV Measurements Example
Below is an example of the Measurements export in a CSV format.
JSON Measurements Example
{
"measurements": [{
"device_id": 1,
"device_name": "Main Device",
"measurement_time(UTC)": "2015-10-25T10:40:00Z",
"resolution(minutes)": 5,
"site_id": 11,
"site_name": "Site 1",
"current(A)": 1.73,
"voltage(V)": 240.0,
"power(W)": 394.0,
"power_factor": 0.95,
"energy(Wh)": 32.8
},{
"device_id": 1,
"device_name": "Main Device",
"measurement_time(UTC)": "2015-10-25T10:45:00Z",
"resolution(minutes)": 5,
"site_id": 11,
"site_name": "Site 1",
"current(A)": 1.95,
"voltage(V)": 240.0,
"power(W)": 412.0,
"power_factor": 0.95,
"energy(Wh)": 36.6
}]
}