GB System Voltage Excursions - FY1920
-
GB System Voltage Excursions - FY1920
The National Grid Electricity System Operator (ESO) publishes an annual report on the performance of the National Electricity Transmission System in Great Britain and fulfils Transmission Licence Standard Condition C17: Transmission System Security Standard and Quality of Service.
The Electricity Safety, Quality and Continuity Regulations 2002 permit variations of voltage not exceeding 10% above and below the nominal at voltages of 132kV and above and not exceeding 6% at lower voltages. Any voltage excursions in excess of 15 minutes will be reported.
The Grid Code reflects these limits, and imposes a further constraint for the 400kV system in that voltages can only exceed +5% for a maximum of 15 minutes. Reportable excursions may be either at the HV and/or LV of a connection point with a Grid Code User.
This dataset shows all reportable voltage excursions till date in 2019/2020 based on C17 reporting criteria.
CKAN Data API
Access resource data via a web API with powerful query support.
Further information in the
main CKAN Data API and DataStore documentation
.
The Data API can be accessed via the following actions of the CKAN action API.
Query |
https://data.nationalgrideso.com/api/3/action/datastore_search
|
---|---|
Query (via SQL) |
https://data.nationalgrideso.com/api/3/action/datastore_search_sql
|
A simple ajax (JSONP) request to the data API using jQuery.
var data = { resource_id: 'e26c44aa-fca1-4e17-8e93-3798430e3f92', // the resource id limit: 5 // get 5 results }; $.ajax({ url: 'https://data.nationalgrideso.com/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
A simple ajax (JSONP) request to the data API using jQuery.
import urllib2 url = 'https://data.nationalgrideso.com/api/3/action/datastore_search?resource_id=e26c44aa-fca1-4e17-8e93-3798430e3f92&limit=5' fileobj = urllib2.urlopen(url) print fileobj.read()