LV Monitoring Aggregated Data

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
Year_Month
The year and month in which the capacity utilisation values were reported. 

No description available for this field.

Name (identifier)
year_month
Type
text
Sample
                       
Licence Area
The licence area (SPD or SPM). 

No description available for this field.

Name (identifier)
licence_area
Type
text
Sample
                       
Substation Name
The name of the secondary substation with LV monitoring coverage. 

No description available for this field.

Name (identifier)
substation_name
Type
text
Sample
                       
Transformer ENID
Unique identifier of the transformer in the secondary substation. 

No description available for this field.

Name (identifier)
transformer_enid
Type
text
Sample
                       
Geo Point
Geopoints to display the secondary substation's location on map.  

No description available for this field.

Name (identifier)
geopoint_2d
Type
geo point
Sample
                       
District
District where the transformer is located. 

No description available for this field.

Name (identifier)
district
Type
text
Sample
                       
Maximum Capacity Utilisation
The maximum percentage of capacity utilised for a transformer in that month of the year. 

No description available for this field.

Name (identifier)
maximum_capacity_utilisation
Type
decimal
Sample
                       
Aggregated Power Factor
Average Power Factor in a month for a specific transformer. 

No description available for this field.

Name (identifier)
aggregated_power_factor
Type
decimal
Sample
                       
5th Percentile Capacity Utilisation
Capacity utilisation value below which the bottom 5% of the values fall in. 

No description available for this field.

Name (identifier)
5th_percentile_capacity_utilisation
Type
decimal
Sample
                       
50th Percentile Capacity Utilisation
Capacity utilisation value below which the bottom 50% of the values fall in. 

No description available for this field.

Name (identifier)
50th_percentile_capacity_utilisation
Type
decimal
Sample
                       
95th Percentile Capacity Utilisation
Capacity utilisation value below which the bottom 95% of the values fall in. 

No description available for this field.

Name (identifier)
95th_percentile_capacity_utilisation
Type
decimal
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"lv_monitor",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/lv_monitor"
      }
    ]
    ,
  • "definitions":
    {
    • "lv_monitor":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/lv_monitor_records"
            }
          }
        }
      }
      ,
    • "geoJSON":
      {
      • "title":"Geo JSON object",
      • "description":"Schema for a Geo JSON object",
      • "type":"object",
      • "required":
        [
        • "type"
        ]
        ,
      • "properties":
        {
        • "crs":
          {
          • "$ref":"#/definitions/crs"
          }
          ,
        • "bbox":
          {
          • "$ref":"#/definitions/bbox"
          }
        }
        ,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/geometry"
          }
          ,
        • {
          • "$ref":"#/definitions/geometryCollection"
          }
          ,
        • {
          • "$ref":"#/definitions/feature"
          }
          ,
        • {
          • "$ref":"#/definitions/featureCollection"
          }
        ]
      }
      ,
    • "bbox":
      {
      • "description":"A bounding box as defined by GeoJSON",
      • "type":"array",
      • "items":
        {
        • "type":"number"
        }
      }
      ,
    • "crs":
      {
      • "title":"crs",
      • "description":"a Coordinate Reference System object",
      • "type":
        [
        • "object",
        • "null"
        ]
        ,
      • "required":
        [
        • "type",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "type":"string"
          }
          ,
        • "properties":
          {
          • "type":"object"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "position":
          {
          • "description":"A single position",
          • "type":"array",
          • "minItems":2,
          • "items":
            [
            • {
              • "type":"number"
              }
              ,
            • {
              • "type":"number"
              }
            ]
            ,
          • "additionalItems":false
          }
          ,
        • "positionArray":
          {
          • "description":"An array of positions",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/position"
            }
          }
          ,
        • "lineString":
          {
          • "description":"An array of two or more positions",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":2
              }
            ]
          }
          ,
        • "linearRing":
          {
          • "description":"An array of four positions where the first equals the last",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":4
              }
            ]
          }
          ,
        • "polygon":
          {
          • "description":"An array of linear rings",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/linearRing"
            }
          }
        }
        ,
      • "lv_monitor_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "year_month":
                {
                • "type":"string",
                • "title":"Year_Month",
                • "description":"The year and month in which the capacity utilisation values were reported. "
                }
                ,
              • "licence_area":
                {
                • "type":"string",
                • "title":"Licence Area",
                • "description":"The licence area (SPD or SPM). "
                }
                ,
              • "substation_name":
                {
                • "type":"string",
                • "title":"Substation Name",
                • "description":"The name of the secondary substation with LV monitoring coverage. "
                }
                ,
              • "transformer_enid":
                {
                • "type":"string",
                • "title":"Transformer ENID",
                • "description":"Unique identifier of the transformer in the secondary substation. "
                }
                ,
              • "geopoint_2d":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Geo Point",
                • "description":"Geopoints to display the secondary substation's location on map. "
                }
                ,
              • "district":
                {
                • "type":"string",
                • "title":"District",
                • "description":"District where the transformer is located. "
                }
                ,
              • "maximum_capacity_utilisation":
                {
                • "type":"number",
                • "title":"Maximum Capacity Utilisation",
                • "description":"The maximum percentage of capacity utilised for a transformer in that month of the year. "
                }
                ,
              • "aggregated_power_factor":
                {
                • "type":"number",
                • "title":"Aggregated Power Factor",
                • "description":"Average Power Factor in a month for a specific transformer. "
                }
                ,
              • "5th_percentile_capacity_utilisation":
                {
                • "type":"number",
                • "title":"5th Percentile Capacity Utilisation",
                • "description":"Capacity utilisation value below which the bottom 5% of the values fall in. "
                }
                ,
              • "50th_percentile_capacity_utilisation":
                {
                • "type":"number",
                • "title":"50th Percentile Capacity Utilisation",
                • "description":"Capacity utilisation value below which the bottom 50% of the values fall in. "
                }
                ,
              • "95th_percentile_capacity_utilisation":
                {
                • "type":"number",
                • "title":"95th Percentile Capacity Utilisation",
                • "description":"Capacity utilisation value below which the bottom 95% of the values fall in. "
                }
              }
            }
          }
        }
      }
    }

    Similar datasets