This repository contains a database in MySQL format with information about nuclear power plants around the world.
Data is also available in formats like JSON and CSV, including a denormalized form.
code
- ISO 3166-1 alpha-2 country codename
- country name in English
id
- numeric id keytype
- nuclear power plant status
id
- numeric id keytype
- nuclear reactor type acronymdescription
- nuclear reactor type long form
id
- numeric id keyname
- nuclear power plant namelatitude
- latitude in decimal formatlongitude
- longitude in decimal formatcountry_code
- ISO 3166-1 alpha-2 country codestatus_id
- nuclear power plant status idreactor_type_id
- nuclear reactor type idreactor_model
- nuclear reactor modelconstruction_start_at
- date when nuclear power plant construction was startedoperational_from
- date when nuclear power plant became operational (also known as commercial operation date)operational_to
- date when nuclear power plant was shutdown (also known as permanent shutdown date)capacity
- nuclear power plant capacity (design net capacity in MWe)source
- source of the informationlast_updated_at
- date and time when information was last updated
Do not use the data from source
and last_updated_at
columns as it is for maintenance purpose only.
SELECT npp.`id`
,npp.`name`
,npp.latitude
,npp.longitude
,c.`name` 'country'
,s.type 'status'
,r.type 'reactor_type'
,npp.reactor_model
,npp.construction_start_at
,npp.operational_from
,npp.operational_to
FROM nuclear_power_plants npp
INNER JOIN countries AS c ON npp.country_code = c.`code`
INNER JOIN nuclear_power_plant_status_type AS s ON npp.status_id = s.id
LEFT OUTER JOIN nuclear_reactor_type AS r ON npp.reactor_type_id = r.id
ORDER BY npp.`id`
The GeoNuclearData database is made available under the Open Database License whose full text can be found at https://opendatacommons.org/licenses/odbl/1.0/.
Any rights in individual contents of the database are licensed under the Database Contents License whose full text can be found at https://opendatacommons.org/licenses/dbcl/1.0/.
Countries data is taken from Unicode Common Locale Data Repository.
Nuclear power plants data is taken from WNA/IAEA, but some of it comes from Wikipedia.