wind turbines icon

Wind Turbines Python Library

From the CORGIS Dataset Project

By Dennis Kafura, Joung Min Choi, Bo Guan
Version 0.0.2, created 9/17/2021
Tags: energy, wind, power, air, turbine, utility, location, time

Overview

The Open PV Project is a collaborative effort between government, industry, and the public that continues to compile a database of available public data for photovoltaic (PV) installation data for the United States. Data for the project are voluntarily contributed from a variety of sources including solar incentive programs, utilities, installers, and the general public. This database serves as a web-based resource for users to easily explore and understand the current and past trends of the US PV industry. The data collected is actively maintained by the contributors and are always changing to provide an evolving, up-to-date snapshot of the US solar power market.

https://www.sciencebase.gov/catalog/item/57bdfd8fe4b03fd6b7df5ff9

Explore Structure

Each row represents a turbine in the US.

Index Type Example Value
0 dict { }
1 dict (same structure)
2 dict (same structure)
... ... ...
Key Type Example Value Description
"Site" dict { }
"Year" int 2017 Year when the turbine's project became operational
"Turbine" dict { }
"Project" dict { }
Key Type Example Value Description
"State" str "IA" Two letter abbreviation of state where turbine is located (e.g., CA for California)
"County" str "Story County" County where the turbine is located.
"Latitude" float -93.518082 Latitude (decimal degrees - NAD 83 datum) of where turbine is located
"Longitude" float 42.01363 Longitude (decimal degrees - NAD 83 datum)
Key Type Example Value Description
"Capacity" int 3000 Electrical generation capacity of the turbine measured in KW (kilo-watts)
"Hub_Height" float 87.5 Height in meters of the turbine's hub
"Rotor_Diameter" float 125.0 Diameter in meters of the turbine's rotor
"Swept_Area" float 12271.85 The area swept on each rotation of the turbine
"Total_Height" float 150.0 Total height of the turbine, in meters
Key Type Example Value Description
"Capacity" float 30.0 Electrical generation capacity of the turbine measured in MW (mega-watts)
"Number_Turbines" int 10 Number of turbines in this project

Downloads

Download all of the following files.

  1. wind_turbines.py
  2. wind_turbines.data

Usage

import wind_turbines
turbines = wind_turbines.get_turbines()

Documentation

get_turbines()
Returns a list of dictionaries representing Turbines.