diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index b9fb3f3e..00000000 --- a/.isort.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[settings] -profile=black diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1035c701..7c39110e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,19 +17,13 @@ repos: - id: pretty-format-yaml args: [--autofix, --indent, "2", --preserve-quotes] -- repo: https://github.com/pycqa/isort - rev: 5.13.2 - hooks: - - id: isort - name: isort (python) - - repo: https://github.com/asottile/add-trailing-comma rev: v3.1.0 hooks: - id: add-trailing-comma - repo: https://github.com/asottile/pyupgrade - rev: v3.19.0 + rev: v3.19.1 hooks: - id: pyupgrade args: [--py39-plus] @@ -45,31 +39,15 @@ repos: hooks: - id: snakefmt -# - repo: https://github.com/PyCQA/docformatter -# rev: v1.7.5 -# hooks: -# - id: docformatter -# args: ["--in-place", "--make-summary-multi-line", "--pre-summary-newline"] - - - repo: https://github.com/keewis/blackdoc rev: v0.3.9 hooks: - id: blackdoc -- repo: https://github.com/psf/black-pre-commit-mirror - rev: 24.10.0 - hooks: - - id: black - language_version: python3.11 - args: ["--line-length", "120"] - - id: black-jupyter - language_version: python3.11 - args: ["--line-length", "120"] - - -- repo: https://github.com/pycqa/flake8 - rev: 7.1.1 +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.1.4 # Check for the latest version hooks: - - id: flake8 - args: [--select=F841] # F841 is the error code for unused variables + - id: ruff + args: ["--config=pyproject.toml", "--fix"] + - id: ruff-format + args: ["--config=pyproject.toml"] diff --git a/README.md b/README.md index 090856b5..56bd55f3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ [![DOI](https://zenodo.org/badge/500892486.svg)](https://zenodo.org/doi/10.5281/zenodo.10815964) [![Documentation Status](https://readthedocs.org/projects/pypsa-usa/badge/?version=latest)](https://pypsa-usa.readthedocs.io/en/latest/?badge=latest) +[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv) +[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) # PyPSA-USA: An Open-Source Energy System Optimization Model for the United States diff --git a/docs/source/about-install.md b/docs/source/about-install.md index fd3bc834..661c1742 100644 --- a/docs/source/about-install.md +++ b/docs/source/about-install.md @@ -27,23 +27,42 @@ templates into the `workflow/config` folder. bash init_pypsa_usa.sh ``` -## Step 3: Create Mamba Environment +## Step 3: Set-up Environment (mamba or UV) -PyPSA-USA uses conda/mamba to manage project dependencies. You can download and install mamba following the [instructions](https://mamba.readthedocs.io/en/latest/mamba-installation.html). Follow links for mambaforge installation. There are two ways to install mamba, the first (recommended) method will start with a fresh install, meaning if you have previously installed conda environments, you will need to recreate these conda envs. If you already have conda installed and do not wish to install mamba, you can follow the same set of instructions replacing any `mamba` with `conda` +PyPSA-USA can be managed though either [`UV`](https://github.com/astral-sh/uv) or [`mamba`](https://github.com/mamba-org/mamba). Users only need to install one, not both! -Once mamba is installed, use the environment file within your git repository to activate the `pypsa-usa` conda environment. This step can take ~10-20 minutes. After creating the mamba environment, you will only need to activate it before running the snakemake workflow. +```{seealso} +If you are planning to develop `PyPSA-USA`, please see our [contribution guidelines](./contributing.md#code-contributions) for installing additional dependencies. +``` + +### Step 3a: `uv` installation + +[`UV`](https://docs.astral.sh/uv/) is a new python package managment tool from [`Astral`](https://astral.sh/), the creators of [`ruff`](https://github.com/astral-sh/ruff). It replaces `mamba`, `conda`, and `pip` commands for one package and virtual environment managment tool. Instructions for installing `UV` can be found [here](https://docs.astral.sh/uv/getting-started/installation/). + +Once `UV` is installed, you can activate the environemnt with: ```console -mamba env create -f workflow/envs/environment.yaml -mamba activate pypsa-usa +uv venv +source .venv/bin/activate +``` + +```{warning} +If you are migrating from `mamba`/`conda`, you may need to install system level dependencies that conda has previously handeled. These include, `HDF5` and `GDAL>=3.1` libraries. ``` -You also have the option to use miniconda. Download [Miniconda](https://docs.conda.io/en/latest/miniconda.html) following their [instructions](https://docs.conda.io/en/latest/miniconda.html). +### Step 3b: `mamba` Installation -```{seealso} -If you are planning to develop PyPSA-USA, please see our [contribution guidelines](./contributing.md#code-contributions) for installing additional dependencies +Alternatively, PyPSA-USA can manage project dependencies through `conda`/`mamba`. You can download and install `mamba` following the [instructions](https://mamba.readthedocs.io/en/latest/mamba-installation.html). Follow links for mambaforge installation. There are two ways to install `mamba`, the first (recommended) method will start with a fresh install, meaning if you have previously installed `conda` environments, you will need to recreate these `conda` envs. If you already have `conda` installed and do not wish to install `mamba`, you can follow the same set of instructions replacing any `mamba` with `conda` + +Once `mamba` is installed, use the environment file within the git repository to create the PyPSA-USA conda environment. This step can take ~10-20 minutes. After creating the mamba environment, you will need to activate it before running the snakemake workflow. + +```console +mamba env create -f workflow/envs/environment.yaml +mamba activate pypsa-usa ``` +You also have the option to use `miniconda`. Download [`miniconda`](https://docs.conda.io/en/latest/miniconda.html) following their [instructions](https://docs.conda.io/en/latest/miniconda.html). + ## Step 4: Install a Solver PyPSA-USA uses an external solver to solve the optimization problem formulated in the workflow. After you install your solver and confirm it is accessible within your conda environment, update your solving configuration to match your solver of choice. @@ -61,6 +80,6 @@ and the non-free, commercial software (for some of which free academic licenses ## Step 5: Get an EIA API Key -The pypsa-usa workflow leverages the EIA API in several steps. The default configuration activates dynamic fuel-cost prices, which requires EIA API key. You can quickly get your key by completing this [form](https://www.eia.gov/opendata/register.php). +The PyPSA-USA workflow leverages the EIA API in several steps. The default configuration activates dynamic fuel-cost prices, which requires EIA API key. You can quickly get your key by completing this [form](https://www.eia.gov/opendata/register.php). The API key will be emailed to you, and you can copy the key into the `config.api.yaml` file. diff --git a/docs/source/about-usage.md b/docs/source/about-usage.md index 74512aa0..782d3d74 100644 --- a/docs/source/about-usage.md +++ b/docs/source/about-usage.md @@ -16,11 +16,16 @@ You can find more information on each configuration setting on the [configuratio To run the workflow, `cd` into the `workflow` directory and run the `snakemake` from your terminal with your selection of config file: +UV: ```console -snakemake -j1 --configfile config/config.default.yaml +uv run snakemake -j1 --configfile config/config.default.yaml --scheduler-ilp-solver GUROBI_CMD ``` -where 1 indicates the number of cores used. +mamba: +```console +mamba activate pypsa-usa +snakemake -j1 --configfile config/config.default.yaml +``` ## Running on HPC Cluster diff --git a/docs/source/conf.py b/docs/source/conf.py index a45e889e..d1d34888 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,11 +1,14 @@ -# Configuration file for the Sphinx documentation builder. -# +"""Configuration file for the Sphinx documentation builder.""" + # For the full list of built-in configuration values, see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information +import os +import sys + project = "pypsa-usa" copyright = "2024, Kamran Tehranchi, Trevor Barnes" author = "Kamran Tehranchi, Trevor Barnes" @@ -13,8 +16,6 @@ # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -import os -import sys # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -22,8 +23,8 @@ sys.path.insert(0, os.path.abspath("../../workflow/scripts")) extensions = [ - #'sphinx.ext.autodoc', - #'sphinx.ext.autosummary', + # 'sphinx.ext.autodoc', + # 'sphinx.ext.autosummary', "myst_parser", # "sphinx.ext.autosectionlabel", "sphinx.ext.intersphinx", @@ -32,9 +33,9 @@ "sphinx.ext.napoleon", "sphinx.ext.graphviz", # "sphinxcontrib.bibtex", - #'sphinx.ext.pngmath', - #'sphinxcontrib.tikz', - #'rinoh.frontend.sphinx', + # 'sphinx.ext.pngmath', + # 'sphinxcontrib.tikz', + # 'rinoh.frontend.sphinx', "sphinx.ext.imgconverter", # for SVG conversion ] myst_enable_extensions = ["html_image", "colon_fence", "amsmath"] diff --git a/docs/source/config-co2-base.md b/docs/source/config-co2-base.md deleted file mode 100644 index c069f6bc..00000000 --- a/docs/source/config-co2-base.md +++ /dev/null @@ -1,11 +0,0 @@ -(base_emission_values)= -# Base Emission Values - -If using the `{opts}` wildcard to reduce emissions, the user must put in a `co2base` value. Provided below are historical yearly CO2 emission values for both the power sector and all sectors at an interconnect level. This data can be used as a starting point for users. **Note the units in this table are Million Metric Tons (MMT).** This data originates from the [EIA State Level CO2 database](https://www.eia.gov/opendata/browser/co2-emissions/co2-emissions-aggregates?frequency=annual&data=value;&sortColumn=period;&sortDirection=desc;), and is compiled by the script `workflow/notebooks/historical_emissions.ipynb` - -```{eval-rst} -.. csv-table:: - :header-rows: 1 - :widths: 22,7,22,33 - :file: configtables/emissions.csv -``` diff --git a/docs/source/config-sectors.md b/docs/source/config-sectors.md index 9022a732..bd1832be 100644 --- a/docs/source/config-sectors.md +++ b/docs/source/config-sectors.md @@ -60,6 +60,23 @@ Only single-period studies are currently supported when running sector studies. :file: configtables/sector_service.csv ``` +:::{note} +If running demand response at a per-carrier level, put each carrier as a key. For example: +```yaml +demand_response: + by_carrier: True + space-heat: + shift: 20 + marginal_cost: 16 + elec: + shift: 30 + marginal_cost: 25 + cool: + shift: 10 + marginal_cost: 30 +``` +::: + ## Transport Sector ```{eval-rst} .. literalinclude:: ../../workflow/repo_data/config/config.sector.yaml @@ -84,3 +101,17 @@ Only single-period studies are currently supported when running sector studies. :widths: 22,7,22,33 :file: configtables/sector_industrial.csv ``` + +:::{note} +If running demand response at a per-carrier level, put each carrier as a key. For example: +```yaml +demand_response: + by_carrier: True + elec: + shift: 30 + marginal_cost: 25 + heat: + shift: 10 + marginal_cost: 30 +``` +::: diff --git a/docs/source/config-wildcards.md b/docs/source/config-wildcards.md index cdc455df..7e8d4ece 100644 --- a/docs/source/config-wildcards.md +++ b/docs/source/config-wildcards.md @@ -75,6 +75,10 @@ The REM, SAFER, RPS can be defined using either the reeds zone name 'p##" the state code (eg, TX, CA, MT), pypsa-usa interconnect name (western, eastern, texas, usa), or nerc region name. +```{warning} +TCT Targets can only be used with renewable generators and utility scale batteries in sector studies. +``` + There are currently: ```{eval-rst} @@ -84,14 +88,9 @@ There are currently: :file: configtables/opts.csv ``` - (sector)= ## The `{sector}` wildcard -```{warning} -Sector coupling studies are all under active development -``` - The `{sector}` wildcard is used to specify what sectors to include. If `None` is provided, an electrical only study is completed. @@ -100,15 +99,6 @@ is provided, an electrical only study is completed. | Electricity | E | Electrical sector. Will always be run. | Runs | | Natural Gas | G | All sectors added | Development | -(scope)= -## The `{scope}` wildcard - -```{warning} -Sector coupling studies are all under active development -``` - -Takes values `residential`, `urban`, `total`. Used in sector coupling studies to define -population breakdown. (cutout_wc)= ## The `{cutout}` wildcard diff --git a/docs/source/configtables/clustering.csv b/docs/source/configtables/clustering.csv index 275bff7a..b9ab77d6 100644 --- a/docs/source/configtables/clustering.csv +++ b/docs/source/configtables/clustering.csv @@ -1,9 +1,11 @@ ,Unit,Value,Description simplify_network:,,, +weighting_strategy,str,"{population, demand-capacity}","When building multiple networks, Use 'population' if you want to ensure the clusters are assigned constant names." to_substations,bool,"{true, false}",Implementation curerntly overrides to true. Network is simplified to substation nodes with positive or negative power injection. algorithm,str,{'kmeans'}, feature,str," {'solar+onwind-time', 'solar+onwind-cap', 'solar-time', 'solar-cap', 'solar+offwind-cap'}",For HAC clustering. cluster_network:,,, +weighting_strategy,str,"{population, demand-capacity}","When building multiple networks, Use 'population' if you want to ensure the clusters are assigned constant names." algorithm,str,{'kmeans'}, feature,str," {'solar+onwind-time', 'solar+onwind-cap', 'solar-time', 'solar-cap', 'solar+offwind-cap'}",For HAC clustering. aggregation_strategies:,,, diff --git a/docs/source/configtables/electricity.csv b/docs/source/configtables/electricity.csv index 00974a91..52af4ca9 100644 --- a/docs/source/configtables/electricity.csv +++ b/docs/source/configtables/electricity.csv @@ -4,13 +4,10 @@ renewable_carriers,--,"Any subset of {solar, onwind, offwind-ac, offwind-dc, hyd retirement, --,One of ``economic`` or ``technical``,"Sets the retirement method for converntional generators. If ``technical`` all generators ``p_nom_min`` are set to ``p_nom`` to prevent selling off of the asset. Retirements are then tracked in post-proccessing. If ``economic`` existing plants have their ``p_nom_min`` set as ``0``, ``p_nom_max`` set to ``p_nom``, and capital costs set to fixed costs. Generators with ``p_nom`` are then added to handle capacity expansion.""" ,,, operational_reserve:,,,Settings for reserve requirements following `GenX `_ -#NAME?,bool,true or false,Whether to take operational reserve requirements into account during optimisation -#NAME?,--,float,share of total load -#NAME?,--,float,share of total renewable supply -#NAME?,MW,float,fixed reserve capacity -,,, -max_hours:,,, -battery,h,float,Maximum state of charge capacity of the battery in terms of hours at full output capacity ``p_nom``. Cf. `PyPSA documentation `_. +activate,bool,true or false,Whether to take operational reserve requirements into account during optimisation +epsilon_load,--,float,share of total load +epsilon_vres,--,float,share of total renewable supply +contingency,MW,float,fixed reserve capacity ,,, extendable_carriers:,,, Generator,--,Any extendable carrier,"Defines existing or non-existing conventional and renewable power plants to be extendable during the optimization. Conventional generators can only be built/expanded where already existent today. If a listed conventional carrier is not included in the ``conventional_carriers`` list, the lower limit of the capacity expansion is set to 0." @@ -19,13 +16,15 @@ Store,--,Any subset of {``battery``},Adds extendable storage units (battery and/ Links,--,Any subset of {},Adds extendable linksat every connection where there are lines or HVDC links without capacity limits and with zero initial capacity. Hydrogen pipelines require hydrogen storage to be modelled as ``Store``. ,,, demand:,,, -#NAME?,--,"One of {``efs``, ``eia``}",Datasource for electrical load data. ``EFS`` pulls future state level electrical demand data. ``EIA`` pulls historical balancing level electrical demand dataa. -#NAME?,--,"One of {``efs``, ``aeo``}, or a float",(UNDER DEVELOPMENT) Used to scale the demand profile data. ``AEO`` will scale according to demand projections from the Annual Energy Outlook. ``EFS`` will scale according to growth rates from the Electrification Futures Study. Or can sclae according to a user defined value. -#NAME?,--,One of {``pop``},Method to dissagreagate load data. ``pop`` will dissagregate based on population from Breakthrough Energy. +profile,--,"One of {``efs``, ``eia``}",Datasource for electrical load data. ``EFS`` pulls future state level electrical demand data. ``EIA`` pulls historical balancing level electrical demand dataa. scenario:,,, -#NAME?,--,"One of {``reference``, ``medium``, ``high``}",(UNDER DEVELOPMENT) Extracts EFS data according to level of adoption -#NAME?,--,"One of {``slow``, ``moderate``, ``fast``}",(UNDER DEVELOPMENT) Extracts EFS data according to speed of electrification -#NAME?,--,One of the AEO scenarios `here `_,(UNDER DEVELOPMENT) Scales future demand according to the AEO scenario +-efs_case,--,"One of {``reference``, ``medium``, ``high``}",(UNDER DEVELOPMENT) Extracts EFS data according to level of adoption +-efs_speed,--,"One of {``slow``, ``moderate``, ``fast``}",(UNDER DEVELOPMENT) Extracts EFS data according to speed of electrification +-aeo,--,One of the AEO scenarios `here `_,(UNDER DEVELOPMENT) Scales future demand according to the AEO scenario +,,, +demand_response:,,,Settings to activate and configure demand response +-shift,per_unit,"float {0 <=, >= 1} or 'inf'",Allowable load to be shifted per snapshot. Set to 0 to turn off demand response. Set to 'inf' to not enforce capacity limits. +-marginal_cost,$/MWh,float {0 <=},Cost to store one unit of energy for one hour ,,, autarky,,, #NAME?,bool,``true`` or ``false``,Require each node to be autarkic by removing all lines and links. diff --git a/docs/source/configtables/sector_industrial.csv b/docs/source/configtables/sector_industrial.csv index c5a853ef..2830d076 100644 --- a/docs/source/configtables/sector_industrial.csv +++ b/docs/source/configtables/sector_industrial.csv @@ -1,7 +1,7 @@ ,Unit,Values,Description industrial_sector ,,,Options when implementing the industrial sector -- brownfield,--,"bool {true, false}",Include brownfield end-use capacity. --- dynamic_costs,--,"bool {true, false}","Apply sector specific time varrying natural gas, oil, and coal costs. " +-- dynamic_costs,--,"bool {true, false}","Apply sector specific time varrying natural gas, oil, and coal costs." -- technologies,,,Energy conversion technologies to model. -- -- gas_furnace,,"bool {true, false}",Include natural gas furnaces -- -- coal_furnace,,"bool {true, false}",Include coal boilers @@ -9,3 +9,4 @@ industrial_sector ,,,Options when implementing the industrial sector -- demnand_response,,,Demand response options for the service sector. -- -- shift,percentage,"float {0 <=, >= 100} or 'inf'",Allowable load to be shifted per snapshot. Set to 0 to turn off demand response. Set to 'inf' to not enforce capacity limits. -- -- marginal_cost,$/MWh,float {0 <=},Cost to store one unit of energy for one hour. +-- -- by_carrier,,"bool {true, false}",Run demand response at a per-carrier level. diff --git a/docs/source/configtables/sector_service.csv b/docs/source/configtables/sector_service.csv index 4afde5b2..44dc1845 100644 --- a/docs/source/configtables/sector_service.csv +++ b/docs/source/configtables/sector_service.csv @@ -28,3 +28,4 @@ service_sector,,,Options when implementing the service sector (Residential and C -- demnand_response,,,Demand response options for the service sector. -- -- shift,percentage,"float {0 <=, >= 100} or 'inf'",Allowable load to be shifted per snapshot. Set to 0 to turn off demand response. Set to 'inf' to not enforce capacity limits. -- -- marginal_cost,$/MWh,float {0 <=},Cost to store one unit of energy for one hour. +-- -- by_carrier,,"bool {true, false}",Run demand response at a per-carrier level. diff --git a/docs/source/contributing.md b/docs/source/contributing.md index 6fd9b67b..4245a7d4 100644 --- a/docs/source/contributing.md +++ b/docs/source/contributing.md @@ -72,10 +72,22 @@ copy of the code under your account on the repository service. ### 3. Install developer dependencies -If you plan on contributing to the respository, please install these packages into your activated mamba environment +If you plan on contributing to the respository, please install developer dependencies. + +#### 3a. Using UV + +Run the following command from the activated `pypsa-usa` conda environment. + +```console +uv pip install -r pyproject.toml --extra dev +``` + +#### 3b. Using conda/mamba + +Run the following command from the activated `pypsa-usa` conda environment. ```console -python -m pip install -e ".[dev]" +conda env update --name pypsa-usa --file workflow/envs/dev.yaml --prune ``` ### 4. Install pre-commit hooks: diff --git a/docs/source/data-sectors.md b/docs/source/data-sectors.md index 128babc2..a731c38d 100644 --- a/docs/source/data-sectors.md +++ b/docs/source/data-sectors.md @@ -65,7 +65,7 @@ Capacity constraints limit how much energy can be delievered through demand resp &\ \hspace{1cm} s_{n,t} = \text{Allowable shiftable load per unit of } d_{n,t} \\ &\ \hspace{1cm} dr_{n,t} = \text{Discharge of demand response at time } t \text{ and bus } n \\ &\ s.t. \\ - &\ \hspace{1cm} d_{n,t} \times s_{n,t} \leq dr_{n,t} \hspace{0.5cm} \forall_{\text{n,t}}\\ + &\ \hspace{1cm} d_{n,t} \times s_{n,t} \geq dr_{n,t} \hspace{0.5cm} \forall_{\text{n,t}}\\ \end{align*} This is not applied directly to the `Link` object via the `p_nom` paprameter to be consistent with the transport sector. Within the transport sector, demand response is applied to the aggregation bus due to endogenous investment options. Therefore, knowing how much electrical load to be shifted at each timestep is not possible before solving. For the transport sector, the following constraint is added. See the [transportation section](./data-transportation.md) schematics for details on where demand reponse is applied. diff --git a/docs/source/index.md b/docs/source/index.md index 91ca5e7f..3ff27956 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -82,9 +82,3 @@ license changelog contributing ``` - -```{toctree} -:hidden: -rules-retrieving-data -config-co2-base -``` diff --git a/docs/source/rules-retrieving-data.md b/docs/source/rules-retrieving-data.md deleted file mode 100644 index bcea23e2..00000000 --- a/docs/source/rules-retrieving-data.md +++ /dev/null @@ -1,155 +0,0 @@ -(retrieve-data)= -# Retrieve Data - -Numerous datasets used in PyPSA USA are large and are not stored on GitHub. Insted, data is stored on Zenodo or supplier websites, and the workflow will automatically download these datasets via the `retrieve` rules - -```{note} -If you recieve the follwing error while running a retrieve rule on Linux - - FileNotFoundError: [Errno 2] No such file or directory: 'unzip' - -Run the command `sudo apt install zip` -``` - -(databundle)= -## Rule `retrieve_zenodo_databundles` - -Data used to create the base electrical network is pulled from [Breakthrough Energy](https://breakthroughenergy.org/) (~4.3GB). This includes geolocated data on substations, power lines, generators, electrical demand, and resource potentials. - -[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.4538590.svg)](https://zenodo.org/record/4538590) - -Protected land area data for the USA is retrieved from [Protected Planet](https://www.protectedplanet.net/en) via the [PyPSA Meets-Earth](https://pypsa-meets-earth.github.io/) data deposit (`natura_global`) (~100MB). - -[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.10067222.svg)](https://zenodo.org/records/10067222) - -Baythymetry data via [GEBCO](https://www.gebco.net/) and a cutout of USA [Copernicus Global Land Service](https://land.copernicus.eu/global/products/lc) data are downloaded from a PyPSA USA Zenodo depost (~2GB). - -[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.10067222.svg)](https://zenodo.org/records/10067222) - -(databundle-sector)= -## Rule `retrieve_sector_databundle` -Retrives data for sector coupling - -[![DOI](https://sandbox.zenodo.org/badge/DOI/10.5072/zenodo.10019422.svg)](https://zenodo.org/records/10019422) - -**Geographic Data** - -Geographic boundaries of the United States counties are taken from the -United States Census Bureau. Note, these follow 2020 boundaries to match -census numbers - -[![URL](https://img.shields.io/badge/URL-Cartographic_Boundaries-blue)]() - -County level populations are taken from the United States Census Bureau. Filters applied: - - Geography: All Counties within United States and Puerto Rico - - Year: 2020 - - Surveys: Decennial Census, Demographic and Housing Characteristics - -Sheet Name: Decennial Census - P1 | Total Population - 2020: DEC Demographic and Housing Characteristics - -[![URL](https://img.shields.io/badge/URL-United_States_Census_Bureau-blue)]() - -County level urbanization rates are taken from the United States Census Bureau. Filters applied: - - Geography: All Counties within United States and Puerto Rico - - Year: 2020 - - Surveys: Decennial Census, Demographic and Housing Characteristics - -Sheet Name: Decennial Census - H1 | Housing Units - 2020: DEC Demographic and Housing Characteristics - -[![URL](https://img.shields.io/badge/URL-United_States_Census_Bureau-blue)]() - -**Natural Gas Data** - -Natural Gas infrastructure includes: -- State to State pipeline capacity -- State level tranmsission pipeline volume -- Natural gas processing facility locations -- Natural gas processing facility locations (via EIA API) -- Natural gas underground storage (via EIA API) -- Natural Gas imports/exports by point of entry (via EIA API) - -[![URL](https://img.shields.io/badge/URL-Pipeline_Capacity-blue)]() -[![URL](https://img.shields.io/badge/URL-Pipeline_Shape-blue)]() -[![URL](https://img.shields.io/badge/URL-Processing_Capacity-blue)]() - -(retrieve-gridemissions)= -## Rule `retrieve_gridemissions_data` -```{eval-rst} -.. automodule:: retrieve_gridemissions_data -``` - -(retrieve-efs)= -## Rule `retrieve_nrel_efs_data` - -The [Electrification Futures Study](https://www.nrel.gov/analysis/electrification-futures.html) (EFS) are a series of publications from the NREL that explore the impacts of electrification in all USA economic sectors. As part of this, study are the EFS hourly load profiles. These load profiles represent projected end-use electricity demand for various scenarios. Load profiles are provided for a subset of years (2018, 2020, 2024, 2030, 2040, 2050) and are aggregated to the state, sector, and select subsector level. See the [EFS Load Profile Data Catalog](https://data.nrel.gov/submissions/126) for full details. - -[![URL](https://img.shields.io/badge/URL-EFS_Load_Profiles-blue)]() - -(retrieve-cutout)= -## Rule `retrieve_cutout` - -Cutouts are spatio-temporal subsets of the USA weather data from the [ERA5 dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=overview). They have been prepared by and are for use with the [atlite](https://github.com/PyPSA/atlite) tool. You can either generate them yourself using the build_cutouts rule or retrieve them directly from zenodo through the rule `retrieve_cutout`. - -[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.10067222.svg)](https://zenodo.org/records/10067222) - -```{note} -Only the 2019 interconnects based on ERA5 have been prepared and saved to Zenodo for download -``` - -(costs)= -## Rule `retrieve_cost_data` - -This rule downloads economic assumptions from various sources. - -The [NREL](https://www.nrel.gov/) [Annual Technology Baseline](https://atb.nrel.gov/) provides economic parameters on capital costs, fixed operation costs, variable operating costs, fuel costs, technology specific discount rates, average capacity factors, and efficiencies. - -[![URL](https://img.shields.io/badge/URL-NREL_ATB-blue)]() - -[![AWS](https://img.shields.io/badge/AWS-%23FF9900.svg?style=for-the-badge&logo=amazon-aws&logoColor=white)](https://data.openei.org/s3_viewer?bucket=oedi-data-lake&prefix=ATB%2F) - -State level capital cost supply side generator cost multipliers are pulled from the "Capital Cost and Performance -Characteristic Estimates for Utility Scale Electric Power Generating Technologies" by the [EIA](https://www.eia.gov/). Note, these have been saved as CSV's and come with the repository download - -[![URL](https://img.shields.io/badge/URL-CAPEX_Multipliers-blue)]() - -State level historial monthly **natural gas** fuel prices are taken from the [EIA](https://www.eia.gov/). This includes seperate prices for electrical power producers, industrial customers, commercial customers, and residential customers. - -[![URL](https://img.shields.io/badge/URL-EIA_Natural_Gas_Prices-blue)]() - -State level historical **coal** fuel prices are taken from the [EIA](https://www.eia.gov/). - -[![URL](https://img.shields.io/badge/URL-EIA_Coal_Prices-blue)]() - -The [Annual Technology Baseline](https://atb.nrel.gov/) also provides data on the [transportation sector](https://atb.nrel.gov/transportation/2020/index), including fuel usage and capital costs. - -[![URL](https://img.shields.io/badge/URL-NREL_ATB_Transportation-blue)]() - -To populate any missing data, the [PyPSA/technology-data](https://github.com/PyPSA/technology-data) project is used. Data from here is only used when no other sources can be found, as it is mostly European focused. - -[![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white)](https://github.com/PyPSA/technology-data) - -**Relevant Settings** - -```yaml -enable: - retrieve_cost_data: - -costs: - year: - version: -``` - -```{seealso} -Documentation of the configuration file ``config/config.yaml`` at -:ref:`costs_cf` -``` - -**Outputs** - -- ``resources/costs.csv`` - -(retrieve-caiso-data)= -## Rule `retrieve_caiso_data` -```{eval-rst} -.. automodule:: retrieve_caiso_data -``` diff --git a/pyproject.toml b/pyproject.toml index 08c1ea78..94eb340d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,47 @@ classifiers = [ ] license = {file = "LICENSE.md"} readme = "README.md" +requires-python = ">=3.11, <3.12.0" +dependencies = [ + "atlite==0.3.0", + "cartopy==0.23.0", + "dask==2024.12.0", + "dask-expr==1.1.20", + "descartes==1.1.0", + "dill>=0.3.9", + "distributed==2024.12.0", + "duckdb==0.10.0", + "geopandas==1.0.1", + "geopy==2.4.0", + "graphviz>=0.20.3", + "gurobipy==11.0.3", + "highspy>=1.9.0", + "linopy==0.3.14", + "matplotlib==3.8.0", + "netcdf4==1.6.4", + "networkx==3.1", + "numpy==1.26.0", + "openpyxl==3.1.2", + "pandas==2.2.2", + "plotly==5.17.0", + "pre-commit>=4.1.0", + "progressbar2==4.3.2", + "pulp==2.7.0", + "pyarrow==16.1.0", + "pycountry==22.3.5", + "pyomo==6.6.1", + "pypsa==0.30.2", + "pyyaml>=6.0.2", + "rasterio==1.3.8", + "scipy==1.11.3", + "seaborn==0.13.2", + "shapely==2.0.2", + "snakemake==7.32.4", + "tsam>=2.3.6", + "xarray==2024.9.0", + "xlrd==2.0.1", +] + [project.urls] Documentation = "https://pypsa-usa.readthedocs.io/en/latest/" @@ -46,7 +87,7 @@ dev = [ myproj = "workflow/scripts" [tool.ruff] -line-length = 110 +line-length = 120 target-version = "py311" exclude = [ ".eggs", @@ -61,29 +102,43 @@ exclude = [ ".venv", ".vscode", "__pypackages__", - "_build", - "buck-out", - "build", - "dist", - "site-packages", - "venv", + "_build" ] [tool.ruff.lint] select = [ "E", # pycodestyle "TD", # flake-8 todos - "PD", # pandas vet + #"PD", # pandas vet "RUF", # Ruff rules "N", # pep8 "F", # pyflakes "UP", # pyupgrade "D", # pydocstyle "C90", # Complex code + "I", # isort (import sorting) ] +mccabe.max-complexity = 10 + # Allow unused variables when underscore-prefixed. dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" -extend-ignore = ['D105', 'D107', 'D205', 'D415'] +extend-ignore = [ + "D105", # Ignore: Missing docstring in magic methods (__init__, __str__, etc.). + "D107", # Ignore: Missing docstring in __init__ method. + "D205", # Ignore: 1st line of docstring should be separated from the summary with a blank line. + "D415", # Ignore: First line of a docstring should end with a period, question mark, or exclamation mark. + "D401", # Ignore: First line of a docstring should be in imperative mood (e.g., "Get" instead of "Gets"). + "D419", # Ignore: Empty docstrings should not be allowed. + "D103", # Ignore: Missing docstring in a public function. + "TD002", # Ignore: TODO comments should have an author name (e.g., "# TODO (John): Fix this"). + "TD003", # Ignore: TODO comments should have a specific issue/task reference. + "PD010", # Ignore: `df.isna().sum()` should be replaced with `df.isnull().sum()` (allows both styles). + "PD901", # Ignore: Avoid using `df` as a variable name for Pandas DataFrames (allows using `df`). + "C901", # Prevents Ruff from auto-fixing overly complex functions. + "N802", # Function naming lower case + "E501" +] + pydocstyle.convention = "numpy" [tool.ruff.format] @@ -91,5 +146,3 @@ quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false line-ending = "auto" -docstring-code-format = true -docstring-code-line-length = "dynamic" diff --git a/uv.lock b/uv.lock new file mode 100644 index 00000000..e1f8d7d3 --- /dev/null +++ b/uv.lock @@ -0,0 +1,2573 @@ +version = 1 +requires-python = ">=3.11, <3.12.0" + +[[package]] +name = "accessible-pygments" +version = "0.0.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bc/c1/bbac6a50d02774f91572938964c582fff4270eee73ab822a4aeea4d8b11b/accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872", size = 1377899 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7", size = 1395903 }, +] + +[[package]] +name = "affine" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/98/d2f0bb06385069e799fc7d2870d9e078cfa0fa396dc8a2b81227d0da08b9/affine-2.4.0.tar.gz", hash = "sha256:a24d818d6a836c131976d22f8c27b8d3ca32d0af64c1d8d29deb7bafa4da1eea", size = 17132 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f7/85273299ab57117850cc0a936c64151171fac4da49bc6fba0dad984a7c5f/affine-2.4.0-py3-none-any.whl", hash = "sha256:8a3df80e2b2378aef598a83c1392efd47967afec4242021a0b06b4c7cbc61a92", size = 15662 }, +] + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929 }, +] + +[[package]] +name = "anyio" +version = "4.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "sniffio" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/73/199a98fc2dae33535d6b8e8e6ec01f8c1d76c9adb096c6b7d64823038cde/anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a", size = 181126 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a", size = 96041 }, +] + +[[package]] +name = "appdirs" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", size = 13470 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128", size = 9566 }, +] + +[[package]] +name = "asttokens" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/82da0a03e7ba5141f05cce0d302e6eed121ae055e0456ca228bf693984bc/asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7", size = 61978 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2", size = 26918 }, +] + +[[package]] +name = "atlite" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bottleneck" }, + { name = "cdsapi" }, + { name = "dask" }, + { name = "geopandas" }, + { name = "netcdf4" }, + { name = "numexpr" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "progressbar2" }, + { name = "pyproj" }, + { name = "pyyaml" }, + { name = "rasterio" }, + { name = "requests" }, + { name = "scipy" }, + { name = "shapely" }, + { name = "toolz" }, + { name = "tqdm" }, + { name = "typing-extensions" }, + { name = "xarray" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/b1/2e819f719452cc783e010e5c83741f30924af400ccc096f429807c214065/atlite-0.3.0.tar.gz", hash = "sha256:7d6cfdb0b4e92f590f306ac51c7680f0f662da576148dea1c2ae57dcce634085", size = 1875107 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/25/e87b3d1cfc50c78b694c4033acec9bbbada159cf3aa71d347cb0578c9881/atlite-0.3.0-py3-none-any.whl", hash = "sha256:7e04fa04b45dc815c61bb1992969456a79525171b395bbb52f2779a0e80bdc23", size = 125745 }, +] + +[[package]] +name = "attrs" +version = "25.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/49/7c/fdf464bcc51d23881d110abd74b512a42b3d5d376a55a831b44c603ae17f/attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e", size = 810562 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a", size = 63152 }, +] + +[[package]] +name = "babel" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/6b/d52e42361e1aa00709585ecc30b3f9684b3ab62530771402248b1b1d6240/babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d", size = 9951852 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2", size = 10182537 }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.13.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f0/3c/adaf39ce1fb4afdd21b611e3d530b183bb7759c9b673d60db0e347fd4439/beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b", size = 619516 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16", size = 186015 }, +] + +[[package]] +name = "blosc2" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "httpx" }, + { name = "msgpack" }, + { name = "ndindex" }, + { name = "numexpr" }, + { name = "numpy" }, + { name = "py-cpuinfo" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/43/75/6b67b3c772ad014458e0caebc49c6210ef95076e3370d0809a3b49d3efa2/blosc2-3.0.0.tar.gz", hash = "sha256:d8c03a09ed11b644b48bf050bd108972ec56ac9cbc3f2aedca077255ed81ac69", size = 7331805 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/8f/a58f57e0a6060d18c367d05655d7c19887feb657e65272e1feaf9adc04cd/blosc2-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:027158b6c6de85a5c7d2e60066819df58efb6a0d0108b613db2118453d0e3a8f", size = 3975036 }, + { url = "https://files.pythonhosted.org/packages/31/c7/692c821d3235d4a979aed13171f3d1d59ff83bd137e58e0c2d8e21d4f76c/blosc2-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c3514427c04f8f3180b07807eab736d694db21dea518ffde6e36359657deb922", size = 3358207 }, + { url = "https://files.pythonhosted.org/packages/39/da/f8371965e5fb167e815d68a1ddb5543e6b094a2abc2f8c0330d6188244e8/blosc2-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3213763e8ed8f0dd81393e5ecf70fa6a498160aaec6611eb7d37d462b2814824", size = 4254723 }, + { url = "https://files.pythonhosted.org/packages/df/61/7c36c780f29f11e4e7627c5c8475788e8fc539b13d6352dab59e731771aa/blosc2-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d2a11c4241e4f718931d0ed7ce2519badd9a326c1cf631ac1355b6921d732f9", size = 4408605 }, + { url = "https://files.pythonhosted.org/packages/e2/f0/1dd1fa40acd8064d6895bd71052e295876e8bb16ad83fa0d48fc1f5bd6c6/blosc2-3.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a23b23dab715a3918564c70ffc2f75d0c103f80be41718959fa55bc805f66b6", size = 2176712 }, +] + +[[package]] +name = "bottleneck" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/61/9fb34409d58f04e1929da41666a055c36f9495903ff669b80c893bdee65f/bottleneck-1.4.2.tar.gz", hash = "sha256:fa8e8e1799dea5483ce6669462660f9d9a95649f6f98a80d315b84ec89f449f4", size = 103563 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/b8/31a1cc8279bf11a60c04b844a42666927307a47bb48964cbd92ec9f40e3e/Bottleneck-1.4.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b6902ebf3e85315b481bc084f10c5770f8240275ad1e039ac69c7c8d2013b040", size = 98565 }, + { url = "https://files.pythonhosted.org/packages/16/64/09d72babae7cc29341c52f2e9381066672743d4f797c86b1e735205d5fc8/Bottleneck-1.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c2fd34b9b490204f95288f0dd35d37042486a95029617246c88c0f94a0ab49fe", size = 364986 }, + { url = "https://files.pythonhosted.org/packages/7e/d6/39e957e9df9ab16df9c531e8ddf71594877063d27aa036dd105b66d3b3b3/Bottleneck-1.4.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:122845e3106c85465551d4a9a3777841347cfedfbebb3aa985cca110e07030b1", size = 360256 }, + { url = "https://files.pythonhosted.org/packages/ff/cb/d287febe0e6504194ba94cf4a6d80df66a0031ca33a32b30f00c030238cc/Bottleneck-1.4.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1f61658ebdf5a178298544336b65020730bf86cc092dab5f6579a99a86bd888b", size = 369507 }, + { url = "https://files.pythonhosted.org/packages/dc/1e/9310f058ddee71798a76ab15c5c1ad71f0a5c3c6348f7faab9b6da038484/Bottleneck-1.4.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7c7d29c044a3511b36fd744503c3e697e279c273a8477a6d91a2831d04fd19e0", size = 360282 }, + { url = "https://files.pythonhosted.org/packages/96/cb/c1f2a37e86e9fa47845259f0a8f32d550f7f27b908432369de055be9f7c4/Bottleneck-1.4.2-cp311-cp311-win32.whl", hash = "sha256:c663cbba8f52011fd82ee08c6a85c93b34b19e0e7ebba322d2d67809f34e0597", size = 106936 }, + { url = "https://files.pythonhosted.org/packages/d3/eb/3fd23404bbc612cf9e4883c3c2b359bd14528e234d5c40bb29bcfd591ef8/Bottleneck-1.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:89651ef18c06616850203bf8875c958c5d316ea48d8ba60d9b450199d39ae391", size = 111617 }, +] + +[[package]] +name = "bump2version" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/29/2a/688aca6eeebfe8941235be53f4da780c6edee05dbbea5d7abaa3aab6fad2/bump2version-1.0.1.tar.gz", hash = "sha256:762cb2bfad61f4ec8e2bdf452c7c267416f8c70dd9ecb1653fd0bbb01fa936e6", size = 36236 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/e3/fa60c47d7c344533142eb3af0b73234ef8ea3fb2da742ab976b947e717df/bump2version-1.0.1-py2.py3-none-any.whl", hash = "sha256:37f927ea17cde7ae2d7baf832f8e80ce3777624554a653006c9144f8017fe410", size = 22030 }, +] + +[[package]] +name = "cartopy" +version = "0.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyproj" }, + { name = "pyshp" }, + { name = "shapely" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a5/00/fed048eeb80129908f8bd5f5762e230864abc8a8fbbc493740bafcb696bd/Cartopy-0.23.0.tar.gz", hash = "sha256:231f37b35701f2ba31d94959cca75e6da04c2eea3a7f14ce1c75ee3b0eae7676", size = 10687976 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/79/7b8731fb3370482eee4e59e3070e7b0abd71aa8b7e87fce757ce19f37fc1/Cartopy-0.23.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:86b07b6794b616674e4e485b8574e9197bca54a4467d28dd01ae0bf178f8dc2b", size = 10936638 }, + { url = "https://files.pythonhosted.org/packages/fb/96/02e0445ab41997f942e3d59c9fc3d08220e9b2651f85ac026a9dff7ce28f/Cartopy-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8dece2aa8d5ff7bf989ded6b5f07c980fb5bb772952bc7cdeab469738abdecee", size = 10921586 }, + { url = "https://files.pythonhosted.org/packages/07/31/11428c479d9eddb5a1f1bef9ad51320db35c612f992163b72739581eef6e/Cartopy-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9dfd28352dc83d6b4e4cf85d84cb50fc4886d4c1510d61f4c7cf22477d1156f", size = 11662265 }, + { url = "https://files.pythonhosted.org/packages/e1/a2/a450fe2d20be42c6666a5146697a6ea1ab9caa1940cce892af02b492c3db/Cartopy-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:b2671b5354e43220f8e1074e7fe30a8b9f71cb38407c78e51db9c97772f0320b", size = 10904808 }, +] + +[[package]] +name = "cdsapi" +version = "0.7.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "datapi" }, + { name = "requests" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3b/62/81b38105ef75486308179d510360c1aa251ce0b7d17fe88c0e1de05c6c94/cdsapi-0.7.5.tar.gz", hash = "sha256:55221c573b8cefe83cc0bfe01a3d31213c82bf9acce70455350dd24b8095c23a", size = 13188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/c4/49f01f1382d449581d5d3db0fa49ccc23a1b4f91d615108b631c7cff40cd/cdsapi-0.7.5-py2.py3-none-any.whl", hash = "sha256:8586b837aea89ceeae379b388fbb0ace0a19b94b221f731c65632417007f69fb", size = 12201 }, +] + +[[package]] +name = "certifi" +version = "2025.1.31" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, +] + +[[package]] +name = "cfgv" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249 }, +] + +[[package]] +name = "cftime" +version = "1.6.4.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/c8/1155d1d58003105307c7e5985f422ae5bcb2ca0cbc553cc828f3c5a934a7/cftime-1.6.4.post1.tar.gz", hash = "sha256:50ac76cc9f10ab7bd46e44a71c51a6927051b499b4407df4f29ab13d741b942f", size = 54631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/e6/6a7d2120fcffee208cf637d22b0d8f2701d91f69f68a96940056429950f3/cftime-1.6.4.post1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1bf7be0a0afc87628cb8c8483412aac6e48e83877004faa0936afb5bf8a877ba", size = 233445 }, + { url = "https://files.pythonhosted.org/packages/1c/a0/fe0d14d52cffa72d3f1c281ff9f0f384968058d86ce24fdf9e736ce5b755/cftime-1.6.4.post1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0f64ca83acc4e3029f737bf3a32530ffa1fbf53124f5bee70b47548bc58671a7", size = 214458 }, + { url = "https://files.pythonhosted.org/packages/55/c6/72f8fb5ee057f33ab747ba361f1396d2839a4689669aabd6217bc38430f7/cftime-1.6.4.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7ebdfd81726b0cfb8b524309224fa952898dfa177c13d5f6af5b18cefbf497d", size = 1379075 }, + { url = "https://files.pythonhosted.org/packages/77/81/6b30815698ede50f89013f25e46d66ed3a290b8a2d6b97f95bacbbe1eb5c/cftime-1.6.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9ea0965a4c87739aebd84fe8eed966e5809d10065eeffd35c99c274b6f8da15", size = 1415218 }, + { url = "https://files.pythonhosted.org/packages/24/0d/73ab09a32da1478d3ef5f4ab6c59d42f2db2a2383b427c87e05ad81b71ad/cftime-1.6.4.post1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:800a18aea4e8cb2b206450397cb8a53b154798738af3cdd3c922ce1ca198b0e6", size = 1450704 }, + { url = "https://files.pythonhosted.org/packages/79/b1/6551603f8ea31de55913c84e4def3c36670563bdea6e195fcc4b6225ddf7/cftime-1.6.4.post1-cp311-cp311-win_amd64.whl", hash = "sha256:5dcfc872f455db1f12eabe3c3ba98e93757cd60ed3526a53246e966ccde46c8a", size = 190200 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995 }, + { url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471 }, + { url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831 }, + { url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335 }, + { url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862 }, + { url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673 }, + { url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211 }, + { url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039 }, + { url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939 }, + { url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075 }, + { url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340 }, + { url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205 }, + { url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441 }, + { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, +] + +[[package]] +name = "click" +version = "8.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188 }, +] + +[[package]] +name = "click-plugins" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5f/1d/45434f64ed749540af821fd7e42b8e4d23ac04b1eda7c26613288d6cd8a8/click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b", size = 8164 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/da/824b92d9942f4e472702488857914bdd50f73021efea15b4cad9aca8ecef/click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8", size = 7497 }, +] + +[[package]] +name = "cligj" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ea/0d/837dbd5d8430fd0f01ed72c4cfb2f548180f4c68c635df84ce87956cff32/cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27", size = 9803 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/86/43fa9f15c5b9fb6e82620428827cd3c284aa933431405d1bcf5231ae3d3e/cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df", size = 7069 }, +] + +[[package]] +name = "cloudpickle" +version = "3.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/52/39/069100b84d7418bc358d81669d5748efb14b9cceacd2f9c75f550424132f/cloudpickle-3.1.1.tar.gz", hash = "sha256:b216fa8ae4019d5482a8ac3c95d8f6346115d8835911fd4aefd1a445e4242c64", size = 22113 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl", hash = "sha256:c8c5a44295039331ee9dad40ba100a9c7297b6f988e50e87ccdf3765a668350e", size = 20992 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "configargparse" +version = "1.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/8a/73f1008adfad01cb923255b924b1528727b8270e67cb4ef41eabdc7d783e/ConfigArgParse-1.7.tar.gz", hash = "sha256:e7067471884de5478c58a511e529f0f9bd1c66bfef1dea90935438d6c23306d1", size = 43817 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/b3/b4ac838711fd74a2b4e6f746703cf9dd2cf5462d17dac07e349234e21b97/ConfigArgParse-1.7-py3-none-any.whl", hash = "sha256:d249da6591465c6c26df64a9f73d2536e743be2f244eb3ebe61114af2f94f86b", size = 25489 }, +] + +[[package]] +name = "connection-pool" +version = "0.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/df/c9b4e25dce00f6349fd28aadba7b6c3f7431cc8bd4308a158fbe57b6a22e/connection_pool-0.0.3.tar.gz", hash = "sha256:bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc", size = 3795 } + +[[package]] +name = "contourpy" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b", size = 269555 }, + { url = "https://files.pythonhosted.org/packages/67/71/1e6e95aee21a500415f5d2dbf037bf4567529b6a4e986594d7026ec5ae90/contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc", size = 254549 }, + { url = "https://files.pythonhosted.org/packages/31/2c/b88986e8d79ac45efe9d8801ae341525f38e087449b6c2f2e6050468a42c/contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86", size = 313000 }, + { url = "https://files.pythonhosted.org/packages/c4/18/65280989b151fcf33a8352f992eff71e61b968bef7432fbfde3a364f0730/contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6", size = 352925 }, + { url = "https://files.pythonhosted.org/packages/f5/c7/5fd0146c93220dbfe1a2e0f98969293b86ca9bc041d6c90c0e065f4619ad/contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85", size = 323693 }, + { url = "https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c", size = 326184 }, + { url = "https://files.pythonhosted.org/packages/ef/e7/104065c8270c7397c9571620d3ab880558957216f2b5ebb7e040f85eeb22/contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291", size = 1268031 }, + { url = "https://files.pythonhosted.org/packages/e2/4a/c788d0bdbf32c8113c2354493ed291f924d4793c4a2e85b69e737a21a658/contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f", size = 1325995 }, + { url = "https://files.pythonhosted.org/packages/a6/e6/a2f351a90d955f8b0564caf1ebe4b1451a3f01f83e5e3a414055a5b8bccb/contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375", size = 174396 }, + { url = "https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9", size = 219787 }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321 }, +] + +[[package]] +name = "dask" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "cloudpickle" }, + { name = "fsspec" }, + { name = "importlib-metadata" }, + { name = "packaging" }, + { name = "partd" }, + { name = "pyyaml" }, + { name = "toolz" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b8/0a/1011ce75bc1e2da627d481f4bfcaf0eaf3367eb2e432ed908620e0a0fcfa/dask-2024.12.0.tar.gz", hash = "sha256:ffd02b06ac06b993df0b48e0ba4fe02abceb5c8b34b40bd91d63f33ec7a272a4", size = 10691490 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/46/9ea782eb1accabad0931d80818fcf8b286bdd1b457ae9c718f039430c489/dask-2024.12.0-py3-none-any.whl", hash = "sha256:e038e87b9f06e7927b81ecde6cf2b49aa699bb902fec11abba5697cb48baeb8d", size = 1268483 }, +] + +[[package]] +name = "dask-expr" +version = "1.1.20" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dask" }, + { name = "pandas" }, + { name = "pyarrow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/ef/9b7b7ccd25cef726f0b38a4d440092596e5fa6f593b82c676278c925327b/dask_expr-1.1.20.tar.gz", hash = "sha256:c5be6243296c299e21e02aa93e863e28e6f21ab3c01b645cec3dd56e1b1eac9b", size = 224530 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/a4/c7c8e2a895eba9ce41bf811b2b6755c227a489b687d1a52521350ae37436/dask_expr-1.1.20-py3-none-any.whl", hash = "sha256:a10755f2bc7d7cfb060b4fc9c7e8b139a03d961c4420ebd50ea319ea906f8b80", size = 245309 }, +] + +[[package]] +name = "datapi" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "multiurl" }, + { name = "requests" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/af/d753f6872281ef933e97bc3e46874918cac335318ab687af05674fbb94a1/datapi-0.2.0.tar.gz", hash = "sha256:9346d1ce8bbada920da2d4fe0c932d8e7b36c8dd8bc7851862e87712cfa32fda", size = 43816 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/9d/2149dbe5baf64726242e25a906559b243a3e9ab38103996d2982430a881d/datapi-0.2.0-py3-none-any.whl", hash = "sha256:867c9ac1ae91965c4223236a2927a819bc0fc1e987490e10468db577936e1f7c", size = 26900 }, +] + +[[package]] +name = "datrie" +version = "0.8.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/fe/db74bd405d515f06657f11ad529878fd389576dca4812bea6f98d9b31574/datrie-0.8.2.tar.gz", hash = "sha256:525b08f638d5cf6115df6ccd818e5a01298cd230b2dac91c8ff2e6499d18765d", size = 63278 } + +[[package]] +name = "decorator" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/0c/8d907af351aa16b42caae42f9d6aa37b900c67308052d10fdce809f8d952/decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", size = 35016 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/50/83c593b07763e1161326b3b8c6686f0f4b0f24d5526546bee538c89837d6/decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186", size = 9073 }, +] + +[[package]] +name = "deprecation" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/d3/8ae2869247df154b64c1884d7346d412fed0c49df84db635aab2d1c40e62/deprecation-2.1.0.tar.gz", hash = "sha256:72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff", size = 173788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/c3/253a89ee03fc9b9682f1541728eb66db7db22148cd94f89ab22528cd1e1b/deprecation-2.1.0-py2.py3-none-any.whl", hash = "sha256:a10811591210e1fb0e768a8c25517cabeabcba6f0bf96564f8ff45189f90b14a", size = 11178 }, +] + +[[package]] +name = "descartes" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/6f/81735a30432b74f41db6754dd13869021ccfed3088d1cf7a6cfc0af9ac49/descartes-1.1.0.tar.gz", hash = "sha256:135a502146af5ed6ff359975e2ebc5fa4b71b5432c355c2cafdc6dea1337035b", size = 3525 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/b6/1ed2eb03989ae574584664985367ba70cd9cf8b32ee8cad0e8aaeac819f3/descartes-1.1.0-py3-none-any.whl", hash = "sha256:4c62dc41109689d03e4b35de0a2bcbdeeb81047badc607c4415d5c753bd683af", size = 5804 }, +] + +[[package]] +name = "dill" +version = "0.3.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/43/86fe3f9e130c4137b0f1b50784dd70a5087b911fe07fa81e53e0c4c47fea/dill-0.3.9.tar.gz", hash = "sha256:81aa267dddf68cbfe8029c42ca9ec6a4ab3b22371d1c450abc54422577b4512c", size = 187000 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/d1/e73b6ad76f0b1fb7f23c35c6d95dbc506a9c8804f43dda8cb5b0fa6331fd/dill-0.3.9-py3-none-any.whl", hash = "sha256:468dff3b89520b474c0397703366b7b95eebe6303f108adf9b19da1f702be87a", size = 119418 }, +] + +[[package]] +name = "distlib" +version = "0.3.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973 }, +] + +[[package]] +name = "distributed" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "cloudpickle" }, + { name = "dask" }, + { name = "jinja2" }, + { name = "locket" }, + { name = "msgpack" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyyaml" }, + { name = "sortedcontainers" }, + { name = "tblib" }, + { name = "toolz" }, + { name = "tornado" }, + { name = "urllib3" }, + { name = "zict" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/6e/463536dba2893634537f62ef00abf9421bf55f867892fc7c47d865c27d85/distributed-2024.12.0.tar.gz", hash = "sha256:6a2c04e63d31973ee3c1f2160d66521ed8f08e637d6a25a450e7561582920f38", size = 1115740 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/ef/f0a96745cabeda5735d456403a007c2f9b6ac64a0f4c5fa4faf9d41f70dc/distributed-2024.12.0-py3-none-any.whl", hash = "sha256:ed05aa13b6c62b69b33d1ba7d1ca95e78406c8f37163fafd07f7ca94ae036b66", size = 1022908 }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408 }, +] + +[[package]] +name = "dpath" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/ce/e1fd64d36e4a5717bd5e6b2ad188f5eaa2e902fde871ea73a79875793fc9/dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e", size = 28266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/d1/8952806fbf9583004ab479d8f58a9496c3d35f6b6009ddd458bdd9978eaf/dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576", size = 17618 }, +] + +[[package]] +name = "duckdb" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/6c/95c45374b7b26a31d94ae4509a69b0692e1ea2022637042c6e0a570e156e/duckdb-0.10.0.tar.gz", hash = "sha256:c02bcc128002aa79e3c9d89b9de25e062d1096a8793bc0d7932317b7977f6845", size = 11119589 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/83/e02505094c99a69674b2ad2f8beac4946978aff5641314447b2e8fbf170a/duckdb-0.10.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a05af63747f1d7021995f0811c333dee7316cec3b06c0d3e4741b9bdb678dd21", size = 30311342 }, + { url = "https://files.pythonhosted.org/packages/e7/f5/b1456642d028eb50333ced31249099b095286358c6234ae5de0d6a8ea411/duckdb-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:072d6eba5d8a59e0069a8b5b4252fed8a21f9fe3f85a9129d186a39b3d0aea03", size = 16313992 }, + { url = "https://files.pythonhosted.org/packages/80/3c/fa6fb03c1c7aaa5d8fac237d3b38031831ca0b8b86dae03c21908031ff26/duckdb-0.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a77b85668f59b919042832e4659538337f1c7f197123076c5311f1c9cf077df7", size = 14040261 }, + { url = "https://files.pythonhosted.org/packages/e1/ca/8ed6fe44357a4a8f1c25bfa39140cc50dcf1894dcbe4d13aef3a1d75f317/duckdb-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96a666f1d2da65d03199a977aec246920920a5ea1da76b70ae02bd4fb1ffc48c", size = 16592778 }, + { url = "https://files.pythonhosted.org/packages/99/61/1ef0d3d13908b5ae6637103e0dbeafc58028f662caa366ecd871154dbc9f/duckdb-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ec76a4262b783628d26612d184834852d9c92fb203e91af789100c17e3d7173", size = 17835800 }, + { url = "https://files.pythonhosted.org/packages/83/dc/f542b404de04ed84c7ef91df96ff5d2252430f1ea09b9fb5178a1a58f718/duckdb-0.10.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:009dd9d2cdbd3b061a9efbdfc79f2d1a8377bcf49f1e5f430138621f8c083a6c", size = 16399505 }, + { url = "https://files.pythonhosted.org/packages/50/47/a0ad83025049fcdb2af6e0c66b754c6cacce7f1aaf457b61ea89354730b1/duckdb-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:878f06766088090dad4a2e5ee0081555242b2e8dcb29415ecc97e388cf0cf8d8", size = 18385038 }, + { url = "https://files.pythonhosted.org/packages/dc/f9/79d37cbe067bf2fc9fbe4a09d0e345c264a9f221fb6b4bcfc2ef80bb6a72/duckdb-0.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:713ff0a1fb63a6d60f454acf67f31656549fb5d63f21ac68314e4f522daa1a89", size = 9569568 }, +] + +[[package]] +name = "et-xmlfile" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/38/af70d7ab1ae9d4da450eeec1fa3918940a5fafb9055e934af8d6eb0c2313/et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54", size = 17234 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/8b/5fe2cc11fee489817272089c4203e679c63b570a5aaeb18d852ae3cbba6a/et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa", size = 18059 }, +] + +[[package]] +name = "executing" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/50/a9d80c47ff289c611ff12e63f7c5d13942c65d68125160cefd768c73e6e4/executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755", size = 978693 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa", size = 26702 }, +] + +[[package]] +name = "fastjsonschema" +version = "2.21.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8b/50/4b769ce1ac4071a1ef6d86b1a3fb56cdc3a37615e8c5519e1af96cdac366/fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4", size = 373939 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667", size = 23924 }, +] + +[[package]] +name = "filelock" +version = "3.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/9c/0b15fb47b464e1b663b1acd1253a062aa5feecb07d4e597daea542ebd2b5/filelock-3.17.0.tar.gz", hash = "sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e", size = 18027 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/89/ec/00d68c4ddfedfe64159999e5f8a98fb8442729a63e2077eb9dcd89623d27/filelock-3.17.0-py3-none-any.whl", hash = "sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338", size = 16164 }, +] + +[[package]] +name = "fonttools" +version = "4.56.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/8c/9ffa2a555af0e5e5d0e2ed7fdd8c9bef474ed676995bb4c57c9cd0014248/fonttools-4.56.0.tar.gz", hash = "sha256:a114d1567e1a1586b7e9e7fc2ff686ca542a82769a296cef131e4c4af51e58f4", size = 3462892 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/56/a2f3e777d48fcae7ecd29de4d96352d84e5ea9871e5f3fc88241521572cf/fonttools-4.56.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7ef04bc7827adb7532be3d14462390dd71287644516af3f1e67f1e6ff9c6d6df", size = 2753325 }, + { url = "https://files.pythonhosted.org/packages/71/85/d483e9c4e5ed586b183bf037a353e8d766366b54fd15519b30e6178a6a6e/fonttools-4.56.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ffda9b8cd9cb8b301cae2602ec62375b59e2e2108a117746f12215145e3f786c", size = 2281554 }, + { url = "https://files.pythonhosted.org/packages/09/67/060473b832b2fade03c127019794df6dc02d9bc66fa4210b8e0d8a99d1e5/fonttools-4.56.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e993e8db36306cc3f1734edc8ea67906c55f98683d6fd34c3fc5593fdbba4c", size = 4869260 }, + { url = "https://files.pythonhosted.org/packages/28/e9/47c02d5a7027e8ed841ab6a10ca00c93dadd5f16742f1af1fa3f9978adf4/fonttools-4.56.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:003548eadd674175510773f73fb2060bb46adb77c94854af3e0cc5bc70260049", size = 4898508 }, + { url = "https://files.pythonhosted.org/packages/bf/8a/221d456d1afb8ca043cfd078f59f187ee5d0a580f4b49351b9ce95121f57/fonttools-4.56.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd9825822e7bb243f285013e653f6741954d8147427aaa0324a862cdbf4cbf62", size = 4877700 }, + { url = "https://files.pythonhosted.org/packages/a4/8c/e503863adf7a6aeff7b960e2f66fa44dd0c29a7a8b79765b2821950d7b05/fonttools-4.56.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b23d30a2c0b992fb1c4f8ac9bfde44b5586d23457759b6cf9a787f1a35179ee0", size = 5045817 }, + { url = "https://files.pythonhosted.org/packages/2b/50/79ba3b7e42f4eaa70b82b9e79155f0f6797858dc8a97862428b6852c6aee/fonttools-4.56.0-cp311-cp311-win32.whl", hash = "sha256:47b5e4680002ae1756d3ae3b6114e20aaee6cc5c69d1e5911f5ffffd3ee46c6b", size = 2154426 }, + { url = "https://files.pythonhosted.org/packages/3b/90/4926e653041c4116ecd43e50e3c79f5daae6dcafc58ceb64bc4f71dd4924/fonttools-4.56.0-cp311-cp311-win_amd64.whl", hash = "sha256:14a3e3e6b211660db54ca1ef7006401e4a694e53ffd4553ab9bc87ead01d0f05", size = 2200937 }, + { url = "https://files.pythonhosted.org/packages/bf/ff/44934a031ce5a39125415eb405b9efb76fe7f9586b75291d66ae5cbfc4e6/fonttools-4.56.0-py3-none-any.whl", hash = "sha256:1088182f68c303b50ca4dc0c82d42083d176cba37af1937e1a976a31149d4d14", size = 1089800 }, +] + +[[package]] +name = "fsspec" +version = "2025.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/79/68612ed99700e6413de42895aa725463e821a6b3be75c87fcce1b4af4c70/fsspec-2025.2.0.tar.gz", hash = "sha256:1c24b16eaa0a1798afa0337aa0db9b256718ab2a89c425371f5628d22c3b6afd", size = 292283 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl", hash = "sha256:9de2ad9ce1f85e1931858535bc882543171d197001a0a5eb2ddc04f1781ab95b", size = 184484 }, +] + +[[package]] +name = "geographiclib" +version = "2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/cd/90271fd195d79a9c2af0ca21632b297a6cc3e852e0413a2e4519e67be213/geographiclib-2.0.tar.gz", hash = "sha256:f7f41c85dc3e1c2d3d935ec86660dc3b2c848c83e17f9a9e51ba9d5146a15859", size = 36720 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/5a/a26132406f1f40cf51ea349a5f11b0a46cec02a2031ff82e391c2537247a/geographiclib-2.0-py3-none-any.whl", hash = "sha256:6b7225248e45ff7edcee32becc4e0a1504c606ac5ee163a5656d482e0cd38734", size = 40324 }, +] + +[[package]] +name = "geopandas" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyogrio" }, + { name = "pyproj" }, + { name = "shapely" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/08/2cf5d85356e45b10b8d066cf4c3ba1e9e3185423c48104eed87e8afd0455/geopandas-1.0.1.tar.gz", hash = "sha256:b8bf70a5534588205b7a56646e2082fb1de9a03599651b3d80c99ea4c2ca08ab", size = 317736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/64/7d344cfcef5efddf9cf32f59af7f855828e9d74b5f862eddf5bfd9f25323/geopandas-1.0.1-py3-none-any.whl", hash = "sha256:01e147d9420cc374d26f51fc23716ac307f32b49406e4bd8462c07e82ed1d3d6", size = 323587 }, +] + +[[package]] +name = "geopy" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "geographiclib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/e5/4e358038626f9ed671cf4d94fdb767c39644ccf062fe6a1bc089873a9dd4/geopy-2.4.0.tar.gz", hash = "sha256:a59392bf17adb486b25dbdd71fbed27733bdf24a2dac588047a619de56695e36", size = 117582 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/9289c6a03116025cdb61461d99b2493daa4967a80b13755463d71a0affeb/geopy-2.4.0-py3-none-any.whl", hash = "sha256:d2639a46d0ce4c091e9688b750ba94348a14b898a1e55c68f4b4a07e7d1afa20", size = 125446 }, +] + +[[package]] +name = "gitdb" +version = "4.0.12" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794 }, +] + +[[package]] +name = "gitpython" +version = "3.1.44" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/89/37df0b71473153574a5cdef8f242de422a0f5d26d7a9e231e6f169b4ad14/gitpython-3.1.44.tar.gz", hash = "sha256:c87e30b26253bf5418b01b0660f818967f3c503193838337fe5e573331249269", size = 214196 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/9a/4114a9057db2f1462d5c8f8390ab7383925fe1ac012eaa42402ad65c2963/GitPython-3.1.44-py3-none-any.whl", hash = "sha256:9e0e10cda9bed1ee64bc9a6de50e7e38a9c9943241cd7f585f6df3ed28011110", size = 207599 }, +] + +[[package]] +name = "graphviz" +version = "0.20.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fa/83/5a40d19b8347f017e417710907f824915fba411a9befd092e52746b63e9f/graphviz-0.20.3.zip", hash = "sha256:09d6bc81e6a9fa392e7ba52135a9d49f1ed62526f96499325930e87ca1b5925d", size = 256455 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/be/d59db2d1d52697c6adc9eacaf50e8965b6345cc143f671e1ed068818d5cf/graphviz-0.20.3-py3-none-any.whl", hash = "sha256:81f848f2904515d8cd359cc611faba817598d2feaac4027b266aa3eda7b3dde5", size = 47126 }, +] + +[[package]] +name = "gurobipy" +version = "11.0.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/ba/dd7d8f299a3a87ae5bd5553b82199851e6e5e7b6fcf8528570b05d343610/gurobipy-11.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:138b4be8fb42d494b8484bd4cfa99ea1e511e8860cdb1171349f4fce06d9aa01", size = 10784430 }, + { url = "https://files.pythonhosted.org/packages/b9/68/7ccd72bf75db54c70ec563f5f700119ea290c9a6ccac9f3191295e4739f5/gurobipy-11.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:84c58e164c90fc1de8bc0aac8ad25a82b4a9d3079b5064735822cecf552b1b26", size = 27422010 }, + { url = "https://files.pythonhosted.org/packages/af/53/8b5194b41760718a8cfb01010dcab5a8f464468fffacceb256df8aefa906/gurobipy-11.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d8eed5ca4831d1f10b08cd701f75483b27810734750d414a5b3cb6e4ba4c17f3", size = 13446177 }, + { url = "https://files.pythonhosted.org/packages/28/41/c61b4b096a093479eb45292ec7a5d127f088a92d4748faec76e4fcd2443e/gurobipy-11.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9e57508f7d7a8ef154767894c693273d94bed771fa300677ae74892fde7dfc57", size = 10324769 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "highspy" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/77/3b103db661372703843167d323c548ab479f812d5c633549347f748d5aee/highspy-1.9.0.tar.gz", hash = "sha256:d9765753991c7a4d9bc8815a75fc4df6f5c58b50117e391e2c494cdf0eb1ed13", size = 1420463 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/a3/7a5832c08a567bb3e2b24307a87fc3279fbe3888532d1cc8766f49693d36/highspy-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:244b72ff31bd0cfb736893aecf1b324f9155bab020414ad89710319fb3cda17a", size = 2151196 }, + { url = "https://files.pythonhosted.org/packages/aa/b5/17c654e5d9e0d69649af01f6cc5ba133a622b942c0327df3d056288db013/highspy-1.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:830da7691d39b0ef3266bdcdc805f15a215f1b91fe01cb2bb39ca9fb25e2fcfc", size = 1841765 }, + { url = "https://files.pythonhosted.org/packages/eb/33/b878f6faa73888286efa72717a6d9ad49b2aab4f321a7081a455495564da/highspy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79a15b420cfe45b53e0a7b8e2096bfb407ae763f338cd2a43ba6acd987266697", size = 2065797 }, + { url = "https://files.pythonhosted.org/packages/2f/d2/1aa39bb9d381ecb0122a90e6e48480358e284a2891ff51cdf90b4a885857/highspy-1.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:86977e537c2152e998c7e5d62a0a333507a314dae374daebad1dc2cdc5616d5e", size = 2384941 }, + { url = "https://files.pythonhosted.org/packages/ee/a2/e825e8bed155f9df748ea9319a83c2c89ab860ddf89656986b3964236d34/highspy-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:664048c40ad4ee6b8b7aa279a46803a448dff6079940b85cc5fbcc2d9fde1cce", size = 2248144 }, + { url = "https://files.pythonhosted.org/packages/5c/32/a4b7d1498defcb5651f651d7f234a744c9de4658b9ddaf0155e1e211272c/highspy-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d2fbec2a5c7ff42ed1fb9f54c4c5141fcaa070ed5884b7f966fde45921fb16c3", size = 3046337 }, + { url = "https://files.pythonhosted.org/packages/0a/4e/4548176b287567917c7e60868eb819cd70e619663c749384feab468c3e62/highspy-1.9.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2b97e07c5921a14a40cca32fcc8477853cc9a6e909b2f0ef44fb94d2be6d4e8e", size = 3573045 }, + { url = "https://files.pythonhosted.org/packages/5c/3b/78c8eaa0f2a6a20ddb1f8c488ba6dd787baf31fd79902301b58f5f75f72c/highspy-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:43d1612e9091a2fe07bad2e24dea12f0e67bb77014c59281407cd72fd704de5b", size = 3250008 }, + { url = "https://files.pythonhosted.org/packages/42/b2/c1e07d7c55e2bb6f7a5c2ee0d57e0fd6d848261a263e6e6cf419e38cfe40/highspy-1.9.0-cp311-cp311-win32.whl", hash = "sha256:95662940d87c9f3894e8e78a405f8701af7326e28db38b524ea19119821c3b8c", size = 1563554 }, + { url = "https://files.pythonhosted.org/packages/35/e9/aa8fce2ac95124bc880761856207e7b02263730a4eb1a9cfb97116a26b44/highspy-1.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:18827d2e7e2d1b013b2c5eac0923646942700ff5683a93c23c383370861d424d", size = 1871049 }, +] + +[[package]] +name = "httpcore" +version = "1.0.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6a/41/d7d0a89eb493922c37d343b607bc1b5da7f5be7e383740b4753ad8943e90/httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c", size = 85196 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551 }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517 }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794 }, +] + +[[package]] +name = "identify" +version = "2.6.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/d1/524aa3350f78bcd714d148ade6133d67d6b7de2cdbae7d99039c024c9a25/identify-2.6.7.tar.gz", hash = "sha256:3fa266b42eba321ee0b2bb0936a6a6b9e36a1351cbb69055b3082f4193035684", size = 99260 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/00/1fd4a117c6c93f2dcc5b7edaeaf53ea45332ef966429be566ca16c2beb94/identify-2.6.7-py2.py3-none-any.whl", hash = "sha256:155931cb617a401807b09ecec6635d6c692d180090a1cedca8ef7d58ba5b6aa0", size = 99097 }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, +] + +[[package]] +name = "imagesize" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b", size = 8769 }, +] + +[[package]] +name = "importlib-metadata" +version = "8.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/08/c1395a292bb23fd03bdf572a1357c5a733d3eecbab877641ceacab23db6e/importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580", size = 55767 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/9d/0fb148dc4d6fa4a7dd1d8378168d9b4cd8d4560a6fbf6f0121c5fc34eb68/importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e", size = 26971 }, +] + +[[package]] +name = "ipython" +version = "8.32.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/80/4d2a072e0db7d250f134bc11676517299264ebe16d62a8619d49a78ced73/ipython-8.32.0.tar.gz", hash = "sha256:be2c91895b0b9ea7ba49d33b23e2040c352b33eb6a519cca7ce6e0c743444251", size = 5507441 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e1/f4474a7ecdb7745a820f6f6039dc43c66add40f1bcc66485607d93571af6/ipython-8.32.0-py3-none-any.whl", hash = "sha256:cae85b0c61eff1fc48b0a8002de5958b6528fa9c8defb1894da63f42613708aa", size = 825524 }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278 }, +] + +[[package]] +name = "jinja2" +version = "3.1.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/92/b3130cbbf5591acf9ade8708c365f3238046ac7cb8ccba6e81abccb0ccff/jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb", size = 244674 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/0f/2ba5fbcd631e3e88689309dbe978c5769e883e4b84ebfe7da30b43275c5a/jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb", size = 134596 }, +] + +[[package]] +name = "joblib" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/33/60135848598c076ce4b231e1b1895170f45fbcaeaa2c9d5e38b04db70c35/joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e", size = 2116621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/29/df4b9b42f2be0b623cbd5e2140cafcaa2bef0759a00b7b70104dcfe2fb51/joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6", size = 301817 }, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4", size = 325778 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566", size = 88462 }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2024.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/10/db/58f950c996c793472e336ff3655b13fbcf1e3b359dcf52dcf3ed3b52c352/jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272", size = 15561 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/0f/8910b19ac0670a0f80ce1008e5e751c4a57e14d2c4c13a482aa6079fa9d6/jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf", size = 18459 }, +] + +[[package]] +name = "jupyter-core" +version = "5.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/11/b56381fa6c3f4cc5d2cf54a7dbf98ad9aa0b339ef7a601d6053538b079a7/jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9", size = 87629 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409", size = 28965 }, +] + +[[package]] +name = "kiwisolver" +version = "1.4.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ed/c913ee28936c371418cb167b128066ffb20bbf37771eecc2c97edf8a6e4c/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84", size = 124635 }, + { url = "https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561", size = 66717 }, + { url = "https://files.pythonhosted.org/packages/5f/b4/c12b3ac0852a3a68f94598d4c8d569f55361beef6159dce4e7b624160da2/kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7", size = 65413 }, + { url = "https://files.pythonhosted.org/packages/a9/98/1df4089b1ed23d83d410adfdc5947245c753bddfbe06541c4aae330e9e70/kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03", size = 1343994 }, + { url = "https://files.pythonhosted.org/packages/8d/bf/b4b169b050c8421a7c53ea1ea74e4ef9c335ee9013216c558a047f162d20/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954", size = 1434804 }, + { url = "https://files.pythonhosted.org/packages/66/5a/e13bd341fbcf73325ea60fdc8af752addf75c5079867af2e04cc41f34434/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79", size = 1450690 }, + { url = "https://files.pythonhosted.org/packages/9b/4f/5955dcb376ba4a830384cc6fab7d7547bd6759fe75a09564910e9e3bb8ea/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6", size = 1376839 }, + { url = "https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0", size = 1435109 }, + { url = "https://files.pythonhosted.org/packages/13/fc/e756382cb64e556af6c1809a1bbb22c141bbc2445049f2da06b420fe52bf/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab", size = 2245269 }, + { url = "https://files.pythonhosted.org/packages/76/15/e59e45829d7f41c776d138245cabae6515cb4eb44b418f6d4109c478b481/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc", size = 2393468 }, + { url = "https://files.pythonhosted.org/packages/e9/39/483558c2a913ab8384d6e4b66a932406f87c95a6080112433da5ed668559/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25", size = 2355394 }, + { url = "https://files.pythonhosted.org/packages/01/aa/efad1fbca6570a161d29224f14b082960c7e08268a133fe5dc0f6906820e/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc", size = 2490901 }, + { url = "https://files.pythonhosted.org/packages/c9/4f/15988966ba46bcd5ab9d0c8296914436720dd67fca689ae1a75b4ec1c72f/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67", size = 2312306 }, + { url = "https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34", size = 71966 }, + { url = "https://files.pythonhosted.org/packages/4a/c9/9642ea855604aeb2968a8e145fc662edf61db7632ad2e4fb92424be6b6c0/kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2", size = 65311 }, +] + +[[package]] +name = "linopy" +version = "0.3.14" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bottleneck" }, + { name = "dask" }, + { name = "deprecation" }, + { name = "numexpr" }, + { name = "numpy" }, + { name = "polars" }, + { name = "scipy" }, + { name = "toolz" }, + { name = "tqdm" }, + { name = "xarray" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/9d/ff0eccefa8b768dac94d156fb96d287c87e30e7d1a8507f07b108f4f02eb/linopy-0.3.14.tar.gz", hash = "sha256:4c4d50fec3bde13f756c6f1978562bdbc7e9a6cd98f133437e5b32825d29ab7f", size = 1185647 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/ab/e8c566e002e15d2ad320c74117b85c9750e5c053d15ceda7fe8563a384c2/linopy-0.3.14-py3-none-any.whl", hash = "sha256:70af5cd5834e9c97c2498d06feea890769b44e661493621e5cf08399b524cf5b", size = 85459 }, +] + +[[package]] +name = "locket" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/83/97b29fe05cb6ae28d2dbd30b81e2e402a3eed5f460c26e9eaa5895ceacf5/locket-1.0.0.tar.gz", hash = "sha256:5c0d4c052a8bbbf750e056a8e65ccd309086f4f0f18a2eac306a8dfa4112a632", size = 4350 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/bc/83e112abc66cd466c6b83f99118035867cecd41802f8d044638aa78a106e/locket-1.0.0-py2.py3-none-any.whl", hash = "sha256:b6c819a722f7b6bd955b80781788e4a66a55628b858d347536b7e81325a3a5e3", size = 4398 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 }, + { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 }, + { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 }, + { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 }, + { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 }, + { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 }, + { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 }, + { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 }, + { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 }, + { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 }, +] + +[[package]] +name = "matplotlib" +version = "3.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/e1/77016194621fb1356aafeb2186f07b5dede62ea2043bf03f82325c4fccc5/matplotlib-3.8.0.tar.gz", hash = "sha256:df8505e1c19d5c2c26aff3497a7cbd3ccfc2e97043d1e4db3e76afa399164b69", size = 35864435 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/ee/e87d7a79a32f5ac833655ef29ebd37c7b389e8957bc71aacb10a95f822b9/matplotlib-3.8.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5dc945a9cb2deb7d197ba23eb4c210e591d52d77bf0ba27c35fc82dec9fa78d4", size = 7590852 }, + { url = "https://files.pythonhosted.org/packages/af/f3/fb27b3b902fc759bbca3f9d0336c48069c3022e57552c4b0095d997c7ea8/matplotlib-3.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8b5a1bf27d078453aa7b5b27f52580e16360d02df6d3dc9504f3d2ce11f6309", size = 7484528 }, + { url = "https://files.pythonhosted.org/packages/39/fc/fca496a890274b6628e310816710718d8184ede99956160c05a017789acc/matplotlib-3.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f25ffb6ad972cdffa7df8e5be4b1e3cadd2f8d43fc72085feb1518006178394", size = 11385752 }, + { url = "https://files.pythonhosted.org/packages/65/5b/3b8fd7d66043f0638a35fa650570cbe69efd42fe169e5024f9307598b47e/matplotlib-3.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee482731c8c17d86d9ddb5194d38621f9b0f0d53c99006275a12523ab021732", size = 11615276 }, + { url = "https://files.pythonhosted.org/packages/af/02/320e32ec24b062c29b4b580db3257190c66d5a8aa4d604a9c0204061ead9/matplotlib-3.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:36eafe2128772195b373e1242df28d1b7ec6c04c15b090b8d9e335d55a323900", size = 9545819 }, + { url = "https://files.pythonhosted.org/packages/40/d9/c1784db9db0d484c8e5deeafbaac0d6ed66e165c6eb4a74fb43a5fa947d9/matplotlib-3.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:061ee58facb3580cd2d046a6d227fb77e9295599c5ec6ad069f06b5821ad1cfc", size = 7644668 }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899 }, +] + +[[package]] +name = "mdit-py-plugins" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/03/a2ecab526543b152300717cf232bb4bb8605b6edb946c845016fa9c9c9fd/mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5", size = 43542 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636", size = 55316 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "msgpack" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cb/d0/7555686ae7ff5731205df1012ede15dd9d927f6227ea151e901c7406af4f/msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e", size = 167260 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/5e/a4c7154ba65d93be91f2f1e55f90e76c5f91ccadc7efc4341e6f04c8647f/msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7", size = 150803 }, + { url = "https://files.pythonhosted.org/packages/60/c2/687684164698f1d51c41778c838d854965dd284a4b9d3a44beba9265c931/msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa", size = 84343 }, + { url = "https://files.pythonhosted.org/packages/42/ae/d3adea9bb4a1342763556078b5765e666f8fdf242e00f3f6657380920972/msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701", size = 81408 }, + { url = "https://files.pythonhosted.org/packages/dc/17/6313325a6ff40ce9c3207293aee3ba50104aed6c2c1559d20d09e5c1ff54/msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6", size = 396096 }, + { url = "https://files.pythonhosted.org/packages/a8/a1/ad7b84b91ab5a324e707f4c9761633e357820b011a01e34ce658c1dda7cc/msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59", size = 403671 }, + { url = "https://files.pythonhosted.org/packages/bb/0b/fd5b7c0b308bbf1831df0ca04ec76fe2f5bf6319833646b0a4bd5e9dc76d/msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0", size = 387414 }, + { url = "https://files.pythonhosted.org/packages/f0/03/ff8233b7c6e9929a1f5da3c7860eccd847e2523ca2de0d8ef4878d354cfa/msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e", size = 383759 }, + { url = "https://files.pythonhosted.org/packages/1f/1b/eb82e1fed5a16dddd9bc75f0854b6e2fe86c0259c4353666d7fab37d39f4/msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6", size = 394405 }, + { url = "https://files.pythonhosted.org/packages/90/2e/962c6004e373d54ecf33d695fb1402f99b51832631e37c49273cc564ffc5/msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5", size = 396041 }, + { url = "https://files.pythonhosted.org/packages/f8/20/6e03342f629474414860c48aeffcc2f7f50ddaf351d95f20c3f1c67399a8/msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88", size = 68538 }, + { url = "https://files.pythonhosted.org/packages/aa/c4/5a582fc9a87991a3e6f6800e9bb2f3c82972912235eb9539954f3e9997c7/msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788", size = 74871 }, +] + +[[package]] +name = "multiurl" +version = "0.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "requests" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/db/aad981174d3bdaecc1d7e1f2d176641f022300ddf3a17b13c2775d041b7a/multiurl-0.3.3.tar.gz", hash = "sha256:f4d0b69dcf4a0ed740daa313dbcd4d5665420d305c50ca879285e96dc828093f", size = 18382 } + +[[package]] +name = "mypy" +version = "1.11.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mypy-extensions" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/86/5d7cbc4974fd564550b80fbb8103c05501ea11aa7835edf3351d90095896/mypy-1.11.2.tar.gz", hash = "sha256:7f9993ad3e0ffdc95c2a14b66dee63729f021968bff8ad911867579c65d13a79", size = 3078806 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/aa/cc56fb53ebe14c64f1fe91d32d838d6f4db948b9494e200d2f61b820b85d/mypy-1.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75746e06d5fa1e91bfd5432448d00d34593b52e7e91a187d981d08d1f33d4385", size = 10859630 }, + { url = "https://files.pythonhosted.org/packages/04/c8/b19a760fab491c22c51975cf74e3d253b8c8ce2be7afaa2490fbf95a8c59/mypy-1.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a976775ab2256aadc6add633d44f100a2517d2388906ec4f13231fafbb0eccca", size = 10037973 }, + { url = "https://files.pythonhosted.org/packages/88/57/7e7e39f2619c8f74a22efb9a4c4eff32b09d3798335625a124436d121d89/mypy-1.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd953f221ac1379050a8a646585a29574488974f79d8082cedef62744f0a0104", size = 12416659 }, + { url = "https://files.pythonhosted.org/packages/fc/a6/37f7544666b63a27e46c48f49caeee388bf3ce95f9c570eb5cfba5234405/mypy-1.11.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:57555a7715c0a34421013144a33d280e73c08df70f3a18a552938587ce9274f4", size = 12897010 }, + { url = "https://files.pythonhosted.org/packages/84/8b/459a513badc4d34acb31c736a0101c22d2bd0697b969796ad93294165cfb/mypy-1.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:36383a4fcbad95f2657642a07ba22ff797de26277158f1cc7bd234821468b1b6", size = 9562873 }, + { url = "https://files.pythonhosted.org/packages/42/3a/bdf730640ac523229dd6578e8a581795720a9321399de494374afc437ec5/mypy-1.11.2-py3-none-any.whl", hash = "sha256:b499bc07dbdcd3de92b0a8b29fdf592c111276f6a12fe29c30f6c417dd546d12", size = 2619625 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "myst-parser" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "jinja2" }, + { name = "markdown-it-py" }, + { name = "mdit-py-plugins" }, + { name = "pyyaml" }, + { name = "sphinx" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/55/6d1741a1780e5e65038b74bce6689da15f620261c490c3511eb4c12bac4b/myst_parser-4.0.0.tar.gz", hash = "sha256:851c9dfb44e36e56d15d05e72f02b80da21a9e0d07cba96baf5e2d476bb91531", size = 93858 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/b4/b036f8fdb667587bb37df29dc6644681dd78b7a2a6321a34684b79412b28/myst_parser-4.0.0-py3-none-any.whl", hash = "sha256:b9317997552424448c6096c2558872fdb6f81d3ecb3a40ce84a7518798f3f28d", size = 84563 }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454 }, +] + +[[package]] +name = "ndindex" +version = "1.9.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/f9/f8d491c18f16ffcb1a8abf78345e54879fd1fe6b61dcc8a9b471285cd27e/ndindex-1.9.2.tar.gz", hash = "sha256:b8658a06e52d6c47445c2ec11d292e1d52c3af259214c8b52e3a1aab733daa72", size = 243001 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/6d/f272dbbe0a23575e57773272f02a237b51f4e4f33317bf28b2b8be47ac3d/ndindex-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1fa2e521a872870d55fa6fa85399f16c1c20bbe4e3e315bbfc80e3ea92561334", size = 163453 }, + { url = "https://files.pythonhosted.org/packages/77/f6/8ff749841f6f8f4096184e8e158e48d572358d4ad0ba1055728e4f7e0f44/ndindex-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6b0ef52d15fa8755d00a6868c799ff4227f1f453901a6f4de395586f9a435b7a", size = 161947 }, + { url = "https://files.pythonhosted.org/packages/51/2d/bfc284ecc9b24acb916f5d04a69357ae56e0b6073286eaa71cf54bf0b136/ndindex-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f647eda61cae68a260017118ad8daac4d580ad221ff922bbaa1526e30e350feb", size = 506119 }, + { url = "https://files.pythonhosted.org/packages/5d/6b/83e328c3dc41ff244d7e79cd24ac62fff96405a3ea948810b2fa883c14f5/ndindex-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:384520b4d9f52cb2fd1d324e6f278ec422b2cc2885e95a00587394bf6f56a798", size = 485492 }, + { url = "https://files.pythonhosted.org/packages/87/f4/8a3a3c0d541d96a6cd39026a1211647d0fcbf047f8bac4332e4b95f54e8b/ndindex-1.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e2dd75a6e25269b66607f1722acd72e8f086837b2c58275d31b3bdfdf8a095bf", size = 489557 }, + { url = "https://files.pythonhosted.org/packages/0f/5c/5e96422400fad72762e85e3cc3a4bd52b11476b990c4e7df25836e8e9c0c/ndindex-1.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8634be005b18034846163067bce78a0209fab65e4bc77e0bc333aa160ef12b7a", size = 506268 }, + { url = "https://files.pythonhosted.org/packages/f8/8b/5948067de44c5484aa8a4db640b8b5dc5cc9b394e9f547a23fd694edf399/ndindex-1.9.2-cp311-cp311-win32.whl", hash = "sha256:89172e90e56a409197cbbe12a49aa16c83879274ca4f61fd8a03b30c6c90e3ca", size = 151566 }, + { url = "https://files.pythonhosted.org/packages/b0/f6/b2fde7ec7880d51f7280bb5e974e400bb716e3054048c409ba35ba509823/ndindex-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:d23f07831d28bb3c04c234936b6038078cd7c0c4966d2e2e37738edad6435f9f", size = 159516 }, +] + +[[package]] +name = "netcdf4" +version = "1.6.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "cftime" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8f/39/f8c4b2f3a4d78164e9850bb0924e1fd490e0bf8a8366b9b42cd295d7bbee/netCDF4-1.6.4.tar.gz", hash = "sha256:66da6542cbc7a6045cd1d979397dfd5a3f6c880c76d52b8f98bb108c82ee8c6e", size = 778542 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/f6/b343f027582aa4db92d35f4ec89fcaa18562d0d6bf63ee15bfd494b49ba2/netCDF4-1.6.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:08a7efab50d5a4da6227244e544a74f676b732ccdff2b8a4678174c15a3f8dff", size = 6709409 }, + { url = "https://files.pythonhosted.org/packages/98/b3/42bcbabf812e5c9e4568917a3e08987adabd2b01b0806f7c9c415e9657f8/netCDF4-1.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f9b7ad3f66d50970fa1bd5509c52bb8a99740c8a79fafa83bfd0bc7348b6ab5a", size = 3215491 }, + { url = "https://files.pythonhosted.org/packages/45/0d/a9708db20dd4d8ba3019722455f658ed544ae9d1e4c4edf75faa3d3314db/netCDF4-1.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c5cad50d4e6e5a3b35c76862c58393ddf93baa44de98b6e040ac21896145881", size = 5041737 }, + { url = "https://files.pythonhosted.org/packages/56/9d/f9e7608e4fa3cafeb215217733ef08d770bcc0b0f70b4f3ad574113df4cf/netCDF4-1.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c2395c53a37717b1047650e1c9de68a3d69542bb25df5c594e1e14e9480bb18", size = 5397581 }, + { url = "https://files.pythonhosted.org/packages/f0/ef/39f1e32c623abbcff8fef81e484abafc74779388144540b804d96f0657cc/netCDF4-1.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:c85f77599c61a88d512d6536e181ff1c01fd16f4740367e4f8e5cacb36500293", size = 6555644 }, +] + +[[package]] +name = "networkx" +version = "3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fd/a1/47b974da1a73f063c158a1f4cc33ed0abf7c04f98a19050e80c533c31f0c/networkx-3.1.tar.gz", hash = "sha256:de346335408f84de0eada6ff9fafafff9bcda11f0a0dfaa931133debb146ab61", size = 2021691 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/05/9d4f9b78ead6b2661d6e8ea772e111fc4a9fbd866ad0c81906c11206b55e/networkx-3.1-py3-none-any.whl", hash = "sha256:4f33f68cb2afcf86f28a45f43efc27a9386b535d567d2127f8f61d51dec58d36", size = 2072251 }, +] + +[[package]] +name = "nodeenv" +version = "1.9.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314 }, +] + +[[package]] +name = "numexpr" +version = "2.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/21/67/c7415cf04ebe418193cfd6595ae03e3a64d76dac7b9c010098b39cc7992e/numexpr-2.10.2.tar.gz", hash = "sha256:b0aff6b48ebc99d2f54f27b5f73a58cb92fde650aeff1b397c71c8788b4fff1a", size = 106787 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/b7/f25d6166f92ef23737c1c90416144492a664f0a56510d90f7c6577c2cd14/numexpr-2.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b360eb8d392483410fe6a3d5a7144afa298c9a0aa3e9fe193e89590b47dd477", size = 145055 }, + { url = "https://files.pythonhosted.org/packages/66/64/428361ea6415826332f38ef2dd5c3abf4e7e601f033bfc9be68b680cb765/numexpr-2.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9a42f5c24880350d88933c4efee91b857c378aaea7e8b86221fff569069841e", size = 134743 }, + { url = "https://files.pythonhosted.org/packages/3f/fb/639ec91d2ea7b4a5d66e26e8ef8e06b020c8e9b9ebaf3bab7b0a9bee472e/numexpr-2.10.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:83fcb11988b57cc25b028a36d285287d706d1f536ebf2662ea30bd990e0de8b9", size = 410397 }, + { url = "https://files.pythonhosted.org/packages/89/5a/0f5c5b8a3a6d34eeecb30d0e2f722d50b9b38c0e175937e7c6268ffab997/numexpr-2.10.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4213a92efa9770bc28e3792134e27c7e5c7e97068bdfb8ba395baebbd12f991b", size = 398902 }, + { url = "https://files.pythonhosted.org/packages/a2/d5/ec734e735eba5a753efed5be3707ee7447ebd371772f8081b65a4153fb97/numexpr-2.10.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebdbef5763ca057eea0c2b5698e4439d084a0505d9d6e94f4804f26e8890c45e", size = 1380354 }, + { url = "https://files.pythonhosted.org/packages/30/51/406e572531d817480bd612ee08239a36ee82865fea02fce569f15631f4ee/numexpr-2.10.2-cp311-cp311-win32.whl", hash = "sha256:3bf01ec502d89944e49e9c1b5cc7c7085be8ca2eb9dd46a0eafd218afbdbd5f5", size = 151938 }, + { url = "https://files.pythonhosted.org/packages/04/32/5882ed1dbd96234f327a73316a481add151ff827cfaf2ea24fb4d5ad04db/numexpr-2.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:e2d0ae24b0728e4bc3f1d3f33310340d67321d36d6043f7ce26897f4f1042db0", size = 144961 }, +] + +[[package]] +name = "numpy" +version = "1.26.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/b3/b13bce39ba82b7398c06d10446f5ffd5c07db39b09bd37370dc720c7951c/numpy-1.26.0.tar.gz", hash = "sha256:f93fc78fe8bf15afe2b8d6b6499f1c73953169fad1e9a8dd086cdff3190e7fdf", size = 15633455 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/2f/b42860931c1479714201495ffe47d74460a916ae426a21fc9b68c5e329aa/numpy-1.26.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:637c58b468a69869258b8ae26f4a4c6ff8abffd4a8334c830ffb63e0feefe99a", size = 20619338 }, + { url = "https://files.pythonhosted.org/packages/35/21/9e150d654da358beb29fe216f339dc17f2b2ac13fff2a89669401a910550/numpy-1.26.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:306545e234503a24fe9ae95ebf84d25cba1fdc27db971aa2d9f1ab6bba19a9dd", size = 13981953 }, + { url = "https://files.pythonhosted.org/packages/a9/84/baf694be765d68c73f0f8a9d52151c339aed5f2d64205824a6f29021170c/numpy-1.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c6adc33561bd1d46f81131d5352348350fc23df4d742bb246cdfca606ea1208", size = 14167328 }, + { url = "https://files.pythonhosted.org/packages/c4/36/161e2f8110f8c49e59f6107bd6da4257d30aff9f06373d0471811f73dcc5/numpy-1.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e062aa24638bb5018b7841977c360d2f5917268d125c833a686b7cbabbec496c", size = 18178118 }, + { url = "https://files.pythonhosted.org/packages/37/41/63975634a93da2a384d3c8084eba467242cab68daab0cd8f4fd470dcee26/numpy-1.26.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:546b7dd7e22f3c6861463bebb000646fa730e55df5ee4a0224408b5694cc6148", size = 18020808 }, + { url = "https://files.pythonhosted.org/packages/58/d2/cbc329aa908cb963bd849f14e24f59c002a488e9055fab2c68887a6b5f1c/numpy-1.26.0-cp311-cp311-win32.whl", hash = "sha256:c0b45c8b65b79337dee5134d038346d30e109e9e2e9d43464a2970e5c0e93229", size = 20750149 }, + { url = "https://files.pythonhosted.org/packages/93/fd/3f826c6d15d3bdcf65b8031e4835c52b7d9c45add25efa2314b53850e1a2/numpy-1.26.0-cp311-cp311-win_amd64.whl", hash = "sha256:eae430ecf5794cb7ae7fa3808740b015aa80747e5266153128ef055975a72b99", size = 15794407 }, +] + +[[package]] +name = "openpyxl" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "et-xmlfile" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/e8/af028681d493814ca9c2ff8106fc62a4a32e4e0ae14602c2a98fc7b741c8/openpyxl-3.1.2.tar.gz", hash = "sha256:a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184", size = 185977 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/94/a59521de836ef0da54aaf50da6c4da8fb4072fb3053fa71f052fd9399e7a/openpyxl-3.1.2-py2.py3-none-any.whl", hash = "sha256:f91456ead12ab3c6c2e9491cf33ba6d08357d802192379bb482f1033ade496f5", size = 249985 }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, +] + +[[package]] +name = "pandas" +version = "2.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "pytz" }, + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/d9/ecf715f34c73ccb1d8ceb82fc01cd1028a65a5f6dbc57bfa6ea155119058/pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54", size = 4398391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/70/61704497903d43043e288017cb2b82155c0d41e15f5c17807920877b45c2/pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288", size = 12574808 }, + { url = "https://files.pythonhosted.org/packages/16/c6/75231fd47afd6b3f89011e7077f1a3958441264aca7ae9ff596e3276a5d0/pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151", size = 11304876 }, + { url = "https://files.pythonhosted.org/packages/97/2d/7b54f80b93379ff94afb3bd9b0cd1d17b48183a0d6f98045bc01ce1e06a7/pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b", size = 15602548 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4d82be566f069d7a9a702dcdf6f9106df0e0b042e738043c0cc7ddd7e3f6/pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee", size = 13031332 }, + { url = "https://files.pythonhosted.org/packages/92/a2/b79c48f530673567805e607712b29814b47dcaf0d167e87145eb4b0118c6/pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db", size = 16286054 }, + { url = "https://files.pythonhosted.org/packages/40/c7/47e94907f1d8fdb4868d61bd6c93d57b3784a964d52691b77ebfdb062842/pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1", size = 13879507 }, + { url = "https://files.pythonhosted.org/packages/ab/63/966db1321a0ad55df1d1fe51505d2cdae191b84c907974873817b0a6e849/pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24", size = 11634249 }, +] + +[[package]] +name = "parso" +version = "0.8.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/94/68e2e17afaa9169cf6412ab0f28623903be73d1b32e208d9e8e541bb086d/parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d", size = 400609 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", size = 103650 }, +] + +[[package]] +name = "partd" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "locket" }, + { name = "toolz" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b2/3a/3f06f34820a31257ddcabdfafc2672c5816be79c7e353b02c1f318daa7d4/partd-1.4.2.tar.gz", hash = "sha256:d022c33afbdc8405c226621b015e8067888173d85f7f5ecebb3cafed9a20f02c", size = 21029 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl", hash = "sha256:978e4ac767ec4ba5b86c6eaa52e5a2a3bc748a2ca839e8cc798f1cc6ce6efb0f", size = 18905 }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772 }, +] + +[[package]] +name = "pillow" +version = "11.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/c097e544e7bd278333db77933e535098c259609c4eb3b85381109602fb5b/pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20", size = 46742715 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dd/d6/2000bfd8d5414fb70cbbe52c8332f2283ff30ed66a9cde42716c8ecbe22c/pillow-11.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e06695e0326d05b06833b40b7ef477e475d0b1ba3a6d27da1bb48c23209bf457", size = 3229968 }, + { url = "https://files.pythonhosted.org/packages/d9/45/3fe487010dd9ce0a06adf9b8ff4f273cc0a44536e234b0fad3532a42c15b/pillow-11.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96f82000e12f23e4f29346e42702b6ed9a2f2fea34a740dd5ffffcc8c539eb35", size = 3101806 }, + { url = "https://files.pythonhosted.org/packages/e3/72/776b3629c47d9d5f1c160113158a7a7ad177688d3a1159cd3b62ded5a33a/pillow-11.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3cd561ded2cf2bbae44d4605837221b987c216cff94f49dfeed63488bb228d2", size = 4322283 }, + { url = "https://files.pythonhosted.org/packages/e4/c2/e25199e7e4e71d64eeb869f5b72c7ddec70e0a87926398785ab944d92375/pillow-11.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f189805c8be5ca5add39e6f899e6ce2ed824e65fb45f3c28cb2841911da19070", size = 4402945 }, + { url = "https://files.pythonhosted.org/packages/c1/ed/51d6136c9d5911f78632b1b86c45241c712c5a80ed7fa7f9120a5dff1eba/pillow-11.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dd0052e9db3474df30433f83a71b9b23bd9e4ef1de13d92df21a52c0303b8ab6", size = 4361228 }, + { url = "https://files.pythonhosted.org/packages/48/a4/fbfe9d5581d7b111b28f1d8c2762dee92e9821bb209af9fa83c940e507a0/pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:837060a8599b8f5d402e97197d4924f05a2e0d68756998345c829c33186217b1", size = 4484021 }, + { url = "https://files.pythonhosted.org/packages/39/db/0b3c1a5018117f3c1d4df671fb8e47d08937f27519e8614bbe86153b65a5/pillow-11.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:aa8dd43daa836b9a8128dbe7d923423e5ad86f50a7a14dc688194b7be5c0dea2", size = 4287449 }, + { url = "https://files.pythonhosted.org/packages/d9/58/bc128da7fea8c89fc85e09f773c4901e95b5936000e6f303222490c052f3/pillow-11.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0a2f91f8a8b367e7a57c6e91cd25af510168091fb89ec5146003e424e1558a96", size = 4419972 }, + { url = "https://files.pythonhosted.org/packages/5f/bb/58f34379bde9fe197f51841c5bbe8830c28bbb6d3801f16a83b8f2ad37df/pillow-11.1.0-cp311-cp311-win32.whl", hash = "sha256:c12fc111ef090845de2bb15009372175d76ac99969bdf31e2ce9b42e4b8cd88f", size = 2291201 }, + { url = "https://files.pythonhosted.org/packages/3a/c6/fce9255272bcf0c39e15abd2f8fd8429a954cf344469eaceb9d0d1366913/pillow-11.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbd43429d0d7ed6533b25fc993861b8fd512c42d04514a0dd6337fb3ccf22761", size = 2625686 }, + { url = "https://files.pythonhosted.org/packages/c8/52/8ba066d569d932365509054859f74f2a9abee273edcef5cd75e4bc3e831e/pillow-11.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f7955ecf5609dee9442cbface754f2c6e541d9e6eda87fad7f7a989b0bdb9d71", size = 2375194 }, +] + +[[package]] +name = "plac" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/79/1edb4c836c69306d0ecb0865f46d62ea7e28ef16b3f95bb394e4f2a46330/plac-1.4.3.tar.gz", hash = "sha256:d4cb3387b2113a28aebd509433d0264a4e5d9bb7c1a86db4fbd0a8f11af74eb3", size = 38984 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/af/4c61d2ac0d589719f548f5a1ba919738e44bac7b0c723ce147de5556d233/plac-1.4.3-py2.py3-none-any.whl", hash = "sha256:8a84fde8f950c9de6588a2d53c9deeac3ba1ddb456d887a33228460cf6549750", size = 22458 }, +] + +[[package]] +name = "platformdirs" +version = "4.3.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/13/fc/128cc9cb8f03208bdbf93d3aa862e16d376844a14f9a0ce5cf4507372de4/platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907", size = 21302 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb", size = 18439 }, +] + +[[package]] +name = "plotly" +version = "5.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "tenacity" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/bd/6516a9f3105cf15bf5892b2eec6eac4dd1645a4b1ed82ae86e0a044dab36/plotly-5.17.0.tar.gz", hash = "sha256:290d796bf7bab87aad184fe24b86096234c4c95dcca6ecbca02d02bdf17d3d97", size = 7824316 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/79/c80174d711ee26ee5da55a9cc3e248f1ec7a0188b5e4d6bbbbcd09b974b0/plotly-5.17.0-py2.py3-none-any.whl", hash = "sha256:7c84cdf11da162423da957bb093287134f2d6f170eb9a74f1459f825892247c3", size = 15641686 }, +] + +[[package]] +name = "ply" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e5/69/882ee5c9d017149285cab114ebeab373308ef0f874fcdac9beb90e0ac4da/ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3", size = 159130 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/58/35da89ee790598a0700ea49b2a66594140f44dec458c07e8e3d4979137fc/ply-3.11-py2.py3-none-any.whl", hash = "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce", size = 49567 }, +] + +[[package]] +name = "polars" +version = "1.22.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/62/f8/148964866c43e6c9d2440da69149cedaca8ad799efbeba1f2bd58c48d95f/polars-1.22.0.tar.gz", hash = "sha256:8d94ae25085d92de10d93ab6a06c94f8c911bd5d9c1ff17cd1073a9dca766029", size = 4399700 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/59/ff6185f1cd3898a655fb69571986433adec80c5fe5dbd37edf1025dbbd17/polars-1.22.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:6250f838b916fab23ccafe90928d7952afc328d316c956b42d152b20c86ffd9c", size = 32294750 }, + { url = "https://files.pythonhosted.org/packages/4e/89/ac9178aaf4bfce1087d311ddf540b259a517b584a62ba75dfd114a38e049/polars-1.22.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:5ee3cf3783205709ce31f070f2b4ee4296fec08f2c744a9c37acc7d360121022", size = 29145077 }, + { url = "https://files.pythonhosted.org/packages/91/b6/d7967ca14b8bacf7d3db96b55213571c43443f8802229606cca60458780b/polars-1.22.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94f25b4ef131da046d05b8235c5f29997630ee2125ebc0553b92258e88f7a8fa", size = 32885965 }, + { url = "https://files.pythonhosted.org/packages/a2/ae/c014bcb259757acd9081b4db76d19157c8978cb6eeb864f80ac0544e85cd/polars-1.22.0-cp39-abi3-manylinux_2_24_aarch64.whl", hash = "sha256:729e6be8a884812a206518195a2fb407b61962323886095ede1a2a934cdb1410", size = 30165643 }, + { url = "https://files.pythonhosted.org/packages/82/ef/2a13676be0f0cfa23f1899855d8342b303cc46111126b770cdacc7fd804d/polars-1.22.0-cp39-abi3-win_amd64.whl", hash = "sha256:78b8bcd1735e9376815d117aeae49391441b2199b5a70a300669d692b34ec713", size = 33179742 }, + { url = "https://files.pythonhosted.org/packages/79/ae/f46ff902e5ad0d3ce377902ae8ff65eaac23d9aba3c6bcb3b38ce22f5544/polars-1.22.0-cp39-abi3-win_arm64.whl", hash = "sha256:cde8f56c408151ab9790c43485b90f690d5c198ce26ab38a845045c73c999325", size = 29458831 }, +] + +[[package]] +name = "pre-commit" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cfgv" }, + { name = "identify" }, + { name = "nodeenv" }, + { name = "pyyaml" }, + { name = "virtualenv" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2a/13/b62d075317d8686071eb843f0bb1f195eb332f48869d3c31a4c6f1e063ac/pre_commit-4.1.0.tar.gz", hash = "sha256:ae3f018575a588e30dfddfab9a05448bfbd6b73d78709617b5a2b853549716d4", size = 193330 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/b3/df14c580d82b9627d173ceea305ba898dca135feb360b6d84019d0803d3b/pre_commit-4.1.0-py2.py3-none-any.whl", hash = "sha256:d29e7cb346295bcc1cc75fc3e92e343495e3ea0196c9ec6ba53f49f10ab6ae7b", size = 220560 }, +] + +[[package]] +name = "progressbar2" +version = "4.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-utils" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/68/5a/66e4838702ee7152e89a03498409e5b47536e637da2df725600201748ee6/progressbar2-4.3.2.tar.gz", hash = "sha256:c37e6e1b4e57ab43f95c3d0e8d90061bec140e4fed56b8343183db3aa1e19a52", size = 92504 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7d/66/86ac1b2ad859641bf5186fae72d90ca091a25aee3d6a1ba1772ea19895ba/progressbar2-4.3.2-py3-none-any.whl", hash = "sha256:036fa3bd35ae27c92e73fce4fb18aa4ba5090a1880d880cf954ecb75ccd6f3fb", size = 50571 }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.50" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/e1/bd15cb8ffdcfeeb2bdc215de3c3cffca11408d829e4b8416dcfe71ba8854/prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab", size = 429087 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198", size = 387816 }, +] + +[[package]] +name = "psutil" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/5a/07871137bb752428aa4b659f910b399ba6f291156bdea939be3e96cae7cb/psutil-6.1.1.tar.gz", hash = "sha256:cf8496728c18f2d0b45198f06895be52f36611711746b7f30c464b422b50e2f5", size = 508502 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/99/ca79d302be46f7bdd8321089762dd4476ee725fce16fc2b2e1dbba8cac17/psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:fc0ed7fe2231a444fc219b9c42d0376e0a9a1a72f16c5cfa0f68d19f1a0663e8", size = 247511 }, + { url = "https://files.pythonhosted.org/packages/0b/6b/73dbde0dd38f3782905d4587049b9be64d76671042fdcaf60e2430c6796d/psutil-6.1.1-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0bdd4eab935276290ad3cb718e9809412895ca6b5b334f5a9111ee6d9aff9377", size = 248985 }, + { url = "https://files.pythonhosted.org/packages/17/38/c319d31a1d3f88c5b79c68b3116c129e5133f1822157dd6da34043e32ed6/psutil-6.1.1-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6e06c20c05fe95a3d7302d74e7097756d4ba1247975ad6905441ae1b5b66003", size = 284488 }, + { url = "https://files.pythonhosted.org/packages/9c/39/0f88a830a1c8a3aba27fededc642da37613c57cbff143412e3536f89784f/psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f7cb9921fbec4904f522d972f0c0e1f4fabbdd4e0287813b21215074a0f160", size = 287477 }, + { url = "https://files.pythonhosted.org/packages/47/da/99f4345d4ddf2845cb5b5bd0d93d554e84542d116934fde07a0c50bd4e9f/psutil-6.1.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33431e84fee02bc84ea36d9e2c4a6d395d479c9dd9bba2376c1f6ee8f3a4e0b3", size = 289017 }, + { url = "https://files.pythonhosted.org/packages/38/53/bd755c2896f4461fd4f36fa6a6dcb66a88a9e4b9fd4e5b66a77cf9d4a584/psutil-6.1.1-cp37-abi3-win32.whl", hash = "sha256:eaa912e0b11848c4d9279a93d7e2783df352b082f40111e078388701fd479e53", size = 250602 }, + { url = "https://files.pythonhosted.org/packages/7b/d7/7831438e6c3ebbfa6e01a927127a6cb42ad3ab844247f3c5b96bea25d73d/psutil-6.1.1-cp37-abi3-win_amd64.whl", hash = "sha256:f35cfccb065fff93529d2afb4a2e89e363fe63ca1e4a5da22b603a85833c2649", size = 254444 }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993 }, +] + +[[package]] +name = "pudb" +version = "2024.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jedi" }, + { name = "packaging" }, + { name = "pygments" }, + { name = "urwid" }, + { name = "urwid-readline" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/27/fb087bdf2cd9c8e56d0347b863ce5995967c15a3e2a0b9245c7a8f6f1598/pudb-2024.1.3.tar.gz", hash = "sha256:264f239e0538e52e83d3d020143100b3171cae17227674bb1b9f8b075f34849c", size = 219443 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/00/592eeb47eb30d9a4e34512eb1208537546c1073d43cabe7def26d89a7134/pudb-2024.1.3-py3-none-any.whl", hash = "sha256:b1c64447fcee5848d0376231672b97ca8580ca6d3297c82cba6b0ba5bd5ee640", size = 87963 }, +] + +[[package]] +name = "pulp" +version = "2.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/59/41/44d617a67407ea5db026500025b8aa7cad0b2b52621c04991b248c3b383d/PuLP-2.7.0.tar.gz", hash = "sha256:e73ee6b32d639c9b8cf4b4aded334ba158be5f8313544e056f796ace0a10ae63", size = 1400315 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/60/b91acaa7995bfcd72f1739ea2b0f5cda707329e17f0b7f921fd8acc79889/PuLP-2.7.0-py3-none-any.whl", hash = "sha256:b6de42c929e80325bf44cc7a2997f02535440800c376b9eb8cb7b4670ed53769", size = 14251631 }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842 }, +] + +[[package]] +name = "py-cpuinfo" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/a8/d832f7293ebb21690860d2e01d8115e5ff6f2ae8bbdc953f0eb0fa4bd2c7/py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690", size = 104716 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335 }, +] + +[[package]] +name = "pyarrow" +version = "16.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/f2/67533f116deb6dae7a0ac04681695fe06135912253a115c5ecdc714a32d4/pyarrow-16.1.0.tar.gz", hash = "sha256:15fbb22ea96d11f0b5768504a3f961edab25eaf4197c341720c4a387f6c60315", size = 1080280 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/28/17/a12aaddb818b7b73d17f3304afc22bce32ccb26723b507cc9c267aa809f3/pyarrow-16.1.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:d0ebea336b535b37eee9eee31761813086d33ed06de9ab6fc6aaa0bace7b250c", size = 28380406 }, + { url = "https://files.pythonhosted.org/packages/f3/94/4e2a579bbac1adb19e63b054b300f6f7fa04f32f212ce86c18727bdda698/pyarrow-16.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e73cfc4a99e796727919c5541c65bb88b973377501e39b9842ea71401ca6c1c", size = 26040531 }, + { url = "https://files.pythonhosted.org/packages/7e/34/d5b6eb5066553533dd6eb9782d50f353f8c6451ee2e49e0ea54d0e67bc34/pyarrow-16.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf9251264247ecfe93e5f5a0cd43b8ae834f1e61d1abca22da55b20c788417f6", size = 38666685 }, + { url = "https://files.pythonhosted.org/packages/d2/34/4e3c04e7398764e56ef00f8f267f8ebf565808478f5fee850cef4be670c3/pyarrow-16.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddf5aace92d520d3d2a20031d8b0ec27b4395cab9f74e07cc95edf42a5cc0147", size = 40949577 }, + { url = "https://files.pythonhosted.org/packages/47/62/b446ee0971b00e7437b9c54a8409ae20413235a64c0a301d7cf97070cffa/pyarrow-16.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:25233642583bf658f629eb230b9bb79d9af4d9f9229890b3c878699c82f7d11e", size = 38077480 }, + { url = "https://files.pythonhosted.org/packages/fa/15/48a68b30542a0231a75c26d8661bc5c9bbc07b42c5b219e929adba814ba7/pyarrow-16.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a33a64576fddfbec0a44112eaf844c20853647ca833e9a647bfae0582b2ff94b", size = 40821141 }, + { url = "https://files.pythonhosted.org/packages/49/4d/62a09116ec357ade462fac4086e0711457a87177bea25ae46b25897d6d7c/pyarrow-16.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:185d121b50836379fe012753cf15c4ba9638bda9645183ab36246923875f8d1b", size = 25889334 }, +] + +[[package]] +name = "pycountry" +version = "22.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/24/033604d30f6cf82d661c0f9dfc2c71d52cafc2de516616f80d3b0600cb7c/pycountry-22.3.5.tar.gz", hash = "sha256:b2163a246c585894d808f18783e19137cb70a0c18fb36748dc01fc6f109c1646", size = 10141551 } + +[[package]] +name = "pydata-sphinx-theme" +version = "0.16.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "accessible-pygments" }, + { name = "babel" }, + { name = "beautifulsoup4" }, + { name = "docutils" }, + { name = "pygments" }, + { name = "sphinx" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/20/bb50f9de3a6de69e6abd6b087b52fa2418a0418b19597601605f855ad044/pydata_sphinx_theme-0.16.1.tar.gz", hash = "sha256:a08b7f0b7f70387219dc659bff0893a7554d5eb39b59d3b8ef37b8401b7642d7", size = 2412693 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl", hash = "sha256:225331e8ac4b32682c18fcac5a57a6f717c4e632cea5dd0e247b55155faeccde", size = 6723264 }, +] + +[[package]] +name = "pygments" +version = "2.19.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 }, +] + +[[package]] +name = "pyogrio" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "numpy" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a5/8f/5a784595524a79c269f2b1c880f4fdb152867df700c97005dda51997da02/pyogrio-0.10.0.tar.gz", hash = "sha256:ec051cb568324de878828fae96379b71858933413e185148acb6c162851ab23c", size = 281950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/2c/c761e6adeb81bd4029a137b3240e7214a8c9aaf225883356196afd6ef9d8/pyogrio-0.10.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5b1a51431a27a1cb3e4e19558939c1423106e06e7b67d6285f4fba9c2d0a91b9", size = 15083526 }, + { url = "https://files.pythonhosted.org/packages/c3/e5/983aa9ddf2ff784e973d6b2ec3e874065d6655a5329ca26311b0f3b9f92f/pyogrio-0.10.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:216d69cd77b2b4a0c9d7d449bc239f8b77f3d73f4a05d9c738a0745b236902d8", size = 16457867 }, + { url = "https://files.pythonhosted.org/packages/fa/9a/7103eee7aa3b6ec88e072ef18a05c3aae1ed96fe00009a7a5ce139b50f30/pyogrio-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2f0b75f0077ce33256aec6278c2a9c3b79bf0637ddf4f93d3ab2609f0501d96", size = 23926332 }, + { url = "https://files.pythonhosted.org/packages/8b/b2/2ca124343aba24b9a5dcd7c1f43da81e652849cfaf3110d3f507a80af0a1/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0a47f702d29808c557d2ebea8542c23903f021eae44e16838adef2ab4281c71b", size = 23138693 }, + { url = "https://files.pythonhosted.org/packages/ae/15/501aa4823c142232169d54255ab343f28c4ea9e7fa489b8433dcc873a942/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:11e6c71d12da6b445e77d0fc0198db1bd35a77e03a0685e45338cbab9ce02add", size = 24062952 }, + { url = "https://files.pythonhosted.org/packages/94/8d/24f21e6a93ca418231aee3bddade7a0766c89c523832f29e08a8860f83e6/pyogrio-0.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:d0d74e91a9c0ff2f9abe01b556ff663977193b2d6922208406172d0fc833beff", size = 16172573 }, +] + +[[package]] +name = "pyomo" +version = "6.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ply" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ef/70/ea738ea23c23399e5e04f184bf78fb181e91284369b4fb3ce74b107edcea/Pyomo-6.6.1.tar.gz", hash = "sha256:3fb0aba7b0f4120e6ce0f242502c0e61478d61e326bc90b7dc392bbefd114b34", size = 2501065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/9c/d83ade42771c3dc80e69f9eaf68c95ce4de33c790d7e188ce71f2966e20c/Pyomo-6.6.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fa2442abdd4872320c0a8eca960136fdd9d4faa14353be3391eff11403547027", size = 6999786 }, + { url = "https://files.pythonhosted.org/packages/2e/a1/b2f713d1f1a784a56f7561a498ebd550c3890b38c59a9bbb7350f223ba21/Pyomo-6.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f795a4fb345ab5676acf57b39643a3605f1d88c6d10d6710514d959bd52bfb1", size = 12847137 }, + { url = "https://files.pythonhosted.org/packages/1c/38/3e085badd0b9c38de2d1fbb34ce0a680579aac1db839a7af9044bed59ca4/Pyomo-6.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:44e0b12f82f0c70ed246bb8b5eed8279cee07d7f2218bc8dd955562b9a82e595", size = 4345819 }, +] + +[[package]] +name = "pyparsing" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8b/1a/3544f4f299a47911c2ab3710f534e52fea62a633c96806995da5d25be4b2/pyparsing-3.2.1.tar.gz", hash = "sha256:61980854fd66de3a90028d679a954d5f2623e83144b5afe5ee86f43d762e5f0a", size = 1067694 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl", hash = "sha256:506ff4f4386c4cec0590ec19e6302d3aedb992fdc02c761e90416f158dacf8e1", size = 107716 }, +] + +[[package]] +name = "pyproj" +version = "3.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/c2/0572c8e31aebf0270f15f3368adebd10fc473de9f09567a0743a3bc41c8d/pyproj-3.7.0.tar.gz", hash = "sha256:bf658f4aaf815d9d03c8121650b6f0b8067265c36e31bc6660b98ef144d81813", size = 225577 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/8f/15ff6ab10a08050e94afcd544962a1a930d0bb7ca102ad39795a847eb340/pyproj-3.7.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:e66d8d42dbdf232e121546c5a1dec097caf0454e4885c09a8e03cdcee0753c03", size = 6272213 }, + { url = "https://files.pythonhosted.org/packages/2d/4d/610fe2a17de71b4fe210af69ce25f2d65379ba0a48299129894d0d0988ee/pyproj-3.7.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7764b64a0aefe40134a2828b3a40be88f6c8b7832c45d8a9f2bd592ace4b2a3b", size = 4634548 }, + { url = "https://files.pythonhosted.org/packages/d6/27/0327d0b0fcdfc4cf72696a2effca2963e524dcd846a0274ba503f8bf2648/pyproj-3.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53c442c5081dc95346996f5c4323fde2caafc69c6e60b4707aa46e88244f1e04", size = 6333913 }, + { url = "https://files.pythonhosted.org/packages/3c/e5/2cb256148c730b9c3f74bfb3c03904f5070499c6dcaea153073a9642c6c6/pyproj-3.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc5b305d4d5d7697885681d9b660623e328227612823d5c660e0a9566cb48838", size = 9460363 }, + { url = "https://files.pythonhosted.org/packages/ba/a3/4aa1e8e78ad18aa170efd2c94c1931bf2a34c526683b874d06e40fa323f6/pyproj-3.7.0-cp311-cp311-win32.whl", hash = "sha256:de2b47d748dc41cccb6b3b713d4d7dc9aa1046a82141c8665026908726426abc", size = 5820551 }, + { url = "https://files.pythonhosted.org/packages/26/0c/b084e8839a117eaad8cb4fbaa81bbb24c6f183de0ee95c6c4e2770ab6f09/pyproj-3.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:38cba7c4c5679e40242dd959133e95b908d3b912dd66291094fd13510e8517ff", size = 6231788 }, +] + +[[package]] +name = "pypsa" +version = "0.30.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "deprecation" }, + { name = "geopandas" }, + { name = "highspy" }, + { name = "linopy" }, + { name = "matplotlib" }, + { name = "netcdf4" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "scipy" }, + { name = "tables" }, + { name = "validators" }, + { name = "xarray" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/26/c4/2765234ce7aceca75d3118952161801044ce7996b88fdf720114e70687aa/pypsa-0.30.2.tar.gz", hash = "sha256:2ea2d4b7c8def60ae7ee2557bcd456a8412386a1b55f91ef82067d5d1e9793b0", size = 4974370 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/0f/f20ad09b34315634400da3c63b8e9d625edad6e2a7fa28351b0ac595756f/pypsa-0.30.2-py3-none-any.whl", hash = "sha256:1ebc22d08c1cd1e06c76654d9665245136c2afae1da892bfcc90eff70dff4e0d", size = 135575 }, +] + +[[package]] +name = "pypsa-usa" +source = { editable = "." } +dependencies = [ + { name = "atlite" }, + { name = "cartopy" }, + { name = "dask" }, + { name = "dask-expr" }, + { name = "descartes" }, + { name = "dill" }, + { name = "distributed" }, + { name = "duckdb" }, + { name = "geopandas" }, + { name = "geopy" }, + { name = "graphviz" }, + { name = "gurobipy" }, + { name = "highspy" }, + { name = "linopy" }, + { name = "matplotlib" }, + { name = "netcdf4" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "openpyxl" }, + { name = "pandas" }, + { name = "plotly" }, + { name = "pre-commit" }, + { name = "progressbar2" }, + { name = "pulp" }, + { name = "pyarrow" }, + { name = "pycountry" }, + { name = "pyomo" }, + { name = "pypsa" }, + { name = "pyyaml" }, + { name = "rasterio" }, + { name = "scipy" }, + { name = "seaborn" }, + { name = "shapely" }, + { name = "snakemake" }, + { name = "tsam" }, + { name = "xarray" }, + { name = "xlrd" }, +] + +[package.optional-dependencies] +dev = [ + { name = "bump2version" }, + { name = "ipython" }, + { name = "mypy" }, + { name = "myst-parser" }, + { name = "pre-commit" }, + { name = "pudb" }, + { name = "ruff" }, + { name = "sphinx" }, + { name = "sphinx-autobuild" }, + { name = "sphinx-book-theme" }, + { name = "types-pyyaml" }, +] + +[package.metadata] +requires-dist = [ + { name = "atlite", specifier = "==0.3.0" }, + { name = "bump2version", marker = "extra == 'dev'" }, + { name = "cartopy", specifier = "==0.23.0" }, + { name = "dask", specifier = "==2024.12.0" }, + { name = "dask-expr", specifier = "==1.1.20" }, + { name = "descartes", specifier = "==1.1.0" }, + { name = "dill", specifier = ">=0.3.9" }, + { name = "distributed", specifier = "==2024.12.0" }, + { name = "duckdb", specifier = "==0.10.0" }, + { name = "geopandas", specifier = "==1.0.1" }, + { name = "geopy", specifier = "==2.4.0" }, + { name = "graphviz", specifier = ">=0.20.3" }, + { name = "gurobipy", specifier = "==11.0.3" }, + { name = "highspy", specifier = ">=1.9.0" }, + { name = "ipython", marker = "extra == 'dev'" }, + { name = "linopy", specifier = "==0.3.14" }, + { name = "matplotlib", specifier = "==3.8.0" }, + { name = "mypy", marker = "extra == 'dev'", specifier = "~=1.11.0" }, + { name = "myst-parser", marker = "extra == 'dev'" }, + { name = "netcdf4", specifier = "==1.6.4" }, + { name = "networkx", specifier = "==3.1" }, + { name = "numpy", specifier = "==1.26.0" }, + { name = "openpyxl", specifier = "==3.1.2" }, + { name = "pandas", specifier = "==2.2.2" }, + { name = "plotly", specifier = "==5.17.0" }, + { name = "pre-commit", specifier = ">=4.1.0" }, + { name = "pre-commit", marker = "extra == 'dev'" }, + { name = "progressbar2", specifier = "==4.3.2" }, + { name = "pudb", marker = "extra == 'dev'" }, + { name = "pulp", specifier = "==2.7.0" }, + { name = "pyarrow", specifier = "==16.1.0" }, + { name = "pycountry", specifier = "==22.3.5" }, + { name = "pyomo", specifier = "==6.6.1" }, + { name = "pypsa", specifier = "==0.30.2" }, + { name = "pyyaml", specifier = ">=6.0.2" }, + { name = "rasterio", specifier = "==1.3.8" }, + { name = "ruff", marker = "extra == 'dev'", specifier = "~=0.5.2" }, + { name = "scipy", specifier = "==1.11.3" }, + { name = "seaborn", specifier = "==0.13.2" }, + { name = "shapely", specifier = "==2.0.2" }, + { name = "snakemake", specifier = "==7.32.4" }, + { name = "sphinx", marker = "extra == 'dev'" }, + { name = "sphinx-autobuild", marker = "extra == 'dev'" }, + { name = "sphinx-book-theme", marker = "extra == 'dev'" }, + { name = "tsam", specifier = ">=2.3.6" }, + { name = "types-pyyaml", marker = "extra == 'dev'" }, + { name = "xarray", specifier = "==2024.9.0" }, + { name = "xlrd", specifier = "==2.0.1" }, +] + +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178 }, +] + +[[package]] +name = "pyshp" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/9f/0dd21250c60375a532c35e89fad8d5e8a3f1a2e3f7c389ccc5a60b05263e/pyshp-2.3.1.tar.gz", hash = "sha256:4caec82fd8dd096feba8217858068bacb2a3b5950f43c048c6dc32a3489d5af1", size = 1731544 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/2f/68116db5b36b895c0450e3072b8cb6c2fac0359279b182ea97014d3c8ac0/pyshp-2.3.1-py2.py3-none-any.whl", hash = "sha256:67024c0ccdc352ba5db777c4e968483782dfa78f8e200672a90d2d30fd8b7b49", size = 46537 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "python-utils" +version = "3.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/13/4c/ef8b7b1046d65c1f18ca31e5235c7d6627ca2b3f389ab1d44a74d22f5cc9/python_utils-3.9.1.tar.gz", hash = "sha256:eb574b4292415eb230f094cbf50ab5ef36e3579b8f09e9f2ba74af70891449a0", size = 35403 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/69/31c82567719b34d8f6b41077732589104883771d182a9f4ff3e71430999a/python_utils-3.9.1-py2.py3-none-any.whl", hash = "sha256:0273d7363c7ad4b70999b2791d5ba6b55333d6f7a4e4c8b6b39fb82b5fab4613", size = 32078 }, +] + +[[package]] +name = "pytz" +version = "2025.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/57/df1c9157c8d5a05117e455d66fd7cf6dbc46974f832b1058ed4856785d8a/pytz-2025.1.tar.gz", hash = "sha256:c2db42be2a2518b28e65f9207c4d05e6ff547d1efa4086469ef855e4ab70178e", size = 319617 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/38/ac33370d784287baa1c3d538978b5e2ea064d4c1b93ffbd12826c190dd10/pytz-2025.1-py2.py3-none-any.whl", hash = "sha256:89dd22dca55b46eac6eda23b2d72721bf1bdfef212645d81513ef5d03038de57", size = 507930 }, +] + +[[package]] +name = "pywin32" +version = "308" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/e2/02652007469263fe1466e98439831d65d4ca80ea1a2df29abecedf7e47b7/pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a", size = 5928156 }, + { url = "https://files.pythonhosted.org/packages/48/ef/f4fb45e2196bc7ffe09cad0542d9aff66b0e33f6c0954b43e49c33cad7bd/pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b", size = 6559559 }, + { url = "https://files.pythonhosted.org/packages/79/ef/68bb6aa865c5c9b11a35771329e95917b5559845bd75b65549407f9fc6b4/pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6", size = 7972495 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, +] + +[[package]] +name = "rasterio" +version = "1.3.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "affine" }, + { name = "attrs" }, + { name = "certifi" }, + { name = "click" }, + { name = "click-plugins" }, + { name = "cligj" }, + { name = "numpy" }, + { name = "setuptools" }, + { name = "snuggs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/2e/65affa3bd9c6c8f4a3b4f7cbf7947d0a3b3a65675af58162f80201c01510/rasterio-1.3.8.tar.gz", hash = "sha256:ffdd18e78efdf8ad5861065fd812a66dd34264293317ff6540a078ea891cdef8", size = 412381 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/2c/16b7c4feb71b8e56d79e831ae26001e3e699c9f3c279fb5cb4b17e7d8c64/rasterio-1.3.8-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:d5ccc8e6d30534d510ce5099d4a35616611cadcae79aa1216150c2696e03ddde", size = 22810323 }, + { url = "https://files.pythonhosted.org/packages/9f/47/320376453d416461e5d16101cdebdaae019b59ce5a169ce855c6ea7fd560/rasterio-1.3.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b3b8410be847e8fd96cbe744e28e484437b370830052b5dcc7b11efc8c73fffc", size = 19453629 }, + { url = "https://files.pythonhosted.org/packages/7c/5d/6fb859b5df963b3213da844fe6c24065fc9d20e3a47146dd0454efa7021e/rasterio-1.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8e1b456f58b9ae023026730320424091af504ef066418ddcd296b9014845ee", size = 21263873 }, + { url = "https://files.pythonhosted.org/packages/03/96/1a35b15183bdc9c6a19e08cd92b5ebb201a9c76ec24c3f17a714202c5d2b/rasterio-1.3.8-cp311-cp311-win_amd64.whl", hash = "sha256:0323332ed1bfad522e53a3da45e0d3453e603862c3d2c08d8a639a7be76853fb", size = 22914349 }, +] + +[[package]] +name = "referencing" +version = "0.36.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "reretry" +version = "0.11.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/40/1d/25d562a62b7471616bccd7c15a7533062eb383927e68667bf331db990415/reretry-0.11.8.tar.gz", hash = "sha256:f2791fcebe512ea2f1d153a2874778523a8064860b591cd90afc21a8bed432e3", size = 4836 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/11/e295e07d4ae500144177f875a8de11daa4d86b8246ab41c76a98ce9280ca/reretry-0.11.8-py2.py3-none-any.whl", hash = "sha256:5ec1084cd9644271ee386d34cd5dd24bdb3e91d55961b076d1a31d585ad68a79", size = 5609 }, +] + +[[package]] +name = "rpds-py" +version = "0.22.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/80/cce854d0921ff2f0a9fa831ba3ad3c65cee3a46711addf39a2af52df2cfd/rpds_py-0.22.3.tar.gz", hash = "sha256:e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d", size = 26771 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/ad/8d1ddf78f2805a71253fcd388017e7b4a0615c22c762b6d35301fef20106/rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f", size = 359773 }, + { url = "https://files.pythonhosted.org/packages/c8/75/68c15732293a8485d79fe4ebe9045525502a067865fa4278f178851b2d87/rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a", size = 349214 }, + { url = "https://files.pythonhosted.org/packages/3c/4c/7ce50f3070083c2e1b2bbd0fb7046f3da55f510d19e283222f8f33d7d5f4/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5", size = 380477 }, + { url = "https://files.pythonhosted.org/packages/9a/e9/835196a69cb229d5c31c13b8ae603bd2da9a6695f35fe4270d398e1db44c/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb", size = 386171 }, + { url = "https://files.pythonhosted.org/packages/f9/8e/33fc4eba6683db71e91e6d594a2cf3a8fbceb5316629f0477f7ece5e3f75/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2", size = 422676 }, + { url = "https://files.pythonhosted.org/packages/37/47/2e82d58f8046a98bb9497a8319604c92b827b94d558df30877c4b3c6ccb3/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0", size = 446152 }, + { url = "https://files.pythonhosted.org/packages/e1/78/79c128c3e71abbc8e9739ac27af11dc0f91840a86fce67ff83c65d1ba195/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1", size = 381300 }, + { url = "https://files.pythonhosted.org/packages/c9/5b/2e193be0e8b228c1207f31fa3ea79de64dadb4f6a4833111af8145a6bc33/rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d", size = 409636 }, + { url = "https://files.pythonhosted.org/packages/c2/3f/687c7100b762d62186a1c1100ffdf99825f6fa5ea94556844bbbd2d0f3a9/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648", size = 556708 }, + { url = "https://files.pythonhosted.org/packages/8c/a2/c00cbc4b857e8b3d5e7f7fc4c81e23afd8c138b930f4f3ccf9a41a23e9e4/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74", size = 583554 }, + { url = "https://files.pythonhosted.org/packages/d0/08/696c9872cf56effdad9ed617ac072f6774a898d46b8b8964eab39ec562d2/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a", size = 552105 }, + { url = "https://files.pythonhosted.org/packages/18/1f/4df560be1e994f5adf56cabd6c117e02de7c88ee238bb4ce03ed50da9d56/rpds_py-0.22.3-cp311-cp311-win32.whl", hash = "sha256:b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64", size = 220199 }, + { url = "https://files.pythonhosted.org/packages/b8/1b/c29b570bc5db8237553002788dc734d6bd71443a2ceac2a58202ec06ef12/rpds_py-0.22.3-cp311-cp311-win_amd64.whl", hash = "sha256:8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c", size = 231775 }, +] + +[[package]] +name = "ruff" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/2b/69e5e412f9d390adbdbcbf4f64d6914fa61b44b08839a6584655014fc524/ruff-0.5.7.tar.gz", hash = "sha256:8dfc0a458797f5d9fb622dd0efc52d796f23f0a1493a9527f4e49a550ae9a7e5", size = 2449817 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/eb/06e06aaf96af30a68e83b357b037008c54a2ddcbad4f989535007c700394/ruff-0.5.7-py3-none-linux_armv6l.whl", hash = "sha256:548992d342fc404ee2e15a242cdbea4f8e39a52f2e7752d0e4cbe88d2d2f416a", size = 9570571 }, + { url = "https://files.pythonhosted.org/packages/a4/10/1be32aeaab8728f78f673e7a47dd813222364479b2d6573dbcf0085e83ea/ruff-0.5.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:00cc8872331055ee017c4f1071a8a31ca0809ccc0657da1d154a1d2abac5c0be", size = 8685138 }, + { url = "https://files.pythonhosted.org/packages/3d/1d/c218ce83beb4394ba04d05e9aa2ae6ce9fba8405688fe878b0fdb40ce855/ruff-0.5.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:eaf3d86a1fdac1aec8a3417a63587d93f906c678bb9ed0b796da7b59c1114a1e", size = 8266785 }, + { url = "https://files.pythonhosted.org/packages/26/79/7f49509bd844476235b40425756def366b227a9714191c91f02fb2178635/ruff-0.5.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a01c34400097b06cf8a6e61b35d6d456d5bd1ae6961542de18ec81eaf33b4cb8", size = 9983964 }, + { url = "https://files.pythonhosted.org/packages/bf/b1/939836b70bf9fcd5e5cd3ea67fdb8abb9eac7631351d32f26544034a35e4/ruff-0.5.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcc8054f1a717e2213500edaddcf1dbb0abad40d98e1bd9d0ad364f75c763eea", size = 9359490 }, + { url = "https://files.pythonhosted.org/packages/32/7d/b3db19207de105daad0c8b704b2c6f2a011f9c07017bd58d8d6e7b8eba19/ruff-0.5.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f70284e73f36558ef51602254451e50dd6cc479f8b6f8413a95fcb5db4a55fc", size = 10170833 }, + { url = "https://files.pythonhosted.org/packages/a2/45/eae9da55f3357a1ac04220230b8b07800bf516e6dd7e1ad20a2ff3b03b1b/ruff-0.5.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:a78ad870ae3c460394fc95437d43deb5c04b5c29297815a2a1de028903f19692", size = 10896360 }, + { url = "https://files.pythonhosted.org/packages/99/67/4388b36d145675f4c51ebec561fcd4298a0e2550c81e629116f83ce45a39/ruff-0.5.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ccd078c66a8e419475174bfe60a69adb36ce04f8d4e91b006f1329d5cd44bcf", size = 10477094 }, + { url = "https://files.pythonhosted.org/packages/e1/9c/f5e6ed1751dc187a4ecf19a4970dd30a521c0ee66b7941c16e292a4043fb/ruff-0.5.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e31c9bad4ebf8fdb77b59cae75814440731060a09a0e0077d559a556453acbb", size = 11480896 }, + { url = "https://files.pythonhosted.org/packages/c8/3b/2b683be597bbd02046678fc3fc1c199c641512b20212073b58f173822bb3/ruff-0.5.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d796327eed8e168164346b769dd9a27a70e0298d667b4ecee6877ce8095ec8e", size = 10179702 }, + { url = "https://files.pythonhosted.org/packages/f1/38/c2d94054dc4b3d1ea4c2ba3439b2a7095f08d1c8184bc41e6abe2a688be7/ruff-0.5.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4a09ea2c3f7778cc635e7f6edf57d566a8ee8f485f3c4454db7771efb692c499", size = 9982855 }, + { url = "https://files.pythonhosted.org/packages/7d/e7/1433db2da505ffa8912dcf5b28a8743012ee780cbc20ad0bf114787385d9/ruff-0.5.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a36d8dcf55b3a3bc353270d544fb170d75d2dff41eba5df57b4e0b67a95bb64e", size = 9433156 }, + { url = "https://files.pythonhosted.org/packages/e0/36/4fa43250e67741edeea3d366f59a1dc993d4d89ad493a36cbaa9889895f2/ruff-0.5.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:9369c218f789eefbd1b8d82a8cf25017b523ac47d96b2f531eba73770971c9e5", size = 9782971 }, + { url = "https://files.pythonhosted.org/packages/80/0e/8c276103d518e5cf9202f70630aaa494abf6fc71c04d87c08b6d3cd07a4b/ruff-0.5.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:b88ca3db7eb377eb24fb7c82840546fb7acef75af4a74bd36e9ceb37a890257e", size = 10247775 }, + { url = "https://files.pythonhosted.org/packages/cb/b9/673096d61276f39291b729dddde23c831a5833d98048349835782688a0ec/ruff-0.5.7-py3-none-win32.whl", hash = "sha256:33d61fc0e902198a3e55719f4be6b375b28f860b09c281e4bdbf783c0566576a", size = 7841772 }, + { url = "https://files.pythonhosted.org/packages/67/1c/4520c98bfc06b9c73cd1457686d4d3935d40046b1ddea08403e5a6deff51/ruff-0.5.7-py3-none-win_amd64.whl", hash = "sha256:083bbcbe6fadb93cd86709037acc510f86eed5a314203079df174c40bbbca6b3", size = 8699779 }, + { url = "https://files.pythonhosted.org/packages/38/23/b3763a237d2523d40a31fe2d1a301191fe392dd48d3014977d079cf8c0bd/ruff-0.5.7-py3-none-win_arm64.whl", hash = "sha256:2dca26154ff9571995107221d0aeaad0e75a77b5a682d6236cf89a58c70b76f4", size = 8091891 }, +] + +[[package]] +name = "scikit-learn" +version = "1.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9e/a5/4ae3b3a0755f7b35a280ac90b28817d1f380318973cff14075ab41ef50d9/scikit_learn-1.6.1.tar.gz", hash = "sha256:b4fc2525eca2c69a59260f583c56a7557c6ccdf8deafdba6e060f94c1c59738e", size = 7068312 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/2a/e291c29670795406a824567d1dfc91db7b699799a002fdaa452bceea8f6e/scikit_learn-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72abc587c75234935e97d09aa4913a82f7b03ee0b74111dcc2881cba3c5a7b33", size = 12102620 }, + { url = "https://files.pythonhosted.org/packages/25/92/ee1d7a00bb6b8c55755d4984fd82608603a3cc59959245068ce32e7fb808/scikit_learn-1.6.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b3b00cdc8f1317b5f33191df1386c0befd16625f49d979fe77a8d44cae82410d", size = 11116234 }, + { url = "https://files.pythonhosted.org/packages/30/cd/ed4399485ef364bb25f388ab438e3724e60dc218c547a407b6e90ccccaef/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc4765af3386811c3ca21638f63b9cf5ecf66261cc4815c1db3f1e7dc7b79db2", size = 12592155 }, + { url = "https://files.pythonhosted.org/packages/a8/f3/62fc9a5a659bb58a03cdd7e258956a5824bdc9b4bb3c5d932f55880be569/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25fc636bdaf1cc2f4a124a116312d837148b5e10872147bdaf4887926b8c03d8", size = 13497069 }, + { url = "https://files.pythonhosted.org/packages/a1/a6/c5b78606743a1f28eae8f11973de6613a5ee87366796583fb74c67d54939/scikit_learn-1.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:fa909b1a36e000a03c382aade0bd2063fd5680ff8b8e501660c0f59f021a6415", size = 11139809 }, +] + +[[package]] +name = "scipy" +version = "1.11.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/7b/9f265b7f074195392e893a5cdc66116c2f7a31fd5f3d9cceff661ec6df82/scipy-1.11.3.tar.gz", hash = "sha256:bba4d955f54edd61899776bad459bf7326e14b9fa1c552181f0479cc60a568cd", size = 56335652 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/a6/b6d66d4f4045ba59200d25f254ccd63340162c903f95231e3ae6863fc4ae/scipy-1.11.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:925c6f09d0053b1c0f90b2d92d03b261e889b20d1c9b08a3a51f61afc5f58165", size = 37156418 }, + { url = "https://files.pythonhosted.org/packages/50/8b/2057417a07a6fee8ed8be40e37bac4a502cae4cf44468a02962bbe81b8af/scipy-1.11.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5664e364f90be8219283eeb844323ff8cd79d7acbd64e15eb9c46b9bc7f6a42a", size = 29674269 }, + { url = "https://files.pythonhosted.org/packages/fd/bd/2905516155dbca3f5ae793caa1954a77369dec42d49ac3a60ea749acd3db/scipy-1.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00f325434b6424952fbb636506f0567898dca7b0f7654d48f1c382ea338ce9a3", size = 32881937 }, + { url = "https://files.pythonhosted.org/packages/ef/1b/7538792254aec6850657d5b940fd05fe60582af829ffe40d6c054f065f34/scipy-1.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f290cf561a4b4edfe8d1001ee4be6da60c1c4ea712985b58bf6bc62badee221", size = 36401766 }, + { url = "https://files.pythonhosted.org/packages/36/95/69e32b4691daa6a6fe625d2e3724a39dc9b910c7860e739b583798d3d127/scipy-1.11.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:91770cb3b1e81ae19463b3c235bf1e0e330767dca9eb4cd73ba3ded6c4151e4d", size = 36621150 }, + { url = "https://files.pythonhosted.org/packages/81/d7/d2537d51efb692d0c411e64267ba349e7668d40f5bc73cefe78ccd650dcd/scipy-1.11.3-cp311-cp311-win_amd64.whl", hash = "sha256:e1f97cd89c0fe1a0685f8f89d85fa305deb3067d0668151571ba50913e445820", size = 44095029 }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914 }, +] + +[[package]] +name = "setuptools" +version = "75.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/92/ec/089608b791d210aec4e7f97488e67ab0d33add3efccb83a056cbafe3a2a6/setuptools-75.8.0.tar.gz", hash = "sha256:c5afc8f407c626b8313a86e10311dd3f661c6cd9c09d4bf8c15c0e11f9f2b0e6", size = 1343222 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/8a/b9dc7678803429e4a3bc9ba462fa3dd9066824d3c607490235c6a796be5a/setuptools-75.8.0-py3-none-any.whl", hash = "sha256:e3982f444617239225d675215d51f6ba05f845d4eec313da4418fdbb56fb27e3", size = 1228782 }, +] + +[[package]] +name = "shapely" +version = "2.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/c0/ef2c5eff1e8381710e211a063d0aa3e7215cea9e6fd8c31e75bf5f93df85/shapely-2.0.2.tar.gz", hash = "sha256:1713cc04c171baffc5b259ba8531c58acc2a301707b7f021d88a15ed090649e7", size = 279727 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/70/8ac9c70da0e9428b8827953c7345a2f9f0e62adeccd9ca5a69425d693b8c/shapely-2.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5b0c052709c8a257c93b0d4943b0b7a3035f87e2d6a8ac9407b6a992d206422f", size = 2498345 }, + { url = "https://files.pythonhosted.org/packages/81/50/c7768a0a71c012464927228b6b949e55ad8d7ed50325b56b7224ea7dc7a6/shapely-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2d217e56ae067e87b4e1731d0dc62eebe887ced729ba5c2d4590e9e3e9fdbd88", size = 1431079 }, + { url = "https://files.pythonhosted.org/packages/2c/b1/ca09649b4abe06366d41e90c3eee95a7741657404404a63bd0e8b53e32b8/shapely-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:94ac128ae2ab4edd0bffcd4e566411ea7bdc738aeaf92c32a8a836abad725f9f", size = 1271111 }, + { url = "https://files.pythonhosted.org/packages/77/e6/5043c8c8b7e21922559b4faa9011566b0df9315c3d51f15fa07816b4409d/shapely-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa3ee28f5e63a130ec5af4dc3c4cb9c21c5788bb13c15e89190d163b14f9fb89", size = 2444184 }, + { url = "https://files.pythonhosted.org/packages/8c/47/05c8bb8322861113e72b903aebaaa4678ae6e44c886c189ad8fe297f2008/shapely-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:737dba15011e5a9b54a8302f1748b62daa207c9bc06f820cd0ad32a041f1c6f2", size = 2527925 }, + { url = "https://files.pythonhosted.org/packages/48/2a/6e590f4f13b1bd8ee39626bab5c1643b8746a4e469c61c5e38571f6cccd9/shapely-2.0.2-cp311-cp311-win32.whl", hash = "sha256:45ac6906cff0765455a7b49c1670af6e230c419507c13e2f75db638c8fc6f3bd", size = 1290073 }, + { url = "https://files.pythonhosted.org/packages/9e/39/029c441d8af32ab423b229c4525ce5ce6707318155b59634811a4c56f5c4/shapely-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:dc9342fc82e374130db86a955c3c4525bfbf315a248af8277a913f30911bed9e", size = 1437690 }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 }, +] + +[[package]] +name = "smart-open" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wrapt" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/21/30/1f41c3d3b8cec82024b4b277bfd4e5b18b765ae7279eb9871fa25c503778/smart_open-7.1.0.tar.gz", hash = "sha256:a4f09f84f0f6d3637c6543aca7b5487438877a21360e7368ccf1f704789752ba", size = 72044 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/18/9a8d9f01957aa1f8bbc5676d54c2e33102d247e146c1a3679d3bd5cc2e3a/smart_open-7.1.0-py3-none-any.whl", hash = "sha256:4b8489bb6058196258bafe901730c7db0dcf4f083f316e97269c66f45502055b", size = 61746 }, +] + +[[package]] +name = "smmap" +version = "5.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/cd/a040c4b3119bbe532e5b0732286f805445375489fceaec1f48306068ee3b/smmap-5.0.2.tar.gz", hash = "sha256:26ea65a03958fa0c8a1c7e8c7a58fdc77221b8910f6be2131affade476898ad5", size = 22329 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/be/d09147ad1ec7934636ad912901c5fd7667e1c858e19d355237db0d0cd5e4/smmap-5.0.2-py3-none-any.whl", hash = "sha256:b30115f0def7d7531d22a0fb6502488d879e75b260a9db4d0819cfb25403af5e", size = 24303 }, +] + +[[package]] +name = "snakemake" +version = "7.32.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appdirs" }, + { name = "configargparse" }, + { name = "connection-pool" }, + { name = "datrie" }, + { name = "docutils" }, + { name = "gitpython" }, + { name = "humanfriendly" }, + { name = "jinja2" }, + { name = "jsonschema" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pulp" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "reretry" }, + { name = "smart-open" }, + { name = "stopit" }, + { name = "tabulate" }, + { name = "throttler" }, + { name = "toposort" }, + { name = "wrapt" }, + { name = "yte" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/94/884160dab89886cef7802df0a8c8217bfb2d795427dee01ad0e0dc15964a/snakemake-7.32.4.tar.gz", hash = "sha256:fdc3f15dd7b06fabb7da30d460e0a3b1fba08e4ea91f9c32c47a83705cdc7b6e", size = 371171 } + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "snowballstemmer" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/7b/af302bebf22c749c56c9c3e8ae13190b5b5db37a33d9068652e8f73b7089/snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1", size = 86699 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a", size = 93002 }, +] + +[[package]] +name = "snuggs" +version = "1.4.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "pyparsing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/19/0d11ab370735dde61076a0e41644e5593821776e69e3b0344626cfa0e56a/snuggs-1.4.7.tar.gz", hash = "sha256:501cf113fe3892e14e2fee76da5cd0606b7e149c411c271898e6259ebde2617b", size = 8196 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/0e/d27d6e806d6c0d1a2cfdc5d1f088e42339a0a54a09c3343f7f81ec8947ea/snuggs-1.4.7-py3-none-any.whl", hash = "sha256:988dde5d4db88e9d71c99457404773dabcc7a1c45971bfbe81900999942d9f07", size = 5370 }, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88", size = 30594 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575 }, +] + +[[package]] +name = "soupsieve" +version = "2.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/ce/fbaeed4f9fb8b2daa961f90591662df6a86c1abf25c548329a86920aedfb/soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb", size = 101569 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9", size = 36186 }, +] + +[[package]] +name = "sphinx" +version = "8.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alabaster" }, + { name = "babel" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "docutils" }, + { name = "imagesize" }, + { name = "jinja2" }, + { name = "packaging" }, + { name = "pygments" }, + { name = "requests" }, + { name = "snowballstemmer" }, + { name = "sphinxcontrib-applehelp" }, + { name = "sphinxcontrib-devhelp" }, + { name = "sphinxcontrib-htmlhelp" }, + { name = "sphinxcontrib-jsmath" }, + { name = "sphinxcontrib-qthelp" }, + { name = "sphinxcontrib-serializinghtml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125 }, +] + +[[package]] +name = "sphinx-autobuild" +version = "2024.10.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama" }, + { name = "sphinx" }, + { name = "starlette" }, + { name = "uvicorn" }, + { name = "watchfiles" }, + { name = "websockets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a5/2c/155e1de2c1ba96a72e5dba152c509a8b41e047ee5c2def9e9f0d812f8be7/sphinx_autobuild-2024.10.3.tar.gz", hash = "sha256:248150f8f333e825107b6d4b86113ab28fa51750e5f9ae63b59dc339be951fb1", size = 14023 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/c0/eba125db38c84d3c74717008fd3cb5000b68cd7e2cbafd1349c6a38c3d3b/sphinx_autobuild-2024.10.3-py3-none-any.whl", hash = "sha256:158e16c36f9d633e613c9aaf81c19b0fc458ca78b112533b20dafcda430d60fa", size = 11908 }, +] + +[[package]] +name = "sphinx-book-theme" +version = "1.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydata-sphinx-theme" }, + { name = "sphinx" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/89/69/61dfa3b3851610b5f45960737bd99f8c5b2d70ba73f9ac84a527e0c564ae/sphinx_book_theme-1.1.3.tar.gz", hash = "sha256:1f25483b1846cb3d353a6bc61b3b45b031f4acf845665d7da90e01ae0aef5b4d", size = 434230 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/80/90574e2e82c955b9c6f6b77f7badb2cf2ef4ef77599e4343cced2d098681/sphinx_book_theme-1.1.3-py3-none-any.whl", hash = "sha256:a554a9a7ac3881979a87a2b10f633aa2a5706e72218a10f71be38b3c9e831ae9", size = 430129 }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300 }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530 }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705 }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071 }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743 }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072 }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521 }, +] + +[[package]] +name = "starlette" +version = "0.45.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/fb/2984a686808b89a6781526129a4b51266f678b2d2b97ab2d325e56116df8/starlette-0.45.3.tar.gz", hash = "sha256:2cbcba2a75806f8a41c722141486f37c28e30a0921c5f6fe4346cb0dcee1302f", size = 2574076 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/61/f2b52e107b1fc8944b33ef56bf6ac4ebbe16d91b94d2b87ce013bf63fb84/starlette-0.45.3-py3-none-any.whl", hash = "sha256:dfb6d332576f136ec740296c7e8bb8c8a7125044e7c6da30744718880cdd059d", size = 71507 }, +] + +[[package]] +name = "stopit" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/58/e8bb0b0fb05baf07bbac1450c447d753da65f9701f551dca79823ce15d50/stopit-1.1.2.tar.gz", hash = "sha256:f7f39c583fd92027bd9d06127b259aee7a5b7945c1f1fa56263811e1e766996d", size = 18281 } + +[[package]] +name = "tables" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "blosc2" }, + { name = "numexpr" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "py-cpuinfo" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/15/50/23ead25f60bb1babe7f2f061d8a2f8c2f6804c1a20b3058677beb9085b56/tables-3.10.2.tar.gz", hash = "sha256:2544812a7186fadba831d6dd34eb49ccd788d6a83f4e4c2b431b835b6796c910", size = 4779722 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/f6/ef0c376c1fa01b916d5db0c2681be063f6289ee99faf7bb6610e0b55b773/tables-3.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:63f8adec3c4421a011c5c6a245c0c1fccf16dba7aaa67d9915d2821cf365ed4a", size = 6767194 }, + { url = "https://files.pythonhosted.org/packages/d9/d0/accd41382fa9da45bf816c56f85bda64223a3b8d0006d3496b67e0781a6e/tables-3.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:34c120bff666d33d3bdfb9e33173a4869d5f34e6c87824f2c7ec6a72c8dfab82", size = 5482665 }, + { url = "https://files.pythonhosted.org/packages/59/2f/c95e94423c463177b8a7d55a1dbbd524840fe6a684844ff728f238e71f68/tables-3.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e71f63ac67c583ac42943c99c2d33bcc9e361e94d1ab1a763dc0698bdd9ff815", size = 7117696 }, + { url = "https://files.pythonhosted.org/packages/88/d5/71665919aa2a5a3d2a20eeef3c71dc7c2ebbd9f26d114a7808514aba24d6/tables-3.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:154773f97763ccc91a29bcead6ab7b5ef164c2ed8c409cd79a2115aa9b4184c9", size = 7520921 }, + { url = "https://files.pythonhosted.org/packages/46/96/b5023c1f7b9d560cac3e2c0daceebaeb88dd24c70c75db2d291abfa563e5/tables-3.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:96b5e945d275415e79ddb0578657ecc6ac77030dcc0632ab2c39f89390bb239d", size = 6407137 }, +] + +[[package]] +name = "tabulate" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252 }, +] + +[[package]] +name = "tblib" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/df/4f2cd7eaa6d41a7994d46527349569d46e34d9cdd07590b5c5b0dcf53de3/tblib-3.0.0.tar.gz", hash = "sha256:93622790a0a29e04f0346458face1e144dc4d32f493714c6c3dff82a4adb77e6", size = 30616 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl", hash = "sha256:80a6c77e59b55e83911e1e607c649836a69c103963c5f28a46cbeef44acf8129", size = 12478 }, +] + +[[package]] +name = "tenacity" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/94/91fccdb4b8110642462e653d5dcb27e7b674742ad68efd146367da7bdb10/tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b", size = 47421 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cb/b86984bed139586d01532a587464b5805f12e397594f19f931c4c2fbfa61/tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539", size = 28169 }, +] + +[[package]] +name = "threadpoolctl" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/55/b5148dcbf72f5cde221f8bfe3b6a540da7aa1842f6b491ad979a6c8b84af/threadpoolctl-3.5.0.tar.gz", hash = "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107", size = 41936 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/2c/ffbf7a134b9ab11a67b0cf0726453cedd9c5043a4fe7a35d1cefa9a1bcfb/threadpoolctl-3.5.0-py3-none-any.whl", hash = "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467", size = 18414 }, +] + +[[package]] +name = "throttler" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b4/22/638451122136d5280bc477c8075ea448b9ebdfbd319f0f120edaecea2038/throttler-1.2.2.tar.gz", hash = "sha256:d54db406d98e1b54d18a9ba2b31ab9f093ac64a0a59d730c1cf7bb1cdfc94a58", size = 7970 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/d4/36bf6010b184286000b2334622bfb3446a40c22c1d2a9776bff025cb0fe5/throttler-1.2.2-py3-none-any.whl", hash = "sha256:fc6ae612a2529e01110b32335af40375258b98e3b81232ec77cd07f51bf71392", size = 7609 }, +] + +[[package]] +name = "toolz" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8a/0b/d80dfa675bf592f636d1ea0b835eab4ec8df6e9415d8cfd766df54456123/toolz-1.0.0.tar.gz", hash = "sha256:2c86e3d9a04798ac556793bced838816296a2f085017664e4995cb40a1047a02", size = 66790 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/98/eb27cc78ad3af8e302c9d8ff4977f5026676e130d28dd7578132a457170c/toolz-1.0.0-py3-none-any.whl", hash = "sha256:292c8f1c4e7516bf9086f8850935c799a874039c8bcf959d47b600e4c44a6236", size = 56383 }, +] + +[[package]] +name = "toposort" +version = "1.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/19/8e955d90985ecbd3b9adb2a759753a6840da2dff3c569d412b2c9217678b/toposort-1.10.tar.gz", hash = "sha256:bfbb479c53d0a696ea7402601f4e693c97b0367837c8898bc6471adfca37a6bd", size = 11132 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/17/57b444fd314d5e1593350b9a31d000e7411ba8e17ce12dc7ad54ca76b810/toposort-1.10-py3-none-any.whl", hash = "sha256:cbdbc0d0bee4d2695ab2ceec97fe0679e9c10eab4b2a87a9372b929e70563a87", size = 8500 }, +] + +[[package]] +name = "tornado" +version = "6.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/59/45/a0daf161f7d6f36c3ea5fc0c2de619746cc3dd4c76402e9db545bd920f63/tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b", size = 501135 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/7e/71f604d8cea1b58f82ba3590290b66da1e72d840aeb37e0d5f7291bd30db/tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1", size = 436299 }, + { url = "https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803", size = 434253 }, + { url = "https://files.pythonhosted.org/packages/cb/fb/fdf679b4ce51bcb7210801ef4f11fdac96e9885daa402861751353beea6e/tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec", size = 437602 }, + { url = "https://files.pythonhosted.org/packages/4f/3b/e31aeffffc22b475a64dbeb273026a21b5b566f74dee48742817626c47dc/tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946", size = 436972 }, + { url = "https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf", size = 437173 }, + { url = "https://files.pythonhosted.org/packages/79/5e/be4fb0d1684eb822c9a62fb18a3e44a06188f78aa466b2ad991d2ee31104/tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634", size = 437892 }, + { url = "https://files.pythonhosted.org/packages/f5/33/4f91fdd94ea36e1d796147003b490fe60a0215ac5737b6f9c65e160d4fe0/tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73", size = 437334 }, + { url = "https://files.pythonhosted.org/packages/2b/ae/c1b22d4524b0e10da2f29a176fb2890386f7bd1f63aacf186444873a88a0/tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c", size = 437261 }, + { url = "https://files.pythonhosted.org/packages/b5/25/36dbd49ab6d179bcfc4c6c093a51795a4f3bed380543a8242ac3517a1751/tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482", size = 438463 }, + { url = "https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38", size = 438907 }, +] + +[[package]] +name = "tqdm" +version = "4.67.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540 }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, +] + +[[package]] +name = "tsam" +version = "2.3.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "highspy" }, + { name = "networkx" }, + { name = "numpy" }, + { name = "pandas" }, + { name = "pyomo" }, + { name = "scikit-learn" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6b/25/2c7c1cc58c1c09ebd2b5b55878e5e1ae4dcf43fad03f6f926b70f3f9fd17/tsam-2.3.6.tar.gz", hash = "sha256:f2f75cbcd5d5d63d9d77ec5edb61e7efeb3170ebef4591272ef13a7bd84cc9d4", size = 223586 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/e9/d1ddff8471ba389caf862867f60718b2843010ec8ba8693c642569012b3d/tsam-2.3.6-py3-none-any.whl", hash = "sha256:2d4ff20e1fcc5e061fbbcf772b51dc3d44dd68198f5a40eca7e0422c70cffe95", size = 36617 }, +] + +[[package]] +name = "types-pyyaml" +version = "6.0.12.20241230" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/f9/4d566925bcf9396136c0a2e5dc7e230ff08d86fa011a69888dd184469d80/types_pyyaml-6.0.12.20241230.tar.gz", hash = "sha256:7f07622dbd34bb9c8b264fe860a17e0efcad00d50b5f27e93984909d9363498c", size = 17078 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/c1/48474fbead512b70ccdb4f81ba5eb4a58f69d100ba19f17c92c0c4f50ae6/types_PyYAML-6.0.12.20241230-py3-none-any.whl", hash = "sha256:fa4d32565219b68e6dee5f67534c722e53c00d1cfc09c435ef04d7353e1e96e6", size = 20029 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "tzdata" +version = "2025.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/0f/fa4723f22942480be4ca9527bbde8d43f6c3f2fe8412f00e7f5f6746bc8b/tzdata-2025.1.tar.gz", hash = "sha256:24894909e88cdb28bd1636c6887801df64cb485bd593f2fd83ef29075a81d694", size = 194950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/dd/84f10e23edd882c6f968c21c2434fe67bd4a528967067515feca9e611e5e/tzdata-2025.1-py2.py3-none-any.whl", hash = "sha256:7e127113816800496f027041c570f50bcd464a020098a3b6b199517772303639", size = 346762 }, +] + +[[package]] +name = "urllib3" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d", size = 307268 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df", size = 128369 }, +] + +[[package]] +name = "urwid" +version = "2.6.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/21/ad23c9e961b2d36d57c63686a6f86768dd945d406323fb58c84f09478530/urwid-2.6.16.tar.gz", hash = "sha256:93ad239939e44c385e64aa00027878b9e5c486d59e855ec8ab5b1e1adcdb32a2", size = 848179 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/cb/271a4f5a1bf4208dbdc96d85b9eae744cf4e5e11ac73eda76dc98c8fd2d7/urwid-2.6.16-py3-none-any.whl", hash = "sha256:de14896c6df9eb759ed1fd93e0384a5279e51e0dde8f621e4083f7a8368c0797", size = 297196 }, +] + +[[package]] +name = "urwid-readline" +version = "0.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "urwid" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ad/70/be318554495555eba7d8ff6e489f6f74ddb225b24086ba4af62a82e723fd/urwid_readline-0.15.1.tar.gz", hash = "sha256:9301444b86d58f7d26388506b704f142cefd193888488b4070d3a0fdfcfc0f84", size = 9007 } + +[[package]] +name = "uvicorn" +version = "0.34.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4b/4d/938bd85e5bf2edeec766267a5015ad969730bb91e31b44021dfe8b22df6c/uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9", size = 76568 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/14/33a3a1352cfa71812a3a21e8c9bfb83f60b0011f5e36f2b1399d51928209/uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4", size = 62315 }, +] + +[[package]] +name = "validators" +version = "0.34.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/07/91582d69320f6f6daaf2d8072608a4ad8884683d4840e7e4f3a9dbdcc639/validators-0.34.0.tar.gz", hash = "sha256:647fe407b45af9a74d245b943b18e6a816acf4926974278f6dd617778e1e781f", size = 70955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/78/36828a4d857b25896f9774c875714ba4e9b3bc8a92d2debe3f4df3a83d4f/validators-0.34.0-py3-none-any.whl", hash = "sha256:c804b476e3e6d3786fa07a30073a4ef694e617805eb1946ceee3fe5a9b8b1321", size = 43536 }, +] + +[[package]] +name = "virtualenv" +version = "20.29.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "distlib" }, + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/88/dacc875dd54a8acadb4bcbfd4e3e86df8be75527116c91d8f9784f5e9cab/virtualenv-20.29.2.tar.gz", hash = "sha256:fdaabebf6d03b5ba83ae0a02cfe96f48a716f4fae556461d180825866f75b728", size = 4320272 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/fa/849483d56773ae29740ae70043ad88e068f98a6401aa819b5d6bee604683/virtualenv-20.29.2-py3-none-any.whl", hash = "sha256:febddfc3d1ea571bdb1dc0f98d7b45d24def7428214d4fb73cc486c9568cce6a", size = 4301478 }, +] + +[[package]] +name = "watchfiles" +version = "1.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f5/26/c705fc77d0a9ecdb9b66f1e2976d95b81df3cae518967431e7dbf9b5e219/watchfiles-1.0.4.tar.gz", hash = "sha256:6ba473efd11062d73e4f00c2b730255f9c1bdd73cd5f9fe5b5da8dbd4a717205", size = 94625 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/bb/8461adc4b1fed009546fb797fc0d5698dcfe5e289cb37e1b8f16a93cdc30/watchfiles-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:2a9f93f8439639dc244c4d2902abe35b0279102bca7bbcf119af964f51d53c19", size = 394869 }, + { url = "https://files.pythonhosted.org/packages/55/88/9ebf36b3547176d1709c320de78c1fa3263a46be31b5b1267571d9102686/watchfiles-1.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9eea33ad8c418847dd296e61eb683cae1c63329b6d854aefcd412e12d94ee235", size = 384905 }, + { url = "https://files.pythonhosted.org/packages/03/8a/04335ce23ef78d8c69f0913e8b20cf7d9233e3986543aeef95ef2d6e43d2/watchfiles-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:31f1a379c9dcbb3f09cf6be1b7e83b67c0e9faabed0471556d9438a4a4e14202", size = 449944 }, + { url = "https://files.pythonhosted.org/packages/17/4e/c8d5dcd14fe637f4633616dabea8a4af0a10142dccf3b43e0f081ba81ab4/watchfiles-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ab594e75644421ae0a2484554832ca5895f8cab5ab62de30a1a57db460ce06c6", size = 456020 }, + { url = "https://files.pythonhosted.org/packages/5e/74/3e91e09e1861dd7fbb1190ce7bd786700dc0fbc2ccd33bb9fff5de039229/watchfiles-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc2eb5d14a8e0d5df7b36288979176fbb39672d45184fc4b1c004d7c3ce29317", size = 482983 }, + { url = "https://files.pythonhosted.org/packages/a1/3d/e64de2d1ce4eb6a574fd78ce3a28c279da263be9ef3cfcab6f708df192f2/watchfiles-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f68d8e9d5a321163ddacebe97091000955a1b74cd43724e346056030b0bacee", size = 520320 }, + { url = "https://files.pythonhosted.org/packages/2c/bd/52235f7063b57240c66a991696ed27e2a18bd6fcec8a1ea5a040b70d0611/watchfiles-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9ce064e81fe79faa925ff03b9f4c1a98b0bbb4a1b8c1b015afa93030cb21a49", size = 500988 }, + { url = "https://files.pythonhosted.org/packages/3a/b0/ff04194141a5fe650c150400dd9e42667916bc0f52426e2e174d779b8a74/watchfiles-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b77d5622ac5cc91d21ae9c2b284b5d5c51085a0bdb7b518dba263d0af006132c", size = 452573 }, + { url = "https://files.pythonhosted.org/packages/3d/9d/966164332c5a178444ae6d165082d4f351bd56afd9c3ec828eecbf190e6a/watchfiles-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1941b4e39de9b38b868a69b911df5e89dc43767feeda667b40ae032522b9b5f1", size = 615114 }, + { url = "https://files.pythonhosted.org/packages/94/df/f569ae4c1877f96ad4086c153a8eee5a19a3b519487bf5c9454a3438c341/watchfiles-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4f8c4998506241dedf59613082d1c18b836e26ef2a4caecad0ec41e2a15e4226", size = 613076 }, + { url = "https://files.pythonhosted.org/packages/15/ae/8ce5f29e65d5fa5790e3c80c289819c55e12be2e1b9f5b6a0e55e169b97d/watchfiles-1.0.4-cp311-cp311-win32.whl", hash = "sha256:4ebbeca9360c830766b9f0df3640b791be569d988f4be6c06d6fae41f187f105", size = 271013 }, + { url = "https://files.pythonhosted.org/packages/a4/c6/79dc4a7c598a978e5fafa135090aaf7bbb03b8dec7bada437dfbe578e7ed/watchfiles-1.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:05d341c71f3d7098920f8551d4df47f7b57ac5b8dad56558064c3431bdfc0b74", size = 284229 }, + { url = "https://files.pythonhosted.org/packages/37/3d/928633723211753f3500bfb138434f080363b87a1b08ca188b1ce54d1e05/watchfiles-1.0.4-cp311-cp311-win_arm64.whl", hash = "sha256:32b026a6ab64245b584acf4931fe21842374da82372d5c039cba6bf99ef722f3", size = 276824 }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, +] + +[[package]] +name = "websockets" +version = "14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/54/8359678c726243d19fae38ca14a334e740782336c9f19700858c4eb64a1e/websockets-14.2.tar.gz", hash = "sha256:5059ed9c54945efb321f097084b4c7e52c246f2c869815876a69d1efc4ad6eb5", size = 164394 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/b6/504695fb9a33df0ca56d157f5985660b5fc5b4bf8c78f121578d2d653392/websockets-14.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3bdc8c692c866ce5fefcaf07d2b55c91d6922ac397e031ef9b774e5b9ea42166", size = 163088 }, + { url = "https://files.pythonhosted.org/packages/81/26/ebfb8f6abe963c795122439c6433c4ae1e061aaedfc7eff32d09394afbae/websockets-14.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c93215fac5dadc63e51bcc6dceca72e72267c11def401d6668622b47675b097f", size = 160745 }, + { url = "https://files.pythonhosted.org/packages/a1/c6/1435ad6f6dcbff80bb95e8986704c3174da8866ddb751184046f5c139ef6/websockets-14.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1c9b6535c0e2cf8a6bf938064fb754aaceb1e6a4a51a80d884cd5db569886910", size = 160995 }, + { url = "https://files.pythonhosted.org/packages/96/63/900c27cfe8be1a1f2433fc77cd46771cf26ba57e6bdc7cf9e63644a61863/websockets-14.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a52a6d7cf6938e04e9dceb949d35fbdf58ac14deea26e685ab6368e73744e4c", size = 170543 }, + { url = "https://files.pythonhosted.org/packages/00/8b/bec2bdba92af0762d42d4410593c1d7d28e9bfd952c97a3729df603dc6ea/websockets-14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9f05702e93203a6ff5226e21d9b40c037761b2cfb637187c9802c10f58e40473", size = 169546 }, + { url = "https://files.pythonhosted.org/packages/6b/a9/37531cb5b994f12a57dec3da2200ef7aadffef82d888a4c29a0d781568e4/websockets-14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22441c81a6748a53bfcb98951d58d1af0661ab47a536af08920d129b4d1c3473", size = 169911 }, + { url = "https://files.pythonhosted.org/packages/60/d5/a6eadba2ed9f7e65d677fec539ab14a9b83de2b484ab5fe15d3d6d208c28/websockets-14.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:efd9b868d78b194790e6236d9cbc46d68aba4b75b22497eb4ab64fa640c3af56", size = 170183 }, + { url = "https://files.pythonhosted.org/packages/76/57/a338ccb00d1df881c1d1ee1f2a20c9c1b5b29b51e9e0191ee515d254fea6/websockets-14.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1a5a20d5843886d34ff8c57424cc65a1deda4375729cbca4cb6b3353f3ce4142", size = 169623 }, + { url = "https://files.pythonhosted.org/packages/64/22/e5f7c33db0cb2c1d03b79fd60d189a1da044e2661f5fd01d629451e1db89/websockets-14.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:34277a29f5303d54ec6468fb525d99c99938607bc96b8d72d675dee2b9f5bf1d", size = 169583 }, + { url = "https://files.pythonhosted.org/packages/aa/2e/2b4662237060063a22e5fc40d46300a07142afe30302b634b4eebd717c07/websockets-14.2-cp311-cp311-win32.whl", hash = "sha256:02687db35dbc7d25fd541a602b5f8e451a238ffa033030b172ff86a93cb5dc2a", size = 163969 }, + { url = "https://files.pythonhosted.org/packages/94/a5/0cda64e1851e73fc1ecdae6f42487babb06e55cb2f0dc8904b81d8ef6857/websockets-14.2-cp311-cp311-win_amd64.whl", hash = "sha256:862e9967b46c07d4dcd2532e9e8e3c2825e004ffbf91a5ef9dde519ee2effb0b", size = 164408 }, + { url = "https://files.pythonhosted.org/packages/7b/c8/d529f8a32ce40d98309f4470780631e971a5a842b60aec864833b3615786/websockets-14.2-py3-none-any.whl", hash = "sha256:7a6ceec4ea84469f15cf15807a747e9efe57e369c384fa86e022b3bea679b79b", size = 157416 }, +] + +[[package]] +name = "wrapt" +version = "1.17.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/fc/e91cc220803d7bc4db93fb02facd8461c37364151b8494762cc88b0fbcef/wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3", size = 55531 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/f7/a2aab2cbc7a665efab072344a8949a71081eed1d2f451f7f7d2b966594a2/wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58", size = 53308 }, + { url = "https://files.pythonhosted.org/packages/50/ff/149aba8365fdacef52b31a258c4dc1c57c79759c335eff0b3316a2664a64/wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda", size = 38488 }, + { url = "https://files.pythonhosted.org/packages/65/46/5a917ce85b5c3b490d35c02bf71aedaa9f2f63f2d15d9949cc4ba56e8ba9/wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438", size = 38776 }, + { url = "https://files.pythonhosted.org/packages/ca/74/336c918d2915a4943501c77566db41d1bd6e9f4dbc317f356b9a244dfe83/wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a", size = 83776 }, + { url = "https://files.pythonhosted.org/packages/09/99/c0c844a5ccde0fe5761d4305485297f91d67cf2a1a824c5f282e661ec7ff/wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000", size = 75420 }, + { url = "https://files.pythonhosted.org/packages/b4/b0/9fc566b0fe08b282c850063591a756057c3247b2362b9286429ec5bf1721/wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6", size = 83199 }, + { url = "https://files.pythonhosted.org/packages/9d/4b/71996e62d543b0a0bd95dda485219856def3347e3e9380cc0d6cf10cfb2f/wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b", size = 82307 }, + { url = "https://files.pythonhosted.org/packages/39/35/0282c0d8789c0dc9bcc738911776c762a701f95cfe113fb8f0b40e45c2b9/wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662", size = 75025 }, + { url = "https://files.pythonhosted.org/packages/4f/6d/90c9fd2c3c6fee181feecb620d95105370198b6b98a0770cba090441a828/wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72", size = 81879 }, + { url = "https://files.pythonhosted.org/packages/8f/fa/9fb6e594f2ce03ef03eddbdb5f4f90acb1452221a5351116c7c4708ac865/wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317", size = 36419 }, + { url = "https://files.pythonhosted.org/packages/47/f8/fb1773491a253cbc123c5d5dc15c86041f746ed30416535f2a8df1f4a392/wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3", size = 38773 }, + { url = "https://files.pythonhosted.org/packages/2d/82/f56956041adef78f849db6b289b282e72b55ab8045a75abad81898c28d19/wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8", size = 23594 }, +] + +[[package]] +name = "xarray" +version = "2024.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "packaging" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d9/d3/ae7a92c8448c40cd43f97fff93b1a57f87565b412fdc02eb14af5d4c3823/xarray-2024.9.0.tar.gz", hash = "sha256:e796a6b3eaec11da24f33e4bb14af41897011660a0516fa4037d3ae4bbd1d378", size = 3747432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/28/3a6365e45721c7c9078968ed94b4a60076bc31d73b8519021a69b4995b63/xarray-2024.9.0-py3-none-any.whl", hash = "sha256:4fd534abdf12d5fa75dd566c56483d5081f77864462cf3d6ad53e13f9db48222", size = 1191607 }, +] + +[[package]] +name = "xlrd" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/b3/19a2540d21dea5f908304375bd43f5ed7a4c28a370dc9122c565423e6b44/xlrd-2.0.1.tar.gz", hash = "sha256:f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88", size = 100259 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/0c/c2a72d51fe56e08a08acc85d13013558a2d793028ae7385448a6ccdfae64/xlrd-2.0.1-py2.py3-none-any.whl", hash = "sha256:6a33ee89877bd9abc1158129f6e94be74e2679636b8a205b43b85206c3f0bbdd", size = 96531 }, +] + +[[package]] +name = "yte" +version = "1.5.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dpath" }, + { name = "plac" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/ea/6173085d15e5cf55884b2706ab3f35d38a0680fc45c5b9e33b40c4a71bdb/yte-1.5.7.tar.gz", hash = "sha256:1e22a74e7c4d1aa70c54fe79d23938cb249d08c0804ad764ab97d5c587cbbad2", size = 6388 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/ba/f9d2417e72a8e50e2c749edf8b96fbe3c423be17b39cc2648154b3184fd3/yte-1.5.7-py3-none-any.whl", hash = "sha256:a66118fbe236bcf293fc920473ad19eb20f801172f0cd43764d3c283ceee6452", size = 7830 }, +] + +[[package]] +name = "zict" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/ac/3c494dd7ec5122cff8252c1a209b282c0867af029f805ae9befd73ae37eb/zict-3.0.0.tar.gz", hash = "sha256:e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5", size = 33238 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl", hash = "sha256:5796e36bd0e0cc8cf0fbc1ace6a68912611c1dbd74750a3f3026b9b9d6a327ae", size = 43332 }, +] + +[[package]] +name = "zipp" +version = "3.21.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/50/bad581df71744867e9468ebd0bcd6505de3b275e06f202c2cb016e3ff56f/zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4", size = 24545 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/1a/7e4798e9339adc931158c9d69ecc34f5e6791489d469f5e50ec15e35f458/zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931", size = 9630 }, +] diff --git a/workflow/Snakefile b/workflow/Snakefile index e70fb2e9..e1818a45 100644 --- a/workflow/Snakefile +++ b/workflow/Snakefile @@ -206,7 +206,7 @@ def sector_figures(wildcards): figs.append( expand( RESULTS - + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/system/sankey/{figure}.png", + + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/system/sankey/{figure}.html", **config["scenario"], figure=FIGURES_SECTOR_SANKEY, ) diff --git a/workflow/envs/dev.yaml b/workflow/envs/dev.yaml new file mode 100644 index 00000000..d7dc5e67 --- /dev/null +++ b/workflow/envs/dev.yaml @@ -0,0 +1,19 @@ +name: pypsa-usa-dev +channels: +- conda-forge + +dependencies: +- python==3.11.9 +- pip + +- pip: + - bump2version + - pudb + - mypy~=1.11.0 + - pre-commit + - ruff~=0.5.2 + - types-PyYAML + - sphinx-autobuild + - sphinx + - sphinx-book-theme + - myst-parser diff --git a/workflow/envs/environment.yaml b/workflow/envs/environment.yaml index 799d3573..bac12865 100644 --- a/workflow/envs/environment.yaml +++ b/workflow/envs/environment.yaml @@ -52,17 +52,13 @@ dependencies: # TODO: check these dependencies - tqdm==4.66.1 -- pytz==2023.3.post1 - country_converter==1.0.0 -- tabula-py==2.7.0 -- fs==2.4.11 - pip: - - vresutils==0.3.1 - tsam>=1.1.0 - gurobipy==11.0.3 - highspy - duckdb==0.10.0 - flake8 - dill - - kaleido + - kaleido # for plotly export diff --git a/workflow/notebooks/docs/service/clustered-load.ipynb b/workflow/notebooks/docs/service/clustered-load.ipynb index 96ea9ad7..816b1004 100644 --- a/workflow/notebooks/docs/service/clustered-load.ipynb +++ b/workflow/notebooks/docs/service/clustered-load.ipynb @@ -145,14 +145,12 @@ " mapper = {\"ashp\": \"Air Source Heat Pump\", \"gshp\": \"Ground Source Heat Pump\"}\n", "\n", " for i, hp in enumerate([\"ashp\", \"gshp\"]):\n", - "\n", " df = cops[[x for x in cops if x.endswith(hp)]]\n", " avg = df.mean(axis=1)\n", "\n", " palette = sns.color_palette([\"lightgray\"], df.shape[1])\n", "\n", " try:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", diff --git a/workflow/notebooks/docs/validation/load_validatiaon.ipynb b/workflow/notebooks/docs/validation/load_validatiaon.ipynb index 3cd1d4c3..85d3a985 100644 --- a/workflow/notebooks/docs/validation/load_validatiaon.ipynb +++ b/workflow/notebooks/docs/validation/load_validatiaon.ipynb @@ -288,7 +288,6 @@ "\n", "\n", "def plot_sector_state(efs, other, other_name, sector):\n", - "\n", " state_efs_data = efs.reset_index().drop(columns=\"snapshot\").groupby(\"State\").sum().rename(columns={\"value\": \"EFS\"})\n", " state_other_data = (\n", " other.reset_index().drop(columns=\"snapshot\").groupby(\"State\").sum().rename(columns={\"value\": other_name})\n", diff --git a/workflow/notebooks/sector_loads/load_profiles.ipynb b/workflow/notebooks/sector_loads/load_profiles.ipynb index cb6c909f..2ac9bd62 100644 --- a/workflow/notebooks/sector_loads/load_profiles.ipynb +++ b/workflow/notebooks/sector_loads/load_profiles.ipynb @@ -79,7 +79,6 @@ "outputs": [], "source": [ "def get_profile(df: pd.DataFrame, bus: Optional[str] = None) -> pd.DataFrame:\n", - "\n", " if not bus:\n", " bus = df.columns[0]\n", "\n", @@ -142,7 +141,6 @@ " palette = sns.color_palette([\"lightgray\"], df.shape[1])\n", "\n", " if nrows > 1:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", @@ -161,7 +159,6 @@ " axs[row, col].set(yscale=\"log\")\n", "\n", " else:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", @@ -251,7 +248,6 @@ " palette = sns.color_palette([\"lightgray\"], df.shape[1])\n", "\n", " if nrows > 1:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", @@ -270,7 +266,6 @@ " axs[row, col].set(yscale=\"log\")\n", "\n", " else:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", @@ -359,7 +354,6 @@ " palette = sns.color_palette([\"lightgray\"], df.shape[1])\n", "\n", " if nrows > 1:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", @@ -378,7 +372,6 @@ " axs[row, col].set(yscale=\"log\")\n", "\n", " else:\n", - "\n", " sns.lineplot(\n", " df,\n", " color=\"lightgray\",\n", diff --git a/workflow/repo_data/eia_ads_generator_mapping_updated.csv b/workflow/repo_data/WECC_ADS_public/eia_ads_generator_mapping_updated.csv similarity index 100% rename from workflow/repo_data/eia_ads_generator_mapping_updated.csv rename to workflow/repo_data/WECC_ADS_public/eia_ads_generator_mapping_updated.csv diff --git a/workflow/repo_data/config/config.cluster.yaml b/workflow/repo_data/config/config.cluster.yaml index 501e6daf..dc111dc4 100644 --- a/workflow/repo_data/config/config.cluster.yaml +++ b/workflow/repo_data/config/config.cluster.yaml @@ -1,10 +1,10 @@ __default__: - account: iazevedo - partition: serc - email: ktehranchi@stanford.edu + account: + partition: + email: walltime: 00:30:00 # time limit for each job cpus_per_task: 1 # number of cores per job - chdir: $GROUP_HOME/kamran/pypsa-usa/workflow + chdir: output: logs/{rule}/log-%j.out error: logs/{rule}/errlog-%j.err diff --git a/workflow/repo_data/config/config.default.yaml b/workflow/repo_data/config/config.default.yaml index 7d97b209..3eacb4b0 100644 --- a/workflow/repo_data/config/config.default.yaml +++ b/workflow/repo_data/config/config.default.yaml @@ -58,10 +58,6 @@ electricity: epsilon_vres: 0.02 contingency: 4000 - max_hours: - battery: 6 - H2: 168 - extendable_carriers: Generator: [solar, onwind, offwind_floating, OCGT, CCGT, CCGT-95CCS, coal, nuclear, hydrogen_ct] #include CCGT-CCS StorageUnit: [4hr_battery_storage, 8hr_battery_storage] # [Xhr-battery-storage (2-10 hours)] @@ -75,6 +71,10 @@ electricity: efs_speed: moderate # slow, moderate, rapid aeo: reference + demand_response: + shift: 0 + marginal_cost: 999999 + # docs : conventional: unit_commitment: false @@ -138,10 +138,12 @@ costs: # docs : clustering: simplify_network: + weighting_strategy: demand-capacity # choose from: [population, demand-capacity] to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections) algorithm: kmeans # choose from: [hac, kmeans] feature: solar+onwind-time # only for hac. choose from: [solar+onwind-time, solar+onwind-cap, solar-time, solar-cap, solar+offwind-cap] etc. cluster_network: + weighting_strategy: demand-capacity # choose from: [population, demand-capacity] algorithm: kmeans # choose from: [hac, kmeans] feature: solar+onwind-time exclude_carriers: [] diff --git a/workflow/repo_data/config/config.plotting.yaml b/workflow/repo_data/config/config.plotting.yaml index d8c9aeff..bad8e1bc 100644 --- a/workflow/repo_data/config/config.plotting.yaml +++ b/workflow/repo_data/config/config.plotting.yaml @@ -85,7 +85,7 @@ plotting: "10hr_PHS_charger": "#058a79" "12hr_PHS_charger": "#047d6c" "hydrogen_ct": "#ea048a" - + "demand_response": "#8c03fc" # sector studies only @@ -318,6 +318,7 @@ plotting: ror: "Run of River" Load: "Load Shed" hydrogen_ct: "Hydrogen Combustion Turbine" + demand_response: "Demand Response" # sector studies only diff --git a/workflow/repo_data/config/config.tutorial.yaml b/workflow/repo_data/config/config.tutorial.yaml index b0ed68e7..5f3b7727 100644 --- a/workflow/repo_data/config/config.tutorial.yaml +++ b/workflow/repo_data/config/config.tutorial.yaml @@ -59,10 +59,6 @@ electricity: epsilon_vres: 0.02 contingency: 4000 - max_hours: - battery: 6 - H2: 168 - extendable_carriers: Generator: [solar, onwind, offwind_floating, OCGT, CCGT, CCGT-95CCS, coal, nuclear] #include CCGT-CCS StorageUnit: [4hr_battery_storage, 8hr_battery_storage] # [Xhr-battery-storage (2-10 hours)] diff --git a/workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.cpg b/workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.cpg similarity index 100% rename from workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.cpg rename to workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.cpg diff --git a/workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.dbf b/workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.dbf similarity index 100% rename from workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.dbf rename to workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.dbf diff --git a/workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.prj b/workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.prj similarity index 100% rename from workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.prj rename to workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.prj diff --git a/workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.shp b/workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.shp similarity index 100% rename from workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.shp rename to workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.shp diff --git a/workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.shx b/workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.shx similarity index 100% rename from workflow/repo_data/BA_shapes_new/Modified_BE_BA_Shapes.shx rename to workflow/repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.shx diff --git a/workflow/repo_data/BA_shapes_new/remap_ba_area.cpg b/workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.cpg similarity index 100% rename from workflow/repo_data/BA_shapes_new/remap_ba_area.cpg rename to workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.cpg diff --git a/workflow/repo_data/BA_shapes_new/remap_ba_area.dbf b/workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.dbf similarity index 100% rename from workflow/repo_data/BA_shapes_new/remap_ba_area.dbf rename to workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.dbf diff --git a/workflow/repo_data/BA_shapes_new/remap_ba_area.prj b/workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.prj similarity index 100% rename from workflow/repo_data/BA_shapes_new/remap_ba_area.prj rename to workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.prj diff --git a/workflow/repo_data/BA_shapes_new/remap_ba_area.shp b/workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.shp similarity index 100% rename from workflow/repo_data/BA_shapes_new/remap_ba_area.shp rename to workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.shp diff --git a/workflow/repo_data/BA_shapes_new/remap_ba_area.shx b/workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.shx similarity index 100% rename from workflow/repo_data/BA_shapes_new/remap_ba_area.shx rename to workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.shx diff --git a/workflow/repo_data/BA_shapes_new/remap_ba_area.tif b/workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.tif similarity index 100% rename from workflow/repo_data/BA_shapes_new/remap_ba_area.tif rename to workflow/repo_data/geospatial/BA_shapes_new/remap_ba_area.tif diff --git a/workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.cpg b/workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.cpg similarity index 100% rename from workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.cpg rename to workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.cpg diff --git a/workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.dbf b/workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.dbf similarity index 100% rename from workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.dbf rename to workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.dbf diff --git a/workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.prj b/workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.prj similarity index 100% rename from workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.prj rename to workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.prj diff --git a/workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.qmd b/workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.qmd similarity index 100% rename from workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.qmd rename to workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.qmd diff --git a/workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp b/workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp similarity index 100% rename from workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp rename to workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp diff --git a/workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shx b/workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shx similarity index 100% rename from workflow/repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shx rename to workflow/repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shx diff --git a/workflow/repo_data/CEC_Solar_BaseScreen_epsg3310.tif b/workflow/repo_data/geospatial/CEC_GIS/CEC_Solar_BaseScreen_epsg3310.tif similarity index 100% rename from workflow/repo_data/CEC_Solar_BaseScreen_epsg3310.tif rename to workflow/repo_data/geospatial/CEC_GIS/CEC_Solar_BaseScreen_epsg3310.tif diff --git a/workflow/repo_data/CEC_Wind_BaseScreen_epsg3310.tif b/workflow/repo_data/geospatial/CEC_GIS/CEC_Wind_BaseScreen_epsg3310.tif similarity index 100% rename from workflow/repo_data/CEC_Wind_BaseScreen_epsg3310.tif rename to workflow/repo_data/geospatial/CEC_GIS/CEC_Wind_BaseScreen_epsg3310.tif diff --git a/workflow/repo_data/NERC_Regions/NERC_Regions.xml b/workflow/repo_data/geospatial/NERC_Regions/NERC_Regions.xml similarity index 100% rename from workflow/repo_data/NERC_Regions/NERC_Regions.xml rename to workflow/repo_data/geospatial/NERC_Regions/NERC_Regions.xml diff --git a/workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.cpg b/workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.cpg similarity index 100% rename from workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.cpg rename to workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.cpg diff --git a/workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.dbf b/workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.dbf similarity index 100% rename from workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.dbf rename to workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.dbf diff --git a/workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.prj b/workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.prj similarity index 100% rename from workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.prj rename to workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.prj diff --git a/workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.shp b/workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.shp similarity index 100% rename from workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.shp rename to workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.shp diff --git a/workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.shx b/workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.shx similarity index 100% rename from workflow/repo_data/NERC_Regions/NERC_Regions_Subregions.shx rename to workflow/repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.shx diff --git a/workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.cpg b/workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.cpg similarity index 100% rename from workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.cpg rename to workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.cpg diff --git a/workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.dbf b/workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.dbf similarity index 100% rename from workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.dbf rename to workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.dbf diff --git a/workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.prj b/workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.prj similarity index 100% rename from workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.prj rename to workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.prj diff --git a/workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.shp b/workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.shp similarity index 100% rename from workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.shp rename to workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.shp diff --git a/workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.shx b/workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.shx similarity index 100% rename from workflow/repo_data/Reeds_Shapes/rb_and_ba_areas.shx rename to workflow/repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.shx diff --git a/workflow/repo_data/boem_osw_planning_areas.tif b/workflow/repo_data/geospatial/boem_osw_planning_areas.tif similarity index 100% rename from workflow/repo_data/boem_osw_planning_areas.tif rename to workflow/repo_data/geospatial/boem_osw_planning_areas.tif diff --git a/workflow/repo_data/network_500.jpg b/workflow/repo_data/network_500.jpg deleted file mode 100644 index 6f84d11b..00000000 Binary files a/workflow/repo_data/network_500.jpg and /dev/null differ diff --git a/workflow/repo_data/plants/Offshore_Wind_CEC_PLEXOS_2030.csv b/workflow/repo_data/plants/Offshore_Wind_CEC_PLEXOS_2030.csv deleted file mode 100644 index 158c5938..00000000 --- a/workflow/repo_data/plants/Offshore_Wind_CEC_PLEXOS_2030.csv +++ /dev/null @@ -1,8761 +0,0 @@ -YEAR,MONTH,DAY,PERIOD,Wind_Offshore_DiabloCanyon,Wind_Offshore_Humboldt,Wind_Offshore_MorroBay,Wind_Offshore_MorroBayN -2030,1,1,1,0.3272,0.5622,0.3419,0.3125 -2030,1,1,2,0.3272,0.58286,0.29966,0.27398 -2030,1,1,3,0.3125,0.60352,0.28682,0.26114 -2030,1,1,4,0.29966,0.58286,0.27398,0.2483 -2030,1,1,5,0.29966,0.58286,0.26114,0.2483 -2030,1,1,6,0.28682,0.60352,0.26114,0.2372 -2030,1,1,7,0.28682,0.58286,0.2483,0.2372 -2030,1,1,8,0.28682,0.58286,0.2483,0.2372 -2030,1,1,9,0.27398,0.58286,0.2372,0.2372 -2030,1,1,10,0.26114,0.58286,0.2372,0.2372 -2030,1,1,11,0.2372,0.60352,0.2261,0.2261 -2030,1,1,12,0.2261,0.58286,0.2261,0.2372 -2030,1,1,13,0.2372,0.60352,0.2372,0.2372 -2030,1,1,14,0.2483,0.60352,0.26114,0.2483 -2030,1,1,15,0.28682,0.62418,0.28682,0.28682 -2030,1,1,16,0.3272,0.62418,0.3125,0.3125 -2030,1,1,17,0.3713,0.62418,0.3419,0.3566 -2030,1,1,18,0.40262,0.62418,0.3713,0.3713 -2030,1,1,19,0.40262,0.62418,0.386,0.386 -2030,1,1,20,0.41924,0.60352,0.386,0.40262 -2030,1,1,21,0.386,0.58286,0.3713,0.41924 -2030,1,1,22,0.3713,0.58286,0.3713,0.40262 -2030,1,1,23,0.3566,0.58286,0.3566,0.386 -2030,1,1,24,0.3419,0.5622,0.3419,0.3566 -2030,1,2,1,0.3272,0.5622,0.3419,0.3125 -2030,1,2,2,0.3272,0.58286,0.29966,0.27398 -2030,1,2,3,0.3125,0.60352,0.28682,0.26114 -2030,1,2,4,0.29966,0.58286,0.27398,0.2483 -2030,1,2,5,0.29966,0.58286,0.26114,0.2483 -2030,1,2,6,0.28682,0.60352,0.26114,0.2372 -2030,1,2,7,0.28682,0.58286,0.2483,0.2372 -2030,1,2,8,0.28682,0.58286,0.2483,0.2372 -2030,1,2,9,0.27398,0.58286,0.2372,0.2372 -2030,1,2,10,0.26114,0.58286,0.2372,0.2372 -2030,1,2,11,0.2372,0.60352,0.2261,0.2261 -2030,1,2,12,0.2261,0.58286,0.2261,0.2372 -2030,1,2,13,0.2372,0.60352,0.2372,0.2372 -2030,1,2,14,0.2483,0.60352,0.26114,0.2483 -2030,1,2,15,0.28682,0.62418,0.28682,0.28682 -2030,1,2,16,0.3272,0.62418,0.3125,0.3125 -2030,1,2,17,0.3713,0.62418,0.3419,0.3566 -2030,1,2,18,0.40262,0.62418,0.3713,0.3713 -2030,1,2,19,0.40262,0.62418,0.386,0.386 -2030,1,2,20,0.41924,0.60352,0.386,0.40262 -2030,1,2,21,0.386,0.58286,0.3713,0.41924 -2030,1,2,22,0.3713,0.58286,0.3713,0.40262 -2030,1,2,23,0.3566,0.58286,0.3566,0.386 -2030,1,2,24,0.3419,0.5622,0.3419,0.3566 -2030,1,3,1,0.3272,0.5622,0.3419,0.3125 -2030,1,3,2,0.3272,0.58286,0.29966,0.27398 -2030,1,3,3,0.3125,0.60352,0.28682,0.26114 -2030,1,3,4,0.29966,0.58286,0.27398,0.2483 -2030,1,3,5,0.29966,0.58286,0.26114,0.2483 -2030,1,3,6,0.28682,0.60352,0.26114,0.2372 -2030,1,3,7,0.28682,0.58286,0.2483,0.2372 -2030,1,3,8,0.28682,0.58286,0.2483,0.2372 -2030,1,3,9,0.27398,0.58286,0.2372,0.2372 -2030,1,3,10,0.26114,0.58286,0.2372,0.2372 -2030,1,3,11,0.2372,0.60352,0.2261,0.2261 -2030,1,3,12,0.2261,0.58286,0.2261,0.2372 -2030,1,3,13,0.2372,0.60352,0.2372,0.2372 -2030,1,3,14,0.2483,0.60352,0.26114,0.2483 -2030,1,3,15,0.28682,0.62418,0.28682,0.28682 -2030,1,3,16,0.3272,0.62418,0.3125,0.3125 -2030,1,3,17,0.3713,0.62418,0.3419,0.3566 -2030,1,3,18,0.40262,0.62418,0.3713,0.3713 -2030,1,3,19,0.40262,0.62418,0.386,0.386 -2030,1,3,20,0.41924,0.60352,0.386,0.40262 -2030,1,3,21,0.386,0.58286,0.3713,0.41924 -2030,1,3,22,0.3713,0.58286,0.3713,0.40262 -2030,1,3,23,0.3566,0.58286,0.3566,0.386 -2030,1,3,24,0.3419,0.5622,0.3419,0.3566 -2030,1,4,1,0.3272,0.5622,0.3419,0.3125 -2030,1,4,2,0.3272,0.58286,0.29966,0.27398 -2030,1,4,3,0.3125,0.60352,0.28682,0.26114 -2030,1,4,4,0.29966,0.58286,0.27398,0.2483 -2030,1,4,5,0.29966,0.58286,0.26114,0.2483 -2030,1,4,6,0.28682,0.60352,0.26114,0.2372 -2030,1,4,7,0.28682,0.58286,0.2483,0.2372 -2030,1,4,8,0.28682,0.58286,0.2483,0.2372 -2030,1,4,9,0.27398,0.58286,0.2372,0.2372 -2030,1,4,10,0.26114,0.58286,0.2372,0.2372 -2030,1,4,11,0.2372,0.60352,0.2261,0.2261 -2030,1,4,12,0.2261,0.58286,0.2261,0.2372 -2030,1,4,13,0.2372,0.60352,0.2372,0.2372 -2030,1,4,14,0.2483,0.60352,0.26114,0.2483 -2030,1,4,15,0.28682,0.62418,0.28682,0.28682 -2030,1,4,16,0.3272,0.62418,0.3125,0.3125 -2030,1,4,17,0.3713,0.62418,0.3419,0.3566 -2030,1,4,18,0.40262,0.62418,0.3713,0.3713 -2030,1,4,19,0.40262,0.62418,0.386,0.386 -2030,1,4,20,0.41924,0.60352,0.386,0.40262 -2030,1,4,21,0.386,0.58286,0.3713,0.41924 -2030,1,4,22,0.3713,0.58286,0.3713,0.40262 -2030,1,4,23,0.3566,0.58286,0.3566,0.386 -2030,1,4,24,0.3419,0.5622,0.3419,0.3566 -2030,1,5,1,0.3272,0.5622,0.3419,0.3125 -2030,1,5,2,0.3272,0.58286,0.29966,0.27398 -2030,1,5,3,0.3125,0.60352,0.28682,0.26114 -2030,1,5,4,0.29966,0.58286,0.27398,0.2483 -2030,1,5,5,0.29966,0.58286,0.26114,0.2483 -2030,1,5,6,0.28682,0.60352,0.26114,0.2372 -2030,1,5,7,0.28682,0.58286,0.2483,0.2372 -2030,1,5,8,0.28682,0.58286,0.2483,0.2372 -2030,1,5,9,0.27398,0.58286,0.2372,0.2372 -2030,1,5,10,0.26114,0.58286,0.2372,0.2372 -2030,1,5,11,0.2372,0.60352,0.2261,0.2261 -2030,1,5,12,0.2261,0.58286,0.2261,0.2372 -2030,1,5,13,0.2372,0.60352,0.2372,0.2372 -2030,1,5,14,0.2483,0.60352,0.26114,0.2483 -2030,1,5,15,0.28682,0.62418,0.28682,0.28682 -2030,1,5,16,0.3272,0.62418,0.3125,0.3125 -2030,1,5,17,0.3713,0.62418,0.3419,0.3566 -2030,1,5,18,0.40262,0.62418,0.3713,0.3713 -2030,1,5,19,0.40262,0.62418,0.386,0.386 -2030,1,5,20,0.41924,0.60352,0.386,0.40262 -2030,1,5,21,0.386,0.58286,0.3713,0.41924 -2030,1,5,22,0.3713,0.58286,0.3713,0.40262 -2030,1,5,23,0.3566,0.58286,0.3566,0.386 -2030,1,5,24,0.3419,0.5622,0.3419,0.3566 -2030,1,6,1,0.3272,0.5622,0.3419,0.3125 -2030,1,6,2,0.3272,0.58286,0.29966,0.27398 -2030,1,6,3,0.3125,0.60352,0.28682,0.26114 -2030,1,6,4,0.29966,0.58286,0.27398,0.2483 -2030,1,6,5,0.29966,0.58286,0.26114,0.2483 -2030,1,6,6,0.28682,0.60352,0.26114,0.2372 -2030,1,6,7,0.28682,0.58286,0.2483,0.2372 -2030,1,6,8,0.28682,0.58286,0.2483,0.2372 -2030,1,6,9,0.27398,0.58286,0.2372,0.2372 -2030,1,6,10,0.26114,0.58286,0.2372,0.2372 -2030,1,6,11,0.2372,0.60352,0.2261,0.2261 -2030,1,6,12,0.2261,0.58286,0.2261,0.2372 -2030,1,6,13,0.2372,0.60352,0.2372,0.2372 -2030,1,6,14,0.2483,0.60352,0.26114,0.2483 -2030,1,6,15,0.28682,0.62418,0.28682,0.28682 -2030,1,6,16,0.3272,0.62418,0.3125,0.3125 -2030,1,6,17,0.3713,0.62418,0.3419,0.3566 -2030,1,6,18,0.40262,0.62418,0.3713,0.3713 -2030,1,6,19,0.40262,0.62418,0.386,0.386 -2030,1,6,20,0.41924,0.60352,0.386,0.40262 -2030,1,6,21,0.386,0.58286,0.3713,0.41924 -2030,1,6,22,0.3713,0.58286,0.3713,0.40262 -2030,1,6,23,0.3566,0.58286,0.3566,0.386 -2030,1,6,24,0.3419,0.5622,0.3419,0.3566 -2030,1,7,1,0.3272,0.5622,0.3419,0.3125 -2030,1,7,2,0.3272,0.58286,0.29966,0.27398 -2030,1,7,3,0.3125,0.60352,0.28682,0.26114 -2030,1,7,4,0.29966,0.58286,0.27398,0.2483 -2030,1,7,5,0.29966,0.58286,0.26114,0.2483 -2030,1,7,6,0.28682,0.60352,0.26114,0.2372 -2030,1,7,7,0.28682,0.58286,0.2483,0.2372 -2030,1,7,8,0.28682,0.58286,0.2483,0.2372 -2030,1,7,9,0.27398,0.58286,0.2372,0.2372 -2030,1,7,10,0.26114,0.58286,0.2372,0.2372 -2030,1,7,11,0.2372,0.60352,0.2261,0.2261 -2030,1,7,12,0.2261,0.58286,0.2261,0.2372 -2030,1,7,13,0.2372,0.60352,0.2372,0.2372 -2030,1,7,14,0.2483,0.60352,0.26114,0.2483 -2030,1,7,15,0.28682,0.62418,0.28682,0.28682 -2030,1,7,16,0.3272,0.62418,0.3125,0.3125 -2030,1,7,17,0.3713,0.62418,0.3419,0.3566 -2030,1,7,18,0.40262,0.62418,0.3713,0.3713 -2030,1,7,19,0.40262,0.62418,0.386,0.386 -2030,1,7,20,0.41924,0.60352,0.386,0.40262 -2030,1,7,21,0.386,0.58286,0.3713,0.41924 -2030,1,7,22,0.3713,0.58286,0.3713,0.40262 -2030,1,7,23,0.3566,0.58286,0.3566,0.386 -2030,1,7,24,0.3419,0.5622,0.3419,0.3566 -2030,1,8,1,0.3272,0.5622,0.3419,0.3125 -2030,1,8,2,0.3272,0.58286,0.29966,0.27398 -2030,1,8,3,0.3125,0.60352,0.28682,0.26114 -2030,1,8,4,0.29966,0.58286,0.27398,0.2483 -2030,1,8,5,0.29966,0.58286,0.26114,0.2483 -2030,1,8,6,0.28682,0.60352,0.26114,0.2372 -2030,1,8,7,0.28682,0.58286,0.2483,0.2372 -2030,1,8,8,0.28682,0.58286,0.2483,0.2372 -2030,1,8,9,0.27398,0.58286,0.2372,0.2372 -2030,1,8,10,0.26114,0.58286,0.2372,0.2372 -2030,1,8,11,0.2372,0.60352,0.2261,0.2261 -2030,1,8,12,0.2261,0.58286,0.2261,0.2372 -2030,1,8,13,0.2372,0.60352,0.2372,0.2372 -2030,1,8,14,0.2483,0.60352,0.26114,0.2483 -2030,1,8,15,0.28682,0.62418,0.28682,0.28682 -2030,1,8,16,0.3272,0.62418,0.3125,0.3125 -2030,1,8,17,0.3713,0.62418,0.3419,0.3566 -2030,1,8,18,0.40262,0.62418,0.3713,0.3713 -2030,1,8,19,0.40262,0.62418,0.386,0.386 -2030,1,8,20,0.41924,0.60352,0.386,0.40262 -2030,1,8,21,0.386,0.58286,0.3713,0.41924 -2030,1,8,22,0.3713,0.58286,0.3713,0.40262 -2030,1,8,23,0.3566,0.58286,0.3566,0.386 -2030,1,8,24,0.3419,0.5622,0.3419,0.3566 -2030,1,9,1,0.3272,0.5622,0.3419,0.3125 -2030,1,9,2,0.3272,0.58286,0.29966,0.27398 -2030,1,9,3,0.3125,0.60352,0.28682,0.26114 -2030,1,9,4,0.29966,0.58286,0.27398,0.2483 -2030,1,9,5,0.29966,0.58286,0.26114,0.2483 -2030,1,9,6,0.28682,0.60352,0.26114,0.2372 -2030,1,9,7,0.28682,0.58286,0.2483,0.2372 -2030,1,9,8,0.28682,0.58286,0.2483,0.2372 -2030,1,9,9,0.27398,0.58286,0.2372,0.2372 -2030,1,9,10,0.26114,0.58286,0.2372,0.2372 -2030,1,9,11,0.2372,0.60352,0.2261,0.2261 -2030,1,9,12,0.2261,0.58286,0.2261,0.2372 -2030,1,9,13,0.2372,0.60352,0.2372,0.2372 -2030,1,9,14,0.2483,0.60352,0.26114,0.2483 -2030,1,9,15,0.28682,0.62418,0.28682,0.28682 -2030,1,9,16,0.3272,0.62418,0.3125,0.3125 -2030,1,9,17,0.3713,0.62418,0.3419,0.3566 -2030,1,9,18,0.40262,0.62418,0.3713,0.3713 -2030,1,9,19,0.40262,0.62418,0.386,0.386 -2030,1,9,20,0.41924,0.60352,0.386,0.40262 -2030,1,9,21,0.386,0.58286,0.3713,0.41924 -2030,1,9,22,0.3713,0.58286,0.3713,0.40262 -2030,1,9,23,0.3566,0.58286,0.3566,0.386 -2030,1,9,24,0.3419,0.5622,0.3419,0.3566 -2030,1,10,1,0.3272,0.5622,0.3419,0.3125 -2030,1,10,2,0.3272,0.58286,0.29966,0.27398 -2030,1,10,3,0.3125,0.60352,0.28682,0.26114 -2030,1,10,4,0.29966,0.58286,0.27398,0.2483 -2030,1,10,5,0.29966,0.58286,0.26114,0.2483 -2030,1,10,6,0.28682,0.60352,0.26114,0.2372 -2030,1,10,7,0.28682,0.58286,0.2483,0.2372 -2030,1,10,8,0.28682,0.58286,0.2483,0.2372 -2030,1,10,9,0.27398,0.58286,0.2372,0.2372 -2030,1,10,10,0.26114,0.58286,0.2372,0.2372 -2030,1,10,11,0.2372,0.60352,0.2261,0.2261 -2030,1,10,12,0.2261,0.58286,0.2261,0.2372 -2030,1,10,13,0.2372,0.60352,0.2372,0.2372 -2030,1,10,14,0.2483,0.60352,0.26114,0.2483 -2030,1,10,15,0.28682,0.62418,0.28682,0.28682 -2030,1,10,16,0.3272,0.62418,0.3125,0.3125 -2030,1,10,17,0.3713,0.62418,0.3419,0.3566 -2030,1,10,18,0.40262,0.62418,0.3713,0.3713 -2030,1,10,19,0.40262,0.62418,0.386,0.386 -2030,1,10,20,0.41924,0.60352,0.386,0.40262 -2030,1,10,21,0.386,0.58286,0.3713,0.41924 -2030,1,10,22,0.3713,0.58286,0.3713,0.40262 -2030,1,10,23,0.3566,0.58286,0.3566,0.386 -2030,1,10,24,0.3419,0.5622,0.3419,0.3566 -2030,1,11,1,0.3272,0.5622,0.3419,0.3125 -2030,1,11,2,0.3272,0.58286,0.29966,0.27398 -2030,1,11,3,0.3125,0.60352,0.28682,0.26114 -2030,1,11,4,0.29966,0.58286,0.27398,0.2483 -2030,1,11,5,0.29966,0.58286,0.26114,0.2483 -2030,1,11,6,0.28682,0.60352,0.26114,0.2372 -2030,1,11,7,0.28682,0.58286,0.2483,0.2372 -2030,1,11,8,0.28682,0.58286,0.2483,0.2372 -2030,1,11,9,0.27398,0.58286,0.2372,0.2372 -2030,1,11,10,0.26114,0.58286,0.2372,0.2372 -2030,1,11,11,0.2372,0.60352,0.2261,0.2261 -2030,1,11,12,0.2261,0.58286,0.2261,0.2372 -2030,1,11,13,0.2372,0.60352,0.2372,0.2372 -2030,1,11,14,0.2483,0.60352,0.26114,0.2483 -2030,1,11,15,0.28682,0.62418,0.28682,0.28682 -2030,1,11,16,0.3272,0.62418,0.3125,0.3125 -2030,1,11,17,0.3713,0.62418,0.3419,0.3566 -2030,1,11,18,0.40262,0.62418,0.3713,0.3713 -2030,1,11,19,0.40262,0.62418,0.386,0.386 -2030,1,11,20,0.41924,0.60352,0.386,0.40262 -2030,1,11,21,0.386,0.58286,0.3713,0.41924 -2030,1,11,22,0.3713,0.58286,0.3713,0.40262 -2030,1,11,23,0.3566,0.58286,0.3566,0.386 -2030,1,11,24,0.3419,0.5622,0.3419,0.3566 -2030,1,12,1,0.3272,0.5622,0.3419,0.3125 -2030,1,12,2,0.3272,0.58286,0.29966,0.27398 -2030,1,12,3,0.3125,0.60352,0.28682,0.26114 -2030,1,12,4,0.29966,0.58286,0.27398,0.2483 -2030,1,12,5,0.29966,0.58286,0.26114,0.2483 -2030,1,12,6,0.28682,0.60352,0.26114,0.2372 -2030,1,12,7,0.28682,0.58286,0.2483,0.2372 -2030,1,12,8,0.28682,0.58286,0.2483,0.2372 -2030,1,12,9,0.27398,0.58286,0.2372,0.2372 -2030,1,12,10,0.26114,0.58286,0.2372,0.2372 -2030,1,12,11,0.2372,0.60352,0.2261,0.2261 -2030,1,12,12,0.2261,0.58286,0.2261,0.2372 -2030,1,12,13,0.2372,0.60352,0.2372,0.2372 -2030,1,12,14,0.2483,0.60352,0.26114,0.2483 -2030,1,12,15,0.28682,0.62418,0.28682,0.28682 -2030,1,12,16,0.3272,0.62418,0.3125,0.3125 -2030,1,12,17,0.3713,0.62418,0.3419,0.3566 -2030,1,12,18,0.40262,0.62418,0.3713,0.3713 -2030,1,12,19,0.40262,0.62418,0.386,0.386 -2030,1,12,20,0.41924,0.60352,0.386,0.40262 -2030,1,12,21,0.386,0.58286,0.3713,0.41924 -2030,1,12,22,0.3713,0.58286,0.3713,0.40262 -2030,1,12,23,0.3566,0.58286,0.3566,0.386 -2030,1,12,24,0.3419,0.5622,0.3419,0.3566 -2030,1,13,1,0.3272,0.5622,0.3419,0.3125 -2030,1,13,2,0.3272,0.58286,0.29966,0.27398 -2030,1,13,3,0.3125,0.60352,0.28682,0.26114 -2030,1,13,4,0.29966,0.58286,0.27398,0.2483 -2030,1,13,5,0.29966,0.58286,0.26114,0.2483 -2030,1,13,6,0.28682,0.60352,0.26114,0.2372 -2030,1,13,7,0.28682,0.58286,0.2483,0.2372 -2030,1,13,8,0.28682,0.58286,0.2483,0.2372 -2030,1,13,9,0.27398,0.58286,0.2372,0.2372 -2030,1,13,10,0.26114,0.58286,0.2372,0.2372 -2030,1,13,11,0.2372,0.60352,0.2261,0.2261 -2030,1,13,12,0.2261,0.58286,0.2261,0.2372 -2030,1,13,13,0.2372,0.60352,0.2372,0.2372 -2030,1,13,14,0.2483,0.60352,0.26114,0.2483 -2030,1,13,15,0.28682,0.62418,0.28682,0.28682 -2030,1,13,16,0.3272,0.62418,0.3125,0.3125 -2030,1,13,17,0.3713,0.62418,0.3419,0.3566 -2030,1,13,18,0.40262,0.62418,0.3713,0.3713 -2030,1,13,19,0.40262,0.62418,0.386,0.386 -2030,1,13,20,0.41924,0.60352,0.386,0.40262 -2030,1,13,21,0.386,0.58286,0.3713,0.41924 -2030,1,13,22,0.3713,0.58286,0.3713,0.40262 -2030,1,13,23,0.3566,0.58286,0.3566,0.386 -2030,1,13,24,0.3419,0.5622,0.3419,0.3566 -2030,1,14,1,0.3272,0.5622,0.3419,0.3125 -2030,1,14,2,0.3272,0.58286,0.29966,0.27398 -2030,1,14,3,0.3125,0.60352,0.28682,0.26114 -2030,1,14,4,0.29966,0.58286,0.27398,0.2483 -2030,1,14,5,0.29966,0.58286,0.26114,0.2483 -2030,1,14,6,0.28682,0.60352,0.26114,0.2372 -2030,1,14,7,0.28682,0.58286,0.2483,0.2372 -2030,1,14,8,0.28682,0.58286,0.2483,0.2372 -2030,1,14,9,0.27398,0.58286,0.2372,0.2372 -2030,1,14,10,0.26114,0.58286,0.2372,0.2372 -2030,1,14,11,0.2372,0.60352,0.2261,0.2261 -2030,1,14,12,0.2261,0.58286,0.2261,0.2372 -2030,1,14,13,0.2372,0.60352,0.2372,0.2372 -2030,1,14,14,0.2483,0.60352,0.26114,0.2483 -2030,1,14,15,0.28682,0.62418,0.28682,0.28682 -2030,1,14,16,0.3272,0.62418,0.3125,0.3125 -2030,1,14,17,0.3713,0.62418,0.3419,0.3566 -2030,1,14,18,0.40262,0.62418,0.3713,0.3713 -2030,1,14,19,0.40262,0.62418,0.386,0.386 -2030,1,14,20,0.41924,0.60352,0.386,0.40262 -2030,1,14,21,0.386,0.58286,0.3713,0.41924 -2030,1,14,22,0.3713,0.58286,0.3713,0.40262 -2030,1,14,23,0.3566,0.58286,0.3566,0.386 -2030,1,14,24,0.3419,0.5622,0.3419,0.3566 -2030,1,15,1,0.3272,0.5622,0.3419,0.3125 -2030,1,15,2,0.3272,0.58286,0.29966,0.27398 -2030,1,15,3,0.3125,0.60352,0.28682,0.26114 -2030,1,15,4,0.29966,0.58286,0.27398,0.2483 -2030,1,15,5,0.29966,0.58286,0.26114,0.2483 -2030,1,15,6,0.28682,0.60352,0.26114,0.2372 -2030,1,15,7,0.28682,0.58286,0.2483,0.2372 -2030,1,15,8,0.28682,0.58286,0.2483,0.2372 -2030,1,15,9,0.27398,0.58286,0.2372,0.2372 -2030,1,15,10,0.26114,0.58286,0.2372,0.2372 -2030,1,15,11,0.2372,0.60352,0.2261,0.2261 -2030,1,15,12,0.2261,0.58286,0.2261,0.2372 -2030,1,15,13,0.2372,0.60352,0.2372,0.2372 -2030,1,15,14,0.2483,0.60352,0.26114,0.2483 -2030,1,15,15,0.28682,0.62418,0.28682,0.28682 -2030,1,15,16,0.3272,0.62418,0.3125,0.3125 -2030,1,15,17,0.3713,0.62418,0.3419,0.3566 -2030,1,15,18,0.40262,0.62418,0.3713,0.3713 -2030,1,15,19,0.40262,0.62418,0.386,0.386 -2030,1,15,20,0.41924,0.60352,0.386,0.40262 -2030,1,15,21,0.386,0.58286,0.3713,0.41924 -2030,1,15,22,0.3713,0.58286,0.3713,0.40262 -2030,1,15,23,0.3566,0.58286,0.3566,0.386 -2030,1,15,24,0.3419,0.5622,0.3419,0.3566 -2030,1,16,1,0.3272,0.5622,0.3419,0.3125 -2030,1,16,2,0.3272,0.58286,0.29966,0.27398 -2030,1,16,3,0.3125,0.60352,0.28682,0.26114 -2030,1,16,4,0.29966,0.58286,0.27398,0.2483 -2030,1,16,5,0.29966,0.58286,0.26114,0.2483 -2030,1,16,6,0.28682,0.60352,0.26114,0.2372 -2030,1,16,7,0.28682,0.58286,0.2483,0.2372 -2030,1,16,8,0.28682,0.58286,0.2483,0.2372 -2030,1,16,9,0.27398,0.58286,0.2372,0.2372 -2030,1,16,10,0.26114,0.58286,0.2372,0.2372 -2030,1,16,11,0.2372,0.60352,0.2261,0.2261 -2030,1,16,12,0.2261,0.58286,0.2261,0.2372 -2030,1,16,13,0.2372,0.60352,0.2372,0.2372 -2030,1,16,14,0.2483,0.60352,0.26114,0.2483 -2030,1,16,15,0.28682,0.62418,0.28682,0.28682 -2030,1,16,16,0.3272,0.62418,0.3125,0.3125 -2030,1,16,17,0.3713,0.62418,0.3419,0.3566 -2030,1,16,18,0.40262,0.62418,0.3713,0.3713 -2030,1,16,19,0.40262,0.62418,0.386,0.386 -2030,1,16,20,0.41924,0.60352,0.386,0.40262 -2030,1,16,21,0.386,0.58286,0.3713,0.41924 -2030,1,16,22,0.3713,0.58286,0.3713,0.40262 -2030,1,16,23,0.3566,0.58286,0.3566,0.386 -2030,1,16,24,0.3419,0.5622,0.3419,0.3566 -2030,1,17,1,0.3272,0.5622,0.3419,0.3125 -2030,1,17,2,0.3272,0.58286,0.29966,0.27398 -2030,1,17,3,0.3125,0.60352,0.28682,0.26114 -2030,1,17,4,0.29966,0.58286,0.27398,0.2483 -2030,1,17,5,0.29966,0.58286,0.26114,0.2483 -2030,1,17,6,0.28682,0.60352,0.26114,0.2372 -2030,1,17,7,0.28682,0.58286,0.2483,0.2372 -2030,1,17,8,0.28682,0.58286,0.2483,0.2372 -2030,1,17,9,0.27398,0.58286,0.2372,0.2372 -2030,1,17,10,0.26114,0.58286,0.2372,0.2372 -2030,1,17,11,0.2372,0.60352,0.2261,0.2261 -2030,1,17,12,0.2261,0.58286,0.2261,0.2372 -2030,1,17,13,0.2372,0.60352,0.2372,0.2372 -2030,1,17,14,0.2483,0.60352,0.26114,0.2483 -2030,1,17,15,0.28682,0.62418,0.28682,0.28682 -2030,1,17,16,0.3272,0.62418,0.3125,0.3125 -2030,1,17,17,0.3713,0.62418,0.3419,0.3566 -2030,1,17,18,0.40262,0.62418,0.3713,0.3713 -2030,1,17,19,0.40262,0.62418,0.386,0.386 -2030,1,17,20,0.41924,0.60352,0.386,0.40262 -2030,1,17,21,0.386,0.58286,0.3713,0.41924 -2030,1,17,22,0.3713,0.58286,0.3713,0.40262 -2030,1,17,23,0.3566,0.58286,0.3566,0.386 -2030,1,17,24,0.3419,0.5622,0.3419,0.3566 -2030,1,18,1,0.3272,0.5622,0.3419,0.3125 -2030,1,18,2,0.3272,0.58286,0.29966,0.27398 -2030,1,18,3,0.3125,0.60352,0.28682,0.26114 -2030,1,18,4,0.29966,0.58286,0.27398,0.2483 -2030,1,18,5,0.29966,0.58286,0.26114,0.2483 -2030,1,18,6,0.28682,0.60352,0.26114,0.2372 -2030,1,18,7,0.28682,0.58286,0.2483,0.2372 -2030,1,18,8,0.28682,0.58286,0.2483,0.2372 -2030,1,18,9,0.27398,0.58286,0.2372,0.2372 -2030,1,18,10,0.26114,0.58286,0.2372,0.2372 -2030,1,18,11,0.2372,0.60352,0.2261,0.2261 -2030,1,18,12,0.2261,0.58286,0.2261,0.2372 -2030,1,18,13,0.2372,0.60352,0.2372,0.2372 -2030,1,18,14,0.2483,0.60352,0.26114,0.2483 -2030,1,18,15,0.28682,0.62418,0.28682,0.28682 -2030,1,18,16,0.3272,0.62418,0.3125,0.3125 -2030,1,18,17,0.3713,0.62418,0.3419,0.3566 -2030,1,18,18,0.40262,0.62418,0.3713,0.3713 -2030,1,18,19,0.40262,0.62418,0.386,0.386 -2030,1,18,20,0.41924,0.60352,0.386,0.40262 -2030,1,18,21,0.386,0.58286,0.3713,0.41924 -2030,1,18,22,0.3713,0.58286,0.3713,0.40262 -2030,1,18,23,0.3566,0.58286,0.3566,0.386 -2030,1,18,24,0.3419,0.5622,0.3419,0.3566 -2030,1,19,1,0.3272,0.5622,0.3419,0.3125 -2030,1,19,2,0.3272,0.58286,0.29966,0.27398 -2030,1,19,3,0.3125,0.60352,0.28682,0.26114 -2030,1,19,4,0.29966,0.58286,0.27398,0.2483 -2030,1,19,5,0.29966,0.58286,0.26114,0.2483 -2030,1,19,6,0.28682,0.60352,0.26114,0.2372 -2030,1,19,7,0.28682,0.58286,0.2483,0.2372 -2030,1,19,8,0.28682,0.58286,0.2483,0.2372 -2030,1,19,9,0.27398,0.58286,0.2372,0.2372 -2030,1,19,10,0.26114,0.58286,0.2372,0.2372 -2030,1,19,11,0.2372,0.60352,0.2261,0.2261 -2030,1,19,12,0.2261,0.58286,0.2261,0.2372 -2030,1,19,13,0.2372,0.60352,0.2372,0.2372 -2030,1,19,14,0.2483,0.60352,0.26114,0.2483 -2030,1,19,15,0.28682,0.62418,0.28682,0.28682 -2030,1,19,16,0.3272,0.62418,0.3125,0.3125 -2030,1,19,17,0.3713,0.62418,0.3419,0.3566 -2030,1,19,18,0.40262,0.62418,0.3713,0.3713 -2030,1,19,19,0.40262,0.62418,0.386,0.386 -2030,1,19,20,0.41924,0.60352,0.386,0.40262 -2030,1,19,21,0.386,0.58286,0.3713,0.41924 -2030,1,19,22,0.3713,0.58286,0.3713,0.40262 -2030,1,19,23,0.3566,0.58286,0.3566,0.386 -2030,1,19,24,0.3419,0.5622,0.3419,0.3566 -2030,1,20,1,0.3272,0.5622,0.3419,0.3125 -2030,1,20,2,0.3272,0.58286,0.29966,0.27398 -2030,1,20,3,0.3125,0.60352,0.28682,0.26114 -2030,1,20,4,0.29966,0.58286,0.27398,0.2483 -2030,1,20,5,0.29966,0.58286,0.26114,0.2483 -2030,1,20,6,0.28682,0.60352,0.26114,0.2372 -2030,1,20,7,0.28682,0.58286,0.2483,0.2372 -2030,1,20,8,0.28682,0.58286,0.2483,0.2372 -2030,1,20,9,0.27398,0.58286,0.2372,0.2372 -2030,1,20,10,0.26114,0.58286,0.2372,0.2372 -2030,1,20,11,0.2372,0.60352,0.2261,0.2261 -2030,1,20,12,0.2261,0.58286,0.2261,0.2372 -2030,1,20,13,0.2372,0.60352,0.2372,0.2372 -2030,1,20,14,0.2483,0.60352,0.26114,0.2483 -2030,1,20,15,0.28682,0.62418,0.28682,0.28682 -2030,1,20,16,0.3272,0.62418,0.3125,0.3125 -2030,1,20,17,0.3713,0.62418,0.3419,0.3566 -2030,1,20,18,0.40262,0.62418,0.3713,0.3713 -2030,1,20,19,0.40262,0.62418,0.386,0.386 -2030,1,20,20,0.41924,0.60352,0.386,0.40262 -2030,1,20,21,0.386,0.58286,0.3713,0.41924 -2030,1,20,22,0.3713,0.58286,0.3713,0.40262 -2030,1,20,23,0.3566,0.58286,0.3566,0.386 -2030,1,20,24,0.3419,0.5622,0.3419,0.3566 -2030,1,21,1,0.3272,0.5622,0.3419,0.3125 -2030,1,21,2,0.3272,0.58286,0.29966,0.27398 -2030,1,21,3,0.3125,0.60352,0.28682,0.26114 -2030,1,21,4,0.29966,0.58286,0.27398,0.2483 -2030,1,21,5,0.29966,0.58286,0.26114,0.2483 -2030,1,21,6,0.28682,0.60352,0.26114,0.2372 -2030,1,21,7,0.28682,0.58286,0.2483,0.2372 -2030,1,21,8,0.28682,0.58286,0.2483,0.2372 -2030,1,21,9,0.27398,0.58286,0.2372,0.2372 -2030,1,21,10,0.26114,0.58286,0.2372,0.2372 -2030,1,21,11,0.2372,0.60352,0.2261,0.2261 -2030,1,21,12,0.2261,0.58286,0.2261,0.2372 -2030,1,21,13,0.2372,0.60352,0.2372,0.2372 -2030,1,21,14,0.2483,0.60352,0.26114,0.2483 -2030,1,21,15,0.28682,0.62418,0.28682,0.28682 -2030,1,21,16,0.3272,0.62418,0.3125,0.3125 -2030,1,21,17,0.3713,0.62418,0.3419,0.3566 -2030,1,21,18,0.40262,0.62418,0.3713,0.3713 -2030,1,21,19,0.40262,0.62418,0.386,0.386 -2030,1,21,20,0.41924,0.60352,0.386,0.40262 -2030,1,21,21,0.386,0.58286,0.3713,0.41924 -2030,1,21,22,0.3713,0.58286,0.3713,0.40262 -2030,1,21,23,0.3566,0.58286,0.3566,0.386 -2030,1,21,24,0.3419,0.5622,0.3419,0.3566 -2030,1,22,1,0.3272,0.5622,0.3419,0.3125 -2030,1,22,2,0.3272,0.58286,0.29966,0.27398 -2030,1,22,3,0.3125,0.60352,0.28682,0.26114 -2030,1,22,4,0.29966,0.58286,0.27398,0.2483 -2030,1,22,5,0.29966,0.58286,0.26114,0.2483 -2030,1,22,6,0.28682,0.60352,0.26114,0.2372 -2030,1,22,7,0.28682,0.58286,0.2483,0.2372 -2030,1,22,8,0.28682,0.58286,0.2483,0.2372 -2030,1,22,9,0.27398,0.58286,0.2372,0.2372 -2030,1,22,10,0.26114,0.58286,0.2372,0.2372 -2030,1,22,11,0.2372,0.60352,0.2261,0.2261 -2030,1,22,12,0.2261,0.58286,0.2261,0.2372 -2030,1,22,13,0.2372,0.60352,0.2372,0.2372 -2030,1,22,14,0.2483,0.60352,0.26114,0.2483 -2030,1,22,15,0.28682,0.62418,0.28682,0.28682 -2030,1,22,16,0.3272,0.62418,0.3125,0.3125 -2030,1,22,17,0.3713,0.62418,0.3419,0.3566 -2030,1,22,18,0.40262,0.62418,0.3713,0.3713 -2030,1,22,19,0.40262,0.62418,0.386,0.386 -2030,1,22,20,0.41924,0.60352,0.386,0.40262 -2030,1,22,21,0.386,0.58286,0.3713,0.41924 -2030,1,22,22,0.3713,0.58286,0.3713,0.40262 -2030,1,22,23,0.3566,0.58286,0.3566,0.386 -2030,1,22,24,0.3419,0.5622,0.3419,0.3566 -2030,1,23,1,0.3272,0.5622,0.3419,0.3125 -2030,1,23,2,0.3272,0.58286,0.29966,0.27398 -2030,1,23,3,0.3125,0.60352,0.28682,0.26114 -2030,1,23,4,0.29966,0.58286,0.27398,0.2483 -2030,1,23,5,0.29966,0.58286,0.26114,0.2483 -2030,1,23,6,0.28682,0.60352,0.26114,0.2372 -2030,1,23,7,0.28682,0.58286,0.2483,0.2372 -2030,1,23,8,0.28682,0.58286,0.2483,0.2372 -2030,1,23,9,0.27398,0.58286,0.2372,0.2372 -2030,1,23,10,0.26114,0.58286,0.2372,0.2372 -2030,1,23,11,0.2372,0.60352,0.2261,0.2261 -2030,1,23,12,0.2261,0.58286,0.2261,0.2372 -2030,1,23,13,0.2372,0.60352,0.2372,0.2372 -2030,1,23,14,0.2483,0.60352,0.26114,0.2483 -2030,1,23,15,0.28682,0.62418,0.28682,0.28682 -2030,1,23,16,0.3272,0.62418,0.3125,0.3125 -2030,1,23,17,0.3713,0.62418,0.3419,0.3566 -2030,1,23,18,0.40262,0.62418,0.3713,0.3713 -2030,1,23,19,0.40262,0.62418,0.386,0.386 -2030,1,23,20,0.41924,0.60352,0.386,0.40262 -2030,1,23,21,0.386,0.58286,0.3713,0.41924 -2030,1,23,22,0.3713,0.58286,0.3713,0.40262 -2030,1,23,23,0.3566,0.58286,0.3566,0.386 -2030,1,23,24,0.3419,0.5622,0.3419,0.3566 -2030,1,24,1,0.3272,0.5622,0.3419,0.3125 -2030,1,24,2,0.3272,0.58286,0.29966,0.27398 -2030,1,24,3,0.3125,0.60352,0.28682,0.26114 -2030,1,24,4,0.29966,0.58286,0.27398,0.2483 -2030,1,24,5,0.29966,0.58286,0.26114,0.2483 -2030,1,24,6,0.28682,0.60352,0.26114,0.2372 -2030,1,24,7,0.28682,0.58286,0.2483,0.2372 -2030,1,24,8,0.28682,0.58286,0.2483,0.2372 -2030,1,24,9,0.27398,0.58286,0.2372,0.2372 -2030,1,24,10,0.26114,0.58286,0.2372,0.2372 -2030,1,24,11,0.2372,0.60352,0.2261,0.2261 -2030,1,24,12,0.2261,0.58286,0.2261,0.2372 -2030,1,24,13,0.2372,0.60352,0.2372,0.2372 -2030,1,24,14,0.2483,0.60352,0.26114,0.2483 -2030,1,24,15,0.28682,0.62418,0.28682,0.28682 -2030,1,24,16,0.3272,0.62418,0.3125,0.3125 -2030,1,24,17,0.3713,0.62418,0.3419,0.3566 -2030,1,24,18,0.40262,0.62418,0.3713,0.3713 -2030,1,24,19,0.40262,0.62418,0.386,0.386 -2030,1,24,20,0.41924,0.60352,0.386,0.40262 -2030,1,24,21,0.386,0.58286,0.3713,0.41924 -2030,1,24,22,0.3713,0.58286,0.3713,0.40262 -2030,1,24,23,0.3566,0.58286,0.3566,0.386 -2030,1,24,24,0.3419,0.5622,0.3419,0.3566 -2030,1,25,1,0.3272,0.5622,0.3419,0.3125 -2030,1,25,2,0.3272,0.58286,0.29966,0.27398 -2030,1,25,3,0.3125,0.60352,0.28682,0.26114 -2030,1,25,4,0.29966,0.58286,0.27398,0.2483 -2030,1,25,5,0.29966,0.58286,0.26114,0.2483 -2030,1,25,6,0.28682,0.60352,0.26114,0.2372 -2030,1,25,7,0.28682,0.58286,0.2483,0.2372 -2030,1,25,8,0.28682,0.58286,0.2483,0.2372 -2030,1,25,9,0.27398,0.58286,0.2372,0.2372 -2030,1,25,10,0.26114,0.58286,0.2372,0.2372 -2030,1,25,11,0.2372,0.60352,0.2261,0.2261 -2030,1,25,12,0.2261,0.58286,0.2261,0.2372 -2030,1,25,13,0.2372,0.60352,0.2372,0.2372 -2030,1,25,14,0.2483,0.60352,0.26114,0.2483 -2030,1,25,15,0.28682,0.62418,0.28682,0.28682 -2030,1,25,16,0.3272,0.62418,0.3125,0.3125 -2030,1,25,17,0.3713,0.62418,0.3419,0.3566 -2030,1,25,18,0.40262,0.62418,0.3713,0.3713 -2030,1,25,19,0.40262,0.62418,0.386,0.386 -2030,1,25,20,0.41924,0.60352,0.386,0.40262 -2030,1,25,21,0.386,0.58286,0.3713,0.41924 -2030,1,25,22,0.3713,0.58286,0.3713,0.40262 -2030,1,25,23,0.3566,0.58286,0.3566,0.386 -2030,1,25,24,0.3419,0.5622,0.3419,0.3566 -2030,1,26,1,0.3272,0.5622,0.3419,0.3125 -2030,1,26,2,0.3272,0.58286,0.29966,0.27398 -2030,1,26,3,0.3125,0.60352,0.28682,0.26114 -2030,1,26,4,0.29966,0.58286,0.27398,0.2483 -2030,1,26,5,0.29966,0.58286,0.26114,0.2483 -2030,1,26,6,0.28682,0.60352,0.26114,0.2372 -2030,1,26,7,0.28682,0.58286,0.2483,0.2372 -2030,1,26,8,0.28682,0.58286,0.2483,0.2372 -2030,1,26,9,0.27398,0.58286,0.2372,0.2372 -2030,1,26,10,0.26114,0.58286,0.2372,0.2372 -2030,1,26,11,0.2372,0.60352,0.2261,0.2261 -2030,1,26,12,0.2261,0.58286,0.2261,0.2372 -2030,1,26,13,0.2372,0.60352,0.2372,0.2372 -2030,1,26,14,0.2483,0.60352,0.26114,0.2483 -2030,1,26,15,0.28682,0.62418,0.28682,0.28682 -2030,1,26,16,0.3272,0.62418,0.3125,0.3125 -2030,1,26,17,0.3713,0.62418,0.3419,0.3566 -2030,1,26,18,0.40262,0.62418,0.3713,0.3713 -2030,1,26,19,0.40262,0.62418,0.386,0.386 -2030,1,26,20,0.41924,0.60352,0.386,0.40262 -2030,1,26,21,0.386,0.58286,0.3713,0.41924 -2030,1,26,22,0.3713,0.58286,0.3713,0.40262 -2030,1,26,23,0.3566,0.58286,0.3566,0.386 -2030,1,26,24,0.3419,0.5622,0.3419,0.3566 -2030,1,27,1,0.3272,0.5622,0.3419,0.3125 -2030,1,27,2,0.3272,0.58286,0.29966,0.27398 -2030,1,27,3,0.3125,0.60352,0.28682,0.26114 -2030,1,27,4,0.29966,0.58286,0.27398,0.2483 -2030,1,27,5,0.29966,0.58286,0.26114,0.2483 -2030,1,27,6,0.28682,0.60352,0.26114,0.2372 -2030,1,27,7,0.28682,0.58286,0.2483,0.2372 -2030,1,27,8,0.28682,0.58286,0.2483,0.2372 -2030,1,27,9,0.27398,0.58286,0.2372,0.2372 -2030,1,27,10,0.26114,0.58286,0.2372,0.2372 -2030,1,27,11,0.2372,0.60352,0.2261,0.2261 -2030,1,27,12,0.2261,0.58286,0.2261,0.2372 -2030,1,27,13,0.2372,0.60352,0.2372,0.2372 -2030,1,27,14,0.2483,0.60352,0.26114,0.2483 -2030,1,27,15,0.28682,0.62418,0.28682,0.28682 -2030,1,27,16,0.3272,0.62418,0.3125,0.3125 -2030,1,27,17,0.3713,0.62418,0.3419,0.3566 -2030,1,27,18,0.40262,0.62418,0.3713,0.3713 -2030,1,27,19,0.40262,0.62418,0.386,0.386 -2030,1,27,20,0.41924,0.60352,0.386,0.40262 -2030,1,27,21,0.386,0.58286,0.3713,0.41924 -2030,1,27,22,0.3713,0.58286,0.3713,0.40262 -2030,1,27,23,0.3566,0.58286,0.3566,0.386 -2030,1,27,24,0.3419,0.5622,0.3419,0.3566 -2030,1,28,1,0.3272,0.5622,0.3419,0.3125 -2030,1,28,2,0.3272,0.58286,0.29966,0.27398 -2030,1,28,3,0.3125,0.60352,0.28682,0.26114 -2030,1,28,4,0.29966,0.58286,0.27398,0.2483 -2030,1,28,5,0.29966,0.58286,0.26114,0.2483 -2030,1,28,6,0.28682,0.60352,0.26114,0.2372 -2030,1,28,7,0.28682,0.58286,0.2483,0.2372 -2030,1,28,8,0.28682,0.58286,0.2483,0.2372 -2030,1,28,9,0.27398,0.58286,0.2372,0.2372 -2030,1,28,10,0.26114,0.58286,0.2372,0.2372 -2030,1,28,11,0.2372,0.60352,0.2261,0.2261 -2030,1,28,12,0.2261,0.58286,0.2261,0.2372 -2030,1,28,13,0.2372,0.60352,0.2372,0.2372 -2030,1,28,14,0.2483,0.60352,0.26114,0.2483 -2030,1,28,15,0.28682,0.62418,0.28682,0.28682 -2030,1,28,16,0.3272,0.62418,0.3125,0.3125 -2030,1,28,17,0.3713,0.62418,0.3419,0.3566 -2030,1,28,18,0.40262,0.62418,0.3713,0.3713 -2030,1,28,19,0.40262,0.62418,0.386,0.386 -2030,1,28,20,0.41924,0.60352,0.386,0.40262 -2030,1,28,21,0.386,0.58286,0.3713,0.41924 -2030,1,28,22,0.3713,0.58286,0.3713,0.40262 -2030,1,28,23,0.3566,0.58286,0.3566,0.386 -2030,1,28,24,0.3419,0.5622,0.3419,0.3566 -2030,1,29,1,0.3272,0.5622,0.3419,0.3125 -2030,1,29,2,0.3272,0.58286,0.29966,0.27398 -2030,1,29,3,0.3125,0.60352,0.28682,0.26114 -2030,1,29,4,0.29966,0.58286,0.27398,0.2483 -2030,1,29,5,0.29966,0.58286,0.26114,0.2483 -2030,1,29,6,0.28682,0.60352,0.26114,0.2372 -2030,1,29,7,0.28682,0.58286,0.2483,0.2372 -2030,1,29,8,0.28682,0.58286,0.2483,0.2372 -2030,1,29,9,0.27398,0.58286,0.2372,0.2372 -2030,1,29,10,0.26114,0.58286,0.2372,0.2372 -2030,1,29,11,0.2372,0.60352,0.2261,0.2261 -2030,1,29,12,0.2261,0.58286,0.2261,0.2372 -2030,1,29,13,0.2372,0.60352,0.2372,0.2372 -2030,1,29,14,0.2483,0.60352,0.26114,0.2483 -2030,1,29,15,0.28682,0.62418,0.28682,0.28682 -2030,1,29,16,0.3272,0.62418,0.3125,0.3125 -2030,1,29,17,0.3713,0.62418,0.3419,0.3566 -2030,1,29,18,0.40262,0.62418,0.3713,0.3713 -2030,1,29,19,0.40262,0.62418,0.386,0.386 -2030,1,29,20,0.41924,0.60352,0.386,0.40262 -2030,1,29,21,0.386,0.58286,0.3713,0.41924 -2030,1,29,22,0.3713,0.58286,0.3713,0.40262 -2030,1,29,23,0.3566,0.58286,0.3566,0.386 -2030,1,29,24,0.3419,0.5622,0.3419,0.3566 -2030,1,30,1,0.3272,0.5622,0.3419,0.3125 -2030,1,30,2,0.3272,0.58286,0.29966,0.27398 -2030,1,30,3,0.3125,0.60352,0.28682,0.26114 -2030,1,30,4,0.29966,0.58286,0.27398,0.2483 -2030,1,30,5,0.29966,0.58286,0.26114,0.2483 -2030,1,30,6,0.28682,0.60352,0.26114,0.2372 -2030,1,30,7,0.28682,0.58286,0.2483,0.2372 -2030,1,30,8,0.28682,0.58286,0.2483,0.2372 -2030,1,30,9,0.27398,0.58286,0.2372,0.2372 -2030,1,30,10,0.26114,0.58286,0.2372,0.2372 -2030,1,30,11,0.2372,0.60352,0.2261,0.2261 -2030,1,30,12,0.2261,0.58286,0.2261,0.2372 -2030,1,30,13,0.2372,0.60352,0.2372,0.2372 -2030,1,30,14,0.2483,0.60352,0.26114,0.2483 -2030,1,30,15,0.28682,0.62418,0.28682,0.28682 -2030,1,30,16,0.3272,0.62418,0.3125,0.3125 -2030,1,30,17,0.3713,0.62418,0.3419,0.3566 -2030,1,30,18,0.40262,0.62418,0.3713,0.3713 -2030,1,30,19,0.40262,0.62418,0.386,0.386 -2030,1,30,20,0.41924,0.60352,0.386,0.40262 -2030,1,30,21,0.386,0.58286,0.3713,0.41924 -2030,1,30,22,0.3713,0.58286,0.3713,0.40262 -2030,1,30,23,0.3566,0.58286,0.3566,0.386 -2030,1,30,24,0.3419,0.5622,0.3419,0.3566 -2030,1,31,1,0.3272,0.5622,0.3419,0.3125 -2030,1,31,2,0.3272,0.58286,0.29966,0.27398 -2030,1,31,3,0.3125,0.60352,0.28682,0.26114 -2030,1,31,4,0.29966,0.58286,0.27398,0.2483 -2030,1,31,5,0.29966,0.58286,0.26114,0.2483 -2030,1,31,6,0.28682,0.60352,0.26114,0.2372 -2030,1,31,7,0.28682,0.58286,0.2483,0.2372 -2030,1,31,8,0.28682,0.58286,0.2483,0.2372 -2030,1,31,9,0.27398,0.58286,0.2372,0.2372 -2030,1,31,10,0.26114,0.58286,0.2372,0.2372 -2030,1,31,11,0.2372,0.60352,0.2261,0.2261 -2030,1,31,12,0.2261,0.58286,0.2261,0.2372 -2030,1,31,13,0.2372,0.60352,0.2372,0.2372 -2030,1,31,14,0.2483,0.60352,0.26114,0.2483 -2030,1,31,15,0.28682,0.62418,0.28682,0.28682 -2030,1,31,16,0.3272,0.62418,0.3125,0.3125 -2030,1,31,17,0.3713,0.62418,0.3419,0.3566 -2030,1,31,18,0.40262,0.62418,0.3713,0.3713 -2030,1,31,19,0.40262,0.62418,0.386,0.386 -2030,1,31,20,0.41924,0.60352,0.386,0.40262 -2030,1,31,21,0.386,0.58286,0.3713,0.41924 -2030,1,31,22,0.3713,0.58286,0.3713,0.40262 -2030,1,31,23,0.3566,0.58286,0.3566,0.386 -2030,1,31,24,0.3419,0.5622,0.3419,0.3566 -2030,2,1,1,0.386,0.62418,0.386,0.40262 -2030,2,1,2,0.3566,0.62418,0.386,0.386 -2030,2,1,3,0.3272,0.62418,0.3566,0.3713 -2030,2,1,4,0.3125,0.60352,0.3566,0.3566 -2030,2,1,5,0.29966,0.64484,0.3419,0.3272 -2030,2,1,6,0.29966,0.62418,0.3419,0.3272 -2030,2,1,7,0.29966,0.60352,0.3272,0.3125 -2030,2,1,8,0.29966,0.64484,0.3125,0.29966 -2030,2,1,9,0.27398,0.62418,0.28682,0.28682 -2030,2,1,10,0.27398,0.62418,0.28682,0.28682 -2030,2,1,11,0.26114,0.60352,0.28682,0.27398 -2030,2,1,12,0.27398,0.60352,0.3125,0.28682 -2030,2,1,13,0.29966,0.62418,0.3125,0.3125 -2030,2,1,14,0.3566,0.6655,0.3419,0.3419 -2030,2,1,15,0.386,0.6655,0.386,0.386 -2030,2,1,16,0.4691,0.68824,0.41924,0.41924 -2030,2,1,17,0.7484,0.71098,0.4691,0.43586 -2030,2,1,18,0.5622,0.73372,0.5622,0.5622 -2030,2,1,19,0.58286,0.73372,0.7484,0.7484 -2030,2,1,20,0.8415,0.71098,0.4691,0.5622 -2030,2,1,21,0.5622,0.6655,0.4691,0.6553 -2030,2,1,22,0.45248,0.6655,0.45248,0.4691 -2030,2,1,23,0.41924,0.64484,0.45248,0.41924 -2030,2,1,24,0.40262,0.64484,0.41924,0.40262 -2030,2,2,1,0.386,0.62418,0.386,0.40262 -2030,2,2,2,0.3566,0.62418,0.386,0.386 -2030,2,2,3,0.3272,0.62418,0.3566,0.3713 -2030,2,2,4,0.3125,0.60352,0.3566,0.3566 -2030,2,2,5,0.29966,0.64484,0.3419,0.3272 -2030,2,2,6,0.29966,0.62418,0.3419,0.3272 -2030,2,2,7,0.29966,0.60352,0.3272,0.3125 -2030,2,2,8,0.29966,0.64484,0.3125,0.29966 -2030,2,2,9,0.27398,0.62418,0.28682,0.28682 -2030,2,2,10,0.27398,0.62418,0.28682,0.28682 -2030,2,2,11,0.26114,0.60352,0.28682,0.27398 -2030,2,2,12,0.27398,0.60352,0.3125,0.28682 -2030,2,2,13,0.29966,0.62418,0.3125,0.3125 -2030,2,2,14,0.3566,0.6655,0.3419,0.3419 -2030,2,2,15,0.386,0.6655,0.386,0.386 -2030,2,2,16,0.4691,0.68824,0.41924,0.41924 -2030,2,2,17,0.7484,0.71098,0.4691,0.43586 -2030,2,2,18,0.5622,0.73372,0.5622,0.5622 -2030,2,2,19,0.58286,0.73372,0.7484,0.7484 -2030,2,2,20,0.8415,0.71098,0.4691,0.5622 -2030,2,2,21,0.5622,0.6655,0.4691,0.6553 -2030,2,2,22,0.45248,0.6655,0.45248,0.4691 -2030,2,2,23,0.41924,0.64484,0.45248,0.41924 -2030,2,2,24,0.40262,0.64484,0.41924,0.40262 -2030,2,3,1,0.386,0.62418,0.386,0.40262 -2030,2,3,2,0.3566,0.62418,0.386,0.386 -2030,2,3,3,0.3272,0.62418,0.3566,0.3713 -2030,2,3,4,0.3125,0.60352,0.3566,0.3566 -2030,2,3,5,0.29966,0.64484,0.3419,0.3272 -2030,2,3,6,0.29966,0.62418,0.3419,0.3272 -2030,2,3,7,0.29966,0.60352,0.3272,0.3125 -2030,2,3,8,0.29966,0.64484,0.3125,0.29966 -2030,2,3,9,0.27398,0.62418,0.28682,0.28682 -2030,2,3,10,0.27398,0.62418,0.28682,0.28682 -2030,2,3,11,0.26114,0.60352,0.28682,0.27398 -2030,2,3,12,0.27398,0.60352,0.3125,0.28682 -2030,2,3,13,0.29966,0.62418,0.3125,0.3125 -2030,2,3,14,0.3566,0.6655,0.3419,0.3419 -2030,2,3,15,0.386,0.6655,0.386,0.386 -2030,2,3,16,0.4691,0.68824,0.41924,0.41924 -2030,2,3,17,0.7484,0.71098,0.4691,0.43586 -2030,2,3,18,0.5622,0.73372,0.5622,0.5622 -2030,2,3,19,0.58286,0.73372,0.7484,0.7484 -2030,2,3,20,0.8415,0.71098,0.4691,0.5622 -2030,2,3,21,0.5622,0.6655,0.4691,0.6553 -2030,2,3,22,0.45248,0.6655,0.45248,0.4691 -2030,2,3,23,0.41924,0.64484,0.45248,0.41924 -2030,2,3,24,0.40262,0.64484,0.41924,0.40262 -2030,2,4,1,0.386,0.62418,0.386,0.40262 -2030,2,4,2,0.3566,0.62418,0.386,0.386 -2030,2,4,3,0.3272,0.62418,0.3566,0.3713 -2030,2,4,4,0.3125,0.60352,0.3566,0.3566 -2030,2,4,5,0.29966,0.64484,0.3419,0.3272 -2030,2,4,6,0.29966,0.62418,0.3419,0.3272 -2030,2,4,7,0.29966,0.60352,0.3272,0.3125 -2030,2,4,8,0.29966,0.64484,0.3125,0.29966 -2030,2,4,9,0.27398,0.62418,0.28682,0.28682 -2030,2,4,10,0.27398,0.62418,0.28682,0.28682 -2030,2,4,11,0.26114,0.60352,0.28682,0.27398 -2030,2,4,12,0.27398,0.60352,0.3125,0.28682 -2030,2,4,13,0.29966,0.62418,0.3125,0.3125 -2030,2,4,14,0.3566,0.6655,0.3419,0.3419 -2030,2,4,15,0.386,0.6655,0.386,0.386 -2030,2,4,16,0.4691,0.68824,0.41924,0.41924 -2030,2,4,17,0.7484,0.71098,0.4691,0.43586 -2030,2,4,18,0.5622,0.73372,0.5622,0.5622 -2030,2,4,19,0.58286,0.73372,0.7484,0.7484 -2030,2,4,20,0.8415,0.71098,0.4691,0.5622 -2030,2,4,21,0.5622,0.6655,0.4691,0.6553 -2030,2,4,22,0.45248,0.6655,0.45248,0.4691 -2030,2,4,23,0.41924,0.64484,0.45248,0.41924 -2030,2,4,24,0.40262,0.64484,0.41924,0.40262 -2030,2,5,1,0.386,0.62418,0.386,0.40262 -2030,2,5,2,0.3566,0.62418,0.386,0.386 -2030,2,5,3,0.3272,0.62418,0.3566,0.3713 -2030,2,5,4,0.3125,0.60352,0.3566,0.3566 -2030,2,5,5,0.29966,0.64484,0.3419,0.3272 -2030,2,5,6,0.29966,0.62418,0.3419,0.3272 -2030,2,5,7,0.29966,0.60352,0.3272,0.3125 -2030,2,5,8,0.29966,0.64484,0.3125,0.29966 -2030,2,5,9,0.27398,0.62418,0.28682,0.28682 -2030,2,5,10,0.27398,0.62418,0.28682,0.28682 -2030,2,5,11,0.26114,0.60352,0.28682,0.27398 -2030,2,5,12,0.27398,0.60352,0.3125,0.28682 -2030,2,5,13,0.29966,0.62418,0.3125,0.3125 -2030,2,5,14,0.3566,0.6655,0.3419,0.3419 -2030,2,5,15,0.386,0.6655,0.386,0.386 -2030,2,5,16,0.4691,0.68824,0.41924,0.41924 -2030,2,5,17,0.7484,0.71098,0.4691,0.43586 -2030,2,5,18,0.5622,0.73372,0.5622,0.5622 -2030,2,5,19,0.58286,0.73372,0.7484,0.7484 -2030,2,5,20,0.8415,0.71098,0.4691,0.5622 -2030,2,5,21,0.5622,0.6655,0.4691,0.6553 -2030,2,5,22,0.45248,0.6655,0.45248,0.4691 -2030,2,5,23,0.41924,0.64484,0.45248,0.41924 -2030,2,5,24,0.40262,0.64484,0.41924,0.40262 -2030,2,6,1,0.386,0.62418,0.386,0.40262 -2030,2,6,2,0.3566,0.62418,0.386,0.386 -2030,2,6,3,0.3272,0.62418,0.3566,0.3713 -2030,2,6,4,0.3125,0.60352,0.3566,0.3566 -2030,2,6,5,0.29966,0.64484,0.3419,0.3272 -2030,2,6,6,0.29966,0.62418,0.3419,0.3272 -2030,2,6,7,0.29966,0.60352,0.3272,0.3125 -2030,2,6,8,0.29966,0.64484,0.3125,0.29966 -2030,2,6,9,0.27398,0.62418,0.28682,0.28682 -2030,2,6,10,0.27398,0.62418,0.28682,0.28682 -2030,2,6,11,0.26114,0.60352,0.28682,0.27398 -2030,2,6,12,0.27398,0.60352,0.3125,0.28682 -2030,2,6,13,0.29966,0.62418,0.3125,0.3125 -2030,2,6,14,0.3566,0.6655,0.3419,0.3419 -2030,2,6,15,0.386,0.6655,0.386,0.386 -2030,2,6,16,0.4691,0.68824,0.41924,0.41924 -2030,2,6,17,0.7484,0.71098,0.4691,0.43586 -2030,2,6,18,0.5622,0.73372,0.5622,0.5622 -2030,2,6,19,0.58286,0.73372,0.7484,0.7484 -2030,2,6,20,0.8415,0.71098,0.4691,0.5622 -2030,2,6,21,0.5622,0.6655,0.4691,0.6553 -2030,2,6,22,0.45248,0.6655,0.45248,0.4691 -2030,2,6,23,0.41924,0.64484,0.45248,0.41924 -2030,2,6,24,0.40262,0.64484,0.41924,0.40262 -2030,2,7,1,0.386,0.62418,0.386,0.40262 -2030,2,7,2,0.3566,0.62418,0.386,0.386 -2030,2,7,3,0.3272,0.62418,0.3566,0.3713 -2030,2,7,4,0.3125,0.60352,0.3566,0.3566 -2030,2,7,5,0.29966,0.64484,0.3419,0.3272 -2030,2,7,6,0.29966,0.62418,0.3419,0.3272 -2030,2,7,7,0.29966,0.60352,0.3272,0.3125 -2030,2,7,8,0.29966,0.64484,0.3125,0.29966 -2030,2,7,9,0.27398,0.62418,0.28682,0.28682 -2030,2,7,10,0.27398,0.62418,0.28682,0.28682 -2030,2,7,11,0.26114,0.60352,0.28682,0.27398 -2030,2,7,12,0.27398,0.60352,0.3125,0.28682 -2030,2,7,13,0.29966,0.62418,0.3125,0.3125 -2030,2,7,14,0.3566,0.6655,0.3419,0.3419 -2030,2,7,15,0.386,0.6655,0.386,0.386 -2030,2,7,16,0.4691,0.68824,0.41924,0.41924 -2030,2,7,17,0.7484,0.71098,0.4691,0.43586 -2030,2,7,18,0.5622,0.73372,0.5622,0.5622 -2030,2,7,19,0.58286,0.73372,0.7484,0.7484 -2030,2,7,20,0.8415,0.71098,0.4691,0.5622 -2030,2,7,21,0.5622,0.6655,0.4691,0.6553 -2030,2,7,22,0.45248,0.6655,0.45248,0.4691 -2030,2,7,23,0.41924,0.64484,0.45248,0.41924 -2030,2,7,24,0.40262,0.64484,0.41924,0.40262 -2030,2,8,1,0.386,0.62418,0.386,0.40262 -2030,2,8,2,0.3566,0.62418,0.386,0.386 -2030,2,8,3,0.3272,0.62418,0.3566,0.3713 -2030,2,8,4,0.3125,0.60352,0.3566,0.3566 -2030,2,8,5,0.29966,0.64484,0.3419,0.3272 -2030,2,8,6,0.29966,0.62418,0.3419,0.3272 -2030,2,8,7,0.29966,0.60352,0.3272,0.3125 -2030,2,8,8,0.29966,0.64484,0.3125,0.29966 -2030,2,8,9,0.27398,0.62418,0.28682,0.28682 -2030,2,8,10,0.27398,0.62418,0.28682,0.28682 -2030,2,8,11,0.26114,0.60352,0.28682,0.27398 -2030,2,8,12,0.27398,0.60352,0.3125,0.28682 -2030,2,8,13,0.29966,0.62418,0.3125,0.3125 -2030,2,8,14,0.3566,0.6655,0.3419,0.3419 -2030,2,8,15,0.386,0.6655,0.386,0.386 -2030,2,8,16,0.4691,0.68824,0.41924,0.41924 -2030,2,8,17,0.7484,0.71098,0.4691,0.43586 -2030,2,8,18,0.5622,0.73372,0.5622,0.5622 -2030,2,8,19,0.58286,0.73372,0.7484,0.7484 -2030,2,8,20,0.8415,0.71098,0.4691,0.5622 -2030,2,8,21,0.5622,0.6655,0.4691,0.6553 -2030,2,8,22,0.45248,0.6655,0.45248,0.4691 -2030,2,8,23,0.41924,0.64484,0.45248,0.41924 -2030,2,8,24,0.40262,0.64484,0.41924,0.40262 -2030,2,9,1,0.386,0.62418,0.386,0.40262 -2030,2,9,2,0.3566,0.62418,0.386,0.386 -2030,2,9,3,0.3272,0.62418,0.3566,0.3713 -2030,2,9,4,0.3125,0.60352,0.3566,0.3566 -2030,2,9,5,0.29966,0.64484,0.3419,0.3272 -2030,2,9,6,0.29966,0.62418,0.3419,0.3272 -2030,2,9,7,0.29966,0.60352,0.3272,0.3125 -2030,2,9,8,0.29966,0.64484,0.3125,0.29966 -2030,2,9,9,0.27398,0.62418,0.28682,0.28682 -2030,2,9,10,0.27398,0.62418,0.28682,0.28682 -2030,2,9,11,0.26114,0.60352,0.28682,0.27398 -2030,2,9,12,0.27398,0.60352,0.3125,0.28682 -2030,2,9,13,0.29966,0.62418,0.3125,0.3125 -2030,2,9,14,0.3566,0.6655,0.3419,0.3419 -2030,2,9,15,0.386,0.6655,0.386,0.386 -2030,2,9,16,0.4691,0.68824,0.41924,0.41924 -2030,2,9,17,0.7484,0.71098,0.4691,0.43586 -2030,2,9,18,0.5622,0.73372,0.5622,0.5622 -2030,2,9,19,0.58286,0.73372,0.7484,0.7484 -2030,2,9,20,0.8415,0.71098,0.4691,0.5622 -2030,2,9,21,0.5622,0.6655,0.4691,0.6553 -2030,2,9,22,0.45248,0.6655,0.45248,0.4691 -2030,2,9,23,0.41924,0.64484,0.45248,0.41924 -2030,2,9,24,0.40262,0.64484,0.41924,0.40262 -2030,2,10,1,0.386,0.62418,0.386,0.40262 -2030,2,10,2,0.3566,0.62418,0.386,0.386 -2030,2,10,3,0.3272,0.62418,0.3566,0.3713 -2030,2,10,4,0.3125,0.60352,0.3566,0.3566 -2030,2,10,5,0.29966,0.64484,0.3419,0.3272 -2030,2,10,6,0.29966,0.62418,0.3419,0.3272 -2030,2,10,7,0.29966,0.60352,0.3272,0.3125 -2030,2,10,8,0.29966,0.64484,0.3125,0.29966 -2030,2,10,9,0.27398,0.62418,0.28682,0.28682 -2030,2,10,10,0.27398,0.62418,0.28682,0.28682 -2030,2,10,11,0.26114,0.60352,0.28682,0.27398 -2030,2,10,12,0.27398,0.60352,0.3125,0.28682 -2030,2,10,13,0.29966,0.62418,0.3125,0.3125 -2030,2,10,14,0.3566,0.6655,0.3419,0.3419 -2030,2,10,15,0.386,0.6655,0.386,0.386 -2030,2,10,16,0.4691,0.68824,0.41924,0.41924 -2030,2,10,17,0.7484,0.71098,0.4691,0.43586 -2030,2,10,18,0.5622,0.73372,0.5622,0.5622 -2030,2,10,19,0.58286,0.73372,0.7484,0.7484 -2030,2,10,20,0.8415,0.71098,0.4691,0.5622 -2030,2,10,21,0.5622,0.6655,0.4691,0.6553 -2030,2,10,22,0.45248,0.6655,0.45248,0.4691 -2030,2,10,23,0.41924,0.64484,0.45248,0.41924 -2030,2,10,24,0.40262,0.64484,0.41924,0.40262 -2030,2,11,1,0.386,0.62418,0.386,0.40262 -2030,2,11,2,0.3566,0.62418,0.386,0.386 -2030,2,11,3,0.3272,0.62418,0.3566,0.3713 -2030,2,11,4,0.3125,0.60352,0.3566,0.3566 -2030,2,11,5,0.29966,0.64484,0.3419,0.3272 -2030,2,11,6,0.29966,0.62418,0.3419,0.3272 -2030,2,11,7,0.29966,0.60352,0.3272,0.3125 -2030,2,11,8,0.29966,0.64484,0.3125,0.29966 -2030,2,11,9,0.27398,0.62418,0.28682,0.28682 -2030,2,11,10,0.27398,0.62418,0.28682,0.28682 -2030,2,11,11,0.26114,0.60352,0.28682,0.27398 -2030,2,11,12,0.27398,0.60352,0.3125,0.28682 -2030,2,11,13,0.29966,0.62418,0.3125,0.3125 -2030,2,11,14,0.3566,0.6655,0.3419,0.3419 -2030,2,11,15,0.386,0.6655,0.386,0.386 -2030,2,11,16,0.4691,0.68824,0.41924,0.41924 -2030,2,11,17,0.7484,0.71098,0.4691,0.43586 -2030,2,11,18,0.5622,0.73372,0.5622,0.5622 -2030,2,11,19,0.58286,0.73372,0.7484,0.7484 -2030,2,11,20,0.8415,0.71098,0.4691,0.5622 -2030,2,11,21,0.5622,0.6655,0.4691,0.6553 -2030,2,11,22,0.45248,0.6655,0.45248,0.4691 -2030,2,11,23,0.41924,0.64484,0.45248,0.41924 -2030,2,11,24,0.40262,0.64484,0.41924,0.40262 -2030,2,12,1,0.386,0.62418,0.386,0.40262 -2030,2,12,2,0.3566,0.62418,0.386,0.386 -2030,2,12,3,0.3272,0.62418,0.3566,0.3713 -2030,2,12,4,0.3125,0.60352,0.3566,0.3566 -2030,2,12,5,0.29966,0.64484,0.3419,0.3272 -2030,2,12,6,0.29966,0.62418,0.3419,0.3272 -2030,2,12,7,0.29966,0.60352,0.3272,0.3125 -2030,2,12,8,0.29966,0.64484,0.3125,0.29966 -2030,2,12,9,0.27398,0.62418,0.28682,0.28682 -2030,2,12,10,0.27398,0.62418,0.28682,0.28682 -2030,2,12,11,0.26114,0.60352,0.28682,0.27398 -2030,2,12,12,0.27398,0.60352,0.3125,0.28682 -2030,2,12,13,0.29966,0.62418,0.3125,0.3125 -2030,2,12,14,0.3566,0.6655,0.3419,0.3419 -2030,2,12,15,0.386,0.6655,0.386,0.386 -2030,2,12,16,0.4691,0.68824,0.41924,0.41924 -2030,2,12,17,0.7484,0.71098,0.4691,0.43586 -2030,2,12,18,0.5622,0.73372,0.5622,0.5622 -2030,2,12,19,0.58286,0.73372,0.7484,0.7484 -2030,2,12,20,0.8415,0.71098,0.4691,0.5622 -2030,2,12,21,0.5622,0.6655,0.4691,0.6553 -2030,2,12,22,0.45248,0.6655,0.45248,0.4691 -2030,2,12,23,0.41924,0.64484,0.45248,0.41924 -2030,2,12,24,0.40262,0.64484,0.41924,0.40262 -2030,2,13,1,0.386,0.62418,0.386,0.40262 -2030,2,13,2,0.3566,0.62418,0.386,0.386 -2030,2,13,3,0.3272,0.62418,0.3566,0.3713 -2030,2,13,4,0.3125,0.60352,0.3566,0.3566 -2030,2,13,5,0.29966,0.64484,0.3419,0.3272 -2030,2,13,6,0.29966,0.62418,0.3419,0.3272 -2030,2,13,7,0.29966,0.60352,0.3272,0.3125 -2030,2,13,8,0.29966,0.64484,0.3125,0.29966 -2030,2,13,9,0.27398,0.62418,0.28682,0.28682 -2030,2,13,10,0.27398,0.62418,0.28682,0.28682 -2030,2,13,11,0.26114,0.60352,0.28682,0.27398 -2030,2,13,12,0.27398,0.60352,0.3125,0.28682 -2030,2,13,13,0.29966,0.62418,0.3125,0.3125 -2030,2,13,14,0.3566,0.6655,0.3419,0.3419 -2030,2,13,15,0.386,0.6655,0.386,0.386 -2030,2,13,16,0.4691,0.68824,0.41924,0.41924 -2030,2,13,17,0.7484,0.71098,0.4691,0.43586 -2030,2,13,18,0.5622,0.73372,0.5622,0.5622 -2030,2,13,19,0.58286,0.73372,0.7484,0.7484 -2030,2,13,20,0.8415,0.71098,0.4691,0.5622 -2030,2,13,21,0.5622,0.6655,0.4691,0.6553 -2030,2,13,22,0.45248,0.6655,0.45248,0.4691 -2030,2,13,23,0.41924,0.64484,0.45248,0.41924 -2030,2,13,24,0.40262,0.64484,0.41924,0.40262 -2030,2,14,1,0.386,0.62418,0.386,0.40262 -2030,2,14,2,0.3566,0.62418,0.386,0.386 -2030,2,14,3,0.3272,0.62418,0.3566,0.3713 -2030,2,14,4,0.3125,0.60352,0.3566,0.3566 -2030,2,14,5,0.29966,0.64484,0.3419,0.3272 -2030,2,14,6,0.29966,0.62418,0.3419,0.3272 -2030,2,14,7,0.29966,0.60352,0.3272,0.3125 -2030,2,14,8,0.29966,0.64484,0.3125,0.29966 -2030,2,14,9,0.27398,0.62418,0.28682,0.28682 -2030,2,14,10,0.27398,0.62418,0.28682,0.28682 -2030,2,14,11,0.26114,0.60352,0.28682,0.27398 -2030,2,14,12,0.27398,0.60352,0.3125,0.28682 -2030,2,14,13,0.29966,0.62418,0.3125,0.3125 -2030,2,14,14,0.3566,0.6655,0.3419,0.3419 -2030,2,14,15,0.386,0.6655,0.386,0.386 -2030,2,14,16,0.4691,0.68824,0.41924,0.41924 -2030,2,14,17,0.7484,0.71098,0.4691,0.43586 -2030,2,14,18,0.5622,0.73372,0.5622,0.5622 -2030,2,14,19,0.58286,0.73372,0.7484,0.7484 -2030,2,14,20,0.8415,0.71098,0.4691,0.5622 -2030,2,14,21,0.5622,0.6655,0.4691,0.6553 -2030,2,14,22,0.45248,0.6655,0.45248,0.4691 -2030,2,14,23,0.41924,0.64484,0.45248,0.41924 -2030,2,14,24,0.40262,0.64484,0.41924,0.40262 -2030,2,15,1,0.386,0.62418,0.386,0.40262 -2030,2,15,2,0.3566,0.62418,0.386,0.386 -2030,2,15,3,0.3272,0.62418,0.3566,0.3713 -2030,2,15,4,0.3125,0.60352,0.3566,0.3566 -2030,2,15,5,0.29966,0.64484,0.3419,0.3272 -2030,2,15,6,0.29966,0.62418,0.3419,0.3272 -2030,2,15,7,0.29966,0.60352,0.3272,0.3125 -2030,2,15,8,0.29966,0.64484,0.3125,0.29966 -2030,2,15,9,0.27398,0.62418,0.28682,0.28682 -2030,2,15,10,0.27398,0.62418,0.28682,0.28682 -2030,2,15,11,0.26114,0.60352,0.28682,0.27398 -2030,2,15,12,0.27398,0.60352,0.3125,0.28682 -2030,2,15,13,0.29966,0.62418,0.3125,0.3125 -2030,2,15,14,0.3566,0.6655,0.3419,0.3419 -2030,2,15,15,0.386,0.6655,0.386,0.386 -2030,2,15,16,0.4691,0.68824,0.41924,0.41924 -2030,2,15,17,0.7484,0.71098,0.4691,0.43586 -2030,2,15,18,0.5622,0.73372,0.5622,0.5622 -2030,2,15,19,0.58286,0.73372,0.7484,0.7484 -2030,2,15,20,0.8415,0.71098,0.4691,0.5622 -2030,2,15,21,0.5622,0.6655,0.4691,0.6553 -2030,2,15,22,0.45248,0.6655,0.45248,0.4691 -2030,2,15,23,0.41924,0.64484,0.45248,0.41924 -2030,2,15,24,0.40262,0.64484,0.41924,0.40262 -2030,2,16,1,0.386,0.62418,0.386,0.40262 -2030,2,16,2,0.3566,0.62418,0.386,0.386 -2030,2,16,3,0.3272,0.62418,0.3566,0.3713 -2030,2,16,4,0.3125,0.60352,0.3566,0.3566 -2030,2,16,5,0.29966,0.64484,0.3419,0.3272 -2030,2,16,6,0.29966,0.62418,0.3419,0.3272 -2030,2,16,7,0.29966,0.60352,0.3272,0.3125 -2030,2,16,8,0.29966,0.64484,0.3125,0.29966 -2030,2,16,9,0.27398,0.62418,0.28682,0.28682 -2030,2,16,10,0.27398,0.62418,0.28682,0.28682 -2030,2,16,11,0.26114,0.60352,0.28682,0.27398 -2030,2,16,12,0.27398,0.60352,0.3125,0.28682 -2030,2,16,13,0.29966,0.62418,0.3125,0.3125 -2030,2,16,14,0.3566,0.6655,0.3419,0.3419 -2030,2,16,15,0.386,0.6655,0.386,0.386 -2030,2,16,16,0.4691,0.68824,0.41924,0.41924 -2030,2,16,17,0.7484,0.71098,0.4691,0.43586 -2030,2,16,18,0.5622,0.73372,0.5622,0.5622 -2030,2,16,19,0.58286,0.73372,0.7484,0.7484 -2030,2,16,20,0.8415,0.71098,0.4691,0.5622 -2030,2,16,21,0.5622,0.6655,0.4691,0.6553 -2030,2,16,22,0.45248,0.6655,0.45248,0.4691 -2030,2,16,23,0.41924,0.64484,0.45248,0.41924 -2030,2,16,24,0.40262,0.64484,0.41924,0.40262 -2030,2,17,1,0.386,0.62418,0.386,0.40262 -2030,2,17,2,0.3566,0.62418,0.386,0.386 -2030,2,17,3,0.3272,0.62418,0.3566,0.3713 -2030,2,17,4,0.3125,0.60352,0.3566,0.3566 -2030,2,17,5,0.29966,0.64484,0.3419,0.3272 -2030,2,17,6,0.29966,0.62418,0.3419,0.3272 -2030,2,17,7,0.29966,0.60352,0.3272,0.3125 -2030,2,17,8,0.29966,0.64484,0.3125,0.29966 -2030,2,17,9,0.27398,0.62418,0.28682,0.28682 -2030,2,17,10,0.27398,0.62418,0.28682,0.28682 -2030,2,17,11,0.26114,0.60352,0.28682,0.27398 -2030,2,17,12,0.27398,0.60352,0.3125,0.28682 -2030,2,17,13,0.29966,0.62418,0.3125,0.3125 -2030,2,17,14,0.3566,0.6655,0.3419,0.3419 -2030,2,17,15,0.386,0.6655,0.386,0.386 -2030,2,17,16,0.4691,0.68824,0.41924,0.41924 -2030,2,17,17,0.7484,0.71098,0.4691,0.43586 -2030,2,17,18,0.5622,0.73372,0.5622,0.5622 -2030,2,17,19,0.58286,0.73372,0.7484,0.7484 -2030,2,17,20,0.8415,0.71098,0.4691,0.5622 -2030,2,17,21,0.5622,0.6655,0.4691,0.6553 -2030,2,17,22,0.45248,0.6655,0.45248,0.4691 -2030,2,17,23,0.41924,0.64484,0.45248,0.41924 -2030,2,17,24,0.40262,0.64484,0.41924,0.40262 -2030,2,18,1,0.386,0.62418,0.386,0.40262 -2030,2,18,2,0.3566,0.62418,0.386,0.386 -2030,2,18,3,0.3272,0.62418,0.3566,0.3713 -2030,2,18,4,0.3125,0.60352,0.3566,0.3566 -2030,2,18,5,0.29966,0.64484,0.3419,0.3272 -2030,2,18,6,0.29966,0.62418,0.3419,0.3272 -2030,2,18,7,0.29966,0.60352,0.3272,0.3125 -2030,2,18,8,0.29966,0.64484,0.3125,0.29966 -2030,2,18,9,0.27398,0.62418,0.28682,0.28682 -2030,2,18,10,0.27398,0.62418,0.28682,0.28682 -2030,2,18,11,0.26114,0.60352,0.28682,0.27398 -2030,2,18,12,0.27398,0.60352,0.3125,0.28682 -2030,2,18,13,0.29966,0.62418,0.3125,0.3125 -2030,2,18,14,0.3566,0.6655,0.3419,0.3419 -2030,2,18,15,0.386,0.6655,0.386,0.386 -2030,2,18,16,0.4691,0.68824,0.41924,0.41924 -2030,2,18,17,0.7484,0.71098,0.4691,0.43586 -2030,2,18,18,0.5622,0.73372,0.5622,0.5622 -2030,2,18,19,0.58286,0.73372,0.7484,0.7484 -2030,2,18,20,0.8415,0.71098,0.4691,0.5622 -2030,2,18,21,0.5622,0.6655,0.4691,0.6553 -2030,2,18,22,0.45248,0.6655,0.45248,0.4691 -2030,2,18,23,0.41924,0.64484,0.45248,0.41924 -2030,2,18,24,0.40262,0.64484,0.41924,0.40262 -2030,2,19,1,0.386,0.62418,0.386,0.40262 -2030,2,19,2,0.3566,0.62418,0.386,0.386 -2030,2,19,3,0.3272,0.62418,0.3566,0.3713 -2030,2,19,4,0.3125,0.60352,0.3566,0.3566 -2030,2,19,5,0.29966,0.64484,0.3419,0.3272 -2030,2,19,6,0.29966,0.62418,0.3419,0.3272 -2030,2,19,7,0.29966,0.60352,0.3272,0.3125 -2030,2,19,8,0.29966,0.64484,0.3125,0.29966 -2030,2,19,9,0.27398,0.62418,0.28682,0.28682 -2030,2,19,10,0.27398,0.62418,0.28682,0.28682 -2030,2,19,11,0.26114,0.60352,0.28682,0.27398 -2030,2,19,12,0.27398,0.60352,0.3125,0.28682 -2030,2,19,13,0.29966,0.62418,0.3125,0.3125 -2030,2,19,14,0.3566,0.6655,0.3419,0.3419 -2030,2,19,15,0.386,0.6655,0.386,0.386 -2030,2,19,16,0.4691,0.68824,0.41924,0.41924 -2030,2,19,17,0.7484,0.71098,0.4691,0.43586 -2030,2,19,18,0.5622,0.73372,0.5622,0.5622 -2030,2,19,19,0.58286,0.73372,0.7484,0.7484 -2030,2,19,20,0.8415,0.71098,0.4691,0.5622 -2030,2,19,21,0.5622,0.6655,0.4691,0.6553 -2030,2,19,22,0.45248,0.6655,0.45248,0.4691 -2030,2,19,23,0.41924,0.64484,0.45248,0.41924 -2030,2,19,24,0.40262,0.64484,0.41924,0.40262 -2030,2,20,1,0.386,0.62418,0.386,0.40262 -2030,2,20,2,0.3566,0.62418,0.386,0.386 -2030,2,20,3,0.3272,0.62418,0.3566,0.3713 -2030,2,20,4,0.3125,0.60352,0.3566,0.3566 -2030,2,20,5,0.29966,0.64484,0.3419,0.3272 -2030,2,20,6,0.29966,0.62418,0.3419,0.3272 -2030,2,20,7,0.29966,0.60352,0.3272,0.3125 -2030,2,20,8,0.29966,0.64484,0.3125,0.29966 -2030,2,20,9,0.27398,0.62418,0.28682,0.28682 -2030,2,20,10,0.27398,0.62418,0.28682,0.28682 -2030,2,20,11,0.26114,0.60352,0.28682,0.27398 -2030,2,20,12,0.27398,0.60352,0.3125,0.28682 -2030,2,20,13,0.29966,0.62418,0.3125,0.3125 -2030,2,20,14,0.3566,0.6655,0.3419,0.3419 -2030,2,20,15,0.386,0.6655,0.386,0.386 -2030,2,20,16,0.4691,0.68824,0.41924,0.41924 -2030,2,20,17,0.7484,0.71098,0.4691,0.43586 -2030,2,20,18,0.5622,0.73372,0.5622,0.5622 -2030,2,20,19,0.58286,0.73372,0.7484,0.7484 -2030,2,20,20,0.8415,0.71098,0.4691,0.5622 -2030,2,20,21,0.5622,0.6655,0.4691,0.6553 -2030,2,20,22,0.45248,0.6655,0.45248,0.4691 -2030,2,20,23,0.41924,0.64484,0.45248,0.41924 -2030,2,20,24,0.40262,0.64484,0.41924,0.40262 -2030,2,21,1,0.386,0.62418,0.386,0.40262 -2030,2,21,2,0.3566,0.62418,0.386,0.386 -2030,2,21,3,0.3272,0.62418,0.3566,0.3713 -2030,2,21,4,0.3125,0.60352,0.3566,0.3566 -2030,2,21,5,0.29966,0.64484,0.3419,0.3272 -2030,2,21,6,0.29966,0.62418,0.3419,0.3272 -2030,2,21,7,0.29966,0.60352,0.3272,0.3125 -2030,2,21,8,0.29966,0.64484,0.3125,0.29966 -2030,2,21,9,0.27398,0.62418,0.28682,0.28682 -2030,2,21,10,0.27398,0.62418,0.28682,0.28682 -2030,2,21,11,0.26114,0.60352,0.28682,0.27398 -2030,2,21,12,0.27398,0.60352,0.3125,0.28682 -2030,2,21,13,0.29966,0.62418,0.3125,0.3125 -2030,2,21,14,0.3566,0.6655,0.3419,0.3419 -2030,2,21,15,0.386,0.6655,0.386,0.386 -2030,2,21,16,0.4691,0.68824,0.41924,0.41924 -2030,2,21,17,0.7484,0.71098,0.4691,0.43586 -2030,2,21,18,0.5622,0.73372,0.5622,0.5622 -2030,2,21,19,0.58286,0.73372,0.7484,0.7484 -2030,2,21,20,0.8415,0.71098,0.4691,0.5622 -2030,2,21,21,0.5622,0.6655,0.4691,0.6553 -2030,2,21,22,0.45248,0.6655,0.45248,0.4691 -2030,2,21,23,0.41924,0.64484,0.45248,0.41924 -2030,2,21,24,0.40262,0.64484,0.41924,0.40262 -2030,2,22,1,0.386,0.62418,0.386,0.40262 -2030,2,22,2,0.3566,0.62418,0.386,0.386 -2030,2,22,3,0.3272,0.62418,0.3566,0.3713 -2030,2,22,4,0.3125,0.60352,0.3566,0.3566 -2030,2,22,5,0.29966,0.64484,0.3419,0.3272 -2030,2,22,6,0.29966,0.62418,0.3419,0.3272 -2030,2,22,7,0.29966,0.60352,0.3272,0.3125 -2030,2,22,8,0.29966,0.64484,0.3125,0.29966 -2030,2,22,9,0.27398,0.62418,0.28682,0.28682 -2030,2,22,10,0.27398,0.62418,0.28682,0.28682 -2030,2,22,11,0.26114,0.60352,0.28682,0.27398 -2030,2,22,12,0.27398,0.60352,0.3125,0.28682 -2030,2,22,13,0.29966,0.62418,0.3125,0.3125 -2030,2,22,14,0.3566,0.6655,0.3419,0.3419 -2030,2,22,15,0.386,0.6655,0.386,0.386 -2030,2,22,16,0.4691,0.68824,0.41924,0.41924 -2030,2,22,17,0.7484,0.71098,0.4691,0.43586 -2030,2,22,18,0.5622,0.73372,0.5622,0.5622 -2030,2,22,19,0.58286,0.73372,0.7484,0.7484 -2030,2,22,20,0.8415,0.71098,0.4691,0.5622 -2030,2,22,21,0.5622,0.6655,0.4691,0.6553 -2030,2,22,22,0.45248,0.6655,0.45248,0.4691 -2030,2,22,23,0.41924,0.64484,0.45248,0.41924 -2030,2,22,24,0.40262,0.64484,0.41924,0.40262 -2030,2,23,1,0.386,0.62418,0.386,0.40262 -2030,2,23,2,0.3566,0.62418,0.386,0.386 -2030,2,23,3,0.3272,0.62418,0.3566,0.3713 -2030,2,23,4,0.3125,0.60352,0.3566,0.3566 -2030,2,23,5,0.29966,0.64484,0.3419,0.3272 -2030,2,23,6,0.29966,0.62418,0.3419,0.3272 -2030,2,23,7,0.29966,0.60352,0.3272,0.3125 -2030,2,23,8,0.29966,0.64484,0.3125,0.29966 -2030,2,23,9,0.27398,0.62418,0.28682,0.28682 -2030,2,23,10,0.27398,0.62418,0.28682,0.28682 -2030,2,23,11,0.26114,0.60352,0.28682,0.27398 -2030,2,23,12,0.27398,0.60352,0.3125,0.28682 -2030,2,23,13,0.29966,0.62418,0.3125,0.3125 -2030,2,23,14,0.3566,0.6655,0.3419,0.3419 -2030,2,23,15,0.386,0.6655,0.386,0.386 -2030,2,23,16,0.4691,0.68824,0.41924,0.41924 -2030,2,23,17,0.7484,0.71098,0.4691,0.43586 -2030,2,23,18,0.5622,0.73372,0.5622,0.5622 -2030,2,23,19,0.58286,0.73372,0.7484,0.7484 -2030,2,23,20,0.8415,0.71098,0.4691,0.5622 -2030,2,23,21,0.5622,0.6655,0.4691,0.6553 -2030,2,23,22,0.45248,0.6655,0.45248,0.4691 -2030,2,23,23,0.41924,0.64484,0.45248,0.41924 -2030,2,23,24,0.40262,0.64484,0.41924,0.40262 -2030,2,24,1,0.386,0.62418,0.386,0.40262 -2030,2,24,2,0.3566,0.62418,0.386,0.386 -2030,2,24,3,0.3272,0.62418,0.3566,0.3713 -2030,2,24,4,0.3125,0.60352,0.3566,0.3566 -2030,2,24,5,0.29966,0.64484,0.3419,0.3272 -2030,2,24,6,0.29966,0.62418,0.3419,0.3272 -2030,2,24,7,0.29966,0.60352,0.3272,0.3125 -2030,2,24,8,0.29966,0.64484,0.3125,0.29966 -2030,2,24,9,0.27398,0.62418,0.28682,0.28682 -2030,2,24,10,0.27398,0.62418,0.28682,0.28682 -2030,2,24,11,0.26114,0.60352,0.28682,0.27398 -2030,2,24,12,0.27398,0.60352,0.3125,0.28682 -2030,2,24,13,0.29966,0.62418,0.3125,0.3125 -2030,2,24,14,0.3566,0.6655,0.3419,0.3419 -2030,2,24,15,0.386,0.6655,0.386,0.386 -2030,2,24,16,0.4691,0.68824,0.41924,0.41924 -2030,2,24,17,0.7484,0.71098,0.4691,0.43586 -2030,2,24,18,0.5622,0.73372,0.5622,0.5622 -2030,2,24,19,0.58286,0.73372,0.7484,0.7484 -2030,2,24,20,0.8415,0.71098,0.4691,0.5622 -2030,2,24,21,0.5622,0.6655,0.4691,0.6553 -2030,2,24,22,0.45248,0.6655,0.45248,0.4691 -2030,2,24,23,0.41924,0.64484,0.45248,0.41924 -2030,2,24,24,0.40262,0.64484,0.41924,0.40262 -2030,2,25,1,0.386,0.62418,0.386,0.40262 -2030,2,25,2,0.3566,0.62418,0.386,0.386 -2030,2,25,3,0.3272,0.62418,0.3566,0.3713 -2030,2,25,4,0.3125,0.60352,0.3566,0.3566 -2030,2,25,5,0.29966,0.64484,0.3419,0.3272 -2030,2,25,6,0.29966,0.62418,0.3419,0.3272 -2030,2,25,7,0.29966,0.60352,0.3272,0.3125 -2030,2,25,8,0.29966,0.64484,0.3125,0.29966 -2030,2,25,9,0.27398,0.62418,0.28682,0.28682 -2030,2,25,10,0.27398,0.62418,0.28682,0.28682 -2030,2,25,11,0.26114,0.60352,0.28682,0.27398 -2030,2,25,12,0.27398,0.60352,0.3125,0.28682 -2030,2,25,13,0.29966,0.62418,0.3125,0.3125 -2030,2,25,14,0.3566,0.6655,0.3419,0.3419 -2030,2,25,15,0.386,0.6655,0.386,0.386 -2030,2,25,16,0.4691,0.68824,0.41924,0.41924 -2030,2,25,17,0.7484,0.71098,0.4691,0.43586 -2030,2,25,18,0.5622,0.73372,0.5622,0.5622 -2030,2,25,19,0.58286,0.73372,0.7484,0.7484 -2030,2,25,20,0.8415,0.71098,0.4691,0.5622 -2030,2,25,21,0.5622,0.6655,0.4691,0.6553 -2030,2,25,22,0.45248,0.6655,0.45248,0.4691 -2030,2,25,23,0.41924,0.64484,0.45248,0.41924 -2030,2,25,24,0.40262,0.64484,0.41924,0.40262 -2030,2,26,1,0.386,0.62418,0.386,0.40262 -2030,2,26,2,0.3566,0.62418,0.386,0.386 -2030,2,26,3,0.3272,0.62418,0.3566,0.3713 -2030,2,26,4,0.3125,0.60352,0.3566,0.3566 -2030,2,26,5,0.29966,0.64484,0.3419,0.3272 -2030,2,26,6,0.29966,0.62418,0.3419,0.3272 -2030,2,26,7,0.29966,0.60352,0.3272,0.3125 -2030,2,26,8,0.29966,0.64484,0.3125,0.29966 -2030,2,26,9,0.27398,0.62418,0.28682,0.28682 -2030,2,26,10,0.27398,0.62418,0.28682,0.28682 -2030,2,26,11,0.26114,0.60352,0.28682,0.27398 -2030,2,26,12,0.27398,0.60352,0.3125,0.28682 -2030,2,26,13,0.29966,0.62418,0.3125,0.3125 -2030,2,26,14,0.3566,0.6655,0.3419,0.3419 -2030,2,26,15,0.386,0.6655,0.386,0.386 -2030,2,26,16,0.4691,0.68824,0.41924,0.41924 -2030,2,26,17,0.7484,0.71098,0.4691,0.43586 -2030,2,26,18,0.5622,0.73372,0.5622,0.5622 -2030,2,26,19,0.58286,0.73372,0.7484,0.7484 -2030,2,26,20,0.8415,0.71098,0.4691,0.5622 -2030,2,26,21,0.5622,0.6655,0.4691,0.6553 -2030,2,26,22,0.45248,0.6655,0.45248,0.4691 -2030,2,26,23,0.41924,0.64484,0.45248,0.41924 -2030,2,26,24,0.40262,0.64484,0.41924,0.40262 -2030,2,27,1,0.386,0.62418,0.386,0.40262 -2030,2,27,2,0.3566,0.62418,0.386,0.386 -2030,2,27,3,0.3272,0.62418,0.3566,0.3713 -2030,2,27,4,0.3125,0.60352,0.3566,0.3566 -2030,2,27,5,0.29966,0.64484,0.3419,0.3272 -2030,2,27,6,0.29966,0.62418,0.3419,0.3272 -2030,2,27,7,0.29966,0.60352,0.3272,0.3125 -2030,2,27,8,0.29966,0.64484,0.3125,0.29966 -2030,2,27,9,0.27398,0.62418,0.28682,0.28682 -2030,2,27,10,0.27398,0.62418,0.28682,0.28682 -2030,2,27,11,0.26114,0.60352,0.28682,0.27398 -2030,2,27,12,0.27398,0.60352,0.3125,0.28682 -2030,2,27,13,0.29966,0.62418,0.3125,0.3125 -2030,2,27,14,0.3566,0.6655,0.3419,0.3419 -2030,2,27,15,0.386,0.6655,0.386,0.386 -2030,2,27,16,0.4691,0.68824,0.41924,0.41924 -2030,2,27,17,0.7484,0.71098,0.4691,0.43586 -2030,2,27,18,0.5622,0.73372,0.5622,0.5622 -2030,2,27,19,0.58286,0.73372,0.7484,0.7484 -2030,2,27,20,0.8415,0.71098,0.4691,0.5622 -2030,2,27,21,0.5622,0.6655,0.4691,0.6553 -2030,2,27,22,0.45248,0.6655,0.45248,0.4691 -2030,2,27,23,0.41924,0.64484,0.45248,0.41924 -2030,2,27,24,0.40262,0.64484,0.41924,0.40262 -2030,2,28,1,0.386,0.62418,0.386,0.40262 -2030,2,28,2,0.3566,0.62418,0.386,0.386 -2030,2,28,3,0.3272,0.62418,0.3566,0.3713 -2030,2,28,4,0.3125,0.60352,0.3566,0.3566 -2030,2,28,5,0.29966,0.64484,0.3419,0.3272 -2030,2,28,6,0.29966,0.62418,0.3419,0.3272 -2030,2,28,7,0.29966,0.60352,0.3272,0.3125 -2030,2,28,8,0.29966,0.64484,0.3125,0.29966 -2030,2,28,9,0.27398,0.62418,0.28682,0.28682 -2030,2,28,10,0.27398,0.62418,0.28682,0.28682 -2030,2,28,11,0.26114,0.60352,0.28682,0.27398 -2030,2,28,12,0.27398,0.60352,0.3125,0.28682 -2030,2,28,13,0.29966,0.62418,0.3125,0.3125 -2030,2,28,14,0.3566,0.6655,0.3419,0.3419 -2030,2,28,15,0.386,0.6655,0.386,0.386 -2030,2,28,16,0.4691,0.68824,0.41924,0.41924 -2030,2,28,17,0.7484,0.71098,0.4691,0.43586 -2030,2,28,18,0.5622,0.73372,0.5622,0.5622 -2030,2,28,19,0.58286,0.73372,0.7484,0.7484 -2030,2,28,20,0.8415,0.71098,0.4691,0.5622 -2030,2,28,21,0.5622,0.6655,0.4691,0.6553 -2030,2,28,22,0.45248,0.6655,0.45248,0.4691 -2030,2,28,23,0.41924,0.64484,0.45248,0.41924 -2030,2,28,24,0.40262,0.64484,0.41924,0.40262 -2030,3,1,1,0.5622,0.73372,0.62418,0.68824 -2030,3,1,2,0.7484,0.71098,0.5622,0.62418 -2030,3,1,3,0.5622,0.71098,0.6553,0.58286 -2030,3,1,4,0.45248,0.68824,0.5622,0.7484 -2030,3,1,5,0.43586,0.71098,0.4691,0.5622 -2030,3,1,6,0.40262,0.64484,0.45248,0.4691 -2030,3,1,7,0.40262,0.6655,0.45248,0.45248 -2030,3,1,8,0.386,0.64484,0.45248,0.43586 -2030,3,1,9,0.3713,0.6655,0.43586,0.43586 -2030,3,1,10,0.3713,0.64484,0.41924,0.45248 -2030,3,1,11,0.386,0.64484,0.43586,0.45248 -2030,3,1,12,0.41924,0.6655,0.43586,0.45248 -2030,3,1,13,0.45248,0.6655,0.4691,0.4691 -2030,3,1,14,0.8415,0.71098,0.6553,0.6553 -2030,3,1,15,0.64484,0.7792,0.5622,0.58286 -2030,3,1,16,0.71098,0.7792,0.64484,0.64484 -2030,3,1,17,0.7792,0.7792,0.68824,0.71098 -2030,3,1,18,0.84316,0.80052,0.73372,0.7792 -2030,3,1,19,0.84316,0.75646,0.7792,0.82184 -2030,3,1,20,0.82184,0.71098,0.80052,0.84316 -2030,3,1,21,0.80052,0.73372,0.80052,0.86448 -2030,3,1,22,0.73372,0.75646,0.7792,0.84316 -2030,3,1,23,0.68824,0.75646,0.73372,0.80052 -2030,3,1,24,0.60352,0.75646,0.68824,0.7792 -2030,3,2,1,0.5622,0.73372,0.62418,0.68824 -2030,3,2,2,0.7484,0.71098,0.5622,0.62418 -2030,3,2,3,0.5622,0.71098,0.6553,0.58286 -2030,3,2,4,0.45248,0.68824,0.5622,0.7484 -2030,3,2,5,0.43586,0.71098,0.4691,0.5622 -2030,3,2,6,0.40262,0.64484,0.45248,0.4691 -2030,3,2,7,0.40262,0.6655,0.45248,0.45248 -2030,3,2,8,0.386,0.64484,0.45248,0.43586 -2030,3,2,9,0.3713,0.6655,0.43586,0.43586 -2030,3,2,10,0.3713,0.64484,0.41924,0.45248 -2030,3,2,11,0.386,0.64484,0.43586,0.45248 -2030,3,2,12,0.41924,0.6655,0.43586,0.45248 -2030,3,2,13,0.45248,0.6655,0.4691,0.4691 -2030,3,2,14,0.8415,0.71098,0.6553,0.6553 -2030,3,2,15,0.64484,0.7792,0.5622,0.58286 -2030,3,2,16,0.71098,0.7792,0.64484,0.64484 -2030,3,2,17,0.7792,0.7792,0.68824,0.71098 -2030,3,2,18,0.84316,0.80052,0.73372,0.7792 -2030,3,2,19,0.84316,0.75646,0.7792,0.82184 -2030,3,2,20,0.82184,0.71098,0.80052,0.84316 -2030,3,2,21,0.80052,0.73372,0.80052,0.86448 -2030,3,2,22,0.73372,0.75646,0.7792,0.84316 -2030,3,2,23,0.68824,0.75646,0.73372,0.80052 -2030,3,2,24,0.60352,0.75646,0.68824,0.7792 -2030,3,3,1,0.5622,0.73372,0.62418,0.68824 -2030,3,3,2,0.7484,0.71098,0.5622,0.62418 -2030,3,3,3,0.5622,0.71098,0.6553,0.58286 -2030,3,3,4,0.45248,0.68824,0.5622,0.7484 -2030,3,3,5,0.43586,0.71098,0.4691,0.5622 -2030,3,3,6,0.40262,0.64484,0.45248,0.4691 -2030,3,3,7,0.40262,0.6655,0.45248,0.45248 -2030,3,3,8,0.386,0.64484,0.45248,0.43586 -2030,3,3,9,0.3713,0.6655,0.43586,0.43586 -2030,3,3,10,0.3713,0.64484,0.41924,0.45248 -2030,3,3,11,0.386,0.64484,0.43586,0.45248 -2030,3,3,12,0.41924,0.6655,0.43586,0.45248 -2030,3,3,13,0.45248,0.6655,0.4691,0.4691 -2030,3,3,14,0.8415,0.71098,0.6553,0.6553 -2030,3,3,15,0.64484,0.7792,0.5622,0.58286 -2030,3,3,16,0.71098,0.7792,0.64484,0.64484 -2030,3,3,17,0.7792,0.7792,0.68824,0.71098 -2030,3,3,18,0.84316,0.80052,0.73372,0.7792 -2030,3,3,19,0.84316,0.75646,0.7792,0.82184 -2030,3,3,20,0.82184,0.71098,0.80052,0.84316 -2030,3,3,21,0.80052,0.73372,0.80052,0.86448 -2030,3,3,22,0.73372,0.75646,0.7792,0.84316 -2030,3,3,23,0.68824,0.75646,0.73372,0.80052 -2030,3,3,24,0.60352,0.75646,0.68824,0.7792 -2030,3,4,1,0.5622,0.73372,0.62418,0.68824 -2030,3,4,2,0.7484,0.71098,0.5622,0.62418 -2030,3,4,3,0.5622,0.71098,0.6553,0.58286 -2030,3,4,4,0.45248,0.68824,0.5622,0.7484 -2030,3,4,5,0.43586,0.71098,0.4691,0.5622 -2030,3,4,6,0.40262,0.64484,0.45248,0.4691 -2030,3,4,7,0.40262,0.6655,0.45248,0.45248 -2030,3,4,8,0.386,0.64484,0.45248,0.43586 -2030,3,4,9,0.3713,0.6655,0.43586,0.43586 -2030,3,4,10,0.3713,0.64484,0.41924,0.45248 -2030,3,4,11,0.386,0.64484,0.43586,0.45248 -2030,3,4,12,0.41924,0.6655,0.43586,0.45248 -2030,3,4,13,0.45248,0.6655,0.4691,0.4691 -2030,3,4,14,0.8415,0.71098,0.6553,0.6553 -2030,3,4,15,0.64484,0.7792,0.5622,0.58286 -2030,3,4,16,0.71098,0.7792,0.64484,0.64484 -2030,3,4,17,0.7792,0.7792,0.68824,0.71098 -2030,3,4,18,0.84316,0.80052,0.73372,0.7792 -2030,3,4,19,0.84316,0.75646,0.7792,0.82184 -2030,3,4,20,0.82184,0.71098,0.80052,0.84316 -2030,3,4,21,0.80052,0.73372,0.80052,0.86448 -2030,3,4,22,0.73372,0.75646,0.7792,0.84316 -2030,3,4,23,0.68824,0.75646,0.73372,0.80052 -2030,3,4,24,0.60352,0.75646,0.68824,0.7792 -2030,3,5,1,0.5622,0.73372,0.62418,0.68824 -2030,3,5,2,0.7484,0.71098,0.5622,0.62418 -2030,3,5,3,0.5622,0.71098,0.6553,0.58286 -2030,3,5,4,0.45248,0.68824,0.5622,0.7484 -2030,3,5,5,0.43586,0.71098,0.4691,0.5622 -2030,3,5,6,0.40262,0.64484,0.45248,0.4691 -2030,3,5,7,0.40262,0.6655,0.45248,0.45248 -2030,3,5,8,0.386,0.64484,0.45248,0.43586 -2030,3,5,9,0.3713,0.6655,0.43586,0.43586 -2030,3,5,10,0.3713,0.64484,0.41924,0.45248 -2030,3,5,11,0.386,0.64484,0.43586,0.45248 -2030,3,5,12,0.41924,0.6655,0.43586,0.45248 -2030,3,5,13,0.45248,0.6655,0.4691,0.4691 -2030,3,5,14,0.8415,0.71098,0.6553,0.6553 -2030,3,5,15,0.64484,0.7792,0.5622,0.58286 -2030,3,5,16,0.71098,0.7792,0.64484,0.64484 -2030,3,5,17,0.7792,0.7792,0.68824,0.71098 -2030,3,5,18,0.84316,0.80052,0.73372,0.7792 -2030,3,5,19,0.84316,0.75646,0.7792,0.82184 -2030,3,5,20,0.82184,0.71098,0.80052,0.84316 -2030,3,5,21,0.80052,0.73372,0.80052,0.86448 -2030,3,5,22,0.73372,0.75646,0.7792,0.84316 -2030,3,5,23,0.68824,0.75646,0.73372,0.80052 -2030,3,5,24,0.60352,0.75646,0.68824,0.7792 -2030,3,6,1,0.5622,0.73372,0.62418,0.68824 -2030,3,6,2,0.7484,0.71098,0.5622,0.62418 -2030,3,6,3,0.5622,0.71098,0.6553,0.58286 -2030,3,6,4,0.45248,0.68824,0.5622,0.7484 -2030,3,6,5,0.43586,0.71098,0.4691,0.5622 -2030,3,6,6,0.40262,0.64484,0.45248,0.4691 -2030,3,6,7,0.40262,0.6655,0.45248,0.45248 -2030,3,6,8,0.386,0.64484,0.45248,0.43586 -2030,3,6,9,0.3713,0.6655,0.43586,0.43586 -2030,3,6,10,0.3713,0.64484,0.41924,0.45248 -2030,3,6,11,0.386,0.64484,0.43586,0.45248 -2030,3,6,12,0.41924,0.6655,0.43586,0.45248 -2030,3,6,13,0.45248,0.6655,0.4691,0.4691 -2030,3,6,14,0.8415,0.71098,0.6553,0.6553 -2030,3,6,15,0.64484,0.7792,0.5622,0.58286 -2030,3,6,16,0.71098,0.7792,0.64484,0.64484 -2030,3,6,17,0.7792,0.7792,0.68824,0.71098 -2030,3,6,18,0.84316,0.80052,0.73372,0.7792 -2030,3,6,19,0.84316,0.75646,0.7792,0.82184 -2030,3,6,20,0.82184,0.71098,0.80052,0.84316 -2030,3,6,21,0.80052,0.73372,0.80052,0.86448 -2030,3,6,22,0.73372,0.75646,0.7792,0.84316 -2030,3,6,23,0.68824,0.75646,0.73372,0.80052 -2030,3,6,24,0.60352,0.75646,0.68824,0.7792 -2030,3,7,1,0.5622,0.73372,0.62418,0.68824 -2030,3,7,2,0.7484,0.71098,0.5622,0.62418 -2030,3,7,3,0.5622,0.71098,0.6553,0.58286 -2030,3,7,4,0.45248,0.68824,0.5622,0.7484 -2030,3,7,5,0.43586,0.71098,0.4691,0.5622 -2030,3,7,6,0.40262,0.64484,0.45248,0.4691 -2030,3,7,7,0.40262,0.6655,0.45248,0.45248 -2030,3,7,8,0.386,0.64484,0.45248,0.43586 -2030,3,7,9,0.3713,0.6655,0.43586,0.43586 -2030,3,7,10,0.3713,0.64484,0.41924,0.45248 -2030,3,7,11,0.386,0.64484,0.43586,0.45248 -2030,3,7,12,0.41924,0.6655,0.43586,0.45248 -2030,3,7,13,0.45248,0.6655,0.4691,0.4691 -2030,3,7,14,0.8415,0.71098,0.6553,0.6553 -2030,3,7,15,0.64484,0.7792,0.5622,0.58286 -2030,3,7,16,0.71098,0.7792,0.64484,0.64484 -2030,3,7,17,0.7792,0.7792,0.68824,0.71098 -2030,3,7,18,0.84316,0.80052,0.73372,0.7792 -2030,3,7,19,0.84316,0.75646,0.7792,0.82184 -2030,3,7,20,0.82184,0.71098,0.80052,0.84316 -2030,3,7,21,0.80052,0.73372,0.80052,0.86448 -2030,3,7,22,0.73372,0.75646,0.7792,0.84316 -2030,3,7,23,0.68824,0.75646,0.73372,0.80052 -2030,3,7,24,0.60352,0.75646,0.68824,0.7792 -2030,3,8,1,0.5622,0.73372,0.62418,0.68824 -2030,3,8,2,0.7484,0.71098,0.5622,0.62418 -2030,3,8,3,0.5622,0.71098,0.6553,0.58286 -2030,3,8,4,0.45248,0.68824,0.5622,0.7484 -2030,3,8,5,0.43586,0.71098,0.4691,0.5622 -2030,3,8,6,0.40262,0.64484,0.45248,0.4691 -2030,3,8,7,0.40262,0.6655,0.45248,0.45248 -2030,3,8,8,0.386,0.64484,0.45248,0.43586 -2030,3,8,9,0.3713,0.6655,0.43586,0.43586 -2030,3,8,10,0.3713,0.64484,0.41924,0.45248 -2030,3,8,11,0.386,0.64484,0.43586,0.45248 -2030,3,8,12,0.41924,0.6655,0.43586,0.45248 -2030,3,8,13,0.45248,0.6655,0.4691,0.4691 -2030,3,8,14,0.8415,0.71098,0.6553,0.6553 -2030,3,8,15,0.64484,0.7792,0.5622,0.58286 -2030,3,8,16,0.71098,0.7792,0.64484,0.64484 -2030,3,8,17,0.7792,0.7792,0.68824,0.71098 -2030,3,8,18,0.84316,0.80052,0.73372,0.7792 -2030,3,8,19,0.84316,0.75646,0.7792,0.82184 -2030,3,8,20,0.82184,0.71098,0.80052,0.84316 -2030,3,8,21,0.80052,0.73372,0.80052,0.86448 -2030,3,8,22,0.73372,0.75646,0.7792,0.84316 -2030,3,8,23,0.68824,0.75646,0.73372,0.80052 -2030,3,8,24,0.60352,0.75646,0.68824,0.7792 -2030,3,9,1,0.5622,0.73372,0.62418,0.68824 -2030,3,9,2,0.7484,0.71098,0.5622,0.62418 -2030,3,9,3,0.5622,0.71098,0.6553,0.58286 -2030,3,9,4,0.45248,0.68824,0.5622,0.7484 -2030,3,9,5,0.43586,0.71098,0.4691,0.5622 -2030,3,9,6,0.40262,0.64484,0.45248,0.4691 -2030,3,9,7,0.40262,0.6655,0.45248,0.45248 -2030,3,9,8,0.386,0.64484,0.45248,0.43586 -2030,3,9,9,0.3713,0.6655,0.43586,0.43586 -2030,3,9,10,0.3713,0.64484,0.41924,0.45248 -2030,3,9,11,0.386,0.64484,0.43586,0.45248 -2030,3,9,12,0.41924,0.6655,0.43586,0.45248 -2030,3,9,13,0.45248,0.6655,0.4691,0.4691 -2030,3,9,14,0.8415,0.71098,0.6553,0.6553 -2030,3,9,15,0.64484,0.7792,0.5622,0.58286 -2030,3,9,16,0.71098,0.7792,0.64484,0.64484 -2030,3,9,17,0.7792,0.7792,0.68824,0.71098 -2030,3,9,18,0.84316,0.80052,0.73372,0.7792 -2030,3,9,19,0.84316,0.75646,0.7792,0.82184 -2030,3,9,20,0.82184,0.71098,0.80052,0.84316 -2030,3,9,21,0.80052,0.73372,0.80052,0.86448 -2030,3,9,22,0.73372,0.75646,0.7792,0.84316 -2030,3,9,23,0.68824,0.75646,0.73372,0.80052 -2030,3,9,24,0.60352,0.75646,0.68824,0.7792 -2030,3,10,1,0.5622,0.73372,0.62418,0.68824 -2030,3,10,2,0.7484,0.71098,0.5622,0.62418 -2030,3,10,3,0.5622,0.71098,0.6553,0.58286 -2030,3,10,4,0.45248,0.68824,0.5622,0.7484 -2030,3,10,5,0.43586,0.71098,0.4691,0.5622 -2030,3,10,6,0.40262,0.64484,0.45248,0.4691 -2030,3,10,7,0.40262,0.6655,0.45248,0.45248 -2030,3,10,8,0.386,0.64484,0.45248,0.43586 -2030,3,10,9,0.3713,0.6655,0.43586,0.43586 -2030,3,10,10,0.3713,0.64484,0.41924,0.45248 -2030,3,10,11,0.386,0.64484,0.43586,0.45248 -2030,3,10,12,0.41924,0.6655,0.43586,0.45248 -2030,3,10,13,0.45248,0.6655,0.4691,0.4691 -2030,3,10,14,0.8415,0.71098,0.6553,0.6553 -2030,3,10,15,0.64484,0.7792,0.5622,0.58286 -2030,3,10,16,0.71098,0.7792,0.64484,0.64484 -2030,3,10,17,0.7792,0.7792,0.68824,0.71098 -2030,3,10,18,0.84316,0.80052,0.73372,0.7792 -2030,3,10,19,0.84316,0.75646,0.7792,0.82184 -2030,3,10,20,0.82184,0.71098,0.80052,0.84316 -2030,3,10,21,0.80052,0.73372,0.80052,0.86448 -2030,3,10,22,0.73372,0.75646,0.7792,0.84316 -2030,3,10,23,0.68824,0.75646,0.73372,0.80052 -2030,3,10,24,0.60352,0.75646,0.68824,0.7792 -2030,3,11,1,0.5622,0.73372,0.62418,0.68824 -2030,3,11,2,0.7484,0.71098,0.5622,0.62418 -2030,3,11,3,0.5622,0.71098,0.6553,0.58286 -2030,3,11,4,0.45248,0.68824,0.5622,0.7484 -2030,3,11,5,0.43586,0.71098,0.4691,0.5622 -2030,3,11,6,0.40262,0.64484,0.45248,0.4691 -2030,3,11,7,0.40262,0.6655,0.45248,0.45248 -2030,3,11,8,0.386,0.64484,0.45248,0.43586 -2030,3,11,9,0.3713,0.6655,0.43586,0.43586 -2030,3,11,10,0.3713,0.64484,0.41924,0.45248 -2030,3,11,11,0.386,0.64484,0.43586,0.45248 -2030,3,11,12,0.41924,0.6655,0.43586,0.45248 -2030,3,11,13,0.45248,0.6655,0.4691,0.4691 -2030,3,11,14,0.8415,0.71098,0.6553,0.6553 -2030,3,11,15,0.64484,0.7792,0.5622,0.58286 -2030,3,11,16,0.71098,0.7792,0.64484,0.64484 -2030,3,11,17,0.7792,0.7792,0.68824,0.71098 -2030,3,11,18,0.84316,0.80052,0.73372,0.7792 -2030,3,11,19,0.84316,0.75646,0.7792,0.82184 -2030,3,11,20,0.82184,0.71098,0.80052,0.84316 -2030,3,11,21,0.80052,0.73372,0.80052,0.86448 -2030,3,11,22,0.73372,0.75646,0.7792,0.84316 -2030,3,11,23,0.68824,0.75646,0.73372,0.80052 -2030,3,11,24,0.60352,0.75646,0.68824,0.7792 -2030,3,12,1,0.5622,0.73372,0.62418,0.68824 -2030,3,12,2,0.7484,0.71098,0.5622,0.62418 -2030,3,12,3,0.5622,0.71098,0.6553,0.58286 -2030,3,12,4,0.45248,0.68824,0.5622,0.7484 -2030,3,12,5,0.43586,0.71098,0.4691,0.5622 -2030,3,12,6,0.40262,0.64484,0.45248,0.4691 -2030,3,12,7,0.40262,0.6655,0.45248,0.45248 -2030,3,12,8,0.386,0.64484,0.45248,0.43586 -2030,3,12,9,0.3713,0.6655,0.43586,0.43586 -2030,3,12,10,0.3713,0.64484,0.41924,0.45248 -2030,3,12,11,0.386,0.64484,0.43586,0.45248 -2030,3,12,12,0.41924,0.6655,0.43586,0.45248 -2030,3,12,13,0.45248,0.6655,0.4691,0.4691 -2030,3,12,14,0.8415,0.71098,0.6553,0.6553 -2030,3,12,15,0.64484,0.7792,0.5622,0.58286 -2030,3,12,16,0.71098,0.7792,0.64484,0.64484 -2030,3,12,17,0.7792,0.7792,0.68824,0.71098 -2030,3,12,18,0.84316,0.80052,0.73372,0.7792 -2030,3,12,19,0.84316,0.75646,0.7792,0.82184 -2030,3,12,20,0.82184,0.71098,0.80052,0.84316 -2030,3,12,21,0.80052,0.73372,0.80052,0.86448 -2030,3,12,22,0.73372,0.75646,0.7792,0.84316 -2030,3,12,23,0.68824,0.75646,0.73372,0.80052 -2030,3,12,24,0.60352,0.75646,0.68824,0.7792 -2030,3,13,1,0.5622,0.73372,0.62418,0.68824 -2030,3,13,2,0.7484,0.71098,0.5622,0.62418 -2030,3,13,3,0.5622,0.71098,0.6553,0.58286 -2030,3,13,4,0.45248,0.68824,0.5622,0.7484 -2030,3,13,5,0.43586,0.71098,0.4691,0.5622 -2030,3,13,6,0.40262,0.64484,0.45248,0.4691 -2030,3,13,7,0.40262,0.6655,0.45248,0.45248 -2030,3,13,8,0.386,0.64484,0.45248,0.43586 -2030,3,13,9,0.3713,0.6655,0.43586,0.43586 -2030,3,13,10,0.3713,0.64484,0.41924,0.45248 -2030,3,13,11,0.386,0.64484,0.43586,0.45248 -2030,3,13,12,0.41924,0.6655,0.43586,0.45248 -2030,3,13,13,0.45248,0.6655,0.4691,0.4691 -2030,3,13,14,0.8415,0.71098,0.6553,0.6553 -2030,3,13,15,0.64484,0.7792,0.5622,0.58286 -2030,3,13,16,0.71098,0.7792,0.64484,0.64484 -2030,3,13,17,0.7792,0.7792,0.68824,0.71098 -2030,3,13,18,0.84316,0.80052,0.73372,0.7792 -2030,3,13,19,0.84316,0.75646,0.7792,0.82184 -2030,3,13,20,0.82184,0.71098,0.80052,0.84316 -2030,3,13,21,0.80052,0.73372,0.80052,0.86448 -2030,3,13,22,0.73372,0.75646,0.7792,0.84316 -2030,3,13,23,0.68824,0.75646,0.73372,0.80052 -2030,3,13,24,0.60352,0.75646,0.68824,0.7792 -2030,3,14,1,0.5622,0.73372,0.62418,0.68824 -2030,3,14,2,0.7484,0.71098,0.5622,0.62418 -2030,3,14,3,0.5622,0.71098,0.6553,0.58286 -2030,3,14,4,0.45248,0.68824,0.5622,0.7484 -2030,3,14,5,0.43586,0.71098,0.4691,0.5622 -2030,3,14,6,0.40262,0.64484,0.45248,0.4691 -2030,3,14,7,0.40262,0.6655,0.45248,0.45248 -2030,3,14,8,0.386,0.64484,0.45248,0.43586 -2030,3,14,9,0.3713,0.6655,0.43586,0.43586 -2030,3,14,10,0.3713,0.64484,0.41924,0.45248 -2030,3,14,11,0.386,0.64484,0.43586,0.45248 -2030,3,14,12,0.41924,0.6655,0.43586,0.45248 -2030,3,14,13,0.45248,0.6655,0.4691,0.4691 -2030,3,14,14,0.8415,0.71098,0.6553,0.6553 -2030,3,14,15,0.64484,0.7792,0.5622,0.58286 -2030,3,14,16,0.71098,0.7792,0.64484,0.64484 -2030,3,14,17,0.7792,0.7792,0.68824,0.71098 -2030,3,14,18,0.84316,0.80052,0.73372,0.7792 -2030,3,14,19,0.84316,0.75646,0.7792,0.82184 -2030,3,14,20,0.82184,0.71098,0.80052,0.84316 -2030,3,14,21,0.80052,0.73372,0.80052,0.86448 -2030,3,14,22,0.73372,0.75646,0.7792,0.84316 -2030,3,14,23,0.68824,0.75646,0.73372,0.80052 -2030,3,14,24,0.60352,0.75646,0.68824,0.7792 -2030,3,15,1,0.5622,0.73372,0.62418,0.68824 -2030,3,15,2,0.7484,0.71098,0.5622,0.62418 -2030,3,15,3,0.5622,0.71098,0.6553,0.58286 -2030,3,15,4,0.45248,0.68824,0.5622,0.7484 -2030,3,15,5,0.43586,0.71098,0.4691,0.5622 -2030,3,15,6,0.40262,0.64484,0.45248,0.4691 -2030,3,15,7,0.40262,0.6655,0.45248,0.45248 -2030,3,15,8,0.386,0.64484,0.45248,0.43586 -2030,3,15,9,0.3713,0.6655,0.43586,0.43586 -2030,3,15,10,0.3713,0.64484,0.41924,0.45248 -2030,3,15,11,0.386,0.64484,0.43586,0.45248 -2030,3,15,12,0.41924,0.6655,0.43586,0.45248 -2030,3,15,13,0.45248,0.6655,0.4691,0.4691 -2030,3,15,14,0.8415,0.71098,0.6553,0.6553 -2030,3,15,15,0.64484,0.7792,0.5622,0.58286 -2030,3,15,16,0.71098,0.7792,0.64484,0.64484 -2030,3,15,17,0.7792,0.7792,0.68824,0.71098 -2030,3,15,18,0.84316,0.80052,0.73372,0.7792 -2030,3,15,19,0.84316,0.75646,0.7792,0.82184 -2030,3,15,20,0.82184,0.71098,0.80052,0.84316 -2030,3,15,21,0.80052,0.73372,0.80052,0.86448 -2030,3,15,22,0.73372,0.75646,0.7792,0.84316 -2030,3,15,23,0.68824,0.75646,0.73372,0.80052 -2030,3,15,24,0.60352,0.75646,0.68824,0.7792 -2030,3,16,1,0.5622,0.73372,0.62418,0.68824 -2030,3,16,2,0.7484,0.71098,0.5622,0.62418 -2030,3,16,3,0.5622,0.71098,0.6553,0.58286 -2030,3,16,4,0.45248,0.68824,0.5622,0.7484 -2030,3,16,5,0.43586,0.71098,0.4691,0.5622 -2030,3,16,6,0.40262,0.64484,0.45248,0.4691 -2030,3,16,7,0.40262,0.6655,0.45248,0.45248 -2030,3,16,8,0.386,0.64484,0.45248,0.43586 -2030,3,16,9,0.3713,0.6655,0.43586,0.43586 -2030,3,16,10,0.3713,0.64484,0.41924,0.45248 -2030,3,16,11,0.386,0.64484,0.43586,0.45248 -2030,3,16,12,0.41924,0.6655,0.43586,0.45248 -2030,3,16,13,0.45248,0.6655,0.4691,0.4691 -2030,3,16,14,0.8415,0.71098,0.6553,0.6553 -2030,3,16,15,0.64484,0.7792,0.5622,0.58286 -2030,3,16,16,0.71098,0.7792,0.64484,0.64484 -2030,3,16,17,0.7792,0.7792,0.68824,0.71098 -2030,3,16,18,0.84316,0.80052,0.73372,0.7792 -2030,3,16,19,0.84316,0.75646,0.7792,0.82184 -2030,3,16,20,0.82184,0.71098,0.80052,0.84316 -2030,3,16,21,0.80052,0.73372,0.80052,0.86448 -2030,3,16,22,0.73372,0.75646,0.7792,0.84316 -2030,3,16,23,0.68824,0.75646,0.73372,0.80052 -2030,3,16,24,0.60352,0.75646,0.68824,0.7792 -2030,3,17,1,0.5622,0.73372,0.62418,0.68824 -2030,3,17,2,0.7484,0.71098,0.5622,0.62418 -2030,3,17,3,0.5622,0.71098,0.6553,0.58286 -2030,3,17,4,0.45248,0.68824,0.5622,0.7484 -2030,3,17,5,0.43586,0.71098,0.4691,0.5622 -2030,3,17,6,0.40262,0.64484,0.45248,0.4691 -2030,3,17,7,0.40262,0.6655,0.45248,0.45248 -2030,3,17,8,0.386,0.64484,0.45248,0.43586 -2030,3,17,9,0.3713,0.6655,0.43586,0.43586 -2030,3,17,10,0.3713,0.64484,0.41924,0.45248 -2030,3,17,11,0.386,0.64484,0.43586,0.45248 -2030,3,17,12,0.41924,0.6655,0.43586,0.45248 -2030,3,17,13,0.45248,0.6655,0.4691,0.4691 -2030,3,17,14,0.8415,0.71098,0.6553,0.6553 -2030,3,17,15,0.64484,0.7792,0.5622,0.58286 -2030,3,17,16,0.71098,0.7792,0.64484,0.64484 -2030,3,17,17,0.7792,0.7792,0.68824,0.71098 -2030,3,17,18,0.84316,0.80052,0.73372,0.7792 -2030,3,17,19,0.84316,0.75646,0.7792,0.82184 -2030,3,17,20,0.82184,0.71098,0.80052,0.84316 -2030,3,17,21,0.80052,0.73372,0.80052,0.86448 -2030,3,17,22,0.73372,0.75646,0.7792,0.84316 -2030,3,17,23,0.68824,0.75646,0.73372,0.80052 -2030,3,17,24,0.60352,0.75646,0.68824,0.7792 -2030,3,18,1,0.5622,0.73372,0.62418,0.68824 -2030,3,18,2,0.7484,0.71098,0.5622,0.62418 -2030,3,18,3,0.5622,0.71098,0.6553,0.58286 -2030,3,18,4,0.45248,0.68824,0.5622,0.7484 -2030,3,18,5,0.43586,0.71098,0.4691,0.5622 -2030,3,18,6,0.40262,0.64484,0.45248,0.4691 -2030,3,18,7,0.40262,0.6655,0.45248,0.45248 -2030,3,18,8,0.386,0.64484,0.45248,0.43586 -2030,3,18,9,0.3713,0.6655,0.43586,0.43586 -2030,3,18,10,0.3713,0.64484,0.41924,0.45248 -2030,3,18,11,0.386,0.64484,0.43586,0.45248 -2030,3,18,12,0.41924,0.6655,0.43586,0.45248 -2030,3,18,13,0.45248,0.6655,0.4691,0.4691 -2030,3,18,14,0.8415,0.71098,0.6553,0.6553 -2030,3,18,15,0.64484,0.7792,0.5622,0.58286 -2030,3,18,16,0.71098,0.7792,0.64484,0.64484 -2030,3,18,17,0.7792,0.7792,0.68824,0.71098 -2030,3,18,18,0.84316,0.80052,0.73372,0.7792 -2030,3,18,19,0.84316,0.75646,0.7792,0.82184 -2030,3,18,20,0.82184,0.71098,0.80052,0.84316 -2030,3,18,21,0.80052,0.73372,0.80052,0.86448 -2030,3,18,22,0.73372,0.75646,0.7792,0.84316 -2030,3,18,23,0.68824,0.75646,0.73372,0.80052 -2030,3,18,24,0.60352,0.75646,0.68824,0.7792 -2030,3,19,1,0.5622,0.73372,0.62418,0.68824 -2030,3,19,2,0.7484,0.71098,0.5622,0.62418 -2030,3,19,3,0.5622,0.71098,0.6553,0.58286 -2030,3,19,4,0.45248,0.68824,0.5622,0.7484 -2030,3,19,5,0.43586,0.71098,0.4691,0.5622 -2030,3,19,6,0.40262,0.64484,0.45248,0.4691 -2030,3,19,7,0.40262,0.6655,0.45248,0.45248 -2030,3,19,8,0.386,0.64484,0.45248,0.43586 -2030,3,19,9,0.3713,0.6655,0.43586,0.43586 -2030,3,19,10,0.3713,0.64484,0.41924,0.45248 -2030,3,19,11,0.386,0.64484,0.43586,0.45248 -2030,3,19,12,0.41924,0.6655,0.43586,0.45248 -2030,3,19,13,0.45248,0.6655,0.4691,0.4691 -2030,3,19,14,0.8415,0.71098,0.6553,0.6553 -2030,3,19,15,0.64484,0.7792,0.5622,0.58286 -2030,3,19,16,0.71098,0.7792,0.64484,0.64484 -2030,3,19,17,0.7792,0.7792,0.68824,0.71098 -2030,3,19,18,0.84316,0.80052,0.73372,0.7792 -2030,3,19,19,0.84316,0.75646,0.7792,0.82184 -2030,3,19,20,0.82184,0.71098,0.80052,0.84316 -2030,3,19,21,0.80052,0.73372,0.80052,0.86448 -2030,3,19,22,0.73372,0.75646,0.7792,0.84316 -2030,3,19,23,0.68824,0.75646,0.73372,0.80052 -2030,3,19,24,0.60352,0.75646,0.68824,0.7792 -2030,3,20,1,0.5622,0.73372,0.62418,0.68824 -2030,3,20,2,0.7484,0.71098,0.5622,0.62418 -2030,3,20,3,0.5622,0.71098,0.6553,0.58286 -2030,3,20,4,0.45248,0.68824,0.5622,0.7484 -2030,3,20,5,0.43586,0.71098,0.4691,0.5622 -2030,3,20,6,0.40262,0.64484,0.45248,0.4691 -2030,3,20,7,0.40262,0.6655,0.45248,0.45248 -2030,3,20,8,0.386,0.64484,0.45248,0.43586 -2030,3,20,9,0.3713,0.6655,0.43586,0.43586 -2030,3,20,10,0.3713,0.64484,0.41924,0.45248 -2030,3,20,11,0.386,0.64484,0.43586,0.45248 -2030,3,20,12,0.41924,0.6655,0.43586,0.45248 -2030,3,20,13,0.45248,0.6655,0.4691,0.4691 -2030,3,20,14,0.8415,0.71098,0.6553,0.6553 -2030,3,20,15,0.64484,0.7792,0.5622,0.58286 -2030,3,20,16,0.71098,0.7792,0.64484,0.64484 -2030,3,20,17,0.7792,0.7792,0.68824,0.71098 -2030,3,20,18,0.84316,0.80052,0.73372,0.7792 -2030,3,20,19,0.84316,0.75646,0.7792,0.82184 -2030,3,20,20,0.82184,0.71098,0.80052,0.84316 -2030,3,20,21,0.80052,0.73372,0.80052,0.86448 -2030,3,20,22,0.73372,0.75646,0.7792,0.84316 -2030,3,20,23,0.68824,0.75646,0.73372,0.80052 -2030,3,20,24,0.60352,0.75646,0.68824,0.7792 -2030,3,21,1,0.5622,0.73372,0.62418,0.68824 -2030,3,21,2,0.7484,0.71098,0.5622,0.62418 -2030,3,21,3,0.5622,0.71098,0.6553,0.58286 -2030,3,21,4,0.45248,0.68824,0.5622,0.7484 -2030,3,21,5,0.43586,0.71098,0.4691,0.5622 -2030,3,21,6,0.40262,0.64484,0.45248,0.4691 -2030,3,21,7,0.40262,0.6655,0.45248,0.45248 -2030,3,21,8,0.386,0.64484,0.45248,0.43586 -2030,3,21,9,0.3713,0.6655,0.43586,0.43586 -2030,3,21,10,0.3713,0.64484,0.41924,0.45248 -2030,3,21,11,0.386,0.64484,0.43586,0.45248 -2030,3,21,12,0.41924,0.6655,0.43586,0.45248 -2030,3,21,13,0.45248,0.6655,0.4691,0.4691 -2030,3,21,14,0.8415,0.71098,0.6553,0.6553 -2030,3,21,15,0.64484,0.7792,0.5622,0.58286 -2030,3,21,16,0.71098,0.7792,0.64484,0.64484 -2030,3,21,17,0.7792,0.7792,0.68824,0.71098 -2030,3,21,18,0.84316,0.80052,0.73372,0.7792 -2030,3,21,19,0.84316,0.75646,0.7792,0.82184 -2030,3,21,20,0.82184,0.71098,0.80052,0.84316 -2030,3,21,21,0.80052,0.73372,0.80052,0.86448 -2030,3,21,22,0.73372,0.75646,0.7792,0.84316 -2030,3,21,23,0.68824,0.75646,0.73372,0.80052 -2030,3,21,24,0.60352,0.75646,0.68824,0.7792 -2030,3,22,1,0.5622,0.73372,0.62418,0.68824 -2030,3,22,2,0.7484,0.71098,0.5622,0.62418 -2030,3,22,3,0.5622,0.71098,0.6553,0.58286 -2030,3,22,4,0.45248,0.68824,0.5622,0.7484 -2030,3,22,5,0.43586,0.71098,0.4691,0.5622 -2030,3,22,6,0.40262,0.64484,0.45248,0.4691 -2030,3,22,7,0.40262,0.6655,0.45248,0.45248 -2030,3,22,8,0.386,0.64484,0.45248,0.43586 -2030,3,22,9,0.3713,0.6655,0.43586,0.43586 -2030,3,22,10,0.3713,0.64484,0.41924,0.45248 -2030,3,22,11,0.386,0.64484,0.43586,0.45248 -2030,3,22,12,0.41924,0.6655,0.43586,0.45248 -2030,3,22,13,0.45248,0.6655,0.4691,0.4691 -2030,3,22,14,0.8415,0.71098,0.6553,0.6553 -2030,3,22,15,0.64484,0.7792,0.5622,0.58286 -2030,3,22,16,0.71098,0.7792,0.64484,0.64484 -2030,3,22,17,0.7792,0.7792,0.68824,0.71098 -2030,3,22,18,0.84316,0.80052,0.73372,0.7792 -2030,3,22,19,0.84316,0.75646,0.7792,0.82184 -2030,3,22,20,0.82184,0.71098,0.80052,0.84316 -2030,3,22,21,0.80052,0.73372,0.80052,0.86448 -2030,3,22,22,0.73372,0.75646,0.7792,0.84316 -2030,3,22,23,0.68824,0.75646,0.73372,0.80052 -2030,3,22,24,0.60352,0.75646,0.68824,0.7792 -2030,3,23,1,0.5622,0.73372,0.62418,0.68824 -2030,3,23,2,0.7484,0.71098,0.5622,0.62418 -2030,3,23,3,0.5622,0.71098,0.6553,0.58286 -2030,3,23,4,0.45248,0.68824,0.5622,0.7484 -2030,3,23,5,0.43586,0.71098,0.4691,0.5622 -2030,3,23,6,0.40262,0.64484,0.45248,0.4691 -2030,3,23,7,0.40262,0.6655,0.45248,0.45248 -2030,3,23,8,0.386,0.64484,0.45248,0.43586 -2030,3,23,9,0.3713,0.6655,0.43586,0.43586 -2030,3,23,10,0.3713,0.64484,0.41924,0.45248 -2030,3,23,11,0.386,0.64484,0.43586,0.45248 -2030,3,23,12,0.41924,0.6655,0.43586,0.45248 -2030,3,23,13,0.45248,0.6655,0.4691,0.4691 -2030,3,23,14,0.8415,0.71098,0.6553,0.6553 -2030,3,23,15,0.64484,0.7792,0.5622,0.58286 -2030,3,23,16,0.71098,0.7792,0.64484,0.64484 -2030,3,23,17,0.7792,0.7792,0.68824,0.71098 -2030,3,23,18,0.84316,0.80052,0.73372,0.7792 -2030,3,23,19,0.84316,0.75646,0.7792,0.82184 -2030,3,23,20,0.82184,0.71098,0.80052,0.84316 -2030,3,23,21,0.80052,0.73372,0.80052,0.86448 -2030,3,23,22,0.73372,0.75646,0.7792,0.84316 -2030,3,23,23,0.68824,0.75646,0.73372,0.80052 -2030,3,23,24,0.60352,0.75646,0.68824,0.7792 -2030,3,24,1,0.5622,0.73372,0.62418,0.68824 -2030,3,24,2,0.7484,0.71098,0.5622,0.62418 -2030,3,24,3,0.5622,0.71098,0.6553,0.58286 -2030,3,24,4,0.45248,0.68824,0.5622,0.7484 -2030,3,24,5,0.43586,0.71098,0.4691,0.5622 -2030,3,24,6,0.40262,0.64484,0.45248,0.4691 -2030,3,24,7,0.40262,0.6655,0.45248,0.45248 -2030,3,24,8,0.386,0.64484,0.45248,0.43586 -2030,3,24,9,0.3713,0.6655,0.43586,0.43586 -2030,3,24,10,0.3713,0.64484,0.41924,0.45248 -2030,3,24,11,0.386,0.64484,0.43586,0.45248 -2030,3,24,12,0.41924,0.6655,0.43586,0.45248 -2030,3,24,13,0.45248,0.6655,0.4691,0.4691 -2030,3,24,14,0.8415,0.71098,0.6553,0.6553 -2030,3,24,15,0.64484,0.7792,0.5622,0.58286 -2030,3,24,16,0.71098,0.7792,0.64484,0.64484 -2030,3,24,17,0.7792,0.7792,0.68824,0.71098 -2030,3,24,18,0.84316,0.80052,0.73372,0.7792 -2030,3,24,19,0.84316,0.75646,0.7792,0.82184 -2030,3,24,20,0.82184,0.71098,0.80052,0.84316 -2030,3,24,21,0.80052,0.73372,0.80052,0.86448 -2030,3,24,22,0.73372,0.75646,0.7792,0.84316 -2030,3,24,23,0.68824,0.75646,0.73372,0.80052 -2030,3,24,24,0.60352,0.75646,0.68824,0.7792 -2030,3,25,1,0.5622,0.73372,0.62418,0.68824 -2030,3,25,2,0.7484,0.71098,0.5622,0.62418 -2030,3,25,3,0.5622,0.71098,0.6553,0.58286 -2030,3,25,4,0.45248,0.68824,0.5622,0.7484 -2030,3,25,5,0.43586,0.71098,0.4691,0.5622 -2030,3,25,6,0.40262,0.64484,0.45248,0.4691 -2030,3,25,7,0.40262,0.6655,0.45248,0.45248 -2030,3,25,8,0.386,0.64484,0.45248,0.43586 -2030,3,25,9,0.3713,0.6655,0.43586,0.43586 -2030,3,25,10,0.3713,0.64484,0.41924,0.45248 -2030,3,25,11,0.386,0.64484,0.43586,0.45248 -2030,3,25,12,0.41924,0.6655,0.43586,0.45248 -2030,3,25,13,0.45248,0.6655,0.4691,0.4691 -2030,3,25,14,0.8415,0.71098,0.6553,0.6553 -2030,3,25,15,0.64484,0.7792,0.5622,0.58286 -2030,3,25,16,0.71098,0.7792,0.64484,0.64484 -2030,3,25,17,0.7792,0.7792,0.68824,0.71098 -2030,3,25,18,0.84316,0.80052,0.73372,0.7792 -2030,3,25,19,0.84316,0.75646,0.7792,0.82184 -2030,3,25,20,0.82184,0.71098,0.80052,0.84316 -2030,3,25,21,0.80052,0.73372,0.80052,0.86448 -2030,3,25,22,0.73372,0.75646,0.7792,0.84316 -2030,3,25,23,0.68824,0.75646,0.73372,0.80052 -2030,3,25,24,0.60352,0.75646,0.68824,0.7792 -2030,3,26,1,0.5622,0.73372,0.62418,0.68824 -2030,3,26,2,0.7484,0.71098,0.5622,0.62418 -2030,3,26,3,0.5622,0.71098,0.6553,0.58286 -2030,3,26,4,0.45248,0.68824,0.5622,0.7484 -2030,3,26,5,0.43586,0.71098,0.4691,0.5622 -2030,3,26,6,0.40262,0.64484,0.45248,0.4691 -2030,3,26,7,0.40262,0.6655,0.45248,0.45248 -2030,3,26,8,0.386,0.64484,0.45248,0.43586 -2030,3,26,9,0.3713,0.6655,0.43586,0.43586 -2030,3,26,10,0.3713,0.64484,0.41924,0.45248 -2030,3,26,11,0.386,0.64484,0.43586,0.45248 -2030,3,26,12,0.41924,0.6655,0.43586,0.45248 -2030,3,26,13,0.45248,0.6655,0.4691,0.4691 -2030,3,26,14,0.8415,0.71098,0.6553,0.6553 -2030,3,26,15,0.64484,0.7792,0.5622,0.58286 -2030,3,26,16,0.71098,0.7792,0.64484,0.64484 -2030,3,26,17,0.7792,0.7792,0.68824,0.71098 -2030,3,26,18,0.84316,0.80052,0.73372,0.7792 -2030,3,26,19,0.84316,0.75646,0.7792,0.82184 -2030,3,26,20,0.82184,0.71098,0.80052,0.84316 -2030,3,26,21,0.80052,0.73372,0.80052,0.86448 -2030,3,26,22,0.73372,0.75646,0.7792,0.84316 -2030,3,26,23,0.68824,0.75646,0.73372,0.80052 -2030,3,26,24,0.60352,0.75646,0.68824,0.7792 -2030,3,27,1,0.5622,0.73372,0.62418,0.68824 -2030,3,27,2,0.7484,0.71098,0.5622,0.62418 -2030,3,27,3,0.5622,0.71098,0.6553,0.58286 -2030,3,27,4,0.45248,0.68824,0.5622,0.7484 -2030,3,27,5,0.43586,0.71098,0.4691,0.5622 -2030,3,27,6,0.40262,0.64484,0.45248,0.4691 -2030,3,27,7,0.40262,0.6655,0.45248,0.45248 -2030,3,27,8,0.386,0.64484,0.45248,0.43586 -2030,3,27,9,0.3713,0.6655,0.43586,0.43586 -2030,3,27,10,0.3713,0.64484,0.41924,0.45248 -2030,3,27,11,0.386,0.64484,0.43586,0.45248 -2030,3,27,12,0.41924,0.6655,0.43586,0.45248 -2030,3,27,13,0.45248,0.6655,0.4691,0.4691 -2030,3,27,14,0.8415,0.71098,0.6553,0.6553 -2030,3,27,15,0.64484,0.7792,0.5622,0.58286 -2030,3,27,16,0.71098,0.7792,0.64484,0.64484 -2030,3,27,17,0.7792,0.7792,0.68824,0.71098 -2030,3,27,18,0.84316,0.80052,0.73372,0.7792 -2030,3,27,19,0.84316,0.75646,0.7792,0.82184 -2030,3,27,20,0.82184,0.71098,0.80052,0.84316 -2030,3,27,21,0.80052,0.73372,0.80052,0.86448 -2030,3,27,22,0.73372,0.75646,0.7792,0.84316 -2030,3,27,23,0.68824,0.75646,0.73372,0.80052 -2030,3,27,24,0.60352,0.75646,0.68824,0.7792 -2030,3,28,1,0.5622,0.73372,0.62418,0.68824 -2030,3,28,2,0.7484,0.71098,0.5622,0.62418 -2030,3,28,3,0.5622,0.71098,0.6553,0.58286 -2030,3,28,4,0.45248,0.68824,0.5622,0.7484 -2030,3,28,5,0.43586,0.71098,0.4691,0.5622 -2030,3,28,6,0.40262,0.64484,0.45248,0.4691 -2030,3,28,7,0.40262,0.6655,0.45248,0.45248 -2030,3,28,8,0.386,0.64484,0.45248,0.43586 -2030,3,28,9,0.3713,0.6655,0.43586,0.43586 -2030,3,28,10,0.3713,0.64484,0.41924,0.45248 -2030,3,28,11,0.386,0.64484,0.43586,0.45248 -2030,3,28,12,0.41924,0.6655,0.43586,0.45248 -2030,3,28,13,0.45248,0.6655,0.4691,0.4691 -2030,3,28,14,0.8415,0.71098,0.6553,0.6553 -2030,3,28,15,0.64484,0.7792,0.5622,0.58286 -2030,3,28,16,0.71098,0.7792,0.64484,0.64484 -2030,3,28,17,0.7792,0.7792,0.68824,0.71098 -2030,3,28,18,0.84316,0.80052,0.73372,0.7792 -2030,3,28,19,0.84316,0.75646,0.7792,0.82184 -2030,3,28,20,0.82184,0.71098,0.80052,0.84316 -2030,3,28,21,0.80052,0.73372,0.80052,0.86448 -2030,3,28,22,0.73372,0.75646,0.7792,0.84316 -2030,3,28,23,0.68824,0.75646,0.73372,0.80052 -2030,3,28,24,0.60352,0.75646,0.68824,0.7792 -2030,3,29,1,0.5622,0.73372,0.62418,0.68824 -2030,3,29,2,0.7484,0.71098,0.5622,0.62418 -2030,3,29,3,0.5622,0.71098,0.6553,0.58286 -2030,3,29,4,0.45248,0.68824,0.5622,0.7484 -2030,3,29,5,0.43586,0.71098,0.4691,0.5622 -2030,3,29,6,0.40262,0.64484,0.45248,0.4691 -2030,3,29,7,0.40262,0.6655,0.45248,0.45248 -2030,3,29,8,0.386,0.64484,0.45248,0.43586 -2030,3,29,9,0.3713,0.6655,0.43586,0.43586 -2030,3,29,10,0.3713,0.64484,0.41924,0.45248 -2030,3,29,11,0.386,0.64484,0.43586,0.45248 -2030,3,29,12,0.41924,0.6655,0.43586,0.45248 -2030,3,29,13,0.45248,0.6655,0.4691,0.4691 -2030,3,29,14,0.8415,0.71098,0.6553,0.6553 -2030,3,29,15,0.64484,0.7792,0.5622,0.58286 -2030,3,29,16,0.71098,0.7792,0.64484,0.64484 -2030,3,29,17,0.7792,0.7792,0.68824,0.71098 -2030,3,29,18,0.84316,0.80052,0.73372,0.7792 -2030,3,29,19,0.84316,0.75646,0.7792,0.82184 -2030,3,29,20,0.82184,0.71098,0.80052,0.84316 -2030,3,29,21,0.80052,0.73372,0.80052,0.86448 -2030,3,29,22,0.73372,0.75646,0.7792,0.84316 -2030,3,29,23,0.68824,0.75646,0.73372,0.80052 -2030,3,29,24,0.60352,0.75646,0.68824,0.7792 -2030,3,30,1,0.5622,0.73372,0.62418,0.68824 -2030,3,30,2,0.7484,0.71098,0.5622,0.62418 -2030,3,30,3,0.5622,0.71098,0.6553,0.58286 -2030,3,30,4,0.45248,0.68824,0.5622,0.7484 -2030,3,30,5,0.43586,0.71098,0.4691,0.5622 -2030,3,30,6,0.40262,0.64484,0.45248,0.4691 -2030,3,30,7,0.40262,0.6655,0.45248,0.45248 -2030,3,30,8,0.386,0.64484,0.45248,0.43586 -2030,3,30,9,0.3713,0.6655,0.43586,0.43586 -2030,3,30,10,0.3713,0.64484,0.41924,0.45248 -2030,3,30,11,0.386,0.64484,0.43586,0.45248 -2030,3,30,12,0.41924,0.6655,0.43586,0.45248 -2030,3,30,13,0.45248,0.6655,0.4691,0.4691 -2030,3,30,14,0.8415,0.71098,0.6553,0.6553 -2030,3,30,15,0.64484,0.7792,0.5622,0.58286 -2030,3,30,16,0.71098,0.7792,0.64484,0.64484 -2030,3,30,17,0.7792,0.7792,0.68824,0.71098 -2030,3,30,18,0.84316,0.80052,0.73372,0.7792 -2030,3,30,19,0.84316,0.75646,0.7792,0.82184 -2030,3,30,20,0.82184,0.71098,0.80052,0.84316 -2030,3,30,21,0.80052,0.73372,0.80052,0.86448 -2030,3,30,22,0.73372,0.75646,0.7792,0.84316 -2030,3,30,23,0.68824,0.75646,0.73372,0.80052 -2030,3,30,24,0.60352,0.75646,0.68824,0.7792 -2030,3,31,1,0.5622,0.73372,0.62418,0.68824 -2030,3,31,2,0.7484,0.71098,0.5622,0.62418 -2030,3,31,3,0.5622,0.71098,0.6553,0.58286 -2030,3,31,4,0.45248,0.68824,0.5622,0.7484 -2030,3,31,5,0.43586,0.71098,0.4691,0.5622 -2030,3,31,6,0.40262,0.64484,0.45248,0.4691 -2030,3,31,7,0.40262,0.6655,0.45248,0.45248 -2030,3,31,8,0.386,0.64484,0.45248,0.43586 -2030,3,31,9,0.3713,0.6655,0.43586,0.43586 -2030,3,31,10,0.3713,0.64484,0.41924,0.45248 -2030,3,31,11,0.386,0.64484,0.43586,0.45248 -2030,3,31,12,0.41924,0.6655,0.43586,0.45248 -2030,3,31,13,0.45248,0.6655,0.4691,0.4691 -2030,3,31,14,0.8415,0.71098,0.6553,0.6553 -2030,3,31,15,0.64484,0.7792,0.5622,0.58286 -2030,3,31,16,0.71098,0.7792,0.64484,0.64484 -2030,3,31,17,0.7792,0.7792,0.68824,0.71098 -2030,3,31,18,0.84316,0.80052,0.73372,0.7792 -2030,3,31,19,0.84316,0.75646,0.7792,0.82184 -2030,3,31,20,0.82184,0.71098,0.80052,0.84316 -2030,3,31,21,0.80052,0.73372,0.80052,0.86448 -2030,3,31,22,0.73372,0.75646,0.7792,0.84316 -2030,3,31,23,0.68824,0.75646,0.73372,0.80052 -2030,3,31,24,0.60352,0.75646,0.68824,0.7792 -2030,4,1,1,0.86448,0.6655,0.90816,0.9417 -2030,4,1,2,0.82184,0.68824,0.86448,0.91934 -2030,4,1,3,0.7792,0.64484,0.84316,0.8858 -2030,4,1,4,0.71098,0.64484,0.80052,0.84316 -2030,4,1,5,0.68824,0.60352,0.7792,0.7792 -2030,4,1,6,0.64484,0.58286,0.73372,0.75646 -2030,4,1,7,0.64484,0.58286,0.71098,0.71098 -2030,4,1,8,0.60352,0.58286,0.68824,0.71098 -2030,4,1,9,0.58286,0.5622,0.68824,0.71098 -2030,4,1,10,0.58286,0.5622,0.64484,0.71098 -2030,4,1,11,0.60352,0.5622,0.64484,0.71098 -2030,4,1,12,0.6655,0.5622,0.6655,0.73372 -2030,4,1,13,0.73372,0.62418,0.73372,0.7792 -2030,4,1,14,0.82184,0.6655,0.82184,0.84316 -2030,4,1,15,0.91934,0.71098,0.8858,0.89698 -2030,4,1,16,0.9417,0.75646,0.91934,0.9417 -2030,4,1,17,0.9557,0.73372,0.9417,0.9487 -2030,4,1,18,0.97903,0.73372,0.9557,0.9697 -2030,4,1,19,0.98136,0.71098,0.9627,0.97903 -2030,4,1,20,0.97903,0.68824,0.9767,0.98369 -2030,4,1,21,0.9627,0.6655,0.9767,0.98369 -2030,4,1,22,0.9487,0.6655,0.9627,0.98369 -2030,4,1,23,0.93052,0.68824,0.9557,0.97903 -2030,4,1,24,0.90816,0.6655,0.9487,0.9697 -2030,4,2,1,0.86448,0.6655,0.90816,0.9417 -2030,4,2,2,0.82184,0.68824,0.86448,0.91934 -2030,4,2,3,0.7792,0.64484,0.84316,0.8858 -2030,4,2,4,0.71098,0.64484,0.80052,0.84316 -2030,4,2,5,0.68824,0.60352,0.7792,0.7792 -2030,4,2,6,0.64484,0.58286,0.73372,0.75646 -2030,4,2,7,0.64484,0.58286,0.71098,0.71098 -2030,4,2,8,0.60352,0.58286,0.68824,0.71098 -2030,4,2,9,0.58286,0.5622,0.68824,0.71098 -2030,4,2,10,0.58286,0.5622,0.64484,0.71098 -2030,4,2,11,0.60352,0.5622,0.64484,0.71098 -2030,4,2,12,0.6655,0.5622,0.6655,0.73372 -2030,4,2,13,0.73372,0.62418,0.73372,0.7792 -2030,4,2,14,0.82184,0.6655,0.82184,0.84316 -2030,4,2,15,0.91934,0.71098,0.8858,0.89698 -2030,4,2,16,0.9417,0.75646,0.91934,0.9417 -2030,4,2,17,0.9557,0.73372,0.9417,0.9487 -2030,4,2,18,0.97903,0.73372,0.9557,0.9697 -2030,4,2,19,0.98136,0.71098,0.9627,0.97903 -2030,4,2,20,0.97903,0.68824,0.9767,0.98369 -2030,4,2,21,0.9627,0.6655,0.9767,0.98369 -2030,4,2,22,0.9487,0.6655,0.9627,0.98369 -2030,4,2,23,0.93052,0.68824,0.9557,0.97903 -2030,4,2,24,0.90816,0.6655,0.9487,0.9697 -2030,4,3,1,0.86448,0.6655,0.90816,0.9417 -2030,4,3,2,0.82184,0.68824,0.86448,0.91934 -2030,4,3,3,0.7792,0.64484,0.84316,0.8858 -2030,4,3,4,0.71098,0.64484,0.80052,0.84316 -2030,4,3,5,0.68824,0.60352,0.7792,0.7792 -2030,4,3,6,0.64484,0.58286,0.73372,0.75646 -2030,4,3,7,0.64484,0.58286,0.71098,0.71098 -2030,4,3,8,0.60352,0.58286,0.68824,0.71098 -2030,4,3,9,0.58286,0.5622,0.68824,0.71098 -2030,4,3,10,0.58286,0.5622,0.64484,0.71098 -2030,4,3,11,0.60352,0.5622,0.64484,0.71098 -2030,4,3,12,0.6655,0.5622,0.6655,0.73372 -2030,4,3,13,0.73372,0.62418,0.73372,0.7792 -2030,4,3,14,0.82184,0.6655,0.82184,0.84316 -2030,4,3,15,0.91934,0.71098,0.8858,0.89698 -2030,4,3,16,0.9417,0.75646,0.91934,0.9417 -2030,4,3,17,0.9557,0.73372,0.9417,0.9487 -2030,4,3,18,0.97903,0.73372,0.9557,0.9697 -2030,4,3,19,0.98136,0.71098,0.9627,0.97903 -2030,4,3,20,0.97903,0.68824,0.9767,0.98369 -2030,4,3,21,0.9627,0.6655,0.9767,0.98369 -2030,4,3,22,0.9487,0.6655,0.9627,0.98369 -2030,4,3,23,0.93052,0.68824,0.9557,0.97903 -2030,4,3,24,0.90816,0.6655,0.9487,0.9697 -2030,4,4,1,0.86448,0.6655,0.90816,0.9417 -2030,4,4,2,0.82184,0.68824,0.86448,0.91934 -2030,4,4,3,0.7792,0.64484,0.84316,0.8858 -2030,4,4,4,0.71098,0.64484,0.80052,0.84316 -2030,4,4,5,0.68824,0.60352,0.7792,0.7792 -2030,4,4,6,0.64484,0.58286,0.73372,0.75646 -2030,4,4,7,0.64484,0.58286,0.71098,0.71098 -2030,4,4,8,0.60352,0.58286,0.68824,0.71098 -2030,4,4,9,0.58286,0.5622,0.68824,0.71098 -2030,4,4,10,0.58286,0.5622,0.64484,0.71098 -2030,4,4,11,0.60352,0.5622,0.64484,0.71098 -2030,4,4,12,0.6655,0.5622,0.6655,0.73372 -2030,4,4,13,0.73372,0.62418,0.73372,0.7792 -2030,4,4,14,0.82184,0.6655,0.82184,0.84316 -2030,4,4,15,0.91934,0.71098,0.8858,0.89698 -2030,4,4,16,0.9417,0.75646,0.91934,0.9417 -2030,4,4,17,0.9557,0.73372,0.9417,0.9487 -2030,4,4,18,0.97903,0.73372,0.9557,0.9697 -2030,4,4,19,0.98136,0.71098,0.9627,0.97903 -2030,4,4,20,0.97903,0.68824,0.9767,0.98369 -2030,4,4,21,0.9627,0.6655,0.9767,0.98369 -2030,4,4,22,0.9487,0.6655,0.9627,0.98369 -2030,4,4,23,0.93052,0.68824,0.9557,0.97903 -2030,4,4,24,0.90816,0.6655,0.9487,0.9697 -2030,4,5,1,0.86448,0.6655,0.90816,0.9417 -2030,4,5,2,0.82184,0.68824,0.86448,0.91934 -2030,4,5,3,0.7792,0.64484,0.84316,0.8858 -2030,4,5,4,0.71098,0.64484,0.80052,0.84316 -2030,4,5,5,0.68824,0.60352,0.7792,0.7792 -2030,4,5,6,0.64484,0.58286,0.73372,0.75646 -2030,4,5,7,0.64484,0.58286,0.71098,0.71098 -2030,4,5,8,0.60352,0.58286,0.68824,0.71098 -2030,4,5,9,0.58286,0.5622,0.68824,0.71098 -2030,4,5,10,0.58286,0.5622,0.64484,0.71098 -2030,4,5,11,0.60352,0.5622,0.64484,0.71098 -2030,4,5,12,0.6655,0.5622,0.6655,0.73372 -2030,4,5,13,0.73372,0.62418,0.73372,0.7792 -2030,4,5,14,0.82184,0.6655,0.82184,0.84316 -2030,4,5,15,0.91934,0.71098,0.8858,0.89698 -2030,4,5,16,0.9417,0.75646,0.91934,0.9417 -2030,4,5,17,0.9557,0.73372,0.9417,0.9487 -2030,4,5,18,0.97903,0.73372,0.9557,0.9697 -2030,4,5,19,0.98136,0.71098,0.9627,0.97903 -2030,4,5,20,0.97903,0.68824,0.9767,0.98369 -2030,4,5,21,0.9627,0.6655,0.9767,0.98369 -2030,4,5,22,0.9487,0.6655,0.9627,0.98369 -2030,4,5,23,0.93052,0.68824,0.9557,0.97903 -2030,4,5,24,0.90816,0.6655,0.9487,0.9697 -2030,4,6,1,0.86448,0.6655,0.90816,0.9417 -2030,4,6,2,0.82184,0.68824,0.86448,0.91934 -2030,4,6,3,0.7792,0.64484,0.84316,0.8858 -2030,4,6,4,0.71098,0.64484,0.80052,0.84316 -2030,4,6,5,0.68824,0.60352,0.7792,0.7792 -2030,4,6,6,0.64484,0.58286,0.73372,0.75646 -2030,4,6,7,0.64484,0.58286,0.71098,0.71098 -2030,4,6,8,0.60352,0.58286,0.68824,0.71098 -2030,4,6,9,0.58286,0.5622,0.68824,0.71098 -2030,4,6,10,0.58286,0.5622,0.64484,0.71098 -2030,4,6,11,0.60352,0.5622,0.64484,0.71098 -2030,4,6,12,0.6655,0.5622,0.6655,0.73372 -2030,4,6,13,0.73372,0.62418,0.73372,0.7792 -2030,4,6,14,0.82184,0.6655,0.82184,0.84316 -2030,4,6,15,0.91934,0.71098,0.8858,0.89698 -2030,4,6,16,0.9417,0.75646,0.91934,0.9417 -2030,4,6,17,0.9557,0.73372,0.9417,0.9487 -2030,4,6,18,0.97903,0.73372,0.9557,0.9697 -2030,4,6,19,0.98136,0.71098,0.9627,0.97903 -2030,4,6,20,0.97903,0.68824,0.9767,0.98369 -2030,4,6,21,0.9627,0.6655,0.9767,0.98369 -2030,4,6,22,0.9487,0.6655,0.9627,0.98369 -2030,4,6,23,0.93052,0.68824,0.9557,0.97903 -2030,4,6,24,0.90816,0.6655,0.9487,0.9697 -2030,4,7,1,0.86448,0.6655,0.90816,0.9417 -2030,4,7,2,0.82184,0.68824,0.86448,0.91934 -2030,4,7,3,0.7792,0.64484,0.84316,0.8858 -2030,4,7,4,0.71098,0.64484,0.80052,0.84316 -2030,4,7,5,0.68824,0.60352,0.7792,0.7792 -2030,4,7,6,0.64484,0.58286,0.73372,0.75646 -2030,4,7,7,0.64484,0.58286,0.71098,0.71098 -2030,4,7,8,0.60352,0.58286,0.68824,0.71098 -2030,4,7,9,0.58286,0.5622,0.68824,0.71098 -2030,4,7,10,0.58286,0.5622,0.64484,0.71098 -2030,4,7,11,0.60352,0.5622,0.64484,0.71098 -2030,4,7,12,0.6655,0.5622,0.6655,0.73372 -2030,4,7,13,0.73372,0.62418,0.73372,0.7792 -2030,4,7,14,0.82184,0.6655,0.82184,0.84316 -2030,4,7,15,0.91934,0.71098,0.8858,0.89698 -2030,4,7,16,0.9417,0.75646,0.91934,0.9417 -2030,4,7,17,0.9557,0.73372,0.9417,0.9487 -2030,4,7,18,0.97903,0.73372,0.9557,0.9697 -2030,4,7,19,0.98136,0.71098,0.9627,0.97903 -2030,4,7,20,0.97903,0.68824,0.9767,0.98369 -2030,4,7,21,0.9627,0.6655,0.9767,0.98369 -2030,4,7,22,0.9487,0.6655,0.9627,0.98369 -2030,4,7,23,0.93052,0.68824,0.9557,0.97903 -2030,4,7,24,0.90816,0.6655,0.9487,0.9697 -2030,4,8,1,0.86448,0.6655,0.90816,0.9417 -2030,4,8,2,0.82184,0.68824,0.86448,0.91934 -2030,4,8,3,0.7792,0.64484,0.84316,0.8858 -2030,4,8,4,0.71098,0.64484,0.80052,0.84316 -2030,4,8,5,0.68824,0.60352,0.7792,0.7792 -2030,4,8,6,0.64484,0.58286,0.73372,0.75646 -2030,4,8,7,0.64484,0.58286,0.71098,0.71098 -2030,4,8,8,0.60352,0.58286,0.68824,0.71098 -2030,4,8,9,0.58286,0.5622,0.68824,0.71098 -2030,4,8,10,0.58286,0.5622,0.64484,0.71098 -2030,4,8,11,0.60352,0.5622,0.64484,0.71098 -2030,4,8,12,0.6655,0.5622,0.6655,0.73372 -2030,4,8,13,0.73372,0.62418,0.73372,0.7792 -2030,4,8,14,0.82184,0.6655,0.82184,0.84316 -2030,4,8,15,0.91934,0.71098,0.8858,0.89698 -2030,4,8,16,0.9417,0.75646,0.91934,0.9417 -2030,4,8,17,0.9557,0.73372,0.9417,0.9487 -2030,4,8,18,0.97903,0.73372,0.9557,0.9697 -2030,4,8,19,0.98136,0.71098,0.9627,0.97903 -2030,4,8,20,0.97903,0.68824,0.9767,0.98369 -2030,4,8,21,0.9627,0.6655,0.9767,0.98369 -2030,4,8,22,0.9487,0.6655,0.9627,0.98369 -2030,4,8,23,0.93052,0.68824,0.9557,0.97903 -2030,4,8,24,0.90816,0.6655,0.9487,0.9697 -2030,4,9,1,0.86448,0.6655,0.90816,0.9417 -2030,4,9,2,0.82184,0.68824,0.86448,0.91934 -2030,4,9,3,0.7792,0.64484,0.84316,0.8858 -2030,4,9,4,0.71098,0.64484,0.80052,0.84316 -2030,4,9,5,0.68824,0.60352,0.7792,0.7792 -2030,4,9,6,0.64484,0.58286,0.73372,0.75646 -2030,4,9,7,0.64484,0.58286,0.71098,0.71098 -2030,4,9,8,0.60352,0.58286,0.68824,0.71098 -2030,4,9,9,0.58286,0.5622,0.68824,0.71098 -2030,4,9,10,0.58286,0.5622,0.64484,0.71098 -2030,4,9,11,0.60352,0.5622,0.64484,0.71098 -2030,4,9,12,0.6655,0.5622,0.6655,0.73372 -2030,4,9,13,0.73372,0.62418,0.73372,0.7792 -2030,4,9,14,0.82184,0.6655,0.82184,0.84316 -2030,4,9,15,0.91934,0.71098,0.8858,0.89698 -2030,4,9,16,0.9417,0.75646,0.91934,0.9417 -2030,4,9,17,0.9557,0.73372,0.9417,0.9487 -2030,4,9,18,0.97903,0.73372,0.9557,0.9697 -2030,4,9,19,0.98136,0.71098,0.9627,0.97903 -2030,4,9,20,0.97903,0.68824,0.9767,0.98369 -2030,4,9,21,0.9627,0.6655,0.9767,0.98369 -2030,4,9,22,0.9487,0.6655,0.9627,0.98369 -2030,4,9,23,0.93052,0.68824,0.9557,0.97903 -2030,4,9,24,0.90816,0.6655,0.9487,0.9697 -2030,4,10,1,0.86448,0.6655,0.90816,0.9417 -2030,4,10,2,0.82184,0.68824,0.86448,0.91934 -2030,4,10,3,0.7792,0.64484,0.84316,0.8858 -2030,4,10,4,0.71098,0.64484,0.80052,0.84316 -2030,4,10,5,0.68824,0.60352,0.7792,0.7792 -2030,4,10,6,0.64484,0.58286,0.73372,0.75646 -2030,4,10,7,0.64484,0.58286,0.71098,0.71098 -2030,4,10,8,0.60352,0.58286,0.68824,0.71098 -2030,4,10,9,0.58286,0.5622,0.68824,0.71098 -2030,4,10,10,0.58286,0.5622,0.64484,0.71098 -2030,4,10,11,0.60352,0.5622,0.64484,0.71098 -2030,4,10,12,0.6655,0.5622,0.6655,0.73372 -2030,4,10,13,0.73372,0.62418,0.73372,0.7792 -2030,4,10,14,0.82184,0.6655,0.82184,0.84316 -2030,4,10,15,0.91934,0.71098,0.8858,0.89698 -2030,4,10,16,0.9417,0.75646,0.91934,0.9417 -2030,4,10,17,0.9557,0.73372,0.9417,0.9487 -2030,4,10,18,0.97903,0.73372,0.9557,0.9697 -2030,4,10,19,0.98136,0.71098,0.9627,0.97903 -2030,4,10,20,0.97903,0.68824,0.9767,0.98369 -2030,4,10,21,0.9627,0.6655,0.9767,0.98369 -2030,4,10,22,0.9487,0.6655,0.9627,0.98369 -2030,4,10,23,0.93052,0.68824,0.9557,0.97903 -2030,4,10,24,0.90816,0.6655,0.9487,0.9697 -2030,4,11,1,0.86448,0.6655,0.90816,0.9417 -2030,4,11,2,0.82184,0.68824,0.86448,0.91934 -2030,4,11,3,0.7792,0.64484,0.84316,0.8858 -2030,4,11,4,0.71098,0.64484,0.80052,0.84316 -2030,4,11,5,0.68824,0.60352,0.7792,0.7792 -2030,4,11,6,0.64484,0.58286,0.73372,0.75646 -2030,4,11,7,0.64484,0.58286,0.71098,0.71098 -2030,4,11,8,0.60352,0.58286,0.68824,0.71098 -2030,4,11,9,0.58286,0.5622,0.68824,0.71098 -2030,4,11,10,0.58286,0.5622,0.64484,0.71098 -2030,4,11,11,0.60352,0.5622,0.64484,0.71098 -2030,4,11,12,0.6655,0.5622,0.6655,0.73372 -2030,4,11,13,0.73372,0.62418,0.73372,0.7792 -2030,4,11,14,0.82184,0.6655,0.82184,0.84316 -2030,4,11,15,0.91934,0.71098,0.8858,0.89698 -2030,4,11,16,0.9417,0.75646,0.91934,0.9417 -2030,4,11,17,0.9557,0.73372,0.9417,0.9487 -2030,4,11,18,0.97903,0.73372,0.9557,0.9697 -2030,4,11,19,0.98136,0.71098,0.9627,0.97903 -2030,4,11,20,0.97903,0.68824,0.9767,0.98369 -2030,4,11,21,0.9627,0.6655,0.9767,0.98369 -2030,4,11,22,0.9487,0.6655,0.9627,0.98369 -2030,4,11,23,0.93052,0.68824,0.9557,0.97903 -2030,4,11,24,0.90816,0.6655,0.9487,0.9697 -2030,4,12,1,0.86448,0.6655,0.90816,0.9417 -2030,4,12,2,0.82184,0.68824,0.86448,0.91934 -2030,4,12,3,0.7792,0.64484,0.84316,0.8858 -2030,4,12,4,0.71098,0.64484,0.80052,0.84316 -2030,4,12,5,0.68824,0.60352,0.7792,0.7792 -2030,4,12,6,0.64484,0.58286,0.73372,0.75646 -2030,4,12,7,0.64484,0.58286,0.71098,0.71098 -2030,4,12,8,0.60352,0.58286,0.68824,0.71098 -2030,4,12,9,0.58286,0.5622,0.68824,0.71098 -2030,4,12,10,0.58286,0.5622,0.64484,0.71098 -2030,4,12,11,0.60352,0.5622,0.64484,0.71098 -2030,4,12,12,0.6655,0.5622,0.6655,0.73372 -2030,4,12,13,0.73372,0.62418,0.73372,0.7792 -2030,4,12,14,0.82184,0.6655,0.82184,0.84316 -2030,4,12,15,0.91934,0.71098,0.8858,0.89698 -2030,4,12,16,0.9417,0.75646,0.91934,0.9417 -2030,4,12,17,0.9557,0.73372,0.9417,0.9487 -2030,4,12,18,0.97903,0.73372,0.9557,0.9697 -2030,4,12,19,0.98136,0.71098,0.9627,0.97903 -2030,4,12,20,0.97903,0.68824,0.9767,0.98369 -2030,4,12,21,0.9627,0.6655,0.9767,0.98369 -2030,4,12,22,0.9487,0.6655,0.9627,0.98369 -2030,4,12,23,0.93052,0.68824,0.9557,0.97903 -2030,4,12,24,0.90816,0.6655,0.9487,0.9697 -2030,4,13,1,0.86448,0.6655,0.90816,0.9417 -2030,4,13,2,0.82184,0.68824,0.86448,0.91934 -2030,4,13,3,0.7792,0.64484,0.84316,0.8858 -2030,4,13,4,0.71098,0.64484,0.80052,0.84316 -2030,4,13,5,0.68824,0.60352,0.7792,0.7792 -2030,4,13,6,0.64484,0.58286,0.73372,0.75646 -2030,4,13,7,0.64484,0.58286,0.71098,0.71098 -2030,4,13,8,0.60352,0.58286,0.68824,0.71098 -2030,4,13,9,0.58286,0.5622,0.68824,0.71098 -2030,4,13,10,0.58286,0.5622,0.64484,0.71098 -2030,4,13,11,0.60352,0.5622,0.64484,0.71098 -2030,4,13,12,0.6655,0.5622,0.6655,0.73372 -2030,4,13,13,0.73372,0.62418,0.73372,0.7792 -2030,4,13,14,0.82184,0.6655,0.82184,0.84316 -2030,4,13,15,0.91934,0.71098,0.8858,0.89698 -2030,4,13,16,0.9417,0.75646,0.91934,0.9417 -2030,4,13,17,0.9557,0.73372,0.9417,0.9487 -2030,4,13,18,0.97903,0.73372,0.9557,0.9697 -2030,4,13,19,0.98136,0.71098,0.9627,0.97903 -2030,4,13,20,0.97903,0.68824,0.9767,0.98369 -2030,4,13,21,0.9627,0.6655,0.9767,0.98369 -2030,4,13,22,0.9487,0.6655,0.9627,0.98369 -2030,4,13,23,0.93052,0.68824,0.9557,0.97903 -2030,4,13,24,0.90816,0.6655,0.9487,0.9697 -2030,4,14,1,0.86448,0.6655,0.90816,0.9417 -2030,4,14,2,0.82184,0.68824,0.86448,0.91934 -2030,4,14,3,0.7792,0.64484,0.84316,0.8858 -2030,4,14,4,0.71098,0.64484,0.80052,0.84316 -2030,4,14,5,0.68824,0.60352,0.7792,0.7792 -2030,4,14,6,0.64484,0.58286,0.73372,0.75646 -2030,4,14,7,0.64484,0.58286,0.71098,0.71098 -2030,4,14,8,0.60352,0.58286,0.68824,0.71098 -2030,4,14,9,0.58286,0.5622,0.68824,0.71098 -2030,4,14,10,0.58286,0.5622,0.64484,0.71098 -2030,4,14,11,0.60352,0.5622,0.64484,0.71098 -2030,4,14,12,0.6655,0.5622,0.6655,0.73372 -2030,4,14,13,0.73372,0.62418,0.73372,0.7792 -2030,4,14,14,0.82184,0.6655,0.82184,0.84316 -2030,4,14,15,0.91934,0.71098,0.8858,0.89698 -2030,4,14,16,0.9417,0.75646,0.91934,0.9417 -2030,4,14,17,0.9557,0.73372,0.9417,0.9487 -2030,4,14,18,0.97903,0.73372,0.9557,0.9697 -2030,4,14,19,0.98136,0.71098,0.9627,0.97903 -2030,4,14,20,0.97903,0.68824,0.9767,0.98369 -2030,4,14,21,0.9627,0.6655,0.9767,0.98369 -2030,4,14,22,0.9487,0.6655,0.9627,0.98369 -2030,4,14,23,0.93052,0.68824,0.9557,0.97903 -2030,4,14,24,0.90816,0.6655,0.9487,0.9697 -2030,4,15,1,0.86448,0.6655,0.90816,0.9417 -2030,4,15,2,0.82184,0.68824,0.86448,0.91934 -2030,4,15,3,0.7792,0.64484,0.84316,0.8858 -2030,4,15,4,0.71098,0.64484,0.80052,0.84316 -2030,4,15,5,0.68824,0.60352,0.7792,0.7792 -2030,4,15,6,0.64484,0.58286,0.73372,0.75646 -2030,4,15,7,0.64484,0.58286,0.71098,0.71098 -2030,4,15,8,0.60352,0.58286,0.68824,0.71098 -2030,4,15,9,0.58286,0.5622,0.68824,0.71098 -2030,4,15,10,0.58286,0.5622,0.64484,0.71098 -2030,4,15,11,0.60352,0.5622,0.64484,0.71098 -2030,4,15,12,0.6655,0.5622,0.6655,0.73372 -2030,4,15,13,0.73372,0.62418,0.73372,0.7792 -2030,4,15,14,0.82184,0.6655,0.82184,0.84316 -2030,4,15,15,0.91934,0.71098,0.8858,0.89698 -2030,4,15,16,0.9417,0.75646,0.91934,0.9417 -2030,4,15,17,0.9557,0.73372,0.9417,0.9487 -2030,4,15,18,0.97903,0.73372,0.9557,0.9697 -2030,4,15,19,0.98136,0.71098,0.9627,0.97903 -2030,4,15,20,0.97903,0.68824,0.9767,0.98369 -2030,4,15,21,0.9627,0.6655,0.9767,0.98369 -2030,4,15,22,0.9487,0.6655,0.9627,0.98369 -2030,4,15,23,0.93052,0.68824,0.9557,0.97903 -2030,4,15,24,0.90816,0.6655,0.9487,0.9697 -2030,4,16,1,0.86448,0.6655,0.90816,0.9417 -2030,4,16,2,0.82184,0.68824,0.86448,0.91934 -2030,4,16,3,0.7792,0.64484,0.84316,0.8858 -2030,4,16,4,0.71098,0.64484,0.80052,0.84316 -2030,4,16,5,0.68824,0.60352,0.7792,0.7792 -2030,4,16,6,0.64484,0.58286,0.73372,0.75646 -2030,4,16,7,0.64484,0.58286,0.71098,0.71098 -2030,4,16,8,0.60352,0.58286,0.68824,0.71098 -2030,4,16,9,0.58286,0.5622,0.68824,0.71098 -2030,4,16,10,0.58286,0.5622,0.64484,0.71098 -2030,4,16,11,0.60352,0.5622,0.64484,0.71098 -2030,4,16,12,0.6655,0.5622,0.6655,0.73372 -2030,4,16,13,0.73372,0.62418,0.73372,0.7792 -2030,4,16,14,0.82184,0.6655,0.82184,0.84316 -2030,4,16,15,0.91934,0.71098,0.8858,0.89698 -2030,4,16,16,0.9417,0.75646,0.91934,0.9417 -2030,4,16,17,0.9557,0.73372,0.9417,0.9487 -2030,4,16,18,0.97903,0.73372,0.9557,0.9697 -2030,4,16,19,0.98136,0.71098,0.9627,0.97903 -2030,4,16,20,0.97903,0.68824,0.9767,0.98369 -2030,4,16,21,0.9627,0.6655,0.9767,0.98369 -2030,4,16,22,0.9487,0.6655,0.9627,0.98369 -2030,4,16,23,0.93052,0.68824,0.9557,0.97903 -2030,4,16,24,0.90816,0.6655,0.9487,0.9697 -2030,4,17,1,0.86448,0.6655,0.90816,0.9417 -2030,4,17,2,0.82184,0.68824,0.86448,0.91934 -2030,4,17,3,0.7792,0.64484,0.84316,0.8858 -2030,4,17,4,0.71098,0.64484,0.80052,0.84316 -2030,4,17,5,0.68824,0.60352,0.7792,0.7792 -2030,4,17,6,0.64484,0.58286,0.73372,0.75646 -2030,4,17,7,0.64484,0.58286,0.71098,0.71098 -2030,4,17,8,0.60352,0.58286,0.68824,0.71098 -2030,4,17,9,0.58286,0.5622,0.68824,0.71098 -2030,4,17,10,0.58286,0.5622,0.64484,0.71098 -2030,4,17,11,0.60352,0.5622,0.64484,0.71098 -2030,4,17,12,0.6655,0.5622,0.6655,0.73372 -2030,4,17,13,0.73372,0.62418,0.73372,0.7792 -2030,4,17,14,0.82184,0.6655,0.82184,0.84316 -2030,4,17,15,0.91934,0.71098,0.8858,0.89698 -2030,4,17,16,0.9417,0.75646,0.91934,0.9417 -2030,4,17,17,0.9557,0.73372,0.9417,0.9487 -2030,4,17,18,0.97903,0.73372,0.9557,0.9697 -2030,4,17,19,0.98136,0.71098,0.9627,0.97903 -2030,4,17,20,0.97903,0.68824,0.9767,0.98369 -2030,4,17,21,0.9627,0.6655,0.9767,0.98369 -2030,4,17,22,0.9487,0.6655,0.9627,0.98369 -2030,4,17,23,0.93052,0.68824,0.9557,0.97903 -2030,4,17,24,0.90816,0.6655,0.9487,0.9697 -2030,4,18,1,0.86448,0.6655,0.90816,0.9417 -2030,4,18,2,0.82184,0.68824,0.86448,0.91934 -2030,4,18,3,0.7792,0.64484,0.84316,0.8858 -2030,4,18,4,0.71098,0.64484,0.80052,0.84316 -2030,4,18,5,0.68824,0.60352,0.7792,0.7792 -2030,4,18,6,0.64484,0.58286,0.73372,0.75646 -2030,4,18,7,0.64484,0.58286,0.71098,0.71098 -2030,4,18,8,0.60352,0.58286,0.68824,0.71098 -2030,4,18,9,0.58286,0.5622,0.68824,0.71098 -2030,4,18,10,0.58286,0.5622,0.64484,0.71098 -2030,4,18,11,0.60352,0.5622,0.64484,0.71098 -2030,4,18,12,0.6655,0.5622,0.6655,0.73372 -2030,4,18,13,0.73372,0.62418,0.73372,0.7792 -2030,4,18,14,0.82184,0.6655,0.82184,0.84316 -2030,4,18,15,0.91934,0.71098,0.8858,0.89698 -2030,4,18,16,0.9417,0.75646,0.91934,0.9417 -2030,4,18,17,0.9557,0.73372,0.9417,0.9487 -2030,4,18,18,0.97903,0.73372,0.9557,0.9697 -2030,4,18,19,0.98136,0.71098,0.9627,0.97903 -2030,4,18,20,0.97903,0.68824,0.9767,0.98369 -2030,4,18,21,0.9627,0.6655,0.9767,0.98369 -2030,4,18,22,0.9487,0.6655,0.9627,0.98369 -2030,4,18,23,0.93052,0.68824,0.9557,0.97903 -2030,4,18,24,0.90816,0.6655,0.9487,0.9697 -2030,4,19,1,0.86448,0.6655,0.90816,0.9417 -2030,4,19,2,0.82184,0.68824,0.86448,0.91934 -2030,4,19,3,0.7792,0.64484,0.84316,0.8858 -2030,4,19,4,0.71098,0.64484,0.80052,0.84316 -2030,4,19,5,0.68824,0.60352,0.7792,0.7792 -2030,4,19,6,0.64484,0.58286,0.73372,0.75646 -2030,4,19,7,0.64484,0.58286,0.71098,0.71098 -2030,4,19,8,0.60352,0.58286,0.68824,0.71098 -2030,4,19,9,0.58286,0.5622,0.68824,0.71098 -2030,4,19,10,0.58286,0.5622,0.64484,0.71098 -2030,4,19,11,0.60352,0.5622,0.64484,0.71098 -2030,4,19,12,0.6655,0.5622,0.6655,0.73372 -2030,4,19,13,0.73372,0.62418,0.73372,0.7792 -2030,4,19,14,0.82184,0.6655,0.82184,0.84316 -2030,4,19,15,0.91934,0.71098,0.8858,0.89698 -2030,4,19,16,0.9417,0.75646,0.91934,0.9417 -2030,4,19,17,0.9557,0.73372,0.9417,0.9487 -2030,4,19,18,0.97903,0.73372,0.9557,0.9697 -2030,4,19,19,0.98136,0.71098,0.9627,0.97903 -2030,4,19,20,0.97903,0.68824,0.9767,0.98369 -2030,4,19,21,0.9627,0.6655,0.9767,0.98369 -2030,4,19,22,0.9487,0.6655,0.9627,0.98369 -2030,4,19,23,0.93052,0.68824,0.9557,0.97903 -2030,4,19,24,0.90816,0.6655,0.9487,0.9697 -2030,4,20,1,0.86448,0.6655,0.90816,0.9417 -2030,4,20,2,0.82184,0.68824,0.86448,0.91934 -2030,4,20,3,0.7792,0.64484,0.84316,0.8858 -2030,4,20,4,0.71098,0.64484,0.80052,0.84316 -2030,4,20,5,0.68824,0.60352,0.7792,0.7792 -2030,4,20,6,0.64484,0.58286,0.73372,0.75646 -2030,4,20,7,0.64484,0.58286,0.71098,0.71098 -2030,4,20,8,0.60352,0.58286,0.68824,0.71098 -2030,4,20,9,0.58286,0.5622,0.68824,0.71098 -2030,4,20,10,0.58286,0.5622,0.64484,0.71098 -2030,4,20,11,0.60352,0.5622,0.64484,0.71098 -2030,4,20,12,0.6655,0.5622,0.6655,0.73372 -2030,4,20,13,0.73372,0.62418,0.73372,0.7792 -2030,4,20,14,0.82184,0.6655,0.82184,0.84316 -2030,4,20,15,0.91934,0.71098,0.8858,0.89698 -2030,4,20,16,0.9417,0.75646,0.91934,0.9417 -2030,4,20,17,0.9557,0.73372,0.9417,0.9487 -2030,4,20,18,0.97903,0.73372,0.9557,0.9697 -2030,4,20,19,0.98136,0.71098,0.9627,0.97903 -2030,4,20,20,0.97903,0.68824,0.9767,0.98369 -2030,4,20,21,0.9627,0.6655,0.9767,0.98369 -2030,4,20,22,0.9487,0.6655,0.9627,0.98369 -2030,4,20,23,0.93052,0.68824,0.9557,0.97903 -2030,4,20,24,0.90816,0.6655,0.9487,0.9697 -2030,4,21,1,0.86448,0.6655,0.90816,0.9417 -2030,4,21,2,0.82184,0.68824,0.86448,0.91934 -2030,4,21,3,0.7792,0.64484,0.84316,0.8858 -2030,4,21,4,0.71098,0.64484,0.80052,0.84316 -2030,4,21,5,0.68824,0.60352,0.7792,0.7792 -2030,4,21,6,0.64484,0.58286,0.73372,0.75646 -2030,4,21,7,0.64484,0.58286,0.71098,0.71098 -2030,4,21,8,0.60352,0.58286,0.68824,0.71098 -2030,4,21,9,0.58286,0.5622,0.68824,0.71098 -2030,4,21,10,0.58286,0.5622,0.64484,0.71098 -2030,4,21,11,0.60352,0.5622,0.64484,0.71098 -2030,4,21,12,0.6655,0.5622,0.6655,0.73372 -2030,4,21,13,0.73372,0.62418,0.73372,0.7792 -2030,4,21,14,0.82184,0.6655,0.82184,0.84316 -2030,4,21,15,0.91934,0.71098,0.8858,0.89698 -2030,4,21,16,0.9417,0.75646,0.91934,0.9417 -2030,4,21,17,0.9557,0.73372,0.9417,0.9487 -2030,4,21,18,0.97903,0.73372,0.9557,0.9697 -2030,4,21,19,0.98136,0.71098,0.9627,0.97903 -2030,4,21,20,0.97903,0.68824,0.9767,0.98369 -2030,4,21,21,0.9627,0.6655,0.9767,0.98369 -2030,4,21,22,0.9487,0.6655,0.9627,0.98369 -2030,4,21,23,0.93052,0.68824,0.9557,0.97903 -2030,4,21,24,0.90816,0.6655,0.9487,0.9697 -2030,4,22,1,0.86448,0.6655,0.90816,0.9417 -2030,4,22,2,0.82184,0.68824,0.86448,0.91934 -2030,4,22,3,0.7792,0.64484,0.84316,0.8858 -2030,4,22,4,0.71098,0.64484,0.80052,0.84316 -2030,4,22,5,0.68824,0.60352,0.7792,0.7792 -2030,4,22,6,0.64484,0.58286,0.73372,0.75646 -2030,4,22,7,0.64484,0.58286,0.71098,0.71098 -2030,4,22,8,0.60352,0.58286,0.68824,0.71098 -2030,4,22,9,0.58286,0.5622,0.68824,0.71098 -2030,4,22,10,0.58286,0.5622,0.64484,0.71098 -2030,4,22,11,0.60352,0.5622,0.64484,0.71098 -2030,4,22,12,0.6655,0.5622,0.6655,0.73372 -2030,4,22,13,0.73372,0.62418,0.73372,0.7792 -2030,4,22,14,0.82184,0.6655,0.82184,0.84316 -2030,4,22,15,0.91934,0.71098,0.8858,0.89698 -2030,4,22,16,0.9417,0.75646,0.91934,0.9417 -2030,4,22,17,0.9557,0.73372,0.9417,0.9487 -2030,4,22,18,0.97903,0.73372,0.9557,0.9697 -2030,4,22,19,0.98136,0.71098,0.9627,0.97903 -2030,4,22,20,0.97903,0.68824,0.9767,0.98369 -2030,4,22,21,0.9627,0.6655,0.9767,0.98369 -2030,4,22,22,0.9487,0.6655,0.9627,0.98369 -2030,4,22,23,0.93052,0.68824,0.9557,0.97903 -2030,4,22,24,0.90816,0.6655,0.9487,0.9697 -2030,4,23,1,0.86448,0.6655,0.90816,0.9417 -2030,4,23,2,0.82184,0.68824,0.86448,0.91934 -2030,4,23,3,0.7792,0.64484,0.84316,0.8858 -2030,4,23,4,0.71098,0.64484,0.80052,0.84316 -2030,4,23,5,0.68824,0.60352,0.7792,0.7792 -2030,4,23,6,0.64484,0.58286,0.73372,0.75646 -2030,4,23,7,0.64484,0.58286,0.71098,0.71098 -2030,4,23,8,0.60352,0.58286,0.68824,0.71098 -2030,4,23,9,0.58286,0.5622,0.68824,0.71098 -2030,4,23,10,0.58286,0.5622,0.64484,0.71098 -2030,4,23,11,0.60352,0.5622,0.64484,0.71098 -2030,4,23,12,0.6655,0.5622,0.6655,0.73372 -2030,4,23,13,0.73372,0.62418,0.73372,0.7792 -2030,4,23,14,0.82184,0.6655,0.82184,0.84316 -2030,4,23,15,0.91934,0.71098,0.8858,0.89698 -2030,4,23,16,0.9417,0.75646,0.91934,0.9417 -2030,4,23,17,0.9557,0.73372,0.9417,0.9487 -2030,4,23,18,0.97903,0.73372,0.9557,0.9697 -2030,4,23,19,0.98136,0.71098,0.9627,0.97903 -2030,4,23,20,0.97903,0.68824,0.9767,0.98369 -2030,4,23,21,0.9627,0.6655,0.9767,0.98369 -2030,4,23,22,0.9487,0.6655,0.9627,0.98369 -2030,4,23,23,0.93052,0.68824,0.9557,0.97903 -2030,4,23,24,0.90816,0.6655,0.9487,0.9697 -2030,4,24,1,0.86448,0.6655,0.90816,0.9417 -2030,4,24,2,0.82184,0.68824,0.86448,0.91934 -2030,4,24,3,0.7792,0.64484,0.84316,0.8858 -2030,4,24,4,0.71098,0.64484,0.80052,0.84316 -2030,4,24,5,0.68824,0.60352,0.7792,0.7792 -2030,4,24,6,0.64484,0.58286,0.73372,0.75646 -2030,4,24,7,0.64484,0.58286,0.71098,0.71098 -2030,4,24,8,0.60352,0.58286,0.68824,0.71098 -2030,4,24,9,0.58286,0.5622,0.68824,0.71098 -2030,4,24,10,0.58286,0.5622,0.64484,0.71098 -2030,4,24,11,0.60352,0.5622,0.64484,0.71098 -2030,4,24,12,0.6655,0.5622,0.6655,0.73372 -2030,4,24,13,0.73372,0.62418,0.73372,0.7792 -2030,4,24,14,0.82184,0.6655,0.82184,0.84316 -2030,4,24,15,0.91934,0.71098,0.8858,0.89698 -2030,4,24,16,0.9417,0.75646,0.91934,0.9417 -2030,4,24,17,0.9557,0.73372,0.9417,0.9487 -2030,4,24,18,0.97903,0.73372,0.9557,0.9697 -2030,4,24,19,0.98136,0.71098,0.9627,0.97903 -2030,4,24,20,0.97903,0.68824,0.9767,0.98369 -2030,4,24,21,0.9627,0.6655,0.9767,0.98369 -2030,4,24,22,0.9487,0.6655,0.9627,0.98369 -2030,4,24,23,0.93052,0.68824,0.9557,0.97903 -2030,4,24,24,0.90816,0.6655,0.9487,0.9697 -2030,4,25,1,0.86448,0.6655,0.90816,0.9417 -2030,4,25,2,0.82184,0.68824,0.86448,0.91934 -2030,4,25,3,0.7792,0.64484,0.84316,0.8858 -2030,4,25,4,0.71098,0.64484,0.80052,0.84316 -2030,4,25,5,0.68824,0.60352,0.7792,0.7792 -2030,4,25,6,0.64484,0.58286,0.73372,0.75646 -2030,4,25,7,0.64484,0.58286,0.71098,0.71098 -2030,4,25,8,0.60352,0.58286,0.68824,0.71098 -2030,4,25,9,0.58286,0.5622,0.68824,0.71098 -2030,4,25,10,0.58286,0.5622,0.64484,0.71098 -2030,4,25,11,0.60352,0.5622,0.64484,0.71098 -2030,4,25,12,0.6655,0.5622,0.6655,0.73372 -2030,4,25,13,0.73372,0.62418,0.73372,0.7792 -2030,4,25,14,0.82184,0.6655,0.82184,0.84316 -2030,4,25,15,0.91934,0.71098,0.8858,0.89698 -2030,4,25,16,0.9417,0.75646,0.91934,0.9417 -2030,4,25,17,0.9557,0.73372,0.9417,0.9487 -2030,4,25,18,0.97903,0.73372,0.9557,0.9697 -2030,4,25,19,0.98136,0.71098,0.9627,0.97903 -2030,4,25,20,0.97903,0.68824,0.9767,0.98369 -2030,4,25,21,0.9627,0.6655,0.9767,0.98369 -2030,4,25,22,0.9487,0.6655,0.9627,0.98369 -2030,4,25,23,0.93052,0.68824,0.9557,0.97903 -2030,4,25,24,0.90816,0.6655,0.9487,0.9697 -2030,4,26,1,0.86448,0.6655,0.90816,0.9417 -2030,4,26,2,0.82184,0.68824,0.86448,0.91934 -2030,4,26,3,0.7792,0.64484,0.84316,0.8858 -2030,4,26,4,0.71098,0.64484,0.80052,0.84316 -2030,4,26,5,0.68824,0.60352,0.7792,0.7792 -2030,4,26,6,0.64484,0.58286,0.73372,0.75646 -2030,4,26,7,0.64484,0.58286,0.71098,0.71098 -2030,4,26,8,0.60352,0.58286,0.68824,0.71098 -2030,4,26,9,0.58286,0.5622,0.68824,0.71098 -2030,4,26,10,0.58286,0.5622,0.64484,0.71098 -2030,4,26,11,0.60352,0.5622,0.64484,0.71098 -2030,4,26,12,0.6655,0.5622,0.6655,0.73372 -2030,4,26,13,0.73372,0.62418,0.73372,0.7792 -2030,4,26,14,0.82184,0.6655,0.82184,0.84316 -2030,4,26,15,0.91934,0.71098,0.8858,0.89698 -2030,4,26,16,0.9417,0.75646,0.91934,0.9417 -2030,4,26,17,0.9557,0.73372,0.9417,0.9487 -2030,4,26,18,0.97903,0.73372,0.9557,0.9697 -2030,4,26,19,0.98136,0.71098,0.9627,0.97903 -2030,4,26,20,0.97903,0.68824,0.9767,0.98369 -2030,4,26,21,0.9627,0.6655,0.9767,0.98369 -2030,4,26,22,0.9487,0.6655,0.9627,0.98369 -2030,4,26,23,0.93052,0.68824,0.9557,0.97903 -2030,4,26,24,0.90816,0.6655,0.9487,0.9697 -2030,4,27,1,0.86448,0.6655,0.90816,0.9417 -2030,4,27,2,0.82184,0.68824,0.86448,0.91934 -2030,4,27,3,0.7792,0.64484,0.84316,0.8858 -2030,4,27,4,0.71098,0.64484,0.80052,0.84316 -2030,4,27,5,0.68824,0.60352,0.7792,0.7792 -2030,4,27,6,0.64484,0.58286,0.73372,0.75646 -2030,4,27,7,0.64484,0.58286,0.71098,0.71098 -2030,4,27,8,0.60352,0.58286,0.68824,0.71098 -2030,4,27,9,0.58286,0.5622,0.68824,0.71098 -2030,4,27,10,0.58286,0.5622,0.64484,0.71098 -2030,4,27,11,0.60352,0.5622,0.64484,0.71098 -2030,4,27,12,0.6655,0.5622,0.6655,0.73372 -2030,4,27,13,0.73372,0.62418,0.73372,0.7792 -2030,4,27,14,0.82184,0.6655,0.82184,0.84316 -2030,4,27,15,0.91934,0.71098,0.8858,0.89698 -2030,4,27,16,0.9417,0.75646,0.91934,0.9417 -2030,4,27,17,0.9557,0.73372,0.9417,0.9487 -2030,4,27,18,0.97903,0.73372,0.9557,0.9697 -2030,4,27,19,0.98136,0.71098,0.9627,0.97903 -2030,4,27,20,0.97903,0.68824,0.9767,0.98369 -2030,4,27,21,0.9627,0.6655,0.9767,0.98369 -2030,4,27,22,0.9487,0.6655,0.9627,0.98369 -2030,4,27,23,0.93052,0.68824,0.9557,0.97903 -2030,4,27,24,0.90816,0.6655,0.9487,0.9697 -2030,4,28,1,0.86448,0.6655,0.90816,0.9417 -2030,4,28,2,0.82184,0.68824,0.86448,0.91934 -2030,4,28,3,0.7792,0.64484,0.84316,0.8858 -2030,4,28,4,0.71098,0.64484,0.80052,0.84316 -2030,4,28,5,0.68824,0.60352,0.7792,0.7792 -2030,4,28,6,0.64484,0.58286,0.73372,0.75646 -2030,4,28,7,0.64484,0.58286,0.71098,0.71098 -2030,4,28,8,0.60352,0.58286,0.68824,0.71098 -2030,4,28,9,0.58286,0.5622,0.68824,0.71098 -2030,4,28,10,0.58286,0.5622,0.64484,0.71098 -2030,4,28,11,0.60352,0.5622,0.64484,0.71098 -2030,4,28,12,0.6655,0.5622,0.6655,0.73372 -2030,4,28,13,0.73372,0.62418,0.73372,0.7792 -2030,4,28,14,0.82184,0.6655,0.82184,0.84316 -2030,4,28,15,0.91934,0.71098,0.8858,0.89698 -2030,4,28,16,0.9417,0.75646,0.91934,0.9417 -2030,4,28,17,0.9557,0.73372,0.9417,0.9487 -2030,4,28,18,0.97903,0.73372,0.9557,0.9697 -2030,4,28,19,0.98136,0.71098,0.9627,0.97903 -2030,4,28,20,0.97903,0.68824,0.9767,0.98369 -2030,4,28,21,0.9627,0.6655,0.9767,0.98369 -2030,4,28,22,0.9487,0.6655,0.9627,0.98369 -2030,4,28,23,0.93052,0.68824,0.9557,0.97903 -2030,4,28,24,0.90816,0.6655,0.9487,0.9697 -2030,4,29,1,0.86448,0.6655,0.90816,0.9417 -2030,4,29,2,0.82184,0.68824,0.86448,0.91934 -2030,4,29,3,0.7792,0.64484,0.84316,0.8858 -2030,4,29,4,0.71098,0.64484,0.80052,0.84316 -2030,4,29,5,0.68824,0.60352,0.7792,0.7792 -2030,4,29,6,0.64484,0.58286,0.73372,0.75646 -2030,4,29,7,0.64484,0.58286,0.71098,0.71098 -2030,4,29,8,0.60352,0.58286,0.68824,0.71098 -2030,4,29,9,0.58286,0.5622,0.68824,0.71098 -2030,4,29,10,0.58286,0.5622,0.64484,0.71098 -2030,4,29,11,0.60352,0.5622,0.64484,0.71098 -2030,4,29,12,0.6655,0.5622,0.6655,0.73372 -2030,4,29,13,0.73372,0.62418,0.73372,0.7792 -2030,4,29,14,0.82184,0.6655,0.82184,0.84316 -2030,4,29,15,0.91934,0.71098,0.8858,0.89698 -2030,4,29,16,0.9417,0.75646,0.91934,0.9417 -2030,4,29,17,0.9557,0.73372,0.9417,0.9487 -2030,4,29,18,0.97903,0.73372,0.9557,0.9697 -2030,4,29,19,0.98136,0.71098,0.9627,0.97903 -2030,4,29,20,0.97903,0.68824,0.9767,0.98369 -2030,4,29,21,0.9627,0.6655,0.9767,0.98369 -2030,4,29,22,0.9487,0.6655,0.9627,0.98369 -2030,4,29,23,0.93052,0.68824,0.9557,0.97903 -2030,4,29,24,0.90816,0.6655,0.9487,0.9697 -2030,4,30,1,0.86448,0.6655,0.90816,0.9417 -2030,4,30,2,0.82184,0.68824,0.86448,0.91934 -2030,4,30,3,0.7792,0.64484,0.84316,0.8858 -2030,4,30,4,0.71098,0.64484,0.80052,0.84316 -2030,4,30,5,0.68824,0.60352,0.7792,0.7792 -2030,4,30,6,0.64484,0.58286,0.73372,0.75646 -2030,4,30,7,0.64484,0.58286,0.71098,0.71098 -2030,4,30,8,0.60352,0.58286,0.68824,0.71098 -2030,4,30,9,0.58286,0.5622,0.68824,0.71098 -2030,4,30,10,0.58286,0.5622,0.64484,0.71098 -2030,4,30,11,0.60352,0.5622,0.64484,0.71098 -2030,4,30,12,0.6655,0.5622,0.6655,0.73372 -2030,4,30,13,0.73372,0.62418,0.73372,0.7792 -2030,4,30,14,0.82184,0.6655,0.82184,0.84316 -2030,4,30,15,0.91934,0.71098,0.8858,0.89698 -2030,4,30,16,0.9417,0.75646,0.91934,0.9417 -2030,4,30,17,0.9557,0.73372,0.9417,0.9487 -2030,4,30,18,0.97903,0.73372,0.9557,0.9697 -2030,4,30,19,0.98136,0.71098,0.9627,0.97903 -2030,4,30,20,0.97903,0.68824,0.9767,0.98369 -2030,4,30,21,0.9627,0.6655,0.9767,0.98369 -2030,4,30,22,0.9487,0.6655,0.9627,0.98369 -2030,4,30,23,0.93052,0.68824,0.9557,0.97903 -2030,4,30,24,0.90816,0.6655,0.9487,0.9697 -2030,5,1,1,0.86448,0.7792,0.9487,0.97903 -2030,5,1,2,0.80052,0.75646,0.91934,0.9557 -2030,5,1,3,0.75646,0.75646,0.89698,0.93052 -2030,5,1,4,0.73372,0.75646,0.84316,0.89698 -2030,5,1,5,0.6655,0.7792,0.80052,0.84316 -2030,5,1,6,0.62418,0.7792,0.75646,0.80052 -2030,5,1,7,0.58286,0.7792,0.71098,0.75646 -2030,5,1,8,0.5622,0.75646,0.6655,0.73372 -2030,5,1,9,0.8415,0.71098,0.64484,0.68824 -2030,5,1,10,0.7484,0.73372,0.64484,0.71098 -2030,5,1,11,0.5622,0.73372,0.64484,0.71098 -2030,5,1,12,0.62418,0.7792,0.64484,0.71098 -2030,5,1,13,0.71098,0.82184,0.71098,0.75646 -2030,5,1,14,0.80052,0.84316,0.7792,0.82184 -2030,5,1,15,0.8858,0.86448,0.86448,0.89698 -2030,5,1,16,0.93052,0.86448,0.91934,0.9417 -2030,5,1,17,0.9627,0.8858,0.9627,0.9767 -2030,5,1,18,0.97903,0.8858,0.97903,0.98602 -2030,5,1,19,0.98369,0.86448,0.98602,0.99534 -2030,5,1,20,0.98369,0.84316,0.99068,0.99767 -2030,5,1,21,0.97903,0.82184,0.99068,0.99767 -2030,5,1,22,0.9627,0.80052,0.98602,0.99534 -2030,5,1,23,0.93052,0.80052,0.98369,0.99301 -2030,5,1,24,0.8858,0.80052,0.9767,0.98835 -2030,5,2,1,0.86448,0.7792,0.9487,0.97903 -2030,5,2,2,0.80052,0.75646,0.91934,0.9557 -2030,5,2,3,0.75646,0.75646,0.89698,0.93052 -2030,5,2,4,0.73372,0.75646,0.84316,0.89698 -2030,5,2,5,0.6655,0.7792,0.80052,0.84316 -2030,5,2,6,0.62418,0.7792,0.75646,0.80052 -2030,5,2,7,0.58286,0.7792,0.71098,0.75646 -2030,5,2,8,0.5622,0.75646,0.6655,0.73372 -2030,5,2,9,0.8415,0.71098,0.64484,0.68824 -2030,5,2,10,0.7484,0.73372,0.64484,0.71098 -2030,5,2,11,0.5622,0.73372,0.64484,0.71098 -2030,5,2,12,0.62418,0.7792,0.64484,0.71098 -2030,5,2,13,0.71098,0.82184,0.71098,0.75646 -2030,5,2,14,0.80052,0.84316,0.7792,0.82184 -2030,5,2,15,0.8858,0.86448,0.86448,0.89698 -2030,5,2,16,0.93052,0.86448,0.91934,0.9417 -2030,5,2,17,0.9627,0.8858,0.9627,0.9767 -2030,5,2,18,0.97903,0.8858,0.97903,0.98602 -2030,5,2,19,0.98369,0.86448,0.98602,0.99534 -2030,5,2,20,0.98369,0.84316,0.99068,0.99767 -2030,5,2,21,0.97903,0.82184,0.99068,0.99767 -2030,5,2,22,0.9627,0.80052,0.98602,0.99534 -2030,5,2,23,0.93052,0.80052,0.98369,0.99301 -2030,5,2,24,0.8858,0.80052,0.9767,0.98835 -2030,5,3,1,0.86448,0.7792,0.9487,0.97903 -2030,5,3,2,0.80052,0.75646,0.91934,0.9557 -2030,5,3,3,0.75646,0.75646,0.89698,0.93052 -2030,5,3,4,0.73372,0.75646,0.84316,0.89698 -2030,5,3,5,0.6655,0.7792,0.80052,0.84316 -2030,5,3,6,0.62418,0.7792,0.75646,0.80052 -2030,5,3,7,0.58286,0.7792,0.71098,0.75646 -2030,5,3,8,0.5622,0.75646,0.6655,0.73372 -2030,5,3,9,0.8415,0.71098,0.64484,0.68824 -2030,5,3,10,0.7484,0.73372,0.64484,0.71098 -2030,5,3,11,0.5622,0.73372,0.64484,0.71098 -2030,5,3,12,0.62418,0.7792,0.64484,0.71098 -2030,5,3,13,0.71098,0.82184,0.71098,0.75646 -2030,5,3,14,0.80052,0.84316,0.7792,0.82184 -2030,5,3,15,0.8858,0.86448,0.86448,0.89698 -2030,5,3,16,0.93052,0.86448,0.91934,0.9417 -2030,5,3,17,0.9627,0.8858,0.9627,0.9767 -2030,5,3,18,0.97903,0.8858,0.97903,0.98602 -2030,5,3,19,0.98369,0.86448,0.98602,0.99534 -2030,5,3,20,0.98369,0.84316,0.99068,0.99767 -2030,5,3,21,0.97903,0.82184,0.99068,0.99767 -2030,5,3,22,0.9627,0.80052,0.98602,0.99534 -2030,5,3,23,0.93052,0.80052,0.98369,0.99301 -2030,5,3,24,0.8858,0.80052,0.9767,0.98835 -2030,5,4,1,0.86448,0.7792,0.9487,0.97903 -2030,5,4,2,0.80052,0.75646,0.91934,0.9557 -2030,5,4,3,0.75646,0.75646,0.89698,0.93052 -2030,5,4,4,0.73372,0.75646,0.84316,0.89698 -2030,5,4,5,0.6655,0.7792,0.80052,0.84316 -2030,5,4,6,0.62418,0.7792,0.75646,0.80052 -2030,5,4,7,0.58286,0.7792,0.71098,0.75646 -2030,5,4,8,0.5622,0.75646,0.6655,0.73372 -2030,5,4,9,0.8415,0.71098,0.64484,0.68824 -2030,5,4,10,0.7484,0.73372,0.64484,0.71098 -2030,5,4,11,0.5622,0.73372,0.64484,0.71098 -2030,5,4,12,0.62418,0.7792,0.64484,0.71098 -2030,5,4,13,0.71098,0.82184,0.71098,0.75646 -2030,5,4,14,0.80052,0.84316,0.7792,0.82184 -2030,5,4,15,0.8858,0.86448,0.86448,0.89698 -2030,5,4,16,0.93052,0.86448,0.91934,0.9417 -2030,5,4,17,0.9627,0.8858,0.9627,0.9767 -2030,5,4,18,0.97903,0.8858,0.97903,0.98602 -2030,5,4,19,0.98369,0.86448,0.98602,0.99534 -2030,5,4,20,0.98369,0.84316,0.99068,0.99767 -2030,5,4,21,0.97903,0.82184,0.99068,0.99767 -2030,5,4,22,0.9627,0.80052,0.98602,0.99534 -2030,5,4,23,0.93052,0.80052,0.98369,0.99301 -2030,5,4,24,0.8858,0.80052,0.9767,0.98835 -2030,5,5,1,0.86448,0.7792,0.9487,0.97903 -2030,5,5,2,0.80052,0.75646,0.91934,0.9557 -2030,5,5,3,0.75646,0.75646,0.89698,0.93052 -2030,5,5,4,0.73372,0.75646,0.84316,0.89698 -2030,5,5,5,0.6655,0.7792,0.80052,0.84316 -2030,5,5,6,0.62418,0.7792,0.75646,0.80052 -2030,5,5,7,0.58286,0.7792,0.71098,0.75646 -2030,5,5,8,0.5622,0.75646,0.6655,0.73372 -2030,5,5,9,0.8415,0.71098,0.64484,0.68824 -2030,5,5,10,0.7484,0.73372,0.64484,0.71098 -2030,5,5,11,0.5622,0.73372,0.64484,0.71098 -2030,5,5,12,0.62418,0.7792,0.64484,0.71098 -2030,5,5,13,0.71098,0.82184,0.71098,0.75646 -2030,5,5,14,0.80052,0.84316,0.7792,0.82184 -2030,5,5,15,0.8858,0.86448,0.86448,0.89698 -2030,5,5,16,0.93052,0.86448,0.91934,0.9417 -2030,5,5,17,0.9627,0.8858,0.9627,0.9767 -2030,5,5,18,0.97903,0.8858,0.97903,0.98602 -2030,5,5,19,0.98369,0.86448,0.98602,0.99534 -2030,5,5,20,0.98369,0.84316,0.99068,0.99767 -2030,5,5,21,0.97903,0.82184,0.99068,0.99767 -2030,5,5,22,0.9627,0.80052,0.98602,0.99534 -2030,5,5,23,0.93052,0.80052,0.98369,0.99301 -2030,5,5,24,0.8858,0.80052,0.9767,0.98835 -2030,5,6,1,0.86448,0.7792,0.9487,0.97903 -2030,5,6,2,0.80052,0.75646,0.91934,0.9557 -2030,5,6,3,0.75646,0.75646,0.89698,0.93052 -2030,5,6,4,0.73372,0.75646,0.84316,0.89698 -2030,5,6,5,0.6655,0.7792,0.80052,0.84316 -2030,5,6,6,0.62418,0.7792,0.75646,0.80052 -2030,5,6,7,0.58286,0.7792,0.71098,0.75646 -2030,5,6,8,0.5622,0.75646,0.6655,0.73372 -2030,5,6,9,0.8415,0.71098,0.64484,0.68824 -2030,5,6,10,0.7484,0.73372,0.64484,0.71098 -2030,5,6,11,0.5622,0.73372,0.64484,0.71098 -2030,5,6,12,0.62418,0.7792,0.64484,0.71098 -2030,5,6,13,0.71098,0.82184,0.71098,0.75646 -2030,5,6,14,0.80052,0.84316,0.7792,0.82184 -2030,5,6,15,0.8858,0.86448,0.86448,0.89698 -2030,5,6,16,0.93052,0.86448,0.91934,0.9417 -2030,5,6,17,0.9627,0.8858,0.9627,0.9767 -2030,5,6,18,0.97903,0.8858,0.97903,0.98602 -2030,5,6,19,0.98369,0.86448,0.98602,0.99534 -2030,5,6,20,0.98369,0.84316,0.99068,0.99767 -2030,5,6,21,0.97903,0.82184,0.99068,0.99767 -2030,5,6,22,0.9627,0.80052,0.98602,0.99534 -2030,5,6,23,0.93052,0.80052,0.98369,0.99301 -2030,5,6,24,0.8858,0.80052,0.9767,0.98835 -2030,5,7,1,0.86448,0.7792,0.9487,0.97903 -2030,5,7,2,0.80052,0.75646,0.91934,0.9557 -2030,5,7,3,0.75646,0.75646,0.89698,0.93052 -2030,5,7,4,0.73372,0.75646,0.84316,0.89698 -2030,5,7,5,0.6655,0.7792,0.80052,0.84316 -2030,5,7,6,0.62418,0.7792,0.75646,0.80052 -2030,5,7,7,0.58286,0.7792,0.71098,0.75646 -2030,5,7,8,0.5622,0.75646,0.6655,0.73372 -2030,5,7,9,0.8415,0.71098,0.64484,0.68824 -2030,5,7,10,0.7484,0.73372,0.64484,0.71098 -2030,5,7,11,0.5622,0.73372,0.64484,0.71098 -2030,5,7,12,0.62418,0.7792,0.64484,0.71098 -2030,5,7,13,0.71098,0.82184,0.71098,0.75646 -2030,5,7,14,0.80052,0.84316,0.7792,0.82184 -2030,5,7,15,0.8858,0.86448,0.86448,0.89698 -2030,5,7,16,0.93052,0.86448,0.91934,0.9417 -2030,5,7,17,0.9627,0.8858,0.9627,0.9767 -2030,5,7,18,0.97903,0.8858,0.97903,0.98602 -2030,5,7,19,0.98369,0.86448,0.98602,0.99534 -2030,5,7,20,0.98369,0.84316,0.99068,0.99767 -2030,5,7,21,0.97903,0.82184,0.99068,0.99767 -2030,5,7,22,0.9627,0.80052,0.98602,0.99534 -2030,5,7,23,0.93052,0.80052,0.98369,0.99301 -2030,5,7,24,0.8858,0.80052,0.9767,0.98835 -2030,5,8,1,0.86448,0.7792,0.9487,0.97903 -2030,5,8,2,0.80052,0.75646,0.91934,0.9557 -2030,5,8,3,0.75646,0.75646,0.89698,0.93052 -2030,5,8,4,0.73372,0.75646,0.84316,0.89698 -2030,5,8,5,0.6655,0.7792,0.80052,0.84316 -2030,5,8,6,0.62418,0.7792,0.75646,0.80052 -2030,5,8,7,0.58286,0.7792,0.71098,0.75646 -2030,5,8,8,0.5622,0.75646,0.6655,0.73372 -2030,5,8,9,0.8415,0.71098,0.64484,0.68824 -2030,5,8,10,0.7484,0.73372,0.64484,0.71098 -2030,5,8,11,0.5622,0.73372,0.64484,0.71098 -2030,5,8,12,0.62418,0.7792,0.64484,0.71098 -2030,5,8,13,0.71098,0.82184,0.71098,0.75646 -2030,5,8,14,0.80052,0.84316,0.7792,0.82184 -2030,5,8,15,0.8858,0.86448,0.86448,0.89698 -2030,5,8,16,0.93052,0.86448,0.91934,0.9417 -2030,5,8,17,0.9627,0.8858,0.9627,0.9767 -2030,5,8,18,0.97903,0.8858,0.97903,0.98602 -2030,5,8,19,0.98369,0.86448,0.98602,0.99534 -2030,5,8,20,0.98369,0.84316,0.99068,0.99767 -2030,5,8,21,0.97903,0.82184,0.99068,0.99767 -2030,5,8,22,0.9627,0.80052,0.98602,0.99534 -2030,5,8,23,0.93052,0.80052,0.98369,0.99301 -2030,5,8,24,0.8858,0.80052,0.9767,0.98835 -2030,5,9,1,0.86448,0.7792,0.9487,0.97903 -2030,5,9,2,0.80052,0.75646,0.91934,0.9557 -2030,5,9,3,0.75646,0.75646,0.89698,0.93052 -2030,5,9,4,0.73372,0.75646,0.84316,0.89698 -2030,5,9,5,0.6655,0.7792,0.80052,0.84316 -2030,5,9,6,0.62418,0.7792,0.75646,0.80052 -2030,5,9,7,0.58286,0.7792,0.71098,0.75646 -2030,5,9,8,0.5622,0.75646,0.6655,0.73372 -2030,5,9,9,0.8415,0.71098,0.64484,0.68824 -2030,5,9,10,0.7484,0.73372,0.64484,0.71098 -2030,5,9,11,0.5622,0.73372,0.64484,0.71098 -2030,5,9,12,0.62418,0.7792,0.64484,0.71098 -2030,5,9,13,0.71098,0.82184,0.71098,0.75646 -2030,5,9,14,0.80052,0.84316,0.7792,0.82184 -2030,5,9,15,0.8858,0.86448,0.86448,0.89698 -2030,5,9,16,0.93052,0.86448,0.91934,0.9417 -2030,5,9,17,0.9627,0.8858,0.9627,0.9767 -2030,5,9,18,0.97903,0.8858,0.97903,0.98602 -2030,5,9,19,0.98369,0.86448,0.98602,0.99534 -2030,5,9,20,0.98369,0.84316,0.99068,0.99767 -2030,5,9,21,0.97903,0.82184,0.99068,0.99767 -2030,5,9,22,0.9627,0.80052,0.98602,0.99534 -2030,5,9,23,0.93052,0.80052,0.98369,0.99301 -2030,5,9,24,0.8858,0.80052,0.9767,0.98835 -2030,5,10,1,0.86448,0.7792,0.9487,0.97903 -2030,5,10,2,0.80052,0.75646,0.91934,0.9557 -2030,5,10,3,0.75646,0.75646,0.89698,0.93052 -2030,5,10,4,0.73372,0.75646,0.84316,0.89698 -2030,5,10,5,0.6655,0.7792,0.80052,0.84316 -2030,5,10,6,0.62418,0.7792,0.75646,0.80052 -2030,5,10,7,0.58286,0.7792,0.71098,0.75646 -2030,5,10,8,0.5622,0.75646,0.6655,0.73372 -2030,5,10,9,0.8415,0.71098,0.64484,0.68824 -2030,5,10,10,0.7484,0.73372,0.64484,0.71098 -2030,5,10,11,0.5622,0.73372,0.64484,0.71098 -2030,5,10,12,0.62418,0.7792,0.64484,0.71098 -2030,5,10,13,0.71098,0.82184,0.71098,0.75646 -2030,5,10,14,0.80052,0.84316,0.7792,0.82184 -2030,5,10,15,0.8858,0.86448,0.86448,0.89698 -2030,5,10,16,0.93052,0.86448,0.91934,0.9417 -2030,5,10,17,0.9627,0.8858,0.9627,0.9767 -2030,5,10,18,0.97903,0.8858,0.97903,0.98602 -2030,5,10,19,0.98369,0.86448,0.98602,0.99534 -2030,5,10,20,0.98369,0.84316,0.99068,0.99767 -2030,5,10,21,0.97903,0.82184,0.99068,0.99767 -2030,5,10,22,0.9627,0.80052,0.98602,0.99534 -2030,5,10,23,0.93052,0.80052,0.98369,0.99301 -2030,5,10,24,0.8858,0.80052,0.9767,0.98835 -2030,5,11,1,0.86448,0.7792,0.9487,0.97903 -2030,5,11,2,0.80052,0.75646,0.91934,0.9557 -2030,5,11,3,0.75646,0.75646,0.89698,0.93052 -2030,5,11,4,0.73372,0.75646,0.84316,0.89698 -2030,5,11,5,0.6655,0.7792,0.80052,0.84316 -2030,5,11,6,0.62418,0.7792,0.75646,0.80052 -2030,5,11,7,0.58286,0.7792,0.71098,0.75646 -2030,5,11,8,0.5622,0.75646,0.6655,0.73372 -2030,5,11,9,0.8415,0.71098,0.64484,0.68824 -2030,5,11,10,0.7484,0.73372,0.64484,0.71098 -2030,5,11,11,0.5622,0.73372,0.64484,0.71098 -2030,5,11,12,0.62418,0.7792,0.64484,0.71098 -2030,5,11,13,0.71098,0.82184,0.71098,0.75646 -2030,5,11,14,0.80052,0.84316,0.7792,0.82184 -2030,5,11,15,0.8858,0.86448,0.86448,0.89698 -2030,5,11,16,0.93052,0.86448,0.91934,0.9417 -2030,5,11,17,0.9627,0.8858,0.9627,0.9767 -2030,5,11,18,0.97903,0.8858,0.97903,0.98602 -2030,5,11,19,0.98369,0.86448,0.98602,0.99534 -2030,5,11,20,0.98369,0.84316,0.99068,0.99767 -2030,5,11,21,0.97903,0.82184,0.99068,0.99767 -2030,5,11,22,0.9627,0.80052,0.98602,0.99534 -2030,5,11,23,0.93052,0.80052,0.98369,0.99301 -2030,5,11,24,0.8858,0.80052,0.9767,0.98835 -2030,5,12,1,0.86448,0.7792,0.9487,0.97903 -2030,5,12,2,0.80052,0.75646,0.91934,0.9557 -2030,5,12,3,0.75646,0.75646,0.89698,0.93052 -2030,5,12,4,0.73372,0.75646,0.84316,0.89698 -2030,5,12,5,0.6655,0.7792,0.80052,0.84316 -2030,5,12,6,0.62418,0.7792,0.75646,0.80052 -2030,5,12,7,0.58286,0.7792,0.71098,0.75646 -2030,5,12,8,0.5622,0.75646,0.6655,0.73372 -2030,5,12,9,0.8415,0.71098,0.64484,0.68824 -2030,5,12,10,0.7484,0.73372,0.64484,0.71098 -2030,5,12,11,0.5622,0.73372,0.64484,0.71098 -2030,5,12,12,0.62418,0.7792,0.64484,0.71098 -2030,5,12,13,0.71098,0.82184,0.71098,0.75646 -2030,5,12,14,0.80052,0.84316,0.7792,0.82184 -2030,5,12,15,0.8858,0.86448,0.86448,0.89698 -2030,5,12,16,0.93052,0.86448,0.91934,0.9417 -2030,5,12,17,0.9627,0.8858,0.9627,0.9767 -2030,5,12,18,0.97903,0.8858,0.97903,0.98602 -2030,5,12,19,0.98369,0.86448,0.98602,0.99534 -2030,5,12,20,0.98369,0.84316,0.99068,0.99767 -2030,5,12,21,0.97903,0.82184,0.99068,0.99767 -2030,5,12,22,0.9627,0.80052,0.98602,0.99534 -2030,5,12,23,0.93052,0.80052,0.98369,0.99301 -2030,5,12,24,0.8858,0.80052,0.9767,0.98835 -2030,5,13,1,0.86448,0.7792,0.9487,0.97903 -2030,5,13,2,0.80052,0.75646,0.91934,0.9557 -2030,5,13,3,0.75646,0.75646,0.89698,0.93052 -2030,5,13,4,0.73372,0.75646,0.84316,0.89698 -2030,5,13,5,0.6655,0.7792,0.80052,0.84316 -2030,5,13,6,0.62418,0.7792,0.75646,0.80052 -2030,5,13,7,0.58286,0.7792,0.71098,0.75646 -2030,5,13,8,0.5622,0.75646,0.6655,0.73372 -2030,5,13,9,0.8415,0.71098,0.64484,0.68824 -2030,5,13,10,0.7484,0.73372,0.64484,0.71098 -2030,5,13,11,0.5622,0.73372,0.64484,0.71098 -2030,5,13,12,0.62418,0.7792,0.64484,0.71098 -2030,5,13,13,0.71098,0.82184,0.71098,0.75646 -2030,5,13,14,0.80052,0.84316,0.7792,0.82184 -2030,5,13,15,0.8858,0.86448,0.86448,0.89698 -2030,5,13,16,0.93052,0.86448,0.91934,0.9417 -2030,5,13,17,0.9627,0.8858,0.9627,0.9767 -2030,5,13,18,0.97903,0.8858,0.97903,0.98602 -2030,5,13,19,0.98369,0.86448,0.98602,0.99534 -2030,5,13,20,0.98369,0.84316,0.99068,0.99767 -2030,5,13,21,0.97903,0.82184,0.99068,0.99767 -2030,5,13,22,0.9627,0.80052,0.98602,0.99534 -2030,5,13,23,0.93052,0.80052,0.98369,0.99301 -2030,5,13,24,0.8858,0.80052,0.9767,0.98835 -2030,5,14,1,0.86448,0.7792,0.9487,0.97903 -2030,5,14,2,0.80052,0.75646,0.91934,0.9557 -2030,5,14,3,0.75646,0.75646,0.89698,0.93052 -2030,5,14,4,0.73372,0.75646,0.84316,0.89698 -2030,5,14,5,0.6655,0.7792,0.80052,0.84316 -2030,5,14,6,0.62418,0.7792,0.75646,0.80052 -2030,5,14,7,0.58286,0.7792,0.71098,0.75646 -2030,5,14,8,0.5622,0.75646,0.6655,0.73372 -2030,5,14,9,0.8415,0.71098,0.64484,0.68824 -2030,5,14,10,0.7484,0.73372,0.64484,0.71098 -2030,5,14,11,0.5622,0.73372,0.64484,0.71098 -2030,5,14,12,0.62418,0.7792,0.64484,0.71098 -2030,5,14,13,0.71098,0.82184,0.71098,0.75646 -2030,5,14,14,0.80052,0.84316,0.7792,0.82184 -2030,5,14,15,0.8858,0.86448,0.86448,0.89698 -2030,5,14,16,0.93052,0.86448,0.91934,0.9417 -2030,5,14,17,0.9627,0.8858,0.9627,0.9767 -2030,5,14,18,0.97903,0.8858,0.97903,0.98602 -2030,5,14,19,0.98369,0.86448,0.98602,0.99534 -2030,5,14,20,0.98369,0.84316,0.99068,0.99767 -2030,5,14,21,0.97903,0.82184,0.99068,0.99767 -2030,5,14,22,0.9627,0.80052,0.98602,0.99534 -2030,5,14,23,0.93052,0.80052,0.98369,0.99301 -2030,5,14,24,0.8858,0.80052,0.9767,0.98835 -2030,5,15,1,0.86448,0.7792,0.9487,0.97903 -2030,5,15,2,0.80052,0.75646,0.91934,0.9557 -2030,5,15,3,0.75646,0.75646,0.89698,0.93052 -2030,5,15,4,0.73372,0.75646,0.84316,0.89698 -2030,5,15,5,0.6655,0.7792,0.80052,0.84316 -2030,5,15,6,0.62418,0.7792,0.75646,0.80052 -2030,5,15,7,0.58286,0.7792,0.71098,0.75646 -2030,5,15,8,0.5622,0.75646,0.6655,0.73372 -2030,5,15,9,0.8415,0.71098,0.64484,0.68824 -2030,5,15,10,0.7484,0.73372,0.64484,0.71098 -2030,5,15,11,0.5622,0.73372,0.64484,0.71098 -2030,5,15,12,0.62418,0.7792,0.64484,0.71098 -2030,5,15,13,0.71098,0.82184,0.71098,0.75646 -2030,5,15,14,0.80052,0.84316,0.7792,0.82184 -2030,5,15,15,0.8858,0.86448,0.86448,0.89698 -2030,5,15,16,0.93052,0.86448,0.91934,0.9417 -2030,5,15,17,0.9627,0.8858,0.9627,0.9767 -2030,5,15,18,0.97903,0.8858,0.97903,0.98602 -2030,5,15,19,0.98369,0.86448,0.98602,0.99534 -2030,5,15,20,0.98369,0.84316,0.99068,0.99767 -2030,5,15,21,0.97903,0.82184,0.99068,0.99767 -2030,5,15,22,0.9627,0.80052,0.98602,0.99534 -2030,5,15,23,0.93052,0.80052,0.98369,0.99301 -2030,5,15,24,0.8858,0.80052,0.9767,0.98835 -2030,5,16,1,0.86448,0.7792,0.9487,0.97903 -2030,5,16,2,0.80052,0.75646,0.91934,0.9557 -2030,5,16,3,0.75646,0.75646,0.89698,0.93052 -2030,5,16,4,0.73372,0.75646,0.84316,0.89698 -2030,5,16,5,0.6655,0.7792,0.80052,0.84316 -2030,5,16,6,0.62418,0.7792,0.75646,0.80052 -2030,5,16,7,0.58286,0.7792,0.71098,0.75646 -2030,5,16,8,0.5622,0.75646,0.6655,0.73372 -2030,5,16,9,0.8415,0.71098,0.64484,0.68824 -2030,5,16,10,0.7484,0.73372,0.64484,0.71098 -2030,5,16,11,0.5622,0.73372,0.64484,0.71098 -2030,5,16,12,0.62418,0.7792,0.64484,0.71098 -2030,5,16,13,0.71098,0.82184,0.71098,0.75646 -2030,5,16,14,0.80052,0.84316,0.7792,0.82184 -2030,5,16,15,0.8858,0.86448,0.86448,0.89698 -2030,5,16,16,0.93052,0.86448,0.91934,0.9417 -2030,5,16,17,0.9627,0.8858,0.9627,0.9767 -2030,5,16,18,0.97903,0.8858,0.97903,0.98602 -2030,5,16,19,0.98369,0.86448,0.98602,0.99534 -2030,5,16,20,0.98369,0.84316,0.99068,0.99767 -2030,5,16,21,0.97903,0.82184,0.99068,0.99767 -2030,5,16,22,0.9627,0.80052,0.98602,0.99534 -2030,5,16,23,0.93052,0.80052,0.98369,0.99301 -2030,5,16,24,0.8858,0.80052,0.9767,0.98835 -2030,5,17,1,0.86448,0.7792,0.9487,0.97903 -2030,5,17,2,0.80052,0.75646,0.91934,0.9557 -2030,5,17,3,0.75646,0.75646,0.89698,0.93052 -2030,5,17,4,0.73372,0.75646,0.84316,0.89698 -2030,5,17,5,0.6655,0.7792,0.80052,0.84316 -2030,5,17,6,0.62418,0.7792,0.75646,0.80052 -2030,5,17,7,0.58286,0.7792,0.71098,0.75646 -2030,5,17,8,0.5622,0.75646,0.6655,0.73372 -2030,5,17,9,0.8415,0.71098,0.64484,0.68824 -2030,5,17,10,0.7484,0.73372,0.64484,0.71098 -2030,5,17,11,0.5622,0.73372,0.64484,0.71098 -2030,5,17,12,0.62418,0.7792,0.64484,0.71098 -2030,5,17,13,0.71098,0.82184,0.71098,0.75646 -2030,5,17,14,0.80052,0.84316,0.7792,0.82184 -2030,5,17,15,0.8858,0.86448,0.86448,0.89698 -2030,5,17,16,0.93052,0.86448,0.91934,0.9417 -2030,5,17,17,0.9627,0.8858,0.9627,0.9767 -2030,5,17,18,0.97903,0.8858,0.97903,0.98602 -2030,5,17,19,0.98369,0.86448,0.98602,0.99534 -2030,5,17,20,0.98369,0.84316,0.99068,0.99767 -2030,5,17,21,0.97903,0.82184,0.99068,0.99767 -2030,5,17,22,0.9627,0.80052,0.98602,0.99534 -2030,5,17,23,0.93052,0.80052,0.98369,0.99301 -2030,5,17,24,0.8858,0.80052,0.9767,0.98835 -2030,5,18,1,0.86448,0.7792,0.9487,0.97903 -2030,5,18,2,0.80052,0.75646,0.91934,0.9557 -2030,5,18,3,0.75646,0.75646,0.89698,0.93052 -2030,5,18,4,0.73372,0.75646,0.84316,0.89698 -2030,5,18,5,0.6655,0.7792,0.80052,0.84316 -2030,5,18,6,0.62418,0.7792,0.75646,0.80052 -2030,5,18,7,0.58286,0.7792,0.71098,0.75646 -2030,5,18,8,0.5622,0.75646,0.6655,0.73372 -2030,5,18,9,0.8415,0.71098,0.64484,0.68824 -2030,5,18,10,0.7484,0.73372,0.64484,0.71098 -2030,5,18,11,0.5622,0.73372,0.64484,0.71098 -2030,5,18,12,0.62418,0.7792,0.64484,0.71098 -2030,5,18,13,0.71098,0.82184,0.71098,0.75646 -2030,5,18,14,0.80052,0.84316,0.7792,0.82184 -2030,5,18,15,0.8858,0.86448,0.86448,0.89698 -2030,5,18,16,0.93052,0.86448,0.91934,0.9417 -2030,5,18,17,0.9627,0.8858,0.9627,0.9767 -2030,5,18,18,0.97903,0.8858,0.97903,0.98602 -2030,5,18,19,0.98369,0.86448,0.98602,0.99534 -2030,5,18,20,0.98369,0.84316,0.99068,0.99767 -2030,5,18,21,0.97903,0.82184,0.99068,0.99767 -2030,5,18,22,0.9627,0.80052,0.98602,0.99534 -2030,5,18,23,0.93052,0.80052,0.98369,0.99301 -2030,5,18,24,0.8858,0.80052,0.9767,0.98835 -2030,5,19,1,0.86448,0.7792,0.9487,0.97903 -2030,5,19,2,0.80052,0.75646,0.91934,0.9557 -2030,5,19,3,0.75646,0.75646,0.89698,0.93052 -2030,5,19,4,0.73372,0.75646,0.84316,0.89698 -2030,5,19,5,0.6655,0.7792,0.80052,0.84316 -2030,5,19,6,0.62418,0.7792,0.75646,0.80052 -2030,5,19,7,0.58286,0.7792,0.71098,0.75646 -2030,5,19,8,0.5622,0.75646,0.6655,0.73372 -2030,5,19,9,0.8415,0.71098,0.64484,0.68824 -2030,5,19,10,0.7484,0.73372,0.64484,0.71098 -2030,5,19,11,0.5622,0.73372,0.64484,0.71098 -2030,5,19,12,0.62418,0.7792,0.64484,0.71098 -2030,5,19,13,0.71098,0.82184,0.71098,0.75646 -2030,5,19,14,0.80052,0.84316,0.7792,0.82184 -2030,5,19,15,0.8858,0.86448,0.86448,0.89698 -2030,5,19,16,0.93052,0.86448,0.91934,0.9417 -2030,5,19,17,0.9627,0.8858,0.9627,0.9767 -2030,5,19,18,0.97903,0.8858,0.97903,0.98602 -2030,5,19,19,0.98369,0.86448,0.98602,0.99534 -2030,5,19,20,0.98369,0.84316,0.99068,0.99767 -2030,5,19,21,0.97903,0.82184,0.99068,0.99767 -2030,5,19,22,0.9627,0.80052,0.98602,0.99534 -2030,5,19,23,0.93052,0.80052,0.98369,0.99301 -2030,5,19,24,0.8858,0.80052,0.9767,0.98835 -2030,5,20,1,0.86448,0.7792,0.9487,0.97903 -2030,5,20,2,0.80052,0.75646,0.91934,0.9557 -2030,5,20,3,0.75646,0.75646,0.89698,0.93052 -2030,5,20,4,0.73372,0.75646,0.84316,0.89698 -2030,5,20,5,0.6655,0.7792,0.80052,0.84316 -2030,5,20,6,0.62418,0.7792,0.75646,0.80052 -2030,5,20,7,0.58286,0.7792,0.71098,0.75646 -2030,5,20,8,0.5622,0.75646,0.6655,0.73372 -2030,5,20,9,0.8415,0.71098,0.64484,0.68824 -2030,5,20,10,0.7484,0.73372,0.64484,0.71098 -2030,5,20,11,0.5622,0.73372,0.64484,0.71098 -2030,5,20,12,0.62418,0.7792,0.64484,0.71098 -2030,5,20,13,0.71098,0.82184,0.71098,0.75646 -2030,5,20,14,0.80052,0.84316,0.7792,0.82184 -2030,5,20,15,0.8858,0.86448,0.86448,0.89698 -2030,5,20,16,0.93052,0.86448,0.91934,0.9417 -2030,5,20,17,0.9627,0.8858,0.9627,0.9767 -2030,5,20,18,0.97903,0.8858,0.97903,0.98602 -2030,5,20,19,0.98369,0.86448,0.98602,0.99534 -2030,5,20,20,0.98369,0.84316,0.99068,0.99767 -2030,5,20,21,0.97903,0.82184,0.99068,0.99767 -2030,5,20,22,0.9627,0.80052,0.98602,0.99534 -2030,5,20,23,0.93052,0.80052,0.98369,0.99301 -2030,5,20,24,0.8858,0.80052,0.9767,0.98835 -2030,5,21,1,0.86448,0.7792,0.9487,0.97903 -2030,5,21,2,0.80052,0.75646,0.91934,0.9557 -2030,5,21,3,0.75646,0.75646,0.89698,0.93052 -2030,5,21,4,0.73372,0.75646,0.84316,0.89698 -2030,5,21,5,0.6655,0.7792,0.80052,0.84316 -2030,5,21,6,0.62418,0.7792,0.75646,0.80052 -2030,5,21,7,0.58286,0.7792,0.71098,0.75646 -2030,5,21,8,0.5622,0.75646,0.6655,0.73372 -2030,5,21,9,0.8415,0.71098,0.64484,0.68824 -2030,5,21,10,0.7484,0.73372,0.64484,0.71098 -2030,5,21,11,0.5622,0.73372,0.64484,0.71098 -2030,5,21,12,0.62418,0.7792,0.64484,0.71098 -2030,5,21,13,0.71098,0.82184,0.71098,0.75646 -2030,5,21,14,0.80052,0.84316,0.7792,0.82184 -2030,5,21,15,0.8858,0.86448,0.86448,0.89698 -2030,5,21,16,0.93052,0.86448,0.91934,0.9417 -2030,5,21,17,0.9627,0.8858,0.9627,0.9767 -2030,5,21,18,0.97903,0.8858,0.97903,0.98602 -2030,5,21,19,0.98369,0.86448,0.98602,0.99534 -2030,5,21,20,0.98369,0.84316,0.99068,0.99767 -2030,5,21,21,0.97903,0.82184,0.99068,0.99767 -2030,5,21,22,0.9627,0.80052,0.98602,0.99534 -2030,5,21,23,0.93052,0.80052,0.98369,0.99301 -2030,5,21,24,0.8858,0.80052,0.9767,0.98835 -2030,5,22,1,0.86448,0.7792,0.9487,0.97903 -2030,5,22,2,0.80052,0.75646,0.91934,0.9557 -2030,5,22,3,0.75646,0.75646,0.89698,0.93052 -2030,5,22,4,0.73372,0.75646,0.84316,0.89698 -2030,5,22,5,0.6655,0.7792,0.80052,0.84316 -2030,5,22,6,0.62418,0.7792,0.75646,0.80052 -2030,5,22,7,0.58286,0.7792,0.71098,0.75646 -2030,5,22,8,0.5622,0.75646,0.6655,0.73372 -2030,5,22,9,0.8415,0.71098,0.64484,0.68824 -2030,5,22,10,0.7484,0.73372,0.64484,0.71098 -2030,5,22,11,0.5622,0.73372,0.64484,0.71098 -2030,5,22,12,0.62418,0.7792,0.64484,0.71098 -2030,5,22,13,0.71098,0.82184,0.71098,0.75646 -2030,5,22,14,0.80052,0.84316,0.7792,0.82184 -2030,5,22,15,0.8858,0.86448,0.86448,0.89698 -2030,5,22,16,0.93052,0.86448,0.91934,0.9417 -2030,5,22,17,0.9627,0.8858,0.9627,0.9767 -2030,5,22,18,0.97903,0.8858,0.97903,0.98602 -2030,5,22,19,0.98369,0.86448,0.98602,0.99534 -2030,5,22,20,0.98369,0.84316,0.99068,0.99767 -2030,5,22,21,0.97903,0.82184,0.99068,0.99767 -2030,5,22,22,0.9627,0.80052,0.98602,0.99534 -2030,5,22,23,0.93052,0.80052,0.98369,0.99301 -2030,5,22,24,0.8858,0.80052,0.9767,0.98835 -2030,5,23,1,0.86448,0.7792,0.9487,0.97903 -2030,5,23,2,0.80052,0.75646,0.91934,0.9557 -2030,5,23,3,0.75646,0.75646,0.89698,0.93052 -2030,5,23,4,0.73372,0.75646,0.84316,0.89698 -2030,5,23,5,0.6655,0.7792,0.80052,0.84316 -2030,5,23,6,0.62418,0.7792,0.75646,0.80052 -2030,5,23,7,0.58286,0.7792,0.71098,0.75646 -2030,5,23,8,0.5622,0.75646,0.6655,0.73372 -2030,5,23,9,0.8415,0.71098,0.64484,0.68824 -2030,5,23,10,0.7484,0.73372,0.64484,0.71098 -2030,5,23,11,0.5622,0.73372,0.64484,0.71098 -2030,5,23,12,0.62418,0.7792,0.64484,0.71098 -2030,5,23,13,0.71098,0.82184,0.71098,0.75646 -2030,5,23,14,0.80052,0.84316,0.7792,0.82184 -2030,5,23,15,0.8858,0.86448,0.86448,0.89698 -2030,5,23,16,0.93052,0.86448,0.91934,0.9417 -2030,5,23,17,0.9627,0.8858,0.9627,0.9767 -2030,5,23,18,0.97903,0.8858,0.97903,0.98602 -2030,5,23,19,0.98369,0.86448,0.98602,0.99534 -2030,5,23,20,0.98369,0.84316,0.99068,0.99767 -2030,5,23,21,0.97903,0.82184,0.99068,0.99767 -2030,5,23,22,0.9627,0.80052,0.98602,0.99534 -2030,5,23,23,0.93052,0.80052,0.98369,0.99301 -2030,5,23,24,0.8858,0.80052,0.9767,0.98835 -2030,5,24,1,0.86448,0.7792,0.9487,0.97903 -2030,5,24,2,0.80052,0.75646,0.91934,0.9557 -2030,5,24,3,0.75646,0.75646,0.89698,0.93052 -2030,5,24,4,0.73372,0.75646,0.84316,0.89698 -2030,5,24,5,0.6655,0.7792,0.80052,0.84316 -2030,5,24,6,0.62418,0.7792,0.75646,0.80052 -2030,5,24,7,0.58286,0.7792,0.71098,0.75646 -2030,5,24,8,0.5622,0.75646,0.6655,0.73372 -2030,5,24,9,0.8415,0.71098,0.64484,0.68824 -2030,5,24,10,0.7484,0.73372,0.64484,0.71098 -2030,5,24,11,0.5622,0.73372,0.64484,0.71098 -2030,5,24,12,0.62418,0.7792,0.64484,0.71098 -2030,5,24,13,0.71098,0.82184,0.71098,0.75646 -2030,5,24,14,0.80052,0.84316,0.7792,0.82184 -2030,5,24,15,0.8858,0.86448,0.86448,0.89698 -2030,5,24,16,0.93052,0.86448,0.91934,0.9417 -2030,5,24,17,0.9627,0.8858,0.9627,0.9767 -2030,5,24,18,0.97903,0.8858,0.97903,0.98602 -2030,5,24,19,0.98369,0.86448,0.98602,0.99534 -2030,5,24,20,0.98369,0.84316,0.99068,0.99767 -2030,5,24,21,0.97903,0.82184,0.99068,0.99767 -2030,5,24,22,0.9627,0.80052,0.98602,0.99534 -2030,5,24,23,0.93052,0.80052,0.98369,0.99301 -2030,5,24,24,0.8858,0.80052,0.9767,0.98835 -2030,5,25,1,0.86448,0.7792,0.9487,0.97903 -2030,5,25,2,0.80052,0.75646,0.91934,0.9557 -2030,5,25,3,0.75646,0.75646,0.89698,0.93052 -2030,5,25,4,0.73372,0.75646,0.84316,0.89698 -2030,5,25,5,0.6655,0.7792,0.80052,0.84316 -2030,5,25,6,0.62418,0.7792,0.75646,0.80052 -2030,5,25,7,0.58286,0.7792,0.71098,0.75646 -2030,5,25,8,0.5622,0.75646,0.6655,0.73372 -2030,5,25,9,0.8415,0.71098,0.64484,0.68824 -2030,5,25,10,0.7484,0.73372,0.64484,0.71098 -2030,5,25,11,0.5622,0.73372,0.64484,0.71098 -2030,5,25,12,0.62418,0.7792,0.64484,0.71098 -2030,5,25,13,0.71098,0.82184,0.71098,0.75646 -2030,5,25,14,0.80052,0.84316,0.7792,0.82184 -2030,5,25,15,0.8858,0.86448,0.86448,0.89698 -2030,5,25,16,0.93052,0.86448,0.91934,0.9417 -2030,5,25,17,0.9627,0.8858,0.9627,0.9767 -2030,5,25,18,0.97903,0.8858,0.97903,0.98602 -2030,5,25,19,0.98369,0.86448,0.98602,0.99534 -2030,5,25,20,0.98369,0.84316,0.99068,0.99767 -2030,5,25,21,0.97903,0.82184,0.99068,0.99767 -2030,5,25,22,0.9627,0.80052,0.98602,0.99534 -2030,5,25,23,0.93052,0.80052,0.98369,0.99301 -2030,5,25,24,0.8858,0.80052,0.9767,0.98835 -2030,5,26,1,0.86448,0.7792,0.9487,0.97903 -2030,5,26,2,0.80052,0.75646,0.91934,0.9557 -2030,5,26,3,0.75646,0.75646,0.89698,0.93052 -2030,5,26,4,0.73372,0.75646,0.84316,0.89698 -2030,5,26,5,0.6655,0.7792,0.80052,0.84316 -2030,5,26,6,0.62418,0.7792,0.75646,0.80052 -2030,5,26,7,0.58286,0.7792,0.71098,0.75646 -2030,5,26,8,0.5622,0.75646,0.6655,0.73372 -2030,5,26,9,0.8415,0.71098,0.64484,0.68824 -2030,5,26,10,0.7484,0.73372,0.64484,0.71098 -2030,5,26,11,0.5622,0.73372,0.64484,0.71098 -2030,5,26,12,0.62418,0.7792,0.64484,0.71098 -2030,5,26,13,0.71098,0.82184,0.71098,0.75646 -2030,5,26,14,0.80052,0.84316,0.7792,0.82184 -2030,5,26,15,0.8858,0.86448,0.86448,0.89698 -2030,5,26,16,0.93052,0.86448,0.91934,0.9417 -2030,5,26,17,0.9627,0.8858,0.9627,0.9767 -2030,5,26,18,0.97903,0.8858,0.97903,0.98602 -2030,5,26,19,0.98369,0.86448,0.98602,0.99534 -2030,5,26,20,0.98369,0.84316,0.99068,0.99767 -2030,5,26,21,0.97903,0.82184,0.99068,0.99767 -2030,5,26,22,0.9627,0.80052,0.98602,0.99534 -2030,5,26,23,0.93052,0.80052,0.98369,0.99301 -2030,5,26,24,0.8858,0.80052,0.9767,0.98835 -2030,5,27,1,0.86448,0.7792,0.9487,0.97903 -2030,5,27,2,0.80052,0.75646,0.91934,0.9557 -2030,5,27,3,0.75646,0.75646,0.89698,0.93052 -2030,5,27,4,0.73372,0.75646,0.84316,0.89698 -2030,5,27,5,0.6655,0.7792,0.80052,0.84316 -2030,5,27,6,0.62418,0.7792,0.75646,0.80052 -2030,5,27,7,0.58286,0.7792,0.71098,0.75646 -2030,5,27,8,0.5622,0.75646,0.6655,0.73372 -2030,5,27,9,0.8415,0.71098,0.64484,0.68824 -2030,5,27,10,0.7484,0.73372,0.64484,0.71098 -2030,5,27,11,0.5622,0.73372,0.64484,0.71098 -2030,5,27,12,0.62418,0.7792,0.64484,0.71098 -2030,5,27,13,0.71098,0.82184,0.71098,0.75646 -2030,5,27,14,0.80052,0.84316,0.7792,0.82184 -2030,5,27,15,0.8858,0.86448,0.86448,0.89698 -2030,5,27,16,0.93052,0.86448,0.91934,0.9417 -2030,5,27,17,0.9627,0.8858,0.9627,0.9767 -2030,5,27,18,0.97903,0.8858,0.97903,0.98602 -2030,5,27,19,0.98369,0.86448,0.98602,0.99534 -2030,5,27,20,0.98369,0.84316,0.99068,0.99767 -2030,5,27,21,0.97903,0.82184,0.99068,0.99767 -2030,5,27,22,0.9627,0.80052,0.98602,0.99534 -2030,5,27,23,0.93052,0.80052,0.98369,0.99301 -2030,5,27,24,0.8858,0.80052,0.9767,0.98835 -2030,5,28,1,0.86448,0.7792,0.9487,0.97903 -2030,5,28,2,0.80052,0.75646,0.91934,0.9557 -2030,5,28,3,0.75646,0.75646,0.89698,0.93052 -2030,5,28,4,0.73372,0.75646,0.84316,0.89698 -2030,5,28,5,0.6655,0.7792,0.80052,0.84316 -2030,5,28,6,0.62418,0.7792,0.75646,0.80052 -2030,5,28,7,0.58286,0.7792,0.71098,0.75646 -2030,5,28,8,0.5622,0.75646,0.6655,0.73372 -2030,5,28,9,0.8415,0.71098,0.64484,0.68824 -2030,5,28,10,0.7484,0.73372,0.64484,0.71098 -2030,5,28,11,0.5622,0.73372,0.64484,0.71098 -2030,5,28,12,0.62418,0.7792,0.64484,0.71098 -2030,5,28,13,0.71098,0.82184,0.71098,0.75646 -2030,5,28,14,0.80052,0.84316,0.7792,0.82184 -2030,5,28,15,0.8858,0.86448,0.86448,0.89698 -2030,5,28,16,0.93052,0.86448,0.91934,0.9417 -2030,5,28,17,0.9627,0.8858,0.9627,0.9767 -2030,5,28,18,0.97903,0.8858,0.97903,0.98602 -2030,5,28,19,0.98369,0.86448,0.98602,0.99534 -2030,5,28,20,0.98369,0.84316,0.99068,0.99767 -2030,5,28,21,0.97903,0.82184,0.99068,0.99767 -2030,5,28,22,0.9627,0.80052,0.98602,0.99534 -2030,5,28,23,0.93052,0.80052,0.98369,0.99301 -2030,5,28,24,0.8858,0.80052,0.9767,0.98835 -2030,5,29,1,0.86448,0.7792,0.9487,0.97903 -2030,5,29,2,0.80052,0.75646,0.91934,0.9557 -2030,5,29,3,0.75646,0.75646,0.89698,0.93052 -2030,5,29,4,0.73372,0.75646,0.84316,0.89698 -2030,5,29,5,0.6655,0.7792,0.80052,0.84316 -2030,5,29,6,0.62418,0.7792,0.75646,0.80052 -2030,5,29,7,0.58286,0.7792,0.71098,0.75646 -2030,5,29,8,0.5622,0.75646,0.6655,0.73372 -2030,5,29,9,0.8415,0.71098,0.64484,0.68824 -2030,5,29,10,0.7484,0.73372,0.64484,0.71098 -2030,5,29,11,0.5622,0.73372,0.64484,0.71098 -2030,5,29,12,0.62418,0.7792,0.64484,0.71098 -2030,5,29,13,0.71098,0.82184,0.71098,0.75646 -2030,5,29,14,0.80052,0.84316,0.7792,0.82184 -2030,5,29,15,0.8858,0.86448,0.86448,0.89698 -2030,5,29,16,0.93052,0.86448,0.91934,0.9417 -2030,5,29,17,0.9627,0.8858,0.9627,0.9767 -2030,5,29,18,0.97903,0.8858,0.97903,0.98602 -2030,5,29,19,0.98369,0.86448,0.98602,0.99534 -2030,5,29,20,0.98369,0.84316,0.99068,0.99767 -2030,5,29,21,0.97903,0.82184,0.99068,0.99767 -2030,5,29,22,0.9627,0.80052,0.98602,0.99534 -2030,5,29,23,0.93052,0.80052,0.98369,0.99301 -2030,5,29,24,0.8858,0.80052,0.9767,0.98835 -2030,5,30,1,0.86448,0.7792,0.9487,0.97903 -2030,5,30,2,0.80052,0.75646,0.91934,0.9557 -2030,5,30,3,0.75646,0.75646,0.89698,0.93052 -2030,5,30,4,0.73372,0.75646,0.84316,0.89698 -2030,5,30,5,0.6655,0.7792,0.80052,0.84316 -2030,5,30,6,0.62418,0.7792,0.75646,0.80052 -2030,5,30,7,0.58286,0.7792,0.71098,0.75646 -2030,5,30,8,0.5622,0.75646,0.6655,0.73372 -2030,5,30,9,0.8415,0.71098,0.64484,0.68824 -2030,5,30,10,0.7484,0.73372,0.64484,0.71098 -2030,5,30,11,0.5622,0.73372,0.64484,0.71098 -2030,5,30,12,0.62418,0.7792,0.64484,0.71098 -2030,5,30,13,0.71098,0.82184,0.71098,0.75646 -2030,5,30,14,0.80052,0.84316,0.7792,0.82184 -2030,5,30,15,0.8858,0.86448,0.86448,0.89698 -2030,5,30,16,0.93052,0.86448,0.91934,0.9417 -2030,5,30,17,0.9627,0.8858,0.9627,0.9767 -2030,5,30,18,0.97903,0.8858,0.97903,0.98602 -2030,5,30,19,0.98369,0.86448,0.98602,0.99534 -2030,5,30,20,0.98369,0.84316,0.99068,0.99767 -2030,5,30,21,0.97903,0.82184,0.99068,0.99767 -2030,5,30,22,0.9627,0.80052,0.98602,0.99534 -2030,5,30,23,0.93052,0.80052,0.98369,0.99301 -2030,5,30,24,0.8858,0.80052,0.9767,0.98835 -2030,5,31,1,0.86448,0.7792,0.9487,0.97903 -2030,5,31,2,0.80052,0.75646,0.91934,0.9557 -2030,5,31,3,0.75646,0.75646,0.89698,0.93052 -2030,5,31,4,0.73372,0.75646,0.84316,0.89698 -2030,5,31,5,0.6655,0.7792,0.80052,0.84316 -2030,5,31,6,0.62418,0.7792,0.75646,0.80052 -2030,5,31,7,0.58286,0.7792,0.71098,0.75646 -2030,5,31,8,0.5622,0.75646,0.6655,0.73372 -2030,5,31,9,0.8415,0.71098,0.64484,0.68824 -2030,5,31,10,0.7484,0.73372,0.64484,0.71098 -2030,5,31,11,0.5622,0.73372,0.64484,0.71098 -2030,5,31,12,0.62418,0.7792,0.64484,0.71098 -2030,5,31,13,0.71098,0.82184,0.71098,0.75646 -2030,5,31,14,0.80052,0.84316,0.7792,0.82184 -2030,5,31,15,0.8858,0.86448,0.86448,0.89698 -2030,5,31,16,0.93052,0.86448,0.91934,0.9417 -2030,5,31,17,0.9627,0.8858,0.9627,0.9767 -2030,5,31,18,0.97903,0.8858,0.97903,0.98602 -2030,5,31,19,0.98369,0.86448,0.98602,0.99534 -2030,5,31,20,0.98369,0.84316,0.99068,0.99767 -2030,5,31,21,0.97903,0.82184,0.99068,0.99767 -2030,5,31,22,0.9627,0.80052,0.98602,0.99534 -2030,5,31,23,0.93052,0.80052,0.98369,0.99301 -2030,5,31,24,0.8858,0.80052,0.9767,0.98835 -2030,6,1,1,0.71098,0.9627,0.91934,0.9697 -2030,6,1,2,0.68824,0.9557,0.8858,0.9417 -2030,6,1,3,0.6655,0.9557,0.84316,0.90816 -2030,6,1,4,0.60352,0.9557,0.80052,0.86448 -2030,6,1,5,0.58286,0.9557,0.75646,0.7792 -2030,6,1,6,0.8415,0.9557,0.68824,0.73372 -2030,6,1,7,0.6553,0.9487,0.6655,0.68824 -2030,6,1,8,0.5622,0.9417,0.62418,0.6655 -2030,6,1,9,0.45248,0.9417,0.60352,0.62418 -2030,6,1,10,0.5622,0.9417,0.8415,0.60352 -2030,6,1,11,0.5622,0.9417,0.8415,0.60352 -2030,6,1,12,0.7484,0.9557,0.5622,0.62418 -2030,6,1,13,0.58286,0.9557,0.60352,0.6655 -2030,6,1,14,0.64484,0.9557,0.6655,0.73372 -2030,6,1,15,0.71098,0.9627,0.75646,0.82184 -2030,6,1,16,0.80052,0.9557,0.84316,0.89698 -2030,6,1,17,0.84316,0.9487,0.90816,0.9487 -2030,6,1,18,0.8858,0.9487,0.9417,0.9767 -2030,6,1,19,0.91934,0.9487,0.9697,0.98602 -2030,6,1,20,0.93052,0.9487,0.97903,0.99068 -2030,6,1,21,0.90816,0.9417,0.97903,0.99534 -2030,6,1,22,0.86448,0.9487,0.9767,0.99301 -2030,6,1,23,0.82184,0.9557,0.9697,0.98835 -2030,6,1,24,0.7792,0.9627,0.9487,0.98369 -2030,6,2,1,0.71098,0.9627,0.91934,0.9697 -2030,6,2,2,0.68824,0.9557,0.8858,0.9417 -2030,6,2,3,0.6655,0.9557,0.84316,0.90816 -2030,6,2,4,0.60352,0.9557,0.80052,0.86448 -2030,6,2,5,0.58286,0.9557,0.75646,0.7792 -2030,6,2,6,0.8415,0.9557,0.68824,0.73372 -2030,6,2,7,0.6553,0.9487,0.6655,0.68824 -2030,6,2,8,0.5622,0.9417,0.62418,0.6655 -2030,6,2,9,0.45248,0.9417,0.60352,0.62418 -2030,6,2,10,0.5622,0.9417,0.8415,0.60352 -2030,6,2,11,0.5622,0.9417,0.8415,0.60352 -2030,6,2,12,0.7484,0.9557,0.5622,0.62418 -2030,6,2,13,0.58286,0.9557,0.60352,0.6655 -2030,6,2,14,0.64484,0.9557,0.6655,0.73372 -2030,6,2,15,0.71098,0.9627,0.75646,0.82184 -2030,6,2,16,0.80052,0.9557,0.84316,0.89698 -2030,6,2,17,0.84316,0.9487,0.90816,0.9487 -2030,6,2,18,0.8858,0.9487,0.9417,0.9767 -2030,6,2,19,0.91934,0.9487,0.9697,0.98602 -2030,6,2,20,0.93052,0.9487,0.97903,0.99068 -2030,6,2,21,0.90816,0.9417,0.97903,0.99534 -2030,6,2,22,0.86448,0.9487,0.9767,0.99301 -2030,6,2,23,0.82184,0.9557,0.9697,0.98835 -2030,6,2,24,0.7792,0.9627,0.9487,0.98369 -2030,6,3,1,0.71098,0.9627,0.91934,0.9697 -2030,6,3,2,0.68824,0.9557,0.8858,0.9417 -2030,6,3,3,0.6655,0.9557,0.84316,0.90816 -2030,6,3,4,0.60352,0.9557,0.80052,0.86448 -2030,6,3,5,0.58286,0.9557,0.75646,0.7792 -2030,6,3,6,0.8415,0.9557,0.68824,0.73372 -2030,6,3,7,0.6553,0.9487,0.6655,0.68824 -2030,6,3,8,0.5622,0.9417,0.62418,0.6655 -2030,6,3,9,0.45248,0.9417,0.60352,0.62418 -2030,6,3,10,0.5622,0.9417,0.8415,0.60352 -2030,6,3,11,0.5622,0.9417,0.8415,0.60352 -2030,6,3,12,0.7484,0.9557,0.5622,0.62418 -2030,6,3,13,0.58286,0.9557,0.60352,0.6655 -2030,6,3,14,0.64484,0.9557,0.6655,0.73372 -2030,6,3,15,0.71098,0.9627,0.75646,0.82184 -2030,6,3,16,0.80052,0.9557,0.84316,0.89698 -2030,6,3,17,0.84316,0.9487,0.90816,0.9487 -2030,6,3,18,0.8858,0.9487,0.9417,0.9767 -2030,6,3,19,0.91934,0.9487,0.9697,0.98602 -2030,6,3,20,0.93052,0.9487,0.97903,0.99068 -2030,6,3,21,0.90816,0.9417,0.97903,0.99534 -2030,6,3,22,0.86448,0.9487,0.9767,0.99301 -2030,6,3,23,0.82184,0.9557,0.9697,0.98835 -2030,6,3,24,0.7792,0.9627,0.9487,0.98369 -2030,6,4,1,0.71098,0.9627,0.91934,0.9697 -2030,6,4,2,0.68824,0.9557,0.8858,0.9417 -2030,6,4,3,0.6655,0.9557,0.84316,0.90816 -2030,6,4,4,0.60352,0.9557,0.80052,0.86448 -2030,6,4,5,0.58286,0.9557,0.75646,0.7792 -2030,6,4,6,0.8415,0.9557,0.68824,0.73372 -2030,6,4,7,0.6553,0.9487,0.6655,0.68824 -2030,6,4,8,0.5622,0.9417,0.62418,0.6655 -2030,6,4,9,0.45248,0.9417,0.60352,0.62418 -2030,6,4,10,0.5622,0.9417,0.8415,0.60352 -2030,6,4,11,0.5622,0.9417,0.8415,0.60352 -2030,6,4,12,0.7484,0.9557,0.5622,0.62418 -2030,6,4,13,0.58286,0.9557,0.60352,0.6655 -2030,6,4,14,0.64484,0.9557,0.6655,0.73372 -2030,6,4,15,0.71098,0.9627,0.75646,0.82184 -2030,6,4,16,0.80052,0.9557,0.84316,0.89698 -2030,6,4,17,0.84316,0.9487,0.90816,0.9487 -2030,6,4,18,0.8858,0.9487,0.9417,0.9767 -2030,6,4,19,0.91934,0.9487,0.9697,0.98602 -2030,6,4,20,0.93052,0.9487,0.97903,0.99068 -2030,6,4,21,0.90816,0.9417,0.97903,0.99534 -2030,6,4,22,0.86448,0.9487,0.9767,0.99301 -2030,6,4,23,0.82184,0.9557,0.9697,0.98835 -2030,6,4,24,0.7792,0.9627,0.9487,0.98369 -2030,6,5,1,0.71098,0.9627,0.91934,0.9697 -2030,6,5,2,0.68824,0.9557,0.8858,0.9417 -2030,6,5,3,0.6655,0.9557,0.84316,0.90816 -2030,6,5,4,0.60352,0.9557,0.80052,0.86448 -2030,6,5,5,0.58286,0.9557,0.75646,0.7792 -2030,6,5,6,0.8415,0.9557,0.68824,0.73372 -2030,6,5,7,0.6553,0.9487,0.6655,0.68824 -2030,6,5,8,0.5622,0.9417,0.62418,0.6655 -2030,6,5,9,0.45248,0.9417,0.60352,0.62418 -2030,6,5,10,0.5622,0.9417,0.8415,0.60352 -2030,6,5,11,0.5622,0.9417,0.8415,0.60352 -2030,6,5,12,0.7484,0.9557,0.5622,0.62418 -2030,6,5,13,0.58286,0.9557,0.60352,0.6655 -2030,6,5,14,0.64484,0.9557,0.6655,0.73372 -2030,6,5,15,0.71098,0.9627,0.75646,0.82184 -2030,6,5,16,0.80052,0.9557,0.84316,0.89698 -2030,6,5,17,0.84316,0.9487,0.90816,0.9487 -2030,6,5,18,0.8858,0.9487,0.9417,0.9767 -2030,6,5,19,0.91934,0.9487,0.9697,0.98602 -2030,6,5,20,0.93052,0.9487,0.97903,0.99068 -2030,6,5,21,0.90816,0.9417,0.97903,0.99534 -2030,6,5,22,0.86448,0.9487,0.9767,0.99301 -2030,6,5,23,0.82184,0.9557,0.9697,0.98835 -2030,6,5,24,0.7792,0.9627,0.9487,0.98369 -2030,6,6,1,0.71098,0.9627,0.91934,0.9697 -2030,6,6,2,0.68824,0.9557,0.8858,0.9417 -2030,6,6,3,0.6655,0.9557,0.84316,0.90816 -2030,6,6,4,0.60352,0.9557,0.80052,0.86448 -2030,6,6,5,0.58286,0.9557,0.75646,0.7792 -2030,6,6,6,0.8415,0.9557,0.68824,0.73372 -2030,6,6,7,0.6553,0.9487,0.6655,0.68824 -2030,6,6,8,0.5622,0.9417,0.62418,0.6655 -2030,6,6,9,0.45248,0.9417,0.60352,0.62418 -2030,6,6,10,0.5622,0.9417,0.8415,0.60352 -2030,6,6,11,0.5622,0.9417,0.8415,0.60352 -2030,6,6,12,0.7484,0.9557,0.5622,0.62418 -2030,6,6,13,0.58286,0.9557,0.60352,0.6655 -2030,6,6,14,0.64484,0.9557,0.6655,0.73372 -2030,6,6,15,0.71098,0.9627,0.75646,0.82184 -2030,6,6,16,0.80052,0.9557,0.84316,0.89698 -2030,6,6,17,0.84316,0.9487,0.90816,0.9487 -2030,6,6,18,0.8858,0.9487,0.9417,0.9767 -2030,6,6,19,0.91934,0.9487,0.9697,0.98602 -2030,6,6,20,0.93052,0.9487,0.97903,0.99068 -2030,6,6,21,0.90816,0.9417,0.97903,0.99534 -2030,6,6,22,0.86448,0.9487,0.9767,0.99301 -2030,6,6,23,0.82184,0.9557,0.9697,0.98835 -2030,6,6,24,0.7792,0.9627,0.9487,0.98369 -2030,6,7,1,0.71098,0.9627,0.91934,0.9697 -2030,6,7,2,0.68824,0.9557,0.8858,0.9417 -2030,6,7,3,0.6655,0.9557,0.84316,0.90816 -2030,6,7,4,0.60352,0.9557,0.80052,0.86448 -2030,6,7,5,0.58286,0.9557,0.75646,0.7792 -2030,6,7,6,0.8415,0.9557,0.68824,0.73372 -2030,6,7,7,0.6553,0.9487,0.6655,0.68824 -2030,6,7,8,0.5622,0.9417,0.62418,0.6655 -2030,6,7,9,0.45248,0.9417,0.60352,0.62418 -2030,6,7,10,0.5622,0.9417,0.8415,0.60352 -2030,6,7,11,0.5622,0.9417,0.8415,0.60352 -2030,6,7,12,0.7484,0.9557,0.5622,0.62418 -2030,6,7,13,0.58286,0.9557,0.60352,0.6655 -2030,6,7,14,0.64484,0.9557,0.6655,0.73372 -2030,6,7,15,0.71098,0.9627,0.75646,0.82184 -2030,6,7,16,0.80052,0.9557,0.84316,0.89698 -2030,6,7,17,0.84316,0.9487,0.90816,0.9487 -2030,6,7,18,0.8858,0.9487,0.9417,0.9767 -2030,6,7,19,0.91934,0.9487,0.9697,0.98602 -2030,6,7,20,0.93052,0.9487,0.97903,0.99068 -2030,6,7,21,0.90816,0.9417,0.97903,0.99534 -2030,6,7,22,0.86448,0.9487,0.9767,0.99301 -2030,6,7,23,0.82184,0.9557,0.9697,0.98835 -2030,6,7,24,0.7792,0.9627,0.9487,0.98369 -2030,6,8,1,0.71098,0.9627,0.91934,0.9697 -2030,6,8,2,0.68824,0.9557,0.8858,0.9417 -2030,6,8,3,0.6655,0.9557,0.84316,0.90816 -2030,6,8,4,0.60352,0.9557,0.80052,0.86448 -2030,6,8,5,0.58286,0.9557,0.75646,0.7792 -2030,6,8,6,0.8415,0.9557,0.68824,0.73372 -2030,6,8,7,0.6553,0.9487,0.6655,0.68824 -2030,6,8,8,0.5622,0.9417,0.62418,0.6655 -2030,6,8,9,0.45248,0.9417,0.60352,0.62418 -2030,6,8,10,0.5622,0.9417,0.8415,0.60352 -2030,6,8,11,0.5622,0.9417,0.8415,0.60352 -2030,6,8,12,0.7484,0.9557,0.5622,0.62418 -2030,6,8,13,0.58286,0.9557,0.60352,0.6655 -2030,6,8,14,0.64484,0.9557,0.6655,0.73372 -2030,6,8,15,0.71098,0.9627,0.75646,0.82184 -2030,6,8,16,0.80052,0.9557,0.84316,0.89698 -2030,6,8,17,0.84316,0.9487,0.90816,0.9487 -2030,6,8,18,0.8858,0.9487,0.9417,0.9767 -2030,6,8,19,0.91934,0.9487,0.9697,0.98602 -2030,6,8,20,0.93052,0.9487,0.97903,0.99068 -2030,6,8,21,0.90816,0.9417,0.97903,0.99534 -2030,6,8,22,0.86448,0.9487,0.9767,0.99301 -2030,6,8,23,0.82184,0.9557,0.9697,0.98835 -2030,6,8,24,0.7792,0.9627,0.9487,0.98369 -2030,6,9,1,0.71098,0.9627,0.91934,0.9697 -2030,6,9,2,0.68824,0.9557,0.8858,0.9417 -2030,6,9,3,0.6655,0.9557,0.84316,0.90816 -2030,6,9,4,0.60352,0.9557,0.80052,0.86448 -2030,6,9,5,0.58286,0.9557,0.75646,0.7792 -2030,6,9,6,0.8415,0.9557,0.68824,0.73372 -2030,6,9,7,0.6553,0.9487,0.6655,0.68824 -2030,6,9,8,0.5622,0.9417,0.62418,0.6655 -2030,6,9,9,0.45248,0.9417,0.60352,0.62418 -2030,6,9,10,0.5622,0.9417,0.8415,0.60352 -2030,6,9,11,0.5622,0.9417,0.8415,0.60352 -2030,6,9,12,0.7484,0.9557,0.5622,0.62418 -2030,6,9,13,0.58286,0.9557,0.60352,0.6655 -2030,6,9,14,0.64484,0.9557,0.6655,0.73372 -2030,6,9,15,0.71098,0.9627,0.75646,0.82184 -2030,6,9,16,0.80052,0.9557,0.84316,0.89698 -2030,6,9,17,0.84316,0.9487,0.90816,0.9487 -2030,6,9,18,0.8858,0.9487,0.9417,0.9767 -2030,6,9,19,0.91934,0.9487,0.9697,0.98602 -2030,6,9,20,0.93052,0.9487,0.97903,0.99068 -2030,6,9,21,0.90816,0.9417,0.97903,0.99534 -2030,6,9,22,0.86448,0.9487,0.9767,0.99301 -2030,6,9,23,0.82184,0.9557,0.9697,0.98835 -2030,6,9,24,0.7792,0.9627,0.9487,0.98369 -2030,6,10,1,0.71098,0.9627,0.91934,0.9697 -2030,6,10,2,0.68824,0.9557,0.8858,0.9417 -2030,6,10,3,0.6655,0.9557,0.84316,0.90816 -2030,6,10,4,0.60352,0.9557,0.80052,0.86448 -2030,6,10,5,0.58286,0.9557,0.75646,0.7792 -2030,6,10,6,0.8415,0.9557,0.68824,0.73372 -2030,6,10,7,0.6553,0.9487,0.6655,0.68824 -2030,6,10,8,0.5622,0.9417,0.62418,0.6655 -2030,6,10,9,0.45248,0.9417,0.60352,0.62418 -2030,6,10,10,0.5622,0.9417,0.8415,0.60352 -2030,6,10,11,0.5622,0.9417,0.8415,0.60352 -2030,6,10,12,0.7484,0.9557,0.5622,0.62418 -2030,6,10,13,0.58286,0.9557,0.60352,0.6655 -2030,6,10,14,0.64484,0.9557,0.6655,0.73372 -2030,6,10,15,0.71098,0.9627,0.75646,0.82184 -2030,6,10,16,0.80052,0.9557,0.84316,0.89698 -2030,6,10,17,0.84316,0.9487,0.90816,0.9487 -2030,6,10,18,0.8858,0.9487,0.9417,0.9767 -2030,6,10,19,0.91934,0.9487,0.9697,0.98602 -2030,6,10,20,0.93052,0.9487,0.97903,0.99068 -2030,6,10,21,0.90816,0.9417,0.97903,0.99534 -2030,6,10,22,0.86448,0.9487,0.9767,0.99301 -2030,6,10,23,0.82184,0.9557,0.9697,0.98835 -2030,6,10,24,0.7792,0.9627,0.9487,0.98369 -2030,6,11,1,0.71098,0.9627,0.91934,0.9697 -2030,6,11,2,0.68824,0.9557,0.8858,0.9417 -2030,6,11,3,0.6655,0.9557,0.84316,0.90816 -2030,6,11,4,0.60352,0.9557,0.80052,0.86448 -2030,6,11,5,0.58286,0.9557,0.75646,0.7792 -2030,6,11,6,0.8415,0.9557,0.68824,0.73372 -2030,6,11,7,0.6553,0.9487,0.6655,0.68824 -2030,6,11,8,0.5622,0.9417,0.62418,0.6655 -2030,6,11,9,0.45248,0.9417,0.60352,0.62418 -2030,6,11,10,0.5622,0.9417,0.8415,0.60352 -2030,6,11,11,0.5622,0.9417,0.8415,0.60352 -2030,6,11,12,0.7484,0.9557,0.5622,0.62418 -2030,6,11,13,0.58286,0.9557,0.60352,0.6655 -2030,6,11,14,0.64484,0.9557,0.6655,0.73372 -2030,6,11,15,0.71098,0.9627,0.75646,0.82184 -2030,6,11,16,0.80052,0.9557,0.84316,0.89698 -2030,6,11,17,0.84316,0.9487,0.90816,0.9487 -2030,6,11,18,0.8858,0.9487,0.9417,0.9767 -2030,6,11,19,0.91934,0.9487,0.9697,0.98602 -2030,6,11,20,0.93052,0.9487,0.97903,0.99068 -2030,6,11,21,0.90816,0.9417,0.97903,0.99534 -2030,6,11,22,0.86448,0.9487,0.9767,0.99301 -2030,6,11,23,0.82184,0.9557,0.9697,0.98835 -2030,6,11,24,0.7792,0.9627,0.9487,0.98369 -2030,6,12,1,0.71098,0.9627,0.91934,0.9697 -2030,6,12,2,0.68824,0.9557,0.8858,0.9417 -2030,6,12,3,0.6655,0.9557,0.84316,0.90816 -2030,6,12,4,0.60352,0.9557,0.80052,0.86448 -2030,6,12,5,0.58286,0.9557,0.75646,0.7792 -2030,6,12,6,0.8415,0.9557,0.68824,0.73372 -2030,6,12,7,0.6553,0.9487,0.6655,0.68824 -2030,6,12,8,0.5622,0.9417,0.62418,0.6655 -2030,6,12,9,0.45248,0.9417,0.60352,0.62418 -2030,6,12,10,0.5622,0.9417,0.8415,0.60352 -2030,6,12,11,0.5622,0.9417,0.8415,0.60352 -2030,6,12,12,0.7484,0.9557,0.5622,0.62418 -2030,6,12,13,0.58286,0.9557,0.60352,0.6655 -2030,6,12,14,0.64484,0.9557,0.6655,0.73372 -2030,6,12,15,0.71098,0.9627,0.75646,0.82184 -2030,6,12,16,0.80052,0.9557,0.84316,0.89698 -2030,6,12,17,0.84316,0.9487,0.90816,0.9487 -2030,6,12,18,0.8858,0.9487,0.9417,0.9767 -2030,6,12,19,0.91934,0.9487,0.9697,0.98602 -2030,6,12,20,0.93052,0.9487,0.97903,0.99068 -2030,6,12,21,0.90816,0.9417,0.97903,0.99534 -2030,6,12,22,0.86448,0.9487,0.9767,0.99301 -2030,6,12,23,0.82184,0.9557,0.9697,0.98835 -2030,6,12,24,0.7792,0.9627,0.9487,0.98369 -2030,6,13,1,0.71098,0.9627,0.91934,0.9697 -2030,6,13,2,0.68824,0.9557,0.8858,0.9417 -2030,6,13,3,0.6655,0.9557,0.84316,0.90816 -2030,6,13,4,0.60352,0.9557,0.80052,0.86448 -2030,6,13,5,0.58286,0.9557,0.75646,0.7792 -2030,6,13,6,0.8415,0.9557,0.68824,0.73372 -2030,6,13,7,0.6553,0.9487,0.6655,0.68824 -2030,6,13,8,0.5622,0.9417,0.62418,0.6655 -2030,6,13,9,0.45248,0.9417,0.60352,0.62418 -2030,6,13,10,0.5622,0.9417,0.8415,0.60352 -2030,6,13,11,0.5622,0.9417,0.8415,0.60352 -2030,6,13,12,0.7484,0.9557,0.5622,0.62418 -2030,6,13,13,0.58286,0.9557,0.60352,0.6655 -2030,6,13,14,0.64484,0.9557,0.6655,0.73372 -2030,6,13,15,0.71098,0.9627,0.75646,0.82184 -2030,6,13,16,0.80052,0.9557,0.84316,0.89698 -2030,6,13,17,0.84316,0.9487,0.90816,0.9487 -2030,6,13,18,0.8858,0.9487,0.9417,0.9767 -2030,6,13,19,0.91934,0.9487,0.9697,0.98602 -2030,6,13,20,0.93052,0.9487,0.97903,0.99068 -2030,6,13,21,0.90816,0.9417,0.97903,0.99534 -2030,6,13,22,0.86448,0.9487,0.9767,0.99301 -2030,6,13,23,0.82184,0.9557,0.9697,0.98835 -2030,6,13,24,0.7792,0.9627,0.9487,0.98369 -2030,6,14,1,0.71098,0.9627,0.91934,0.9697 -2030,6,14,2,0.68824,0.9557,0.8858,0.9417 -2030,6,14,3,0.6655,0.9557,0.84316,0.90816 -2030,6,14,4,0.60352,0.9557,0.80052,0.86448 -2030,6,14,5,0.58286,0.9557,0.75646,0.7792 -2030,6,14,6,0.8415,0.9557,0.68824,0.73372 -2030,6,14,7,0.6553,0.9487,0.6655,0.68824 -2030,6,14,8,0.5622,0.9417,0.62418,0.6655 -2030,6,14,9,0.45248,0.9417,0.60352,0.62418 -2030,6,14,10,0.5622,0.9417,0.8415,0.60352 -2030,6,14,11,0.5622,0.9417,0.8415,0.60352 -2030,6,14,12,0.7484,0.9557,0.5622,0.62418 -2030,6,14,13,0.58286,0.9557,0.60352,0.6655 -2030,6,14,14,0.64484,0.9557,0.6655,0.73372 -2030,6,14,15,0.71098,0.9627,0.75646,0.82184 -2030,6,14,16,0.80052,0.9557,0.84316,0.89698 -2030,6,14,17,0.84316,0.9487,0.90816,0.9487 -2030,6,14,18,0.8858,0.9487,0.9417,0.9767 -2030,6,14,19,0.91934,0.9487,0.9697,0.98602 -2030,6,14,20,0.93052,0.9487,0.97903,0.99068 -2030,6,14,21,0.90816,0.9417,0.97903,0.99534 -2030,6,14,22,0.86448,0.9487,0.9767,0.99301 -2030,6,14,23,0.82184,0.9557,0.9697,0.98835 -2030,6,14,24,0.7792,0.9627,0.9487,0.98369 -2030,6,15,1,0.71098,0.9627,0.91934,0.9697 -2030,6,15,2,0.68824,0.9557,0.8858,0.9417 -2030,6,15,3,0.6655,0.9557,0.84316,0.90816 -2030,6,15,4,0.60352,0.9557,0.80052,0.86448 -2030,6,15,5,0.58286,0.9557,0.75646,0.7792 -2030,6,15,6,0.8415,0.9557,0.68824,0.73372 -2030,6,15,7,0.6553,0.9487,0.6655,0.68824 -2030,6,15,8,0.5622,0.9417,0.62418,0.6655 -2030,6,15,9,0.45248,0.9417,0.60352,0.62418 -2030,6,15,10,0.5622,0.9417,0.8415,0.60352 -2030,6,15,11,0.5622,0.9417,0.8415,0.60352 -2030,6,15,12,0.7484,0.9557,0.5622,0.62418 -2030,6,15,13,0.58286,0.9557,0.60352,0.6655 -2030,6,15,14,0.64484,0.9557,0.6655,0.73372 -2030,6,15,15,0.71098,0.9627,0.75646,0.82184 -2030,6,15,16,0.80052,0.9557,0.84316,0.89698 -2030,6,15,17,0.84316,0.9487,0.90816,0.9487 -2030,6,15,18,0.8858,0.9487,0.9417,0.9767 -2030,6,15,19,0.91934,0.9487,0.9697,0.98602 -2030,6,15,20,0.93052,0.9487,0.97903,0.99068 -2030,6,15,21,0.90816,0.9417,0.97903,0.99534 -2030,6,15,22,0.86448,0.9487,0.9767,0.99301 -2030,6,15,23,0.82184,0.9557,0.9697,0.98835 -2030,6,15,24,0.7792,0.9627,0.9487,0.98369 -2030,6,16,1,0.71098,0.9627,0.91934,0.9697 -2030,6,16,2,0.68824,0.9557,0.8858,0.9417 -2030,6,16,3,0.6655,0.9557,0.84316,0.90816 -2030,6,16,4,0.60352,0.9557,0.80052,0.86448 -2030,6,16,5,0.58286,0.9557,0.75646,0.7792 -2030,6,16,6,0.8415,0.9557,0.68824,0.73372 -2030,6,16,7,0.6553,0.9487,0.6655,0.68824 -2030,6,16,8,0.5622,0.9417,0.62418,0.6655 -2030,6,16,9,0.45248,0.9417,0.60352,0.62418 -2030,6,16,10,0.5622,0.9417,0.8415,0.60352 -2030,6,16,11,0.5622,0.9417,0.8415,0.60352 -2030,6,16,12,0.7484,0.9557,0.5622,0.62418 -2030,6,16,13,0.58286,0.9557,0.60352,0.6655 -2030,6,16,14,0.64484,0.9557,0.6655,0.73372 -2030,6,16,15,0.71098,0.9627,0.75646,0.82184 -2030,6,16,16,0.80052,0.9557,0.84316,0.89698 -2030,6,16,17,0.84316,0.9487,0.90816,0.9487 -2030,6,16,18,0.8858,0.9487,0.9417,0.9767 -2030,6,16,19,0.91934,0.9487,0.9697,0.98602 -2030,6,16,20,0.93052,0.9487,0.97903,0.99068 -2030,6,16,21,0.90816,0.9417,0.97903,0.99534 -2030,6,16,22,0.86448,0.9487,0.9767,0.99301 -2030,6,16,23,0.82184,0.9557,0.9697,0.98835 -2030,6,16,24,0.7792,0.9627,0.9487,0.98369 -2030,6,17,1,0.71098,0.9627,0.91934,0.9697 -2030,6,17,2,0.68824,0.9557,0.8858,0.9417 -2030,6,17,3,0.6655,0.9557,0.84316,0.90816 -2030,6,17,4,0.60352,0.9557,0.80052,0.86448 -2030,6,17,5,0.58286,0.9557,0.75646,0.7792 -2030,6,17,6,0.8415,0.9557,0.68824,0.73372 -2030,6,17,7,0.6553,0.9487,0.6655,0.68824 -2030,6,17,8,0.5622,0.9417,0.62418,0.6655 -2030,6,17,9,0.45248,0.9417,0.60352,0.62418 -2030,6,17,10,0.5622,0.9417,0.8415,0.60352 -2030,6,17,11,0.5622,0.9417,0.8415,0.60352 -2030,6,17,12,0.7484,0.9557,0.5622,0.62418 -2030,6,17,13,0.58286,0.9557,0.60352,0.6655 -2030,6,17,14,0.64484,0.9557,0.6655,0.73372 -2030,6,17,15,0.71098,0.9627,0.75646,0.82184 -2030,6,17,16,0.80052,0.9557,0.84316,0.89698 -2030,6,17,17,0.84316,0.9487,0.90816,0.9487 -2030,6,17,18,0.8858,0.9487,0.9417,0.9767 -2030,6,17,19,0.91934,0.9487,0.9697,0.98602 -2030,6,17,20,0.93052,0.9487,0.97903,0.99068 -2030,6,17,21,0.90816,0.9417,0.97903,0.99534 -2030,6,17,22,0.86448,0.9487,0.9767,0.99301 -2030,6,17,23,0.82184,0.9557,0.9697,0.98835 -2030,6,17,24,0.7792,0.9627,0.9487,0.98369 -2030,6,18,1,0.71098,0.9627,0.91934,0.9697 -2030,6,18,2,0.68824,0.9557,0.8858,0.9417 -2030,6,18,3,0.6655,0.9557,0.84316,0.90816 -2030,6,18,4,0.60352,0.9557,0.80052,0.86448 -2030,6,18,5,0.58286,0.9557,0.75646,0.7792 -2030,6,18,6,0.8415,0.9557,0.68824,0.73372 -2030,6,18,7,0.6553,0.9487,0.6655,0.68824 -2030,6,18,8,0.5622,0.9417,0.62418,0.6655 -2030,6,18,9,0.45248,0.9417,0.60352,0.62418 -2030,6,18,10,0.5622,0.9417,0.8415,0.60352 -2030,6,18,11,0.5622,0.9417,0.8415,0.60352 -2030,6,18,12,0.7484,0.9557,0.5622,0.62418 -2030,6,18,13,0.58286,0.9557,0.60352,0.6655 -2030,6,18,14,0.64484,0.9557,0.6655,0.73372 -2030,6,18,15,0.71098,0.9627,0.75646,0.82184 -2030,6,18,16,0.80052,0.9557,0.84316,0.89698 -2030,6,18,17,0.84316,0.9487,0.90816,0.9487 -2030,6,18,18,0.8858,0.9487,0.9417,0.9767 -2030,6,18,19,0.91934,0.9487,0.9697,0.98602 -2030,6,18,20,0.93052,0.9487,0.97903,0.99068 -2030,6,18,21,0.90816,0.9417,0.97903,0.99534 -2030,6,18,22,0.86448,0.9487,0.9767,0.99301 -2030,6,18,23,0.82184,0.9557,0.9697,0.98835 -2030,6,18,24,0.7792,0.9627,0.9487,0.98369 -2030,6,19,1,0.71098,0.9627,0.91934,0.9697 -2030,6,19,2,0.68824,0.9557,0.8858,0.9417 -2030,6,19,3,0.6655,0.9557,0.84316,0.90816 -2030,6,19,4,0.60352,0.9557,0.80052,0.86448 -2030,6,19,5,0.58286,0.9557,0.75646,0.7792 -2030,6,19,6,0.8415,0.9557,0.68824,0.73372 -2030,6,19,7,0.6553,0.9487,0.6655,0.68824 -2030,6,19,8,0.5622,0.9417,0.62418,0.6655 -2030,6,19,9,0.45248,0.9417,0.60352,0.62418 -2030,6,19,10,0.5622,0.9417,0.8415,0.60352 -2030,6,19,11,0.5622,0.9417,0.8415,0.60352 -2030,6,19,12,0.7484,0.9557,0.5622,0.62418 -2030,6,19,13,0.58286,0.9557,0.60352,0.6655 -2030,6,19,14,0.64484,0.9557,0.6655,0.73372 -2030,6,19,15,0.71098,0.9627,0.75646,0.82184 -2030,6,19,16,0.80052,0.9557,0.84316,0.89698 -2030,6,19,17,0.84316,0.9487,0.90816,0.9487 -2030,6,19,18,0.8858,0.9487,0.9417,0.9767 -2030,6,19,19,0.91934,0.9487,0.9697,0.98602 -2030,6,19,20,0.93052,0.9487,0.97903,0.99068 -2030,6,19,21,0.90816,0.9417,0.97903,0.99534 -2030,6,19,22,0.86448,0.9487,0.9767,0.99301 -2030,6,19,23,0.82184,0.9557,0.9697,0.98835 -2030,6,19,24,0.7792,0.9627,0.9487,0.98369 -2030,6,20,1,0.71098,0.9627,0.91934,0.9697 -2030,6,20,2,0.68824,0.9557,0.8858,0.9417 -2030,6,20,3,0.6655,0.9557,0.84316,0.90816 -2030,6,20,4,0.60352,0.9557,0.80052,0.86448 -2030,6,20,5,0.58286,0.9557,0.75646,0.7792 -2030,6,20,6,0.8415,0.9557,0.68824,0.73372 -2030,6,20,7,0.6553,0.9487,0.6655,0.68824 -2030,6,20,8,0.5622,0.9417,0.62418,0.6655 -2030,6,20,9,0.45248,0.9417,0.60352,0.62418 -2030,6,20,10,0.5622,0.9417,0.8415,0.60352 -2030,6,20,11,0.5622,0.9417,0.8415,0.60352 -2030,6,20,12,0.7484,0.9557,0.5622,0.62418 -2030,6,20,13,0.58286,0.9557,0.60352,0.6655 -2030,6,20,14,0.64484,0.9557,0.6655,0.73372 -2030,6,20,15,0.71098,0.9627,0.75646,0.82184 -2030,6,20,16,0.80052,0.9557,0.84316,0.89698 -2030,6,20,17,0.84316,0.9487,0.90816,0.9487 -2030,6,20,18,0.8858,0.9487,0.9417,0.9767 -2030,6,20,19,0.91934,0.9487,0.9697,0.98602 -2030,6,20,20,0.93052,0.9487,0.97903,0.99068 -2030,6,20,21,0.90816,0.9417,0.97903,0.99534 -2030,6,20,22,0.86448,0.9487,0.9767,0.99301 -2030,6,20,23,0.82184,0.9557,0.9697,0.98835 -2030,6,20,24,0.7792,0.9627,0.9487,0.98369 -2030,6,21,1,0.71098,0.9627,0.91934,0.9697 -2030,6,21,2,0.68824,0.9557,0.8858,0.9417 -2030,6,21,3,0.6655,0.9557,0.84316,0.90816 -2030,6,21,4,0.60352,0.9557,0.80052,0.86448 -2030,6,21,5,0.58286,0.9557,0.75646,0.7792 -2030,6,21,6,0.8415,0.9557,0.68824,0.73372 -2030,6,21,7,0.6553,0.9487,0.6655,0.68824 -2030,6,21,8,0.5622,0.9417,0.62418,0.6655 -2030,6,21,9,0.45248,0.9417,0.60352,0.62418 -2030,6,21,10,0.5622,0.9417,0.8415,0.60352 -2030,6,21,11,0.5622,0.9417,0.8415,0.60352 -2030,6,21,12,0.7484,0.9557,0.5622,0.62418 -2030,6,21,13,0.58286,0.9557,0.60352,0.6655 -2030,6,21,14,0.64484,0.9557,0.6655,0.73372 -2030,6,21,15,0.71098,0.9627,0.75646,0.82184 -2030,6,21,16,0.80052,0.9557,0.84316,0.89698 -2030,6,21,17,0.84316,0.9487,0.90816,0.9487 -2030,6,21,18,0.8858,0.9487,0.9417,0.9767 -2030,6,21,19,0.91934,0.9487,0.9697,0.98602 -2030,6,21,20,0.93052,0.9487,0.97903,0.99068 -2030,6,21,21,0.90816,0.9417,0.97903,0.99534 -2030,6,21,22,0.86448,0.9487,0.9767,0.99301 -2030,6,21,23,0.82184,0.9557,0.9697,0.98835 -2030,6,21,24,0.7792,0.9627,0.9487,0.98369 -2030,6,22,1,0.71098,0.9627,0.91934,0.9697 -2030,6,22,2,0.68824,0.9557,0.8858,0.9417 -2030,6,22,3,0.6655,0.9557,0.84316,0.90816 -2030,6,22,4,0.60352,0.9557,0.80052,0.86448 -2030,6,22,5,0.58286,0.9557,0.75646,0.7792 -2030,6,22,6,0.8415,0.9557,0.68824,0.73372 -2030,6,22,7,0.6553,0.9487,0.6655,0.68824 -2030,6,22,8,0.5622,0.9417,0.62418,0.6655 -2030,6,22,9,0.45248,0.9417,0.60352,0.62418 -2030,6,22,10,0.5622,0.9417,0.8415,0.60352 -2030,6,22,11,0.5622,0.9417,0.8415,0.60352 -2030,6,22,12,0.7484,0.9557,0.5622,0.62418 -2030,6,22,13,0.58286,0.9557,0.60352,0.6655 -2030,6,22,14,0.64484,0.9557,0.6655,0.73372 -2030,6,22,15,0.71098,0.9627,0.75646,0.82184 -2030,6,22,16,0.80052,0.9557,0.84316,0.89698 -2030,6,22,17,0.84316,0.9487,0.90816,0.9487 -2030,6,22,18,0.8858,0.9487,0.9417,0.9767 -2030,6,22,19,0.91934,0.9487,0.9697,0.98602 -2030,6,22,20,0.93052,0.9487,0.97903,0.99068 -2030,6,22,21,0.90816,0.9417,0.97903,0.99534 -2030,6,22,22,0.86448,0.9487,0.9767,0.99301 -2030,6,22,23,0.82184,0.9557,0.9697,0.98835 -2030,6,22,24,0.7792,0.9627,0.9487,0.98369 -2030,6,23,1,0.71098,0.9627,0.91934,0.9697 -2030,6,23,2,0.68824,0.9557,0.8858,0.9417 -2030,6,23,3,0.6655,0.9557,0.84316,0.90816 -2030,6,23,4,0.60352,0.9557,0.80052,0.86448 -2030,6,23,5,0.58286,0.9557,0.75646,0.7792 -2030,6,23,6,0.8415,0.9557,0.68824,0.73372 -2030,6,23,7,0.6553,0.9487,0.6655,0.68824 -2030,6,23,8,0.5622,0.9417,0.62418,0.6655 -2030,6,23,9,0.45248,0.9417,0.60352,0.62418 -2030,6,23,10,0.5622,0.9417,0.8415,0.60352 -2030,6,23,11,0.5622,0.9417,0.8415,0.60352 -2030,6,23,12,0.7484,0.9557,0.5622,0.62418 -2030,6,23,13,0.58286,0.9557,0.60352,0.6655 -2030,6,23,14,0.64484,0.9557,0.6655,0.73372 -2030,6,23,15,0.71098,0.9627,0.75646,0.82184 -2030,6,23,16,0.80052,0.9557,0.84316,0.89698 -2030,6,23,17,0.84316,0.9487,0.90816,0.9487 -2030,6,23,18,0.8858,0.9487,0.9417,0.9767 -2030,6,23,19,0.91934,0.9487,0.9697,0.98602 -2030,6,23,20,0.93052,0.9487,0.97903,0.99068 -2030,6,23,21,0.90816,0.9417,0.97903,0.99534 -2030,6,23,22,0.86448,0.9487,0.9767,0.99301 -2030,6,23,23,0.82184,0.9557,0.9697,0.98835 -2030,6,23,24,0.7792,0.9627,0.9487,0.98369 -2030,6,24,1,0.71098,0.9627,0.91934,0.9697 -2030,6,24,2,0.68824,0.9557,0.8858,0.9417 -2030,6,24,3,0.6655,0.9557,0.84316,0.90816 -2030,6,24,4,0.60352,0.9557,0.80052,0.86448 -2030,6,24,5,0.58286,0.9557,0.75646,0.7792 -2030,6,24,6,0.8415,0.9557,0.68824,0.73372 -2030,6,24,7,0.6553,0.9487,0.6655,0.68824 -2030,6,24,8,0.5622,0.9417,0.62418,0.6655 -2030,6,24,9,0.45248,0.9417,0.60352,0.62418 -2030,6,24,10,0.5622,0.9417,0.8415,0.60352 -2030,6,24,11,0.5622,0.9417,0.8415,0.60352 -2030,6,24,12,0.7484,0.9557,0.5622,0.62418 -2030,6,24,13,0.58286,0.9557,0.60352,0.6655 -2030,6,24,14,0.64484,0.9557,0.6655,0.73372 -2030,6,24,15,0.71098,0.9627,0.75646,0.82184 -2030,6,24,16,0.80052,0.9557,0.84316,0.89698 -2030,6,24,17,0.84316,0.9487,0.90816,0.9487 -2030,6,24,18,0.8858,0.9487,0.9417,0.9767 -2030,6,24,19,0.91934,0.9487,0.9697,0.98602 -2030,6,24,20,0.93052,0.9487,0.97903,0.99068 -2030,6,24,21,0.90816,0.9417,0.97903,0.99534 -2030,6,24,22,0.86448,0.9487,0.9767,0.99301 -2030,6,24,23,0.82184,0.9557,0.9697,0.98835 -2030,6,24,24,0.7792,0.9627,0.9487,0.98369 -2030,6,25,1,0.71098,0.9627,0.91934,0.9697 -2030,6,25,2,0.68824,0.9557,0.8858,0.9417 -2030,6,25,3,0.6655,0.9557,0.84316,0.90816 -2030,6,25,4,0.60352,0.9557,0.80052,0.86448 -2030,6,25,5,0.58286,0.9557,0.75646,0.7792 -2030,6,25,6,0.8415,0.9557,0.68824,0.73372 -2030,6,25,7,0.6553,0.9487,0.6655,0.68824 -2030,6,25,8,0.5622,0.9417,0.62418,0.6655 -2030,6,25,9,0.45248,0.9417,0.60352,0.62418 -2030,6,25,10,0.5622,0.9417,0.8415,0.60352 -2030,6,25,11,0.5622,0.9417,0.8415,0.60352 -2030,6,25,12,0.7484,0.9557,0.5622,0.62418 -2030,6,25,13,0.58286,0.9557,0.60352,0.6655 -2030,6,25,14,0.64484,0.9557,0.6655,0.73372 -2030,6,25,15,0.71098,0.9627,0.75646,0.82184 -2030,6,25,16,0.80052,0.9557,0.84316,0.89698 -2030,6,25,17,0.84316,0.9487,0.90816,0.9487 -2030,6,25,18,0.8858,0.9487,0.9417,0.9767 -2030,6,25,19,0.91934,0.9487,0.9697,0.98602 -2030,6,25,20,0.93052,0.9487,0.97903,0.99068 -2030,6,25,21,0.90816,0.9417,0.97903,0.99534 -2030,6,25,22,0.86448,0.9487,0.9767,0.99301 -2030,6,25,23,0.82184,0.9557,0.9697,0.98835 -2030,6,25,24,0.7792,0.9627,0.9487,0.98369 -2030,6,26,1,0.71098,0.9627,0.91934,0.9697 -2030,6,26,2,0.68824,0.9557,0.8858,0.9417 -2030,6,26,3,0.6655,0.9557,0.84316,0.90816 -2030,6,26,4,0.60352,0.9557,0.80052,0.86448 -2030,6,26,5,0.58286,0.9557,0.75646,0.7792 -2030,6,26,6,0.8415,0.9557,0.68824,0.73372 -2030,6,26,7,0.6553,0.9487,0.6655,0.68824 -2030,6,26,8,0.5622,0.9417,0.62418,0.6655 -2030,6,26,9,0.45248,0.9417,0.60352,0.62418 -2030,6,26,10,0.5622,0.9417,0.8415,0.60352 -2030,6,26,11,0.5622,0.9417,0.8415,0.60352 -2030,6,26,12,0.7484,0.9557,0.5622,0.62418 -2030,6,26,13,0.58286,0.9557,0.60352,0.6655 -2030,6,26,14,0.64484,0.9557,0.6655,0.73372 -2030,6,26,15,0.71098,0.9627,0.75646,0.82184 -2030,6,26,16,0.80052,0.9557,0.84316,0.89698 -2030,6,26,17,0.84316,0.9487,0.90816,0.9487 -2030,6,26,18,0.8858,0.9487,0.9417,0.9767 -2030,6,26,19,0.91934,0.9487,0.9697,0.98602 -2030,6,26,20,0.93052,0.9487,0.97903,0.99068 -2030,6,26,21,0.90816,0.9417,0.97903,0.99534 -2030,6,26,22,0.86448,0.9487,0.9767,0.99301 -2030,6,26,23,0.82184,0.9557,0.9697,0.98835 -2030,6,26,24,0.7792,0.9627,0.9487,0.98369 -2030,6,27,1,0.71098,0.9627,0.91934,0.9697 -2030,6,27,2,0.68824,0.9557,0.8858,0.9417 -2030,6,27,3,0.6655,0.9557,0.84316,0.90816 -2030,6,27,4,0.60352,0.9557,0.80052,0.86448 -2030,6,27,5,0.58286,0.9557,0.75646,0.7792 -2030,6,27,6,0.8415,0.9557,0.68824,0.73372 -2030,6,27,7,0.6553,0.9487,0.6655,0.68824 -2030,6,27,8,0.5622,0.9417,0.62418,0.6655 -2030,6,27,9,0.45248,0.9417,0.60352,0.62418 -2030,6,27,10,0.5622,0.9417,0.8415,0.60352 -2030,6,27,11,0.5622,0.9417,0.8415,0.60352 -2030,6,27,12,0.7484,0.9557,0.5622,0.62418 -2030,6,27,13,0.58286,0.9557,0.60352,0.6655 -2030,6,27,14,0.64484,0.9557,0.6655,0.73372 -2030,6,27,15,0.71098,0.9627,0.75646,0.82184 -2030,6,27,16,0.80052,0.9557,0.84316,0.89698 -2030,6,27,17,0.84316,0.9487,0.90816,0.9487 -2030,6,27,18,0.8858,0.9487,0.9417,0.9767 -2030,6,27,19,0.91934,0.9487,0.9697,0.98602 -2030,6,27,20,0.93052,0.9487,0.97903,0.99068 -2030,6,27,21,0.90816,0.9417,0.97903,0.99534 -2030,6,27,22,0.86448,0.9487,0.9767,0.99301 -2030,6,27,23,0.82184,0.9557,0.9697,0.98835 -2030,6,27,24,0.7792,0.9627,0.9487,0.98369 -2030,6,28,1,0.71098,0.9627,0.91934,0.9697 -2030,6,28,2,0.68824,0.9557,0.8858,0.9417 -2030,6,28,3,0.6655,0.9557,0.84316,0.90816 -2030,6,28,4,0.60352,0.9557,0.80052,0.86448 -2030,6,28,5,0.58286,0.9557,0.75646,0.7792 -2030,6,28,6,0.8415,0.9557,0.68824,0.73372 -2030,6,28,7,0.6553,0.9487,0.6655,0.68824 -2030,6,28,8,0.5622,0.9417,0.62418,0.6655 -2030,6,28,9,0.45248,0.9417,0.60352,0.62418 -2030,6,28,10,0.5622,0.9417,0.8415,0.60352 -2030,6,28,11,0.5622,0.9417,0.8415,0.60352 -2030,6,28,12,0.7484,0.9557,0.5622,0.62418 -2030,6,28,13,0.58286,0.9557,0.60352,0.6655 -2030,6,28,14,0.64484,0.9557,0.6655,0.73372 -2030,6,28,15,0.71098,0.9627,0.75646,0.82184 -2030,6,28,16,0.80052,0.9557,0.84316,0.89698 -2030,6,28,17,0.84316,0.9487,0.90816,0.9487 -2030,6,28,18,0.8858,0.9487,0.9417,0.9767 -2030,6,28,19,0.91934,0.9487,0.9697,0.98602 -2030,6,28,20,0.93052,0.9487,0.97903,0.99068 -2030,6,28,21,0.90816,0.9417,0.97903,0.99534 -2030,6,28,22,0.86448,0.9487,0.9767,0.99301 -2030,6,28,23,0.82184,0.9557,0.9697,0.98835 -2030,6,28,24,0.7792,0.9627,0.9487,0.98369 -2030,6,29,1,0.71098,0.9627,0.91934,0.9697 -2030,6,29,2,0.68824,0.9557,0.8858,0.9417 -2030,6,29,3,0.6655,0.9557,0.84316,0.90816 -2030,6,29,4,0.60352,0.9557,0.80052,0.86448 -2030,6,29,5,0.58286,0.9557,0.75646,0.7792 -2030,6,29,6,0.8415,0.9557,0.68824,0.73372 -2030,6,29,7,0.6553,0.9487,0.6655,0.68824 -2030,6,29,8,0.5622,0.9417,0.62418,0.6655 -2030,6,29,9,0.45248,0.9417,0.60352,0.62418 -2030,6,29,10,0.5622,0.9417,0.8415,0.60352 -2030,6,29,11,0.5622,0.9417,0.8415,0.60352 -2030,6,29,12,0.7484,0.9557,0.5622,0.62418 -2030,6,29,13,0.58286,0.9557,0.60352,0.6655 -2030,6,29,14,0.64484,0.9557,0.6655,0.73372 -2030,6,29,15,0.71098,0.9627,0.75646,0.82184 -2030,6,29,16,0.80052,0.9557,0.84316,0.89698 -2030,6,29,17,0.84316,0.9487,0.90816,0.9487 -2030,6,29,18,0.8858,0.9487,0.9417,0.9767 -2030,6,29,19,0.91934,0.9487,0.9697,0.98602 -2030,6,29,20,0.93052,0.9487,0.97903,0.99068 -2030,6,29,21,0.90816,0.9417,0.97903,0.99534 -2030,6,29,22,0.86448,0.9487,0.9767,0.99301 -2030,6,29,23,0.82184,0.9557,0.9697,0.98835 -2030,6,29,24,0.7792,0.9627,0.9487,0.98369 -2030,6,30,1,0.71098,0.9627,0.91934,0.9697 -2030,6,30,2,0.68824,0.9557,0.8858,0.9417 -2030,6,30,3,0.6655,0.9557,0.84316,0.90816 -2030,6,30,4,0.60352,0.9557,0.80052,0.86448 -2030,6,30,5,0.58286,0.9557,0.75646,0.7792 -2030,6,30,6,0.8415,0.9557,0.68824,0.73372 -2030,6,30,7,0.6553,0.9487,0.6655,0.68824 -2030,6,30,8,0.5622,0.9417,0.62418,0.6655 -2030,6,30,9,0.45248,0.9417,0.60352,0.62418 -2030,6,30,10,0.5622,0.9417,0.8415,0.60352 -2030,6,30,11,0.5622,0.9417,0.8415,0.60352 -2030,6,30,12,0.7484,0.9557,0.5622,0.62418 -2030,6,30,13,0.58286,0.9557,0.60352,0.6655 -2030,6,30,14,0.64484,0.9557,0.6655,0.73372 -2030,6,30,15,0.71098,0.9627,0.75646,0.82184 -2030,6,30,16,0.80052,0.9557,0.84316,0.89698 -2030,6,30,17,0.84316,0.9487,0.90816,0.9487 -2030,6,30,18,0.8858,0.9487,0.9417,0.9767 -2030,6,30,19,0.91934,0.9487,0.9697,0.98602 -2030,6,30,20,0.93052,0.9487,0.97903,0.99068 -2030,6,30,21,0.90816,0.9417,0.97903,0.99534 -2030,6,30,22,0.86448,0.9487,0.9767,0.99301 -2030,6,30,23,0.82184,0.9557,0.9697,0.98835 -2030,6,30,24,0.7792,0.9627,0.9487,0.98369 -2030,7,1,1,0.3713,0.9417,0.5622,0.58286 -2030,7,1,2,0.3566,0.9417,0.45248,0.6553 -2030,7,1,3,0.3419,0.9417,0.41924,0.4691 -2030,7,1,4,0.3272,0.9417,0.386,0.41924 -2030,7,1,5,0.29966,0.9417,0.3713,0.386 -2030,7,1,6,0.29966,0.93052,0.3566,0.3713 -2030,7,1,7,0.27398,0.91934,0.3419,0.3419 -2030,7,1,8,0.26114,0.91934,0.3125,0.3125 -2030,7,1,9,0.26114,0.90816,0.29966,0.3125 -2030,7,1,10,0.2483,0.89698,0.28682,0.29966 -2030,7,1,11,0.2483,0.8858,0.28682,0.29966 -2030,7,1,12,0.27398,0.8858,0.29966,0.3125 -2030,7,1,13,0.29966,0.8858,0.3125,0.3272 -2030,7,1,14,0.3419,0.86448,0.3419,0.3566 -2030,7,1,15,0.3713,0.84316,0.386,0.40262 -2030,7,1,16,0.40262,0.82184,0.45248,0.45248 -2030,7,1,17,0.5622,0.80052,0.7484,0.5622 -2030,7,1,18,0.7484,0.80052,0.58286,0.62418 -2030,7,1,19,0.8415,0.80052,0.6655,0.73372 -2030,7,1,20,0.7484,0.82184,0.68824,0.7792 -2030,7,1,21,0.5622,0.84316,0.68824,0.80052 -2030,7,1,22,0.43586,0.8858,0.6655,0.7792 -2030,7,1,23,0.40262,0.91934,0.60352,0.73372 -2030,7,1,24,0.386,0.93052,0.8415,0.6655 -2030,7,2,1,0.3713,0.9417,0.5622,0.58286 -2030,7,2,2,0.3566,0.9417,0.45248,0.6553 -2030,7,2,3,0.3419,0.9417,0.41924,0.4691 -2030,7,2,4,0.3272,0.9417,0.386,0.41924 -2030,7,2,5,0.29966,0.9417,0.3713,0.386 -2030,7,2,6,0.29966,0.93052,0.3566,0.3713 -2030,7,2,7,0.27398,0.91934,0.3419,0.3419 -2030,7,2,8,0.26114,0.91934,0.3125,0.3125 -2030,7,2,9,0.26114,0.90816,0.29966,0.3125 -2030,7,2,10,0.2483,0.89698,0.28682,0.29966 -2030,7,2,11,0.2483,0.8858,0.28682,0.29966 -2030,7,2,12,0.27398,0.8858,0.29966,0.3125 -2030,7,2,13,0.29966,0.8858,0.3125,0.3272 -2030,7,2,14,0.3419,0.86448,0.3419,0.3566 -2030,7,2,15,0.3713,0.84316,0.386,0.40262 -2030,7,2,16,0.40262,0.82184,0.45248,0.45248 -2030,7,2,17,0.5622,0.80052,0.7484,0.5622 -2030,7,2,18,0.7484,0.80052,0.58286,0.62418 -2030,7,2,19,0.8415,0.80052,0.6655,0.73372 -2030,7,2,20,0.7484,0.82184,0.68824,0.7792 -2030,7,2,21,0.5622,0.84316,0.68824,0.80052 -2030,7,2,22,0.43586,0.8858,0.6655,0.7792 -2030,7,2,23,0.40262,0.91934,0.60352,0.73372 -2030,7,2,24,0.386,0.93052,0.8415,0.6655 -2030,7,3,1,0.3713,0.9417,0.5622,0.58286 -2030,7,3,2,0.3566,0.9417,0.45248,0.6553 -2030,7,3,3,0.3419,0.9417,0.41924,0.4691 -2030,7,3,4,0.3272,0.9417,0.386,0.41924 -2030,7,3,5,0.29966,0.9417,0.3713,0.386 -2030,7,3,6,0.29966,0.93052,0.3566,0.3713 -2030,7,3,7,0.27398,0.91934,0.3419,0.3419 -2030,7,3,8,0.26114,0.91934,0.3125,0.3125 -2030,7,3,9,0.26114,0.90816,0.29966,0.3125 -2030,7,3,10,0.2483,0.89698,0.28682,0.29966 -2030,7,3,11,0.2483,0.8858,0.28682,0.29966 -2030,7,3,12,0.27398,0.8858,0.29966,0.3125 -2030,7,3,13,0.29966,0.8858,0.3125,0.3272 -2030,7,3,14,0.3419,0.86448,0.3419,0.3566 -2030,7,3,15,0.3713,0.84316,0.386,0.40262 -2030,7,3,16,0.40262,0.82184,0.45248,0.45248 -2030,7,3,17,0.5622,0.80052,0.7484,0.5622 -2030,7,3,18,0.7484,0.80052,0.58286,0.62418 -2030,7,3,19,0.8415,0.80052,0.6655,0.73372 -2030,7,3,20,0.7484,0.82184,0.68824,0.7792 -2030,7,3,21,0.5622,0.84316,0.68824,0.80052 -2030,7,3,22,0.43586,0.8858,0.6655,0.7792 -2030,7,3,23,0.40262,0.91934,0.60352,0.73372 -2030,7,3,24,0.386,0.93052,0.8415,0.6655 -2030,7,4,1,0.3713,0.9417,0.5622,0.58286 -2030,7,4,2,0.3566,0.9417,0.45248,0.6553 -2030,7,4,3,0.3419,0.9417,0.41924,0.4691 -2030,7,4,4,0.3272,0.9417,0.386,0.41924 -2030,7,4,5,0.29966,0.9417,0.3713,0.386 -2030,7,4,6,0.29966,0.93052,0.3566,0.3713 -2030,7,4,7,0.27398,0.91934,0.3419,0.3419 -2030,7,4,8,0.26114,0.91934,0.3125,0.3125 -2030,7,4,9,0.26114,0.90816,0.29966,0.3125 -2030,7,4,10,0.2483,0.89698,0.28682,0.29966 -2030,7,4,11,0.2483,0.8858,0.28682,0.29966 -2030,7,4,12,0.27398,0.8858,0.29966,0.3125 -2030,7,4,13,0.29966,0.8858,0.3125,0.3272 -2030,7,4,14,0.3419,0.86448,0.3419,0.3566 -2030,7,4,15,0.3713,0.84316,0.386,0.40262 -2030,7,4,16,0.40262,0.82184,0.45248,0.45248 -2030,7,4,17,0.5622,0.80052,0.7484,0.5622 -2030,7,4,18,0.7484,0.80052,0.58286,0.62418 -2030,7,4,19,0.8415,0.80052,0.6655,0.73372 -2030,7,4,20,0.7484,0.82184,0.68824,0.7792 -2030,7,4,21,0.5622,0.84316,0.68824,0.80052 -2030,7,4,22,0.43586,0.8858,0.6655,0.7792 -2030,7,4,23,0.40262,0.91934,0.60352,0.73372 -2030,7,4,24,0.386,0.93052,0.8415,0.6655 -2030,7,5,1,0.3713,0.9417,0.5622,0.58286 -2030,7,5,2,0.3566,0.9417,0.45248,0.6553 -2030,7,5,3,0.3419,0.9417,0.41924,0.4691 -2030,7,5,4,0.3272,0.9417,0.386,0.41924 -2030,7,5,5,0.29966,0.9417,0.3713,0.386 -2030,7,5,6,0.29966,0.93052,0.3566,0.3713 -2030,7,5,7,0.27398,0.91934,0.3419,0.3419 -2030,7,5,8,0.26114,0.91934,0.3125,0.3125 -2030,7,5,9,0.26114,0.90816,0.29966,0.3125 -2030,7,5,10,0.2483,0.89698,0.28682,0.29966 -2030,7,5,11,0.2483,0.8858,0.28682,0.29966 -2030,7,5,12,0.27398,0.8858,0.29966,0.3125 -2030,7,5,13,0.29966,0.8858,0.3125,0.3272 -2030,7,5,14,0.3419,0.86448,0.3419,0.3566 -2030,7,5,15,0.3713,0.84316,0.386,0.40262 -2030,7,5,16,0.40262,0.82184,0.45248,0.45248 -2030,7,5,17,0.5622,0.80052,0.7484,0.5622 -2030,7,5,18,0.7484,0.80052,0.58286,0.62418 -2030,7,5,19,0.8415,0.80052,0.6655,0.73372 -2030,7,5,20,0.7484,0.82184,0.68824,0.7792 -2030,7,5,21,0.5622,0.84316,0.68824,0.80052 -2030,7,5,22,0.43586,0.8858,0.6655,0.7792 -2030,7,5,23,0.40262,0.91934,0.60352,0.73372 -2030,7,5,24,0.386,0.93052,0.8415,0.6655 -2030,7,6,1,0.3713,0.9417,0.5622,0.58286 -2030,7,6,2,0.3566,0.9417,0.45248,0.6553 -2030,7,6,3,0.3419,0.9417,0.41924,0.4691 -2030,7,6,4,0.3272,0.9417,0.386,0.41924 -2030,7,6,5,0.29966,0.9417,0.3713,0.386 -2030,7,6,6,0.29966,0.93052,0.3566,0.3713 -2030,7,6,7,0.27398,0.91934,0.3419,0.3419 -2030,7,6,8,0.26114,0.91934,0.3125,0.3125 -2030,7,6,9,0.26114,0.90816,0.29966,0.3125 -2030,7,6,10,0.2483,0.89698,0.28682,0.29966 -2030,7,6,11,0.2483,0.8858,0.28682,0.29966 -2030,7,6,12,0.27398,0.8858,0.29966,0.3125 -2030,7,6,13,0.29966,0.8858,0.3125,0.3272 -2030,7,6,14,0.3419,0.86448,0.3419,0.3566 -2030,7,6,15,0.3713,0.84316,0.386,0.40262 -2030,7,6,16,0.40262,0.82184,0.45248,0.45248 -2030,7,6,17,0.5622,0.80052,0.7484,0.5622 -2030,7,6,18,0.7484,0.80052,0.58286,0.62418 -2030,7,6,19,0.8415,0.80052,0.6655,0.73372 -2030,7,6,20,0.7484,0.82184,0.68824,0.7792 -2030,7,6,21,0.5622,0.84316,0.68824,0.80052 -2030,7,6,22,0.43586,0.8858,0.6655,0.7792 -2030,7,6,23,0.40262,0.91934,0.60352,0.73372 -2030,7,6,24,0.386,0.93052,0.8415,0.6655 -2030,7,7,1,0.3713,0.9417,0.5622,0.58286 -2030,7,7,2,0.3566,0.9417,0.45248,0.6553 -2030,7,7,3,0.3419,0.9417,0.41924,0.4691 -2030,7,7,4,0.3272,0.9417,0.386,0.41924 -2030,7,7,5,0.29966,0.9417,0.3713,0.386 -2030,7,7,6,0.29966,0.93052,0.3566,0.3713 -2030,7,7,7,0.27398,0.91934,0.3419,0.3419 -2030,7,7,8,0.26114,0.91934,0.3125,0.3125 -2030,7,7,9,0.26114,0.90816,0.29966,0.3125 -2030,7,7,10,0.2483,0.89698,0.28682,0.29966 -2030,7,7,11,0.2483,0.8858,0.28682,0.29966 -2030,7,7,12,0.27398,0.8858,0.29966,0.3125 -2030,7,7,13,0.29966,0.8858,0.3125,0.3272 -2030,7,7,14,0.3419,0.86448,0.3419,0.3566 -2030,7,7,15,0.3713,0.84316,0.386,0.40262 -2030,7,7,16,0.40262,0.82184,0.45248,0.45248 -2030,7,7,17,0.5622,0.80052,0.7484,0.5622 -2030,7,7,18,0.7484,0.80052,0.58286,0.62418 -2030,7,7,19,0.8415,0.80052,0.6655,0.73372 -2030,7,7,20,0.7484,0.82184,0.68824,0.7792 -2030,7,7,21,0.5622,0.84316,0.68824,0.80052 -2030,7,7,22,0.43586,0.8858,0.6655,0.7792 -2030,7,7,23,0.40262,0.91934,0.60352,0.73372 -2030,7,7,24,0.386,0.93052,0.8415,0.6655 -2030,7,8,1,0.3713,0.9417,0.5622,0.58286 -2030,7,8,2,0.3566,0.9417,0.45248,0.6553 -2030,7,8,3,0.3419,0.9417,0.41924,0.4691 -2030,7,8,4,0.3272,0.9417,0.386,0.41924 -2030,7,8,5,0.29966,0.9417,0.3713,0.386 -2030,7,8,6,0.29966,0.93052,0.3566,0.3713 -2030,7,8,7,0.27398,0.91934,0.3419,0.3419 -2030,7,8,8,0.26114,0.91934,0.3125,0.3125 -2030,7,8,9,0.26114,0.90816,0.29966,0.3125 -2030,7,8,10,0.2483,0.89698,0.28682,0.29966 -2030,7,8,11,0.2483,0.8858,0.28682,0.29966 -2030,7,8,12,0.27398,0.8858,0.29966,0.3125 -2030,7,8,13,0.29966,0.8858,0.3125,0.3272 -2030,7,8,14,0.3419,0.86448,0.3419,0.3566 -2030,7,8,15,0.3713,0.84316,0.386,0.40262 -2030,7,8,16,0.40262,0.82184,0.45248,0.45248 -2030,7,8,17,0.5622,0.80052,0.7484,0.5622 -2030,7,8,18,0.7484,0.80052,0.58286,0.62418 -2030,7,8,19,0.8415,0.80052,0.6655,0.73372 -2030,7,8,20,0.7484,0.82184,0.68824,0.7792 -2030,7,8,21,0.5622,0.84316,0.68824,0.80052 -2030,7,8,22,0.43586,0.8858,0.6655,0.7792 -2030,7,8,23,0.40262,0.91934,0.60352,0.73372 -2030,7,8,24,0.386,0.93052,0.8415,0.6655 -2030,7,9,1,0.3713,0.9417,0.5622,0.58286 -2030,7,9,2,0.3566,0.9417,0.45248,0.6553 -2030,7,9,3,0.3419,0.9417,0.41924,0.4691 -2030,7,9,4,0.3272,0.9417,0.386,0.41924 -2030,7,9,5,0.29966,0.9417,0.3713,0.386 -2030,7,9,6,0.29966,0.93052,0.3566,0.3713 -2030,7,9,7,0.27398,0.91934,0.3419,0.3419 -2030,7,9,8,0.26114,0.91934,0.3125,0.3125 -2030,7,9,9,0.26114,0.90816,0.29966,0.3125 -2030,7,9,10,0.2483,0.89698,0.28682,0.29966 -2030,7,9,11,0.2483,0.8858,0.28682,0.29966 -2030,7,9,12,0.27398,0.8858,0.29966,0.3125 -2030,7,9,13,0.29966,0.8858,0.3125,0.3272 -2030,7,9,14,0.3419,0.86448,0.3419,0.3566 -2030,7,9,15,0.3713,0.84316,0.386,0.40262 -2030,7,9,16,0.40262,0.82184,0.45248,0.45248 -2030,7,9,17,0.5622,0.80052,0.7484,0.5622 -2030,7,9,18,0.7484,0.80052,0.58286,0.62418 -2030,7,9,19,0.8415,0.80052,0.6655,0.73372 -2030,7,9,20,0.7484,0.82184,0.68824,0.7792 -2030,7,9,21,0.5622,0.84316,0.68824,0.80052 -2030,7,9,22,0.43586,0.8858,0.6655,0.7792 -2030,7,9,23,0.40262,0.91934,0.60352,0.73372 -2030,7,9,24,0.386,0.93052,0.8415,0.6655 -2030,7,10,1,0.3713,0.9417,0.5622,0.58286 -2030,7,10,2,0.3566,0.9417,0.45248,0.6553 -2030,7,10,3,0.3419,0.9417,0.41924,0.4691 -2030,7,10,4,0.3272,0.9417,0.386,0.41924 -2030,7,10,5,0.29966,0.9417,0.3713,0.386 -2030,7,10,6,0.29966,0.93052,0.3566,0.3713 -2030,7,10,7,0.27398,0.91934,0.3419,0.3419 -2030,7,10,8,0.26114,0.91934,0.3125,0.3125 -2030,7,10,9,0.26114,0.90816,0.29966,0.3125 -2030,7,10,10,0.2483,0.89698,0.28682,0.29966 -2030,7,10,11,0.2483,0.8858,0.28682,0.29966 -2030,7,10,12,0.27398,0.8858,0.29966,0.3125 -2030,7,10,13,0.29966,0.8858,0.3125,0.3272 -2030,7,10,14,0.3419,0.86448,0.3419,0.3566 -2030,7,10,15,0.3713,0.84316,0.386,0.40262 -2030,7,10,16,0.40262,0.82184,0.45248,0.45248 -2030,7,10,17,0.5622,0.80052,0.7484,0.5622 -2030,7,10,18,0.7484,0.80052,0.58286,0.62418 -2030,7,10,19,0.8415,0.80052,0.6655,0.73372 -2030,7,10,20,0.7484,0.82184,0.68824,0.7792 -2030,7,10,21,0.5622,0.84316,0.68824,0.80052 -2030,7,10,22,0.43586,0.8858,0.6655,0.7792 -2030,7,10,23,0.40262,0.91934,0.60352,0.73372 -2030,7,10,24,0.386,0.93052,0.8415,0.6655 -2030,7,11,1,0.3713,0.9417,0.5622,0.58286 -2030,7,11,2,0.3566,0.9417,0.45248,0.6553 -2030,7,11,3,0.3419,0.9417,0.41924,0.4691 -2030,7,11,4,0.3272,0.9417,0.386,0.41924 -2030,7,11,5,0.29966,0.9417,0.3713,0.386 -2030,7,11,6,0.29966,0.93052,0.3566,0.3713 -2030,7,11,7,0.27398,0.91934,0.3419,0.3419 -2030,7,11,8,0.26114,0.91934,0.3125,0.3125 -2030,7,11,9,0.26114,0.90816,0.29966,0.3125 -2030,7,11,10,0.2483,0.89698,0.28682,0.29966 -2030,7,11,11,0.2483,0.8858,0.28682,0.29966 -2030,7,11,12,0.27398,0.8858,0.29966,0.3125 -2030,7,11,13,0.29966,0.8858,0.3125,0.3272 -2030,7,11,14,0.3419,0.86448,0.3419,0.3566 -2030,7,11,15,0.3713,0.84316,0.386,0.40262 -2030,7,11,16,0.40262,0.82184,0.45248,0.45248 -2030,7,11,17,0.5622,0.80052,0.7484,0.5622 -2030,7,11,18,0.7484,0.80052,0.58286,0.62418 -2030,7,11,19,0.8415,0.80052,0.6655,0.73372 -2030,7,11,20,0.7484,0.82184,0.68824,0.7792 -2030,7,11,21,0.5622,0.84316,0.68824,0.80052 -2030,7,11,22,0.43586,0.8858,0.6655,0.7792 -2030,7,11,23,0.40262,0.91934,0.60352,0.73372 -2030,7,11,24,0.386,0.93052,0.8415,0.6655 -2030,7,12,1,0.3713,0.9417,0.5622,0.58286 -2030,7,12,2,0.3566,0.9417,0.45248,0.6553 -2030,7,12,3,0.3419,0.9417,0.41924,0.4691 -2030,7,12,4,0.3272,0.9417,0.386,0.41924 -2030,7,12,5,0.29966,0.9417,0.3713,0.386 -2030,7,12,6,0.29966,0.93052,0.3566,0.3713 -2030,7,12,7,0.27398,0.91934,0.3419,0.3419 -2030,7,12,8,0.26114,0.91934,0.3125,0.3125 -2030,7,12,9,0.26114,0.90816,0.29966,0.3125 -2030,7,12,10,0.2483,0.89698,0.28682,0.29966 -2030,7,12,11,0.2483,0.8858,0.28682,0.29966 -2030,7,12,12,0.27398,0.8858,0.29966,0.3125 -2030,7,12,13,0.29966,0.8858,0.3125,0.3272 -2030,7,12,14,0.3419,0.86448,0.3419,0.3566 -2030,7,12,15,0.3713,0.84316,0.386,0.40262 -2030,7,12,16,0.40262,0.82184,0.45248,0.45248 -2030,7,12,17,0.5622,0.80052,0.7484,0.5622 -2030,7,12,18,0.7484,0.80052,0.58286,0.62418 -2030,7,12,19,0.8415,0.80052,0.6655,0.73372 -2030,7,12,20,0.7484,0.82184,0.68824,0.7792 -2030,7,12,21,0.5622,0.84316,0.68824,0.80052 -2030,7,12,22,0.43586,0.8858,0.6655,0.7792 -2030,7,12,23,0.40262,0.91934,0.60352,0.73372 -2030,7,12,24,0.386,0.93052,0.8415,0.6655 -2030,7,13,1,0.3713,0.9417,0.5622,0.58286 -2030,7,13,2,0.3566,0.9417,0.45248,0.6553 -2030,7,13,3,0.3419,0.9417,0.41924,0.4691 -2030,7,13,4,0.3272,0.9417,0.386,0.41924 -2030,7,13,5,0.29966,0.9417,0.3713,0.386 -2030,7,13,6,0.29966,0.93052,0.3566,0.3713 -2030,7,13,7,0.27398,0.91934,0.3419,0.3419 -2030,7,13,8,0.26114,0.91934,0.3125,0.3125 -2030,7,13,9,0.26114,0.90816,0.29966,0.3125 -2030,7,13,10,0.2483,0.89698,0.28682,0.29966 -2030,7,13,11,0.2483,0.8858,0.28682,0.29966 -2030,7,13,12,0.27398,0.8858,0.29966,0.3125 -2030,7,13,13,0.29966,0.8858,0.3125,0.3272 -2030,7,13,14,0.3419,0.86448,0.3419,0.3566 -2030,7,13,15,0.3713,0.84316,0.386,0.40262 -2030,7,13,16,0.40262,0.82184,0.45248,0.45248 -2030,7,13,17,0.5622,0.80052,0.7484,0.5622 -2030,7,13,18,0.7484,0.80052,0.58286,0.62418 -2030,7,13,19,0.8415,0.80052,0.6655,0.73372 -2030,7,13,20,0.7484,0.82184,0.68824,0.7792 -2030,7,13,21,0.5622,0.84316,0.68824,0.80052 -2030,7,13,22,0.43586,0.8858,0.6655,0.7792 -2030,7,13,23,0.40262,0.91934,0.60352,0.73372 -2030,7,13,24,0.386,0.93052,0.8415,0.6655 -2030,7,14,1,0.3713,0.9417,0.5622,0.58286 -2030,7,14,2,0.3566,0.9417,0.45248,0.6553 -2030,7,14,3,0.3419,0.9417,0.41924,0.4691 -2030,7,14,4,0.3272,0.9417,0.386,0.41924 -2030,7,14,5,0.29966,0.9417,0.3713,0.386 -2030,7,14,6,0.29966,0.93052,0.3566,0.3713 -2030,7,14,7,0.27398,0.91934,0.3419,0.3419 -2030,7,14,8,0.26114,0.91934,0.3125,0.3125 -2030,7,14,9,0.26114,0.90816,0.29966,0.3125 -2030,7,14,10,0.2483,0.89698,0.28682,0.29966 -2030,7,14,11,0.2483,0.8858,0.28682,0.29966 -2030,7,14,12,0.27398,0.8858,0.29966,0.3125 -2030,7,14,13,0.29966,0.8858,0.3125,0.3272 -2030,7,14,14,0.3419,0.86448,0.3419,0.3566 -2030,7,14,15,0.3713,0.84316,0.386,0.40262 -2030,7,14,16,0.40262,0.82184,0.45248,0.45248 -2030,7,14,17,0.5622,0.80052,0.7484,0.5622 -2030,7,14,18,0.7484,0.80052,0.58286,0.62418 -2030,7,14,19,0.8415,0.80052,0.6655,0.73372 -2030,7,14,20,0.7484,0.82184,0.68824,0.7792 -2030,7,14,21,0.5622,0.84316,0.68824,0.80052 -2030,7,14,22,0.43586,0.8858,0.6655,0.7792 -2030,7,14,23,0.40262,0.91934,0.60352,0.73372 -2030,7,14,24,0.386,0.93052,0.8415,0.6655 -2030,7,15,1,0.3713,0.9417,0.5622,0.58286 -2030,7,15,2,0.3566,0.9417,0.45248,0.6553 -2030,7,15,3,0.3419,0.9417,0.41924,0.4691 -2030,7,15,4,0.3272,0.9417,0.386,0.41924 -2030,7,15,5,0.29966,0.9417,0.3713,0.386 -2030,7,15,6,0.29966,0.93052,0.3566,0.3713 -2030,7,15,7,0.27398,0.91934,0.3419,0.3419 -2030,7,15,8,0.26114,0.91934,0.3125,0.3125 -2030,7,15,9,0.26114,0.90816,0.29966,0.3125 -2030,7,15,10,0.2483,0.89698,0.28682,0.29966 -2030,7,15,11,0.2483,0.8858,0.28682,0.29966 -2030,7,15,12,0.27398,0.8858,0.29966,0.3125 -2030,7,15,13,0.29966,0.8858,0.3125,0.3272 -2030,7,15,14,0.3419,0.86448,0.3419,0.3566 -2030,7,15,15,0.3713,0.84316,0.386,0.40262 -2030,7,15,16,0.40262,0.82184,0.45248,0.45248 -2030,7,15,17,0.5622,0.80052,0.7484,0.5622 -2030,7,15,18,0.7484,0.80052,0.58286,0.62418 -2030,7,15,19,0.8415,0.80052,0.6655,0.73372 -2030,7,15,20,0.7484,0.82184,0.68824,0.7792 -2030,7,15,21,0.5622,0.84316,0.68824,0.80052 -2030,7,15,22,0.43586,0.8858,0.6655,0.7792 -2030,7,15,23,0.40262,0.91934,0.60352,0.73372 -2030,7,15,24,0.386,0.93052,0.8415,0.6655 -2030,7,16,1,0.3713,0.9417,0.5622,0.58286 -2030,7,16,2,0.3566,0.9417,0.45248,0.6553 -2030,7,16,3,0.3419,0.9417,0.41924,0.4691 -2030,7,16,4,0.3272,0.9417,0.386,0.41924 -2030,7,16,5,0.29966,0.9417,0.3713,0.386 -2030,7,16,6,0.29966,0.93052,0.3566,0.3713 -2030,7,16,7,0.27398,0.91934,0.3419,0.3419 -2030,7,16,8,0.26114,0.91934,0.3125,0.3125 -2030,7,16,9,0.26114,0.90816,0.29966,0.3125 -2030,7,16,10,0.2483,0.89698,0.28682,0.29966 -2030,7,16,11,0.2483,0.8858,0.28682,0.29966 -2030,7,16,12,0.27398,0.8858,0.29966,0.3125 -2030,7,16,13,0.29966,0.8858,0.3125,0.3272 -2030,7,16,14,0.3419,0.86448,0.3419,0.3566 -2030,7,16,15,0.3713,0.84316,0.386,0.40262 -2030,7,16,16,0.40262,0.82184,0.45248,0.45248 -2030,7,16,17,0.5622,0.80052,0.7484,0.5622 -2030,7,16,18,0.7484,0.80052,0.58286,0.62418 -2030,7,16,19,0.8415,0.80052,0.6655,0.73372 -2030,7,16,20,0.7484,0.82184,0.68824,0.7792 -2030,7,16,21,0.5622,0.84316,0.68824,0.80052 -2030,7,16,22,0.43586,0.8858,0.6655,0.7792 -2030,7,16,23,0.40262,0.91934,0.60352,0.73372 -2030,7,16,24,0.386,0.93052,0.8415,0.6655 -2030,7,17,1,0.3713,0.9417,0.5622,0.58286 -2030,7,17,2,0.3566,0.9417,0.45248,0.6553 -2030,7,17,3,0.3419,0.9417,0.41924,0.4691 -2030,7,17,4,0.3272,0.9417,0.386,0.41924 -2030,7,17,5,0.29966,0.9417,0.3713,0.386 -2030,7,17,6,0.29966,0.93052,0.3566,0.3713 -2030,7,17,7,0.27398,0.91934,0.3419,0.3419 -2030,7,17,8,0.26114,0.91934,0.3125,0.3125 -2030,7,17,9,0.26114,0.90816,0.29966,0.3125 -2030,7,17,10,0.2483,0.89698,0.28682,0.29966 -2030,7,17,11,0.2483,0.8858,0.28682,0.29966 -2030,7,17,12,0.27398,0.8858,0.29966,0.3125 -2030,7,17,13,0.29966,0.8858,0.3125,0.3272 -2030,7,17,14,0.3419,0.86448,0.3419,0.3566 -2030,7,17,15,0.3713,0.84316,0.386,0.40262 -2030,7,17,16,0.40262,0.82184,0.45248,0.45248 -2030,7,17,17,0.5622,0.80052,0.7484,0.5622 -2030,7,17,18,0.7484,0.80052,0.58286,0.62418 -2030,7,17,19,0.8415,0.80052,0.6655,0.73372 -2030,7,17,20,0.7484,0.82184,0.68824,0.7792 -2030,7,17,21,0.5622,0.84316,0.68824,0.80052 -2030,7,17,22,0.43586,0.8858,0.6655,0.7792 -2030,7,17,23,0.40262,0.91934,0.60352,0.73372 -2030,7,17,24,0.386,0.93052,0.8415,0.6655 -2030,7,18,1,0.3713,0.9417,0.5622,0.58286 -2030,7,18,2,0.3566,0.9417,0.45248,0.6553 -2030,7,18,3,0.3419,0.9417,0.41924,0.4691 -2030,7,18,4,0.3272,0.9417,0.386,0.41924 -2030,7,18,5,0.29966,0.9417,0.3713,0.386 -2030,7,18,6,0.29966,0.93052,0.3566,0.3713 -2030,7,18,7,0.27398,0.91934,0.3419,0.3419 -2030,7,18,8,0.26114,0.91934,0.3125,0.3125 -2030,7,18,9,0.26114,0.90816,0.29966,0.3125 -2030,7,18,10,0.2483,0.89698,0.28682,0.29966 -2030,7,18,11,0.2483,0.8858,0.28682,0.29966 -2030,7,18,12,0.27398,0.8858,0.29966,0.3125 -2030,7,18,13,0.29966,0.8858,0.3125,0.3272 -2030,7,18,14,0.3419,0.86448,0.3419,0.3566 -2030,7,18,15,0.3713,0.84316,0.386,0.40262 -2030,7,18,16,0.40262,0.82184,0.45248,0.45248 -2030,7,18,17,0.5622,0.80052,0.7484,0.5622 -2030,7,18,18,0.7484,0.80052,0.58286,0.62418 -2030,7,18,19,0.8415,0.80052,0.6655,0.73372 -2030,7,18,20,0.7484,0.82184,0.68824,0.7792 -2030,7,18,21,0.5622,0.84316,0.68824,0.80052 -2030,7,18,22,0.43586,0.8858,0.6655,0.7792 -2030,7,18,23,0.40262,0.91934,0.60352,0.73372 -2030,7,18,24,0.386,0.93052,0.8415,0.6655 -2030,7,19,1,0.3713,0.9417,0.5622,0.58286 -2030,7,19,2,0.3566,0.9417,0.45248,0.6553 -2030,7,19,3,0.3419,0.9417,0.41924,0.4691 -2030,7,19,4,0.3272,0.9417,0.386,0.41924 -2030,7,19,5,0.29966,0.9417,0.3713,0.386 -2030,7,19,6,0.29966,0.93052,0.3566,0.3713 -2030,7,19,7,0.27398,0.91934,0.3419,0.3419 -2030,7,19,8,0.26114,0.91934,0.3125,0.3125 -2030,7,19,9,0.26114,0.90816,0.29966,0.3125 -2030,7,19,10,0.2483,0.89698,0.28682,0.29966 -2030,7,19,11,0.2483,0.8858,0.28682,0.29966 -2030,7,19,12,0.27398,0.8858,0.29966,0.3125 -2030,7,19,13,0.29966,0.8858,0.3125,0.3272 -2030,7,19,14,0.3419,0.86448,0.3419,0.3566 -2030,7,19,15,0.3713,0.84316,0.386,0.40262 -2030,7,19,16,0.40262,0.82184,0.45248,0.45248 -2030,7,19,17,0.5622,0.80052,0.7484,0.5622 -2030,7,19,18,0.7484,0.80052,0.58286,0.62418 -2030,7,19,19,0.8415,0.80052,0.6655,0.73372 -2030,7,19,20,0.7484,0.82184,0.68824,0.7792 -2030,7,19,21,0.5622,0.84316,0.68824,0.80052 -2030,7,19,22,0.43586,0.8858,0.6655,0.7792 -2030,7,19,23,0.40262,0.91934,0.60352,0.73372 -2030,7,19,24,0.386,0.93052,0.8415,0.6655 -2030,7,20,1,0.3713,0.9417,0.5622,0.58286 -2030,7,20,2,0.3566,0.9417,0.45248,0.6553 -2030,7,20,3,0.3419,0.9417,0.41924,0.4691 -2030,7,20,4,0.3272,0.9417,0.386,0.41924 -2030,7,20,5,0.29966,0.9417,0.3713,0.386 -2030,7,20,6,0.29966,0.93052,0.3566,0.3713 -2030,7,20,7,0.27398,0.91934,0.3419,0.3419 -2030,7,20,8,0.26114,0.91934,0.3125,0.3125 -2030,7,20,9,0.26114,0.90816,0.29966,0.3125 -2030,7,20,10,0.2483,0.89698,0.28682,0.29966 -2030,7,20,11,0.2483,0.8858,0.28682,0.29966 -2030,7,20,12,0.27398,0.8858,0.29966,0.3125 -2030,7,20,13,0.29966,0.8858,0.3125,0.3272 -2030,7,20,14,0.3419,0.86448,0.3419,0.3566 -2030,7,20,15,0.3713,0.84316,0.386,0.40262 -2030,7,20,16,0.40262,0.82184,0.45248,0.45248 -2030,7,20,17,0.5622,0.80052,0.7484,0.5622 -2030,7,20,18,0.7484,0.80052,0.58286,0.62418 -2030,7,20,19,0.8415,0.80052,0.6655,0.73372 -2030,7,20,20,0.7484,0.82184,0.68824,0.7792 -2030,7,20,21,0.5622,0.84316,0.68824,0.80052 -2030,7,20,22,0.43586,0.8858,0.6655,0.7792 -2030,7,20,23,0.40262,0.91934,0.60352,0.73372 -2030,7,20,24,0.386,0.93052,0.8415,0.6655 -2030,7,21,1,0.3713,0.9417,0.5622,0.58286 -2030,7,21,2,0.3566,0.9417,0.45248,0.6553 -2030,7,21,3,0.3419,0.9417,0.41924,0.4691 -2030,7,21,4,0.3272,0.9417,0.386,0.41924 -2030,7,21,5,0.29966,0.9417,0.3713,0.386 -2030,7,21,6,0.29966,0.93052,0.3566,0.3713 -2030,7,21,7,0.27398,0.91934,0.3419,0.3419 -2030,7,21,8,0.26114,0.91934,0.3125,0.3125 -2030,7,21,9,0.26114,0.90816,0.29966,0.3125 -2030,7,21,10,0.2483,0.89698,0.28682,0.29966 -2030,7,21,11,0.2483,0.8858,0.28682,0.29966 -2030,7,21,12,0.27398,0.8858,0.29966,0.3125 -2030,7,21,13,0.29966,0.8858,0.3125,0.3272 -2030,7,21,14,0.3419,0.86448,0.3419,0.3566 -2030,7,21,15,0.3713,0.84316,0.386,0.40262 -2030,7,21,16,0.40262,0.82184,0.45248,0.45248 -2030,7,21,17,0.5622,0.80052,0.7484,0.5622 -2030,7,21,18,0.7484,0.80052,0.58286,0.62418 -2030,7,21,19,0.8415,0.80052,0.6655,0.73372 -2030,7,21,20,0.7484,0.82184,0.68824,0.7792 -2030,7,21,21,0.5622,0.84316,0.68824,0.80052 -2030,7,21,22,0.43586,0.8858,0.6655,0.7792 -2030,7,21,23,0.40262,0.91934,0.60352,0.73372 -2030,7,21,24,0.386,0.93052,0.8415,0.6655 -2030,7,22,1,0.3713,0.9417,0.5622,0.58286 -2030,7,22,2,0.3566,0.9417,0.45248,0.6553 -2030,7,22,3,0.3419,0.9417,0.41924,0.4691 -2030,7,22,4,0.3272,0.9417,0.386,0.41924 -2030,7,22,5,0.29966,0.9417,0.3713,0.386 -2030,7,22,6,0.29966,0.93052,0.3566,0.3713 -2030,7,22,7,0.27398,0.91934,0.3419,0.3419 -2030,7,22,8,0.26114,0.91934,0.3125,0.3125 -2030,7,22,9,0.26114,0.90816,0.29966,0.3125 -2030,7,22,10,0.2483,0.89698,0.28682,0.29966 -2030,7,22,11,0.2483,0.8858,0.28682,0.29966 -2030,7,22,12,0.27398,0.8858,0.29966,0.3125 -2030,7,22,13,0.29966,0.8858,0.3125,0.3272 -2030,7,22,14,0.3419,0.86448,0.3419,0.3566 -2030,7,22,15,0.3713,0.84316,0.386,0.40262 -2030,7,22,16,0.40262,0.82184,0.45248,0.45248 -2030,7,22,17,0.5622,0.80052,0.7484,0.5622 -2030,7,22,18,0.7484,0.80052,0.58286,0.62418 -2030,7,22,19,0.8415,0.80052,0.6655,0.73372 -2030,7,22,20,0.7484,0.82184,0.68824,0.7792 -2030,7,22,21,0.5622,0.84316,0.68824,0.80052 -2030,7,22,22,0.43586,0.8858,0.6655,0.7792 -2030,7,22,23,0.40262,0.91934,0.60352,0.73372 -2030,7,22,24,0.386,0.93052,0.8415,0.6655 -2030,7,23,1,0.3713,0.9417,0.5622,0.58286 -2030,7,23,2,0.3566,0.9417,0.45248,0.6553 -2030,7,23,3,0.3419,0.9417,0.41924,0.4691 -2030,7,23,4,0.3272,0.9417,0.386,0.41924 -2030,7,23,5,0.29966,0.9417,0.3713,0.386 -2030,7,23,6,0.29966,0.93052,0.3566,0.3713 -2030,7,23,7,0.27398,0.91934,0.3419,0.3419 -2030,7,23,8,0.26114,0.91934,0.3125,0.3125 -2030,7,23,9,0.26114,0.90816,0.29966,0.3125 -2030,7,23,10,0.2483,0.89698,0.28682,0.29966 -2030,7,23,11,0.2483,0.8858,0.28682,0.29966 -2030,7,23,12,0.27398,0.8858,0.29966,0.3125 -2030,7,23,13,0.29966,0.8858,0.3125,0.3272 -2030,7,23,14,0.3419,0.86448,0.3419,0.3566 -2030,7,23,15,0.3713,0.84316,0.386,0.40262 -2030,7,23,16,0.40262,0.82184,0.45248,0.45248 -2030,7,23,17,0.5622,0.80052,0.7484,0.5622 -2030,7,23,18,0.7484,0.80052,0.58286,0.62418 -2030,7,23,19,0.8415,0.80052,0.6655,0.73372 -2030,7,23,20,0.7484,0.82184,0.68824,0.7792 -2030,7,23,21,0.5622,0.84316,0.68824,0.80052 -2030,7,23,22,0.43586,0.8858,0.6655,0.7792 -2030,7,23,23,0.40262,0.91934,0.60352,0.73372 -2030,7,23,24,0.386,0.93052,0.8415,0.6655 -2030,7,24,1,0.3713,0.9417,0.5622,0.58286 -2030,7,24,2,0.3566,0.9417,0.45248,0.6553 -2030,7,24,3,0.3419,0.9417,0.41924,0.4691 -2030,7,24,4,0.3272,0.9417,0.386,0.41924 -2030,7,24,5,0.29966,0.9417,0.3713,0.386 -2030,7,24,6,0.29966,0.93052,0.3566,0.3713 -2030,7,24,7,0.27398,0.91934,0.3419,0.3419 -2030,7,24,8,0.26114,0.91934,0.3125,0.3125 -2030,7,24,9,0.26114,0.90816,0.29966,0.3125 -2030,7,24,10,0.2483,0.89698,0.28682,0.29966 -2030,7,24,11,0.2483,0.8858,0.28682,0.29966 -2030,7,24,12,0.27398,0.8858,0.29966,0.3125 -2030,7,24,13,0.29966,0.8858,0.3125,0.3272 -2030,7,24,14,0.3419,0.86448,0.3419,0.3566 -2030,7,24,15,0.3713,0.84316,0.386,0.40262 -2030,7,24,16,0.40262,0.82184,0.45248,0.45248 -2030,7,24,17,0.5622,0.80052,0.7484,0.5622 -2030,7,24,18,0.7484,0.80052,0.58286,0.62418 -2030,7,24,19,0.8415,0.80052,0.6655,0.73372 -2030,7,24,20,0.7484,0.82184,0.68824,0.7792 -2030,7,24,21,0.5622,0.84316,0.68824,0.80052 -2030,7,24,22,0.43586,0.8858,0.6655,0.7792 -2030,7,24,23,0.40262,0.91934,0.60352,0.73372 -2030,7,24,24,0.386,0.93052,0.8415,0.6655 -2030,7,25,1,0.3713,0.9417,0.5622,0.58286 -2030,7,25,2,0.3566,0.9417,0.45248,0.6553 -2030,7,25,3,0.3419,0.9417,0.41924,0.4691 -2030,7,25,4,0.3272,0.9417,0.386,0.41924 -2030,7,25,5,0.29966,0.9417,0.3713,0.386 -2030,7,25,6,0.29966,0.93052,0.3566,0.3713 -2030,7,25,7,0.27398,0.91934,0.3419,0.3419 -2030,7,25,8,0.26114,0.91934,0.3125,0.3125 -2030,7,25,9,0.26114,0.90816,0.29966,0.3125 -2030,7,25,10,0.2483,0.89698,0.28682,0.29966 -2030,7,25,11,0.2483,0.8858,0.28682,0.29966 -2030,7,25,12,0.27398,0.8858,0.29966,0.3125 -2030,7,25,13,0.29966,0.8858,0.3125,0.3272 -2030,7,25,14,0.3419,0.86448,0.3419,0.3566 -2030,7,25,15,0.3713,0.84316,0.386,0.40262 -2030,7,25,16,0.40262,0.82184,0.45248,0.45248 -2030,7,25,17,0.5622,0.80052,0.7484,0.5622 -2030,7,25,18,0.7484,0.80052,0.58286,0.62418 -2030,7,25,19,0.8415,0.80052,0.6655,0.73372 -2030,7,25,20,0.7484,0.82184,0.68824,0.7792 -2030,7,25,21,0.5622,0.84316,0.68824,0.80052 -2030,7,25,22,0.43586,0.8858,0.6655,0.7792 -2030,7,25,23,0.40262,0.91934,0.60352,0.73372 -2030,7,25,24,0.386,0.93052,0.8415,0.6655 -2030,7,26,1,0.3713,0.9417,0.5622,0.58286 -2030,7,26,2,0.3566,0.9417,0.45248,0.6553 -2030,7,26,3,0.3419,0.9417,0.41924,0.4691 -2030,7,26,4,0.3272,0.9417,0.386,0.41924 -2030,7,26,5,0.29966,0.9417,0.3713,0.386 -2030,7,26,6,0.29966,0.93052,0.3566,0.3713 -2030,7,26,7,0.27398,0.91934,0.3419,0.3419 -2030,7,26,8,0.26114,0.91934,0.3125,0.3125 -2030,7,26,9,0.26114,0.90816,0.29966,0.3125 -2030,7,26,10,0.2483,0.89698,0.28682,0.29966 -2030,7,26,11,0.2483,0.8858,0.28682,0.29966 -2030,7,26,12,0.27398,0.8858,0.29966,0.3125 -2030,7,26,13,0.29966,0.8858,0.3125,0.3272 -2030,7,26,14,0.3419,0.86448,0.3419,0.3566 -2030,7,26,15,0.3713,0.84316,0.386,0.40262 -2030,7,26,16,0.40262,0.82184,0.45248,0.45248 -2030,7,26,17,0.5622,0.80052,0.7484,0.5622 -2030,7,26,18,0.7484,0.80052,0.58286,0.62418 -2030,7,26,19,0.8415,0.80052,0.6655,0.73372 -2030,7,26,20,0.7484,0.82184,0.68824,0.7792 -2030,7,26,21,0.5622,0.84316,0.68824,0.80052 -2030,7,26,22,0.43586,0.8858,0.6655,0.7792 -2030,7,26,23,0.40262,0.91934,0.60352,0.73372 -2030,7,26,24,0.386,0.93052,0.8415,0.6655 -2030,7,27,1,0.3713,0.9417,0.5622,0.58286 -2030,7,27,2,0.3566,0.9417,0.45248,0.6553 -2030,7,27,3,0.3419,0.9417,0.41924,0.4691 -2030,7,27,4,0.3272,0.9417,0.386,0.41924 -2030,7,27,5,0.29966,0.9417,0.3713,0.386 -2030,7,27,6,0.29966,0.93052,0.3566,0.3713 -2030,7,27,7,0.27398,0.91934,0.3419,0.3419 -2030,7,27,8,0.26114,0.91934,0.3125,0.3125 -2030,7,27,9,0.26114,0.90816,0.29966,0.3125 -2030,7,27,10,0.2483,0.89698,0.28682,0.29966 -2030,7,27,11,0.2483,0.8858,0.28682,0.29966 -2030,7,27,12,0.27398,0.8858,0.29966,0.3125 -2030,7,27,13,0.29966,0.8858,0.3125,0.3272 -2030,7,27,14,0.3419,0.86448,0.3419,0.3566 -2030,7,27,15,0.3713,0.84316,0.386,0.40262 -2030,7,27,16,0.40262,0.82184,0.45248,0.45248 -2030,7,27,17,0.5622,0.80052,0.7484,0.5622 -2030,7,27,18,0.7484,0.80052,0.58286,0.62418 -2030,7,27,19,0.8415,0.80052,0.6655,0.73372 -2030,7,27,20,0.7484,0.82184,0.68824,0.7792 -2030,7,27,21,0.5622,0.84316,0.68824,0.80052 -2030,7,27,22,0.43586,0.8858,0.6655,0.7792 -2030,7,27,23,0.40262,0.91934,0.60352,0.73372 -2030,7,27,24,0.386,0.93052,0.8415,0.6655 -2030,7,28,1,0.3713,0.9417,0.5622,0.58286 -2030,7,28,2,0.3566,0.9417,0.45248,0.6553 -2030,7,28,3,0.3419,0.9417,0.41924,0.4691 -2030,7,28,4,0.3272,0.9417,0.386,0.41924 -2030,7,28,5,0.29966,0.9417,0.3713,0.386 -2030,7,28,6,0.29966,0.93052,0.3566,0.3713 -2030,7,28,7,0.27398,0.91934,0.3419,0.3419 -2030,7,28,8,0.26114,0.91934,0.3125,0.3125 -2030,7,28,9,0.26114,0.90816,0.29966,0.3125 -2030,7,28,10,0.2483,0.89698,0.28682,0.29966 -2030,7,28,11,0.2483,0.8858,0.28682,0.29966 -2030,7,28,12,0.27398,0.8858,0.29966,0.3125 -2030,7,28,13,0.29966,0.8858,0.3125,0.3272 -2030,7,28,14,0.3419,0.86448,0.3419,0.3566 -2030,7,28,15,0.3713,0.84316,0.386,0.40262 -2030,7,28,16,0.40262,0.82184,0.45248,0.45248 -2030,7,28,17,0.5622,0.80052,0.7484,0.5622 -2030,7,28,18,0.7484,0.80052,0.58286,0.62418 -2030,7,28,19,0.8415,0.80052,0.6655,0.73372 -2030,7,28,20,0.7484,0.82184,0.68824,0.7792 -2030,7,28,21,0.5622,0.84316,0.68824,0.80052 -2030,7,28,22,0.43586,0.8858,0.6655,0.7792 -2030,7,28,23,0.40262,0.91934,0.60352,0.73372 -2030,7,28,24,0.386,0.93052,0.8415,0.6655 -2030,7,29,1,0.3713,0.9417,0.5622,0.58286 -2030,7,29,2,0.3566,0.9417,0.45248,0.6553 -2030,7,29,3,0.3419,0.9417,0.41924,0.4691 -2030,7,29,4,0.3272,0.9417,0.386,0.41924 -2030,7,29,5,0.29966,0.9417,0.3713,0.386 -2030,7,29,6,0.29966,0.93052,0.3566,0.3713 -2030,7,29,7,0.27398,0.91934,0.3419,0.3419 -2030,7,29,8,0.26114,0.91934,0.3125,0.3125 -2030,7,29,9,0.26114,0.90816,0.29966,0.3125 -2030,7,29,10,0.2483,0.89698,0.28682,0.29966 -2030,7,29,11,0.2483,0.8858,0.28682,0.29966 -2030,7,29,12,0.27398,0.8858,0.29966,0.3125 -2030,7,29,13,0.29966,0.8858,0.3125,0.3272 -2030,7,29,14,0.3419,0.86448,0.3419,0.3566 -2030,7,29,15,0.3713,0.84316,0.386,0.40262 -2030,7,29,16,0.40262,0.82184,0.45248,0.45248 -2030,7,29,17,0.5622,0.80052,0.7484,0.5622 -2030,7,29,18,0.7484,0.80052,0.58286,0.62418 -2030,7,29,19,0.8415,0.80052,0.6655,0.73372 -2030,7,29,20,0.7484,0.82184,0.68824,0.7792 -2030,7,29,21,0.5622,0.84316,0.68824,0.80052 -2030,7,29,22,0.43586,0.8858,0.6655,0.7792 -2030,7,29,23,0.40262,0.91934,0.60352,0.73372 -2030,7,29,24,0.386,0.93052,0.8415,0.6655 -2030,7,30,1,0.3713,0.9417,0.5622,0.58286 -2030,7,30,2,0.3566,0.9417,0.45248,0.6553 -2030,7,30,3,0.3419,0.9417,0.41924,0.4691 -2030,7,30,4,0.3272,0.9417,0.386,0.41924 -2030,7,30,5,0.29966,0.9417,0.3713,0.386 -2030,7,30,6,0.29966,0.93052,0.3566,0.3713 -2030,7,30,7,0.27398,0.91934,0.3419,0.3419 -2030,7,30,8,0.26114,0.91934,0.3125,0.3125 -2030,7,30,9,0.26114,0.90816,0.29966,0.3125 -2030,7,30,10,0.2483,0.89698,0.28682,0.29966 -2030,7,30,11,0.2483,0.8858,0.28682,0.29966 -2030,7,30,12,0.27398,0.8858,0.29966,0.3125 -2030,7,30,13,0.29966,0.8858,0.3125,0.3272 -2030,7,30,14,0.3419,0.86448,0.3419,0.3566 -2030,7,30,15,0.3713,0.84316,0.386,0.40262 -2030,7,30,16,0.40262,0.82184,0.45248,0.45248 -2030,7,30,17,0.5622,0.80052,0.7484,0.5622 -2030,7,30,18,0.7484,0.80052,0.58286,0.62418 -2030,7,30,19,0.8415,0.80052,0.6655,0.73372 -2030,7,30,20,0.7484,0.82184,0.68824,0.7792 -2030,7,30,21,0.5622,0.84316,0.68824,0.80052 -2030,7,30,22,0.43586,0.8858,0.6655,0.7792 -2030,7,30,23,0.40262,0.91934,0.60352,0.73372 -2030,7,30,24,0.386,0.93052,0.8415,0.6655 -2030,7,31,1,0.3713,0.9417,0.5622,0.58286 -2030,7,31,2,0.3566,0.9417,0.45248,0.6553 -2030,7,31,3,0.3419,0.9417,0.41924,0.4691 -2030,7,31,4,0.3272,0.9417,0.386,0.41924 -2030,7,31,5,0.29966,0.9417,0.3713,0.386 -2030,7,31,6,0.29966,0.93052,0.3566,0.3713 -2030,7,31,7,0.27398,0.91934,0.3419,0.3419 -2030,7,31,8,0.26114,0.91934,0.3125,0.3125 -2030,7,31,9,0.26114,0.90816,0.29966,0.3125 -2030,7,31,10,0.2483,0.89698,0.28682,0.29966 -2030,7,31,11,0.2483,0.8858,0.28682,0.29966 -2030,7,31,12,0.27398,0.8858,0.29966,0.3125 -2030,7,31,13,0.29966,0.8858,0.3125,0.3272 -2030,7,31,14,0.3419,0.86448,0.3419,0.3566 -2030,7,31,15,0.3713,0.84316,0.386,0.40262 -2030,7,31,16,0.40262,0.82184,0.45248,0.45248 -2030,7,31,17,0.5622,0.80052,0.7484,0.5622 -2030,7,31,18,0.7484,0.80052,0.58286,0.62418 -2030,7,31,19,0.8415,0.80052,0.6655,0.73372 -2030,7,31,20,0.7484,0.82184,0.68824,0.7792 -2030,7,31,21,0.5622,0.84316,0.68824,0.80052 -2030,7,31,22,0.43586,0.8858,0.6655,0.7792 -2030,7,31,23,0.40262,0.91934,0.60352,0.73372 -2030,7,31,24,0.386,0.93052,0.8415,0.6655 -2030,8,1,1,0.45248,0.71098,0.62418,0.71098 -2030,8,1,2,0.43586,0.75646,0.5622,0.60352 -2030,8,1,3,0.43586,0.75646,0.7484,0.5622 -2030,8,1,4,0.41924,0.7792,0.6553,0.7484 -2030,8,1,5,0.40262,0.75646,0.5622,0.4691 -2030,8,1,6,0.3713,0.73372,0.45248,0.45248 -2030,8,1,7,0.3713,0.71098,0.43586,0.43586 -2030,8,1,8,0.3419,0.68824,0.41924,0.41924 -2030,8,1,9,0.3272,0.6655,0.386,0.40262 -2030,8,1,10,0.3125,0.6655,0.3713,0.40262 -2030,8,1,11,0.3272,0.64484,0.386,0.40262 -2030,8,1,12,0.3419,0.64484,0.386,0.41924 -2030,8,1,13,0.386,0.68824,0.41924,0.43586 -2030,8,1,14,0.45248,0.68824,0.4691,0.5622 -2030,8,1,15,0.6553,0.6655,0.7484,0.8415 -2030,8,1,16,0.5622,0.64484,0.60352,0.62418 -2030,8,1,17,0.60352,0.62418,0.64484,0.68824 -2030,8,1,18,0.64484,0.62418,0.73372,0.80052 -2030,8,1,19,0.6655,0.60352,0.80052,0.8858 -2030,8,1,20,0.68824,0.60352,0.86448,0.90816 -2030,8,1,21,0.60352,0.62418,0.84316,0.90816 -2030,8,1,22,0.8415,0.64484,0.82184,0.89698 -2030,8,1,23,0.6553,0.6655,0.75646,0.86448 -2030,8,1,24,0.5622,0.71098,0.68824,0.80052 -2030,8,2,1,0.45248,0.71098,0.62418,0.71098 -2030,8,2,2,0.43586,0.75646,0.5622,0.60352 -2030,8,2,3,0.43586,0.75646,0.7484,0.5622 -2030,8,2,4,0.41924,0.7792,0.6553,0.7484 -2030,8,2,5,0.40262,0.75646,0.5622,0.4691 -2030,8,2,6,0.3713,0.73372,0.45248,0.45248 -2030,8,2,7,0.3713,0.71098,0.43586,0.43586 -2030,8,2,8,0.3419,0.68824,0.41924,0.41924 -2030,8,2,9,0.3272,0.6655,0.386,0.40262 -2030,8,2,10,0.3125,0.6655,0.3713,0.40262 -2030,8,2,11,0.3272,0.64484,0.386,0.40262 -2030,8,2,12,0.3419,0.64484,0.386,0.41924 -2030,8,2,13,0.386,0.68824,0.41924,0.43586 -2030,8,2,14,0.45248,0.68824,0.4691,0.5622 -2030,8,2,15,0.6553,0.6655,0.7484,0.8415 -2030,8,2,16,0.5622,0.64484,0.60352,0.62418 -2030,8,2,17,0.60352,0.62418,0.64484,0.68824 -2030,8,2,18,0.64484,0.62418,0.73372,0.80052 -2030,8,2,19,0.6655,0.60352,0.80052,0.8858 -2030,8,2,20,0.68824,0.60352,0.86448,0.90816 -2030,8,2,21,0.60352,0.62418,0.84316,0.90816 -2030,8,2,22,0.8415,0.64484,0.82184,0.89698 -2030,8,2,23,0.6553,0.6655,0.75646,0.86448 -2030,8,2,24,0.5622,0.71098,0.68824,0.80052 -2030,8,3,1,0.45248,0.71098,0.62418,0.71098 -2030,8,3,2,0.43586,0.75646,0.5622,0.60352 -2030,8,3,3,0.43586,0.75646,0.7484,0.5622 -2030,8,3,4,0.41924,0.7792,0.6553,0.7484 -2030,8,3,5,0.40262,0.75646,0.5622,0.4691 -2030,8,3,6,0.3713,0.73372,0.45248,0.45248 -2030,8,3,7,0.3713,0.71098,0.43586,0.43586 -2030,8,3,8,0.3419,0.68824,0.41924,0.41924 -2030,8,3,9,0.3272,0.6655,0.386,0.40262 -2030,8,3,10,0.3125,0.6655,0.3713,0.40262 -2030,8,3,11,0.3272,0.64484,0.386,0.40262 -2030,8,3,12,0.3419,0.64484,0.386,0.41924 -2030,8,3,13,0.386,0.68824,0.41924,0.43586 -2030,8,3,14,0.45248,0.68824,0.4691,0.5622 -2030,8,3,15,0.6553,0.6655,0.7484,0.8415 -2030,8,3,16,0.5622,0.64484,0.60352,0.62418 -2030,8,3,17,0.60352,0.62418,0.64484,0.68824 -2030,8,3,18,0.64484,0.62418,0.73372,0.80052 -2030,8,3,19,0.6655,0.60352,0.80052,0.8858 -2030,8,3,20,0.68824,0.60352,0.86448,0.90816 -2030,8,3,21,0.60352,0.62418,0.84316,0.90816 -2030,8,3,22,0.8415,0.64484,0.82184,0.89698 -2030,8,3,23,0.6553,0.6655,0.75646,0.86448 -2030,8,3,24,0.5622,0.71098,0.68824,0.80052 -2030,8,4,1,0.45248,0.71098,0.62418,0.71098 -2030,8,4,2,0.43586,0.75646,0.5622,0.60352 -2030,8,4,3,0.43586,0.75646,0.7484,0.5622 -2030,8,4,4,0.41924,0.7792,0.6553,0.7484 -2030,8,4,5,0.40262,0.75646,0.5622,0.4691 -2030,8,4,6,0.3713,0.73372,0.45248,0.45248 -2030,8,4,7,0.3713,0.71098,0.43586,0.43586 -2030,8,4,8,0.3419,0.68824,0.41924,0.41924 -2030,8,4,9,0.3272,0.6655,0.386,0.40262 -2030,8,4,10,0.3125,0.6655,0.3713,0.40262 -2030,8,4,11,0.3272,0.64484,0.386,0.40262 -2030,8,4,12,0.3419,0.64484,0.386,0.41924 -2030,8,4,13,0.386,0.68824,0.41924,0.43586 -2030,8,4,14,0.45248,0.68824,0.4691,0.5622 -2030,8,4,15,0.6553,0.6655,0.7484,0.8415 -2030,8,4,16,0.5622,0.64484,0.60352,0.62418 -2030,8,4,17,0.60352,0.62418,0.64484,0.68824 -2030,8,4,18,0.64484,0.62418,0.73372,0.80052 -2030,8,4,19,0.6655,0.60352,0.80052,0.8858 -2030,8,4,20,0.68824,0.60352,0.86448,0.90816 -2030,8,4,21,0.60352,0.62418,0.84316,0.90816 -2030,8,4,22,0.8415,0.64484,0.82184,0.89698 -2030,8,4,23,0.6553,0.6655,0.75646,0.86448 -2030,8,4,24,0.5622,0.71098,0.68824,0.80052 -2030,8,5,1,0.45248,0.71098,0.62418,0.71098 -2030,8,5,2,0.43586,0.75646,0.5622,0.60352 -2030,8,5,3,0.43586,0.75646,0.7484,0.5622 -2030,8,5,4,0.41924,0.7792,0.6553,0.7484 -2030,8,5,5,0.40262,0.75646,0.5622,0.4691 -2030,8,5,6,0.3713,0.73372,0.45248,0.45248 -2030,8,5,7,0.3713,0.71098,0.43586,0.43586 -2030,8,5,8,0.3419,0.68824,0.41924,0.41924 -2030,8,5,9,0.3272,0.6655,0.386,0.40262 -2030,8,5,10,0.3125,0.6655,0.3713,0.40262 -2030,8,5,11,0.3272,0.64484,0.386,0.40262 -2030,8,5,12,0.3419,0.64484,0.386,0.41924 -2030,8,5,13,0.386,0.68824,0.41924,0.43586 -2030,8,5,14,0.45248,0.68824,0.4691,0.5622 -2030,8,5,15,0.6553,0.6655,0.7484,0.8415 -2030,8,5,16,0.5622,0.64484,0.60352,0.62418 -2030,8,5,17,0.60352,0.62418,0.64484,0.68824 -2030,8,5,18,0.64484,0.62418,0.73372,0.80052 -2030,8,5,19,0.6655,0.60352,0.80052,0.8858 -2030,8,5,20,0.68824,0.60352,0.86448,0.90816 -2030,8,5,21,0.60352,0.62418,0.84316,0.90816 -2030,8,5,22,0.8415,0.64484,0.82184,0.89698 -2030,8,5,23,0.6553,0.6655,0.75646,0.86448 -2030,8,5,24,0.5622,0.71098,0.68824,0.80052 -2030,8,6,1,0.45248,0.71098,0.62418,0.71098 -2030,8,6,2,0.43586,0.75646,0.5622,0.60352 -2030,8,6,3,0.43586,0.75646,0.7484,0.5622 -2030,8,6,4,0.41924,0.7792,0.6553,0.7484 -2030,8,6,5,0.40262,0.75646,0.5622,0.4691 -2030,8,6,6,0.3713,0.73372,0.45248,0.45248 -2030,8,6,7,0.3713,0.71098,0.43586,0.43586 -2030,8,6,8,0.3419,0.68824,0.41924,0.41924 -2030,8,6,9,0.3272,0.6655,0.386,0.40262 -2030,8,6,10,0.3125,0.6655,0.3713,0.40262 -2030,8,6,11,0.3272,0.64484,0.386,0.40262 -2030,8,6,12,0.3419,0.64484,0.386,0.41924 -2030,8,6,13,0.386,0.68824,0.41924,0.43586 -2030,8,6,14,0.45248,0.68824,0.4691,0.5622 -2030,8,6,15,0.6553,0.6655,0.7484,0.8415 -2030,8,6,16,0.5622,0.64484,0.60352,0.62418 -2030,8,6,17,0.60352,0.62418,0.64484,0.68824 -2030,8,6,18,0.64484,0.62418,0.73372,0.80052 -2030,8,6,19,0.6655,0.60352,0.80052,0.8858 -2030,8,6,20,0.68824,0.60352,0.86448,0.90816 -2030,8,6,21,0.60352,0.62418,0.84316,0.90816 -2030,8,6,22,0.8415,0.64484,0.82184,0.89698 -2030,8,6,23,0.6553,0.6655,0.75646,0.86448 -2030,8,6,24,0.5622,0.71098,0.68824,0.80052 -2030,8,7,1,0.45248,0.71098,0.62418,0.71098 -2030,8,7,2,0.43586,0.75646,0.5622,0.60352 -2030,8,7,3,0.43586,0.75646,0.7484,0.5622 -2030,8,7,4,0.41924,0.7792,0.6553,0.7484 -2030,8,7,5,0.40262,0.75646,0.5622,0.4691 -2030,8,7,6,0.3713,0.73372,0.45248,0.45248 -2030,8,7,7,0.3713,0.71098,0.43586,0.43586 -2030,8,7,8,0.3419,0.68824,0.41924,0.41924 -2030,8,7,9,0.3272,0.6655,0.386,0.40262 -2030,8,7,10,0.3125,0.6655,0.3713,0.40262 -2030,8,7,11,0.3272,0.64484,0.386,0.40262 -2030,8,7,12,0.3419,0.64484,0.386,0.41924 -2030,8,7,13,0.386,0.68824,0.41924,0.43586 -2030,8,7,14,0.45248,0.68824,0.4691,0.5622 -2030,8,7,15,0.6553,0.6655,0.7484,0.8415 -2030,8,7,16,0.5622,0.64484,0.60352,0.62418 -2030,8,7,17,0.60352,0.62418,0.64484,0.68824 -2030,8,7,18,0.64484,0.62418,0.73372,0.80052 -2030,8,7,19,0.6655,0.60352,0.80052,0.8858 -2030,8,7,20,0.68824,0.60352,0.86448,0.90816 -2030,8,7,21,0.60352,0.62418,0.84316,0.90816 -2030,8,7,22,0.8415,0.64484,0.82184,0.89698 -2030,8,7,23,0.6553,0.6655,0.75646,0.86448 -2030,8,7,24,0.5622,0.71098,0.68824,0.80052 -2030,8,8,1,0.45248,0.71098,0.62418,0.71098 -2030,8,8,2,0.43586,0.75646,0.5622,0.60352 -2030,8,8,3,0.43586,0.75646,0.7484,0.5622 -2030,8,8,4,0.41924,0.7792,0.6553,0.7484 -2030,8,8,5,0.40262,0.75646,0.5622,0.4691 -2030,8,8,6,0.3713,0.73372,0.45248,0.45248 -2030,8,8,7,0.3713,0.71098,0.43586,0.43586 -2030,8,8,8,0.3419,0.68824,0.41924,0.41924 -2030,8,8,9,0.3272,0.6655,0.386,0.40262 -2030,8,8,10,0.3125,0.6655,0.3713,0.40262 -2030,8,8,11,0.3272,0.64484,0.386,0.40262 -2030,8,8,12,0.3419,0.64484,0.386,0.41924 -2030,8,8,13,0.386,0.68824,0.41924,0.43586 -2030,8,8,14,0.45248,0.68824,0.4691,0.5622 -2030,8,8,15,0.6553,0.6655,0.7484,0.8415 -2030,8,8,16,0.5622,0.64484,0.60352,0.62418 -2030,8,8,17,0.60352,0.62418,0.64484,0.68824 -2030,8,8,18,0.64484,0.62418,0.73372,0.80052 -2030,8,8,19,0.6655,0.60352,0.80052,0.8858 -2030,8,8,20,0.68824,0.60352,0.86448,0.90816 -2030,8,8,21,0.60352,0.62418,0.84316,0.90816 -2030,8,8,22,0.8415,0.64484,0.82184,0.89698 -2030,8,8,23,0.6553,0.6655,0.75646,0.86448 -2030,8,8,24,0.5622,0.71098,0.68824,0.80052 -2030,8,9,1,0.45248,0.71098,0.62418,0.71098 -2030,8,9,2,0.43586,0.75646,0.5622,0.60352 -2030,8,9,3,0.43586,0.75646,0.7484,0.5622 -2030,8,9,4,0.41924,0.7792,0.6553,0.7484 -2030,8,9,5,0.40262,0.75646,0.5622,0.4691 -2030,8,9,6,0.3713,0.73372,0.45248,0.45248 -2030,8,9,7,0.3713,0.71098,0.43586,0.43586 -2030,8,9,8,0.3419,0.68824,0.41924,0.41924 -2030,8,9,9,0.3272,0.6655,0.386,0.40262 -2030,8,9,10,0.3125,0.6655,0.3713,0.40262 -2030,8,9,11,0.3272,0.64484,0.386,0.40262 -2030,8,9,12,0.3419,0.64484,0.386,0.41924 -2030,8,9,13,0.386,0.68824,0.41924,0.43586 -2030,8,9,14,0.45248,0.68824,0.4691,0.5622 -2030,8,9,15,0.6553,0.6655,0.7484,0.8415 -2030,8,9,16,0.5622,0.64484,0.60352,0.62418 -2030,8,9,17,0.60352,0.62418,0.64484,0.68824 -2030,8,9,18,0.64484,0.62418,0.73372,0.80052 -2030,8,9,19,0.6655,0.60352,0.80052,0.8858 -2030,8,9,20,0.68824,0.60352,0.86448,0.90816 -2030,8,9,21,0.60352,0.62418,0.84316,0.90816 -2030,8,9,22,0.8415,0.64484,0.82184,0.89698 -2030,8,9,23,0.6553,0.6655,0.75646,0.86448 -2030,8,9,24,0.5622,0.71098,0.68824,0.80052 -2030,8,10,1,0.45248,0.71098,0.62418,0.71098 -2030,8,10,2,0.43586,0.75646,0.5622,0.60352 -2030,8,10,3,0.43586,0.75646,0.7484,0.5622 -2030,8,10,4,0.41924,0.7792,0.6553,0.7484 -2030,8,10,5,0.40262,0.75646,0.5622,0.4691 -2030,8,10,6,0.3713,0.73372,0.45248,0.45248 -2030,8,10,7,0.3713,0.71098,0.43586,0.43586 -2030,8,10,8,0.3419,0.68824,0.41924,0.41924 -2030,8,10,9,0.3272,0.6655,0.386,0.40262 -2030,8,10,10,0.3125,0.6655,0.3713,0.40262 -2030,8,10,11,0.3272,0.64484,0.386,0.40262 -2030,8,10,12,0.3419,0.64484,0.386,0.41924 -2030,8,10,13,0.386,0.68824,0.41924,0.43586 -2030,8,10,14,0.45248,0.68824,0.4691,0.5622 -2030,8,10,15,0.6553,0.6655,0.7484,0.8415 -2030,8,10,16,0.5622,0.64484,0.60352,0.62418 -2030,8,10,17,0.60352,0.62418,0.64484,0.68824 -2030,8,10,18,0.64484,0.62418,0.73372,0.80052 -2030,8,10,19,0.6655,0.60352,0.80052,0.8858 -2030,8,10,20,0.68824,0.60352,0.86448,0.90816 -2030,8,10,21,0.60352,0.62418,0.84316,0.90816 -2030,8,10,22,0.8415,0.64484,0.82184,0.89698 -2030,8,10,23,0.6553,0.6655,0.75646,0.86448 -2030,8,10,24,0.5622,0.71098,0.68824,0.80052 -2030,8,11,1,0.45248,0.71098,0.62418,0.71098 -2030,8,11,2,0.43586,0.75646,0.5622,0.60352 -2030,8,11,3,0.43586,0.75646,0.7484,0.5622 -2030,8,11,4,0.41924,0.7792,0.6553,0.7484 -2030,8,11,5,0.40262,0.75646,0.5622,0.4691 -2030,8,11,6,0.3713,0.73372,0.45248,0.45248 -2030,8,11,7,0.3713,0.71098,0.43586,0.43586 -2030,8,11,8,0.3419,0.68824,0.41924,0.41924 -2030,8,11,9,0.3272,0.6655,0.386,0.40262 -2030,8,11,10,0.3125,0.6655,0.3713,0.40262 -2030,8,11,11,0.3272,0.64484,0.386,0.40262 -2030,8,11,12,0.3419,0.64484,0.386,0.41924 -2030,8,11,13,0.386,0.68824,0.41924,0.43586 -2030,8,11,14,0.45248,0.68824,0.4691,0.5622 -2030,8,11,15,0.6553,0.6655,0.7484,0.8415 -2030,8,11,16,0.5622,0.64484,0.60352,0.62418 -2030,8,11,17,0.60352,0.62418,0.64484,0.68824 -2030,8,11,18,0.64484,0.62418,0.73372,0.80052 -2030,8,11,19,0.6655,0.60352,0.80052,0.8858 -2030,8,11,20,0.68824,0.60352,0.86448,0.90816 -2030,8,11,21,0.60352,0.62418,0.84316,0.90816 -2030,8,11,22,0.8415,0.64484,0.82184,0.89698 -2030,8,11,23,0.6553,0.6655,0.75646,0.86448 -2030,8,11,24,0.5622,0.71098,0.68824,0.80052 -2030,8,12,1,0.45248,0.71098,0.62418,0.71098 -2030,8,12,2,0.43586,0.75646,0.5622,0.60352 -2030,8,12,3,0.43586,0.75646,0.7484,0.5622 -2030,8,12,4,0.41924,0.7792,0.6553,0.7484 -2030,8,12,5,0.40262,0.75646,0.5622,0.4691 -2030,8,12,6,0.3713,0.73372,0.45248,0.45248 -2030,8,12,7,0.3713,0.71098,0.43586,0.43586 -2030,8,12,8,0.3419,0.68824,0.41924,0.41924 -2030,8,12,9,0.3272,0.6655,0.386,0.40262 -2030,8,12,10,0.3125,0.6655,0.3713,0.40262 -2030,8,12,11,0.3272,0.64484,0.386,0.40262 -2030,8,12,12,0.3419,0.64484,0.386,0.41924 -2030,8,12,13,0.386,0.68824,0.41924,0.43586 -2030,8,12,14,0.45248,0.68824,0.4691,0.5622 -2030,8,12,15,0.6553,0.6655,0.7484,0.8415 -2030,8,12,16,0.5622,0.64484,0.60352,0.62418 -2030,8,12,17,0.60352,0.62418,0.64484,0.68824 -2030,8,12,18,0.64484,0.62418,0.73372,0.80052 -2030,8,12,19,0.6655,0.60352,0.80052,0.8858 -2030,8,12,20,0.68824,0.60352,0.86448,0.90816 -2030,8,12,21,0.60352,0.62418,0.84316,0.90816 -2030,8,12,22,0.8415,0.64484,0.82184,0.89698 -2030,8,12,23,0.6553,0.6655,0.75646,0.86448 -2030,8,12,24,0.5622,0.71098,0.68824,0.80052 -2030,8,13,1,0.45248,0.71098,0.62418,0.71098 -2030,8,13,2,0.43586,0.75646,0.5622,0.60352 -2030,8,13,3,0.43586,0.75646,0.7484,0.5622 -2030,8,13,4,0.41924,0.7792,0.6553,0.7484 -2030,8,13,5,0.40262,0.75646,0.5622,0.4691 -2030,8,13,6,0.3713,0.73372,0.45248,0.45248 -2030,8,13,7,0.3713,0.71098,0.43586,0.43586 -2030,8,13,8,0.3419,0.68824,0.41924,0.41924 -2030,8,13,9,0.3272,0.6655,0.386,0.40262 -2030,8,13,10,0.3125,0.6655,0.3713,0.40262 -2030,8,13,11,0.3272,0.64484,0.386,0.40262 -2030,8,13,12,0.3419,0.64484,0.386,0.41924 -2030,8,13,13,0.386,0.68824,0.41924,0.43586 -2030,8,13,14,0.45248,0.68824,0.4691,0.5622 -2030,8,13,15,0.6553,0.6655,0.7484,0.8415 -2030,8,13,16,0.5622,0.64484,0.60352,0.62418 -2030,8,13,17,0.60352,0.62418,0.64484,0.68824 -2030,8,13,18,0.64484,0.62418,0.73372,0.80052 -2030,8,13,19,0.6655,0.60352,0.80052,0.8858 -2030,8,13,20,0.68824,0.60352,0.86448,0.90816 -2030,8,13,21,0.60352,0.62418,0.84316,0.90816 -2030,8,13,22,0.8415,0.64484,0.82184,0.89698 -2030,8,13,23,0.6553,0.6655,0.75646,0.86448 -2030,8,13,24,0.5622,0.71098,0.68824,0.80052 -2030,8,14,1,0.45248,0.71098,0.62418,0.71098 -2030,8,14,2,0.43586,0.75646,0.5622,0.60352 -2030,8,14,3,0.43586,0.75646,0.7484,0.5622 -2030,8,14,4,0.41924,0.7792,0.6553,0.7484 -2030,8,14,5,0.40262,0.75646,0.5622,0.4691 -2030,8,14,6,0.3713,0.73372,0.45248,0.45248 -2030,8,14,7,0.3713,0.71098,0.43586,0.43586 -2030,8,14,8,0.3419,0.68824,0.41924,0.41924 -2030,8,14,9,0.3272,0.6655,0.386,0.40262 -2030,8,14,10,0.3125,0.6655,0.3713,0.40262 -2030,8,14,11,0.3272,0.64484,0.386,0.40262 -2030,8,14,12,0.3419,0.64484,0.386,0.41924 -2030,8,14,13,0.386,0.68824,0.41924,0.43586 -2030,8,14,14,0.45248,0.68824,0.4691,0.5622 -2030,8,14,15,0.6553,0.6655,0.7484,0.8415 -2030,8,14,16,0.5622,0.64484,0.60352,0.62418 -2030,8,14,17,0.60352,0.62418,0.64484,0.68824 -2030,8,14,18,0.64484,0.62418,0.73372,0.80052 -2030,8,14,19,0.6655,0.60352,0.80052,0.8858 -2030,8,14,20,0.68824,0.60352,0.86448,0.90816 -2030,8,14,21,0.60352,0.62418,0.84316,0.90816 -2030,8,14,22,0.8415,0.64484,0.82184,0.89698 -2030,8,14,23,0.6553,0.6655,0.75646,0.86448 -2030,8,14,24,0.5622,0.71098,0.68824,0.80052 -2030,8,15,1,0.45248,0.71098,0.62418,0.71098 -2030,8,15,2,0.43586,0.75646,0.5622,0.60352 -2030,8,15,3,0.43586,0.75646,0.7484,0.5622 -2030,8,15,4,0.41924,0.7792,0.6553,0.7484 -2030,8,15,5,0.40262,0.75646,0.5622,0.4691 -2030,8,15,6,0.3713,0.73372,0.45248,0.45248 -2030,8,15,7,0.3713,0.71098,0.43586,0.43586 -2030,8,15,8,0.3419,0.68824,0.41924,0.41924 -2030,8,15,9,0.3272,0.6655,0.386,0.40262 -2030,8,15,10,0.3125,0.6655,0.3713,0.40262 -2030,8,15,11,0.3272,0.64484,0.386,0.40262 -2030,8,15,12,0.3419,0.64484,0.386,0.41924 -2030,8,15,13,0.386,0.68824,0.41924,0.43586 -2030,8,15,14,0.45248,0.68824,0.4691,0.5622 -2030,8,15,15,0.6553,0.6655,0.7484,0.8415 -2030,8,15,16,0.5622,0.64484,0.60352,0.62418 -2030,8,15,17,0.60352,0.62418,0.64484,0.68824 -2030,8,15,18,0.64484,0.62418,0.73372,0.80052 -2030,8,15,19,0.6655,0.60352,0.80052,0.8858 -2030,8,15,20,0.68824,0.60352,0.86448,0.90816 -2030,8,15,21,0.60352,0.62418,0.84316,0.90816 -2030,8,15,22,0.8415,0.64484,0.82184,0.89698 -2030,8,15,23,0.6553,0.6655,0.75646,0.86448 -2030,8,15,24,0.5622,0.71098,0.68824,0.80052 -2030,8,16,1,0.45248,0.71098,0.62418,0.71098 -2030,8,16,2,0.43586,0.75646,0.5622,0.60352 -2030,8,16,3,0.43586,0.75646,0.7484,0.5622 -2030,8,16,4,0.41924,0.7792,0.6553,0.7484 -2030,8,16,5,0.40262,0.75646,0.5622,0.4691 -2030,8,16,6,0.3713,0.73372,0.45248,0.45248 -2030,8,16,7,0.3713,0.71098,0.43586,0.43586 -2030,8,16,8,0.3419,0.68824,0.41924,0.41924 -2030,8,16,9,0.3272,0.6655,0.386,0.40262 -2030,8,16,10,0.3125,0.6655,0.3713,0.40262 -2030,8,16,11,0.3272,0.64484,0.386,0.40262 -2030,8,16,12,0.3419,0.64484,0.386,0.41924 -2030,8,16,13,0.386,0.68824,0.41924,0.43586 -2030,8,16,14,0.45248,0.68824,0.4691,0.5622 -2030,8,16,15,0.6553,0.6655,0.7484,0.8415 -2030,8,16,16,0.5622,0.64484,0.60352,0.62418 -2030,8,16,17,0.60352,0.62418,0.64484,0.68824 -2030,8,16,18,0.64484,0.62418,0.73372,0.80052 -2030,8,16,19,0.6655,0.60352,0.80052,0.8858 -2030,8,16,20,0.68824,0.60352,0.86448,0.90816 -2030,8,16,21,0.60352,0.62418,0.84316,0.90816 -2030,8,16,22,0.8415,0.64484,0.82184,0.89698 -2030,8,16,23,0.6553,0.6655,0.75646,0.86448 -2030,8,16,24,0.5622,0.71098,0.68824,0.80052 -2030,8,17,1,0.45248,0.71098,0.62418,0.71098 -2030,8,17,2,0.43586,0.75646,0.5622,0.60352 -2030,8,17,3,0.43586,0.75646,0.7484,0.5622 -2030,8,17,4,0.41924,0.7792,0.6553,0.7484 -2030,8,17,5,0.40262,0.75646,0.5622,0.4691 -2030,8,17,6,0.3713,0.73372,0.45248,0.45248 -2030,8,17,7,0.3713,0.71098,0.43586,0.43586 -2030,8,17,8,0.3419,0.68824,0.41924,0.41924 -2030,8,17,9,0.3272,0.6655,0.386,0.40262 -2030,8,17,10,0.3125,0.6655,0.3713,0.40262 -2030,8,17,11,0.3272,0.64484,0.386,0.40262 -2030,8,17,12,0.3419,0.64484,0.386,0.41924 -2030,8,17,13,0.386,0.68824,0.41924,0.43586 -2030,8,17,14,0.45248,0.68824,0.4691,0.5622 -2030,8,17,15,0.6553,0.6655,0.7484,0.8415 -2030,8,17,16,0.5622,0.64484,0.60352,0.62418 -2030,8,17,17,0.60352,0.62418,0.64484,0.68824 -2030,8,17,18,0.64484,0.62418,0.73372,0.80052 -2030,8,17,19,0.6655,0.60352,0.80052,0.8858 -2030,8,17,20,0.68824,0.60352,0.86448,0.90816 -2030,8,17,21,0.60352,0.62418,0.84316,0.90816 -2030,8,17,22,0.8415,0.64484,0.82184,0.89698 -2030,8,17,23,0.6553,0.6655,0.75646,0.86448 -2030,8,17,24,0.5622,0.71098,0.68824,0.80052 -2030,8,18,1,0.45248,0.71098,0.62418,0.71098 -2030,8,18,2,0.43586,0.75646,0.5622,0.60352 -2030,8,18,3,0.43586,0.75646,0.7484,0.5622 -2030,8,18,4,0.41924,0.7792,0.6553,0.7484 -2030,8,18,5,0.40262,0.75646,0.5622,0.4691 -2030,8,18,6,0.3713,0.73372,0.45248,0.45248 -2030,8,18,7,0.3713,0.71098,0.43586,0.43586 -2030,8,18,8,0.3419,0.68824,0.41924,0.41924 -2030,8,18,9,0.3272,0.6655,0.386,0.40262 -2030,8,18,10,0.3125,0.6655,0.3713,0.40262 -2030,8,18,11,0.3272,0.64484,0.386,0.40262 -2030,8,18,12,0.3419,0.64484,0.386,0.41924 -2030,8,18,13,0.386,0.68824,0.41924,0.43586 -2030,8,18,14,0.45248,0.68824,0.4691,0.5622 -2030,8,18,15,0.6553,0.6655,0.7484,0.8415 -2030,8,18,16,0.5622,0.64484,0.60352,0.62418 -2030,8,18,17,0.60352,0.62418,0.64484,0.68824 -2030,8,18,18,0.64484,0.62418,0.73372,0.80052 -2030,8,18,19,0.6655,0.60352,0.80052,0.8858 -2030,8,18,20,0.68824,0.60352,0.86448,0.90816 -2030,8,18,21,0.60352,0.62418,0.84316,0.90816 -2030,8,18,22,0.8415,0.64484,0.82184,0.89698 -2030,8,18,23,0.6553,0.6655,0.75646,0.86448 -2030,8,18,24,0.5622,0.71098,0.68824,0.80052 -2030,8,19,1,0.45248,0.71098,0.62418,0.71098 -2030,8,19,2,0.43586,0.75646,0.5622,0.60352 -2030,8,19,3,0.43586,0.75646,0.7484,0.5622 -2030,8,19,4,0.41924,0.7792,0.6553,0.7484 -2030,8,19,5,0.40262,0.75646,0.5622,0.4691 -2030,8,19,6,0.3713,0.73372,0.45248,0.45248 -2030,8,19,7,0.3713,0.71098,0.43586,0.43586 -2030,8,19,8,0.3419,0.68824,0.41924,0.41924 -2030,8,19,9,0.3272,0.6655,0.386,0.40262 -2030,8,19,10,0.3125,0.6655,0.3713,0.40262 -2030,8,19,11,0.3272,0.64484,0.386,0.40262 -2030,8,19,12,0.3419,0.64484,0.386,0.41924 -2030,8,19,13,0.386,0.68824,0.41924,0.43586 -2030,8,19,14,0.45248,0.68824,0.4691,0.5622 -2030,8,19,15,0.6553,0.6655,0.7484,0.8415 -2030,8,19,16,0.5622,0.64484,0.60352,0.62418 -2030,8,19,17,0.60352,0.62418,0.64484,0.68824 -2030,8,19,18,0.64484,0.62418,0.73372,0.80052 -2030,8,19,19,0.6655,0.60352,0.80052,0.8858 -2030,8,19,20,0.68824,0.60352,0.86448,0.90816 -2030,8,19,21,0.60352,0.62418,0.84316,0.90816 -2030,8,19,22,0.8415,0.64484,0.82184,0.89698 -2030,8,19,23,0.6553,0.6655,0.75646,0.86448 -2030,8,19,24,0.5622,0.71098,0.68824,0.80052 -2030,8,20,1,0.45248,0.71098,0.62418,0.71098 -2030,8,20,2,0.43586,0.75646,0.5622,0.60352 -2030,8,20,3,0.43586,0.75646,0.7484,0.5622 -2030,8,20,4,0.41924,0.7792,0.6553,0.7484 -2030,8,20,5,0.40262,0.75646,0.5622,0.4691 -2030,8,20,6,0.3713,0.73372,0.45248,0.45248 -2030,8,20,7,0.3713,0.71098,0.43586,0.43586 -2030,8,20,8,0.3419,0.68824,0.41924,0.41924 -2030,8,20,9,0.3272,0.6655,0.386,0.40262 -2030,8,20,10,0.3125,0.6655,0.3713,0.40262 -2030,8,20,11,0.3272,0.64484,0.386,0.40262 -2030,8,20,12,0.3419,0.64484,0.386,0.41924 -2030,8,20,13,0.386,0.68824,0.41924,0.43586 -2030,8,20,14,0.45248,0.68824,0.4691,0.5622 -2030,8,20,15,0.6553,0.6655,0.7484,0.8415 -2030,8,20,16,0.5622,0.64484,0.60352,0.62418 -2030,8,20,17,0.60352,0.62418,0.64484,0.68824 -2030,8,20,18,0.64484,0.62418,0.73372,0.80052 -2030,8,20,19,0.6655,0.60352,0.80052,0.8858 -2030,8,20,20,0.68824,0.60352,0.86448,0.90816 -2030,8,20,21,0.60352,0.62418,0.84316,0.90816 -2030,8,20,22,0.8415,0.64484,0.82184,0.89698 -2030,8,20,23,0.6553,0.6655,0.75646,0.86448 -2030,8,20,24,0.5622,0.71098,0.68824,0.80052 -2030,8,21,1,0.45248,0.71098,0.62418,0.71098 -2030,8,21,2,0.43586,0.75646,0.5622,0.60352 -2030,8,21,3,0.43586,0.75646,0.7484,0.5622 -2030,8,21,4,0.41924,0.7792,0.6553,0.7484 -2030,8,21,5,0.40262,0.75646,0.5622,0.4691 -2030,8,21,6,0.3713,0.73372,0.45248,0.45248 -2030,8,21,7,0.3713,0.71098,0.43586,0.43586 -2030,8,21,8,0.3419,0.68824,0.41924,0.41924 -2030,8,21,9,0.3272,0.6655,0.386,0.40262 -2030,8,21,10,0.3125,0.6655,0.3713,0.40262 -2030,8,21,11,0.3272,0.64484,0.386,0.40262 -2030,8,21,12,0.3419,0.64484,0.386,0.41924 -2030,8,21,13,0.386,0.68824,0.41924,0.43586 -2030,8,21,14,0.45248,0.68824,0.4691,0.5622 -2030,8,21,15,0.6553,0.6655,0.7484,0.8415 -2030,8,21,16,0.5622,0.64484,0.60352,0.62418 -2030,8,21,17,0.60352,0.62418,0.64484,0.68824 -2030,8,21,18,0.64484,0.62418,0.73372,0.80052 -2030,8,21,19,0.6655,0.60352,0.80052,0.8858 -2030,8,21,20,0.68824,0.60352,0.86448,0.90816 -2030,8,21,21,0.60352,0.62418,0.84316,0.90816 -2030,8,21,22,0.8415,0.64484,0.82184,0.89698 -2030,8,21,23,0.6553,0.6655,0.75646,0.86448 -2030,8,21,24,0.5622,0.71098,0.68824,0.80052 -2030,8,22,1,0.45248,0.71098,0.62418,0.71098 -2030,8,22,2,0.43586,0.75646,0.5622,0.60352 -2030,8,22,3,0.43586,0.75646,0.7484,0.5622 -2030,8,22,4,0.41924,0.7792,0.6553,0.7484 -2030,8,22,5,0.40262,0.75646,0.5622,0.4691 -2030,8,22,6,0.3713,0.73372,0.45248,0.45248 -2030,8,22,7,0.3713,0.71098,0.43586,0.43586 -2030,8,22,8,0.3419,0.68824,0.41924,0.41924 -2030,8,22,9,0.3272,0.6655,0.386,0.40262 -2030,8,22,10,0.3125,0.6655,0.3713,0.40262 -2030,8,22,11,0.3272,0.64484,0.386,0.40262 -2030,8,22,12,0.3419,0.64484,0.386,0.41924 -2030,8,22,13,0.386,0.68824,0.41924,0.43586 -2030,8,22,14,0.45248,0.68824,0.4691,0.5622 -2030,8,22,15,0.6553,0.6655,0.7484,0.8415 -2030,8,22,16,0.5622,0.64484,0.60352,0.62418 -2030,8,22,17,0.60352,0.62418,0.64484,0.68824 -2030,8,22,18,0.64484,0.62418,0.73372,0.80052 -2030,8,22,19,0.6655,0.60352,0.80052,0.8858 -2030,8,22,20,0.68824,0.60352,0.86448,0.90816 -2030,8,22,21,0.60352,0.62418,0.84316,0.90816 -2030,8,22,22,0.8415,0.64484,0.82184,0.89698 -2030,8,22,23,0.6553,0.6655,0.75646,0.86448 -2030,8,22,24,0.5622,0.71098,0.68824,0.80052 -2030,8,23,1,0.45248,0.71098,0.62418,0.71098 -2030,8,23,2,0.43586,0.75646,0.5622,0.60352 -2030,8,23,3,0.43586,0.75646,0.7484,0.5622 -2030,8,23,4,0.41924,0.7792,0.6553,0.7484 -2030,8,23,5,0.40262,0.75646,0.5622,0.4691 -2030,8,23,6,0.3713,0.73372,0.45248,0.45248 -2030,8,23,7,0.3713,0.71098,0.43586,0.43586 -2030,8,23,8,0.3419,0.68824,0.41924,0.41924 -2030,8,23,9,0.3272,0.6655,0.386,0.40262 -2030,8,23,10,0.3125,0.6655,0.3713,0.40262 -2030,8,23,11,0.3272,0.64484,0.386,0.40262 -2030,8,23,12,0.3419,0.64484,0.386,0.41924 -2030,8,23,13,0.386,0.68824,0.41924,0.43586 -2030,8,23,14,0.45248,0.68824,0.4691,0.5622 -2030,8,23,15,0.6553,0.6655,0.7484,0.8415 -2030,8,23,16,0.5622,0.64484,0.60352,0.62418 -2030,8,23,17,0.60352,0.62418,0.64484,0.68824 -2030,8,23,18,0.64484,0.62418,0.73372,0.80052 -2030,8,23,19,0.6655,0.60352,0.80052,0.8858 -2030,8,23,20,0.68824,0.60352,0.86448,0.90816 -2030,8,23,21,0.60352,0.62418,0.84316,0.90816 -2030,8,23,22,0.8415,0.64484,0.82184,0.89698 -2030,8,23,23,0.6553,0.6655,0.75646,0.86448 -2030,8,23,24,0.5622,0.71098,0.68824,0.80052 -2030,8,24,1,0.45248,0.71098,0.62418,0.71098 -2030,8,24,2,0.43586,0.75646,0.5622,0.60352 -2030,8,24,3,0.43586,0.75646,0.7484,0.5622 -2030,8,24,4,0.41924,0.7792,0.6553,0.7484 -2030,8,24,5,0.40262,0.75646,0.5622,0.4691 -2030,8,24,6,0.3713,0.73372,0.45248,0.45248 -2030,8,24,7,0.3713,0.71098,0.43586,0.43586 -2030,8,24,8,0.3419,0.68824,0.41924,0.41924 -2030,8,24,9,0.3272,0.6655,0.386,0.40262 -2030,8,24,10,0.3125,0.6655,0.3713,0.40262 -2030,8,24,11,0.3272,0.64484,0.386,0.40262 -2030,8,24,12,0.3419,0.64484,0.386,0.41924 -2030,8,24,13,0.386,0.68824,0.41924,0.43586 -2030,8,24,14,0.45248,0.68824,0.4691,0.5622 -2030,8,24,15,0.6553,0.6655,0.7484,0.8415 -2030,8,24,16,0.5622,0.64484,0.60352,0.62418 -2030,8,24,17,0.60352,0.62418,0.64484,0.68824 -2030,8,24,18,0.64484,0.62418,0.73372,0.80052 -2030,8,24,19,0.6655,0.60352,0.80052,0.8858 -2030,8,24,20,0.68824,0.60352,0.86448,0.90816 -2030,8,24,21,0.60352,0.62418,0.84316,0.90816 -2030,8,24,22,0.8415,0.64484,0.82184,0.89698 -2030,8,24,23,0.6553,0.6655,0.75646,0.86448 -2030,8,24,24,0.5622,0.71098,0.68824,0.80052 -2030,8,25,1,0.45248,0.71098,0.62418,0.71098 -2030,8,25,2,0.43586,0.75646,0.5622,0.60352 -2030,8,25,3,0.43586,0.75646,0.7484,0.5622 -2030,8,25,4,0.41924,0.7792,0.6553,0.7484 -2030,8,25,5,0.40262,0.75646,0.5622,0.4691 -2030,8,25,6,0.3713,0.73372,0.45248,0.45248 -2030,8,25,7,0.3713,0.71098,0.43586,0.43586 -2030,8,25,8,0.3419,0.68824,0.41924,0.41924 -2030,8,25,9,0.3272,0.6655,0.386,0.40262 -2030,8,25,10,0.3125,0.6655,0.3713,0.40262 -2030,8,25,11,0.3272,0.64484,0.386,0.40262 -2030,8,25,12,0.3419,0.64484,0.386,0.41924 -2030,8,25,13,0.386,0.68824,0.41924,0.43586 -2030,8,25,14,0.45248,0.68824,0.4691,0.5622 -2030,8,25,15,0.6553,0.6655,0.7484,0.8415 -2030,8,25,16,0.5622,0.64484,0.60352,0.62418 -2030,8,25,17,0.60352,0.62418,0.64484,0.68824 -2030,8,25,18,0.64484,0.62418,0.73372,0.80052 -2030,8,25,19,0.6655,0.60352,0.80052,0.8858 -2030,8,25,20,0.68824,0.60352,0.86448,0.90816 -2030,8,25,21,0.60352,0.62418,0.84316,0.90816 -2030,8,25,22,0.8415,0.64484,0.82184,0.89698 -2030,8,25,23,0.6553,0.6655,0.75646,0.86448 -2030,8,25,24,0.5622,0.71098,0.68824,0.80052 -2030,8,26,1,0.45248,0.71098,0.62418,0.71098 -2030,8,26,2,0.43586,0.75646,0.5622,0.60352 -2030,8,26,3,0.43586,0.75646,0.7484,0.5622 -2030,8,26,4,0.41924,0.7792,0.6553,0.7484 -2030,8,26,5,0.40262,0.75646,0.5622,0.4691 -2030,8,26,6,0.3713,0.73372,0.45248,0.45248 -2030,8,26,7,0.3713,0.71098,0.43586,0.43586 -2030,8,26,8,0.3419,0.68824,0.41924,0.41924 -2030,8,26,9,0.3272,0.6655,0.386,0.40262 -2030,8,26,10,0.3125,0.6655,0.3713,0.40262 -2030,8,26,11,0.3272,0.64484,0.386,0.40262 -2030,8,26,12,0.3419,0.64484,0.386,0.41924 -2030,8,26,13,0.386,0.68824,0.41924,0.43586 -2030,8,26,14,0.45248,0.68824,0.4691,0.5622 -2030,8,26,15,0.6553,0.6655,0.7484,0.8415 -2030,8,26,16,0.5622,0.64484,0.60352,0.62418 -2030,8,26,17,0.60352,0.62418,0.64484,0.68824 -2030,8,26,18,0.64484,0.62418,0.73372,0.80052 -2030,8,26,19,0.6655,0.60352,0.80052,0.8858 -2030,8,26,20,0.68824,0.60352,0.86448,0.90816 -2030,8,26,21,0.60352,0.62418,0.84316,0.90816 -2030,8,26,22,0.8415,0.64484,0.82184,0.89698 -2030,8,26,23,0.6553,0.6655,0.75646,0.86448 -2030,8,26,24,0.5622,0.71098,0.68824,0.80052 -2030,8,27,1,0.45248,0.71098,0.62418,0.71098 -2030,8,27,2,0.43586,0.75646,0.5622,0.60352 -2030,8,27,3,0.43586,0.75646,0.7484,0.5622 -2030,8,27,4,0.41924,0.7792,0.6553,0.7484 -2030,8,27,5,0.40262,0.75646,0.5622,0.4691 -2030,8,27,6,0.3713,0.73372,0.45248,0.45248 -2030,8,27,7,0.3713,0.71098,0.43586,0.43586 -2030,8,27,8,0.3419,0.68824,0.41924,0.41924 -2030,8,27,9,0.3272,0.6655,0.386,0.40262 -2030,8,27,10,0.3125,0.6655,0.3713,0.40262 -2030,8,27,11,0.3272,0.64484,0.386,0.40262 -2030,8,27,12,0.3419,0.64484,0.386,0.41924 -2030,8,27,13,0.386,0.68824,0.41924,0.43586 -2030,8,27,14,0.45248,0.68824,0.4691,0.5622 -2030,8,27,15,0.6553,0.6655,0.7484,0.8415 -2030,8,27,16,0.5622,0.64484,0.60352,0.62418 -2030,8,27,17,0.60352,0.62418,0.64484,0.68824 -2030,8,27,18,0.64484,0.62418,0.73372,0.80052 -2030,8,27,19,0.6655,0.60352,0.80052,0.8858 -2030,8,27,20,0.68824,0.60352,0.86448,0.90816 -2030,8,27,21,0.60352,0.62418,0.84316,0.90816 -2030,8,27,22,0.8415,0.64484,0.82184,0.89698 -2030,8,27,23,0.6553,0.6655,0.75646,0.86448 -2030,8,27,24,0.5622,0.71098,0.68824,0.80052 -2030,8,28,1,0.45248,0.71098,0.62418,0.71098 -2030,8,28,2,0.43586,0.75646,0.5622,0.60352 -2030,8,28,3,0.43586,0.75646,0.7484,0.5622 -2030,8,28,4,0.41924,0.7792,0.6553,0.7484 -2030,8,28,5,0.40262,0.75646,0.5622,0.4691 -2030,8,28,6,0.3713,0.73372,0.45248,0.45248 -2030,8,28,7,0.3713,0.71098,0.43586,0.43586 -2030,8,28,8,0.3419,0.68824,0.41924,0.41924 -2030,8,28,9,0.3272,0.6655,0.386,0.40262 -2030,8,28,10,0.3125,0.6655,0.3713,0.40262 -2030,8,28,11,0.3272,0.64484,0.386,0.40262 -2030,8,28,12,0.3419,0.64484,0.386,0.41924 -2030,8,28,13,0.386,0.68824,0.41924,0.43586 -2030,8,28,14,0.45248,0.68824,0.4691,0.5622 -2030,8,28,15,0.6553,0.6655,0.7484,0.8415 -2030,8,28,16,0.5622,0.64484,0.60352,0.62418 -2030,8,28,17,0.60352,0.62418,0.64484,0.68824 -2030,8,28,18,0.64484,0.62418,0.73372,0.80052 -2030,8,28,19,0.6655,0.60352,0.80052,0.8858 -2030,8,28,20,0.68824,0.60352,0.86448,0.90816 -2030,8,28,21,0.60352,0.62418,0.84316,0.90816 -2030,8,28,22,0.8415,0.64484,0.82184,0.89698 -2030,8,28,23,0.6553,0.6655,0.75646,0.86448 -2030,8,28,24,0.5622,0.71098,0.68824,0.80052 -2030,8,29,1,0.45248,0.71098,0.62418,0.71098 -2030,8,29,2,0.43586,0.75646,0.5622,0.60352 -2030,8,29,3,0.43586,0.75646,0.7484,0.5622 -2030,8,29,4,0.41924,0.7792,0.6553,0.7484 -2030,8,29,5,0.40262,0.75646,0.5622,0.4691 -2030,8,29,6,0.3713,0.73372,0.45248,0.45248 -2030,8,29,7,0.3713,0.71098,0.43586,0.43586 -2030,8,29,8,0.3419,0.68824,0.41924,0.41924 -2030,8,29,9,0.3272,0.6655,0.386,0.40262 -2030,8,29,10,0.3125,0.6655,0.3713,0.40262 -2030,8,29,11,0.3272,0.64484,0.386,0.40262 -2030,8,29,12,0.3419,0.64484,0.386,0.41924 -2030,8,29,13,0.386,0.68824,0.41924,0.43586 -2030,8,29,14,0.45248,0.68824,0.4691,0.5622 -2030,8,29,15,0.6553,0.6655,0.7484,0.8415 -2030,8,29,16,0.5622,0.64484,0.60352,0.62418 -2030,8,29,17,0.60352,0.62418,0.64484,0.68824 -2030,8,29,18,0.64484,0.62418,0.73372,0.80052 -2030,8,29,19,0.6655,0.60352,0.80052,0.8858 -2030,8,29,20,0.68824,0.60352,0.86448,0.90816 -2030,8,29,21,0.60352,0.62418,0.84316,0.90816 -2030,8,29,22,0.8415,0.64484,0.82184,0.89698 -2030,8,29,23,0.6553,0.6655,0.75646,0.86448 -2030,8,29,24,0.5622,0.71098,0.68824,0.80052 -2030,8,30,1,0.45248,0.71098,0.62418,0.71098 -2030,8,30,2,0.43586,0.75646,0.5622,0.60352 -2030,8,30,3,0.43586,0.75646,0.7484,0.5622 -2030,8,30,4,0.41924,0.7792,0.6553,0.7484 -2030,8,30,5,0.40262,0.75646,0.5622,0.4691 -2030,8,30,6,0.3713,0.73372,0.45248,0.45248 -2030,8,30,7,0.3713,0.71098,0.43586,0.43586 -2030,8,30,8,0.3419,0.68824,0.41924,0.41924 -2030,8,30,9,0.3272,0.6655,0.386,0.40262 -2030,8,30,10,0.3125,0.6655,0.3713,0.40262 -2030,8,30,11,0.3272,0.64484,0.386,0.40262 -2030,8,30,12,0.3419,0.64484,0.386,0.41924 -2030,8,30,13,0.386,0.68824,0.41924,0.43586 -2030,8,30,14,0.45248,0.68824,0.4691,0.5622 -2030,8,30,15,0.6553,0.6655,0.7484,0.8415 -2030,8,30,16,0.5622,0.64484,0.60352,0.62418 -2030,8,30,17,0.60352,0.62418,0.64484,0.68824 -2030,8,30,18,0.64484,0.62418,0.73372,0.80052 -2030,8,30,19,0.6655,0.60352,0.80052,0.8858 -2030,8,30,20,0.68824,0.60352,0.86448,0.90816 -2030,8,30,21,0.60352,0.62418,0.84316,0.90816 -2030,8,30,22,0.8415,0.64484,0.82184,0.89698 -2030,8,30,23,0.6553,0.6655,0.75646,0.86448 -2030,8,30,24,0.5622,0.71098,0.68824,0.80052 -2030,8,31,1,0.45248,0.71098,0.62418,0.71098 -2030,8,31,2,0.43586,0.75646,0.5622,0.60352 -2030,8,31,3,0.43586,0.75646,0.7484,0.5622 -2030,8,31,4,0.41924,0.7792,0.6553,0.7484 -2030,8,31,5,0.40262,0.75646,0.5622,0.4691 -2030,8,31,6,0.3713,0.73372,0.45248,0.45248 -2030,8,31,7,0.3713,0.71098,0.43586,0.43586 -2030,8,31,8,0.3419,0.68824,0.41924,0.41924 -2030,8,31,9,0.3272,0.6655,0.386,0.40262 -2030,8,31,10,0.3125,0.6655,0.3713,0.40262 -2030,8,31,11,0.3272,0.64484,0.386,0.40262 -2030,8,31,12,0.3419,0.64484,0.386,0.41924 -2030,8,31,13,0.386,0.68824,0.41924,0.43586 -2030,8,31,14,0.45248,0.68824,0.4691,0.5622 -2030,8,31,15,0.6553,0.6655,0.7484,0.8415 -2030,8,31,16,0.5622,0.64484,0.60352,0.62418 -2030,8,31,17,0.60352,0.62418,0.64484,0.68824 -2030,8,31,18,0.64484,0.62418,0.73372,0.80052 -2030,8,31,19,0.6655,0.60352,0.80052,0.8858 -2030,8,31,20,0.68824,0.60352,0.86448,0.90816 -2030,8,31,21,0.60352,0.62418,0.84316,0.90816 -2030,8,31,22,0.8415,0.64484,0.82184,0.89698 -2030,8,31,23,0.6553,0.6655,0.75646,0.86448 -2030,8,31,24,0.5622,0.71098,0.68824,0.80052 -2030,9,1,1,0.40262,0.5622,0.5622,0.7484 -2030,9,1,2,0.3713,0.7484,0.43586,0.4691 -2030,9,1,3,0.3566,0.7484,0.40262,0.41924 -2030,9,1,4,0.3566,0.6553,0.3713,0.386 -2030,9,1,5,0.3419,0.5622,0.3566,0.3566 -2030,9,1,6,0.3272,0.4691,0.3272,0.3419 -2030,9,1,7,0.3125,0.4691,0.3272,0.3125 -2030,9,1,8,0.28682,0.45248,0.3125,0.3272 -2030,9,1,9,0.27398,0.45248,0.29966,0.3125 -2030,9,1,10,0.27398,0.43586,0.3125,0.3125 -2030,9,1,11,0.27398,0.45248,0.29966,0.3125 -2030,9,1,12,0.28682,0.5622,0.3125,0.3125 -2030,9,1,13,0.3272,0.6553,0.3272,0.3272 -2030,9,1,14,0.3713,0.7484,0.3713,0.3713 -2030,9,1,15,0.43586,0.5622,0.41924,0.41924 -2030,9,1,16,0.4691,0.5622,0.5622,0.6553 -2030,9,1,17,0.7484,0.58286,0.5622,0.58286 -2030,9,1,18,0.58286,0.58286,0.60352,0.6655 -2030,9,1,19,0.58286,0.5622,0.68824,0.7792 -2030,9,1,20,0.58286,0.8415,0.68824,0.82184 -2030,9,1,21,0.8415,0.7484,0.71098,0.82184 -2030,9,1,22,0.4691,0.8415,0.6655,0.75646 -2030,9,1,23,0.43586,0.8415,0.58286,0.68824 -2030,9,1,24,0.41924,0.5622,0.8415,0.62418 -2030,9,2,1,0.40262,0.5622,0.5622,0.7484 -2030,9,2,2,0.3713,0.7484,0.43586,0.4691 -2030,9,2,3,0.3566,0.7484,0.40262,0.41924 -2030,9,2,4,0.3566,0.6553,0.3713,0.386 -2030,9,2,5,0.3419,0.5622,0.3566,0.3566 -2030,9,2,6,0.3272,0.4691,0.3272,0.3419 -2030,9,2,7,0.3125,0.4691,0.3272,0.3125 -2030,9,2,8,0.28682,0.45248,0.3125,0.3272 -2030,9,2,9,0.27398,0.45248,0.29966,0.3125 -2030,9,2,10,0.27398,0.43586,0.3125,0.3125 -2030,9,2,11,0.27398,0.45248,0.29966,0.3125 -2030,9,2,12,0.28682,0.5622,0.3125,0.3125 -2030,9,2,13,0.3272,0.6553,0.3272,0.3272 -2030,9,2,14,0.3713,0.7484,0.3713,0.3713 -2030,9,2,15,0.43586,0.5622,0.41924,0.41924 -2030,9,2,16,0.4691,0.5622,0.5622,0.6553 -2030,9,2,17,0.7484,0.58286,0.5622,0.58286 -2030,9,2,18,0.58286,0.58286,0.60352,0.6655 -2030,9,2,19,0.58286,0.5622,0.68824,0.7792 -2030,9,2,20,0.58286,0.8415,0.68824,0.82184 -2030,9,2,21,0.8415,0.7484,0.71098,0.82184 -2030,9,2,22,0.4691,0.8415,0.6655,0.75646 -2030,9,2,23,0.43586,0.8415,0.58286,0.68824 -2030,9,2,24,0.41924,0.5622,0.8415,0.62418 -2030,9,3,1,0.40262,0.5622,0.5622,0.7484 -2030,9,3,2,0.3713,0.7484,0.43586,0.4691 -2030,9,3,3,0.3566,0.7484,0.40262,0.41924 -2030,9,3,4,0.3566,0.6553,0.3713,0.386 -2030,9,3,5,0.3419,0.5622,0.3566,0.3566 -2030,9,3,6,0.3272,0.4691,0.3272,0.3419 -2030,9,3,7,0.3125,0.4691,0.3272,0.3125 -2030,9,3,8,0.28682,0.45248,0.3125,0.3272 -2030,9,3,9,0.27398,0.45248,0.29966,0.3125 -2030,9,3,10,0.27398,0.43586,0.3125,0.3125 -2030,9,3,11,0.27398,0.45248,0.29966,0.3125 -2030,9,3,12,0.28682,0.5622,0.3125,0.3125 -2030,9,3,13,0.3272,0.6553,0.3272,0.3272 -2030,9,3,14,0.3713,0.7484,0.3713,0.3713 -2030,9,3,15,0.43586,0.5622,0.41924,0.41924 -2030,9,3,16,0.4691,0.5622,0.5622,0.6553 -2030,9,3,17,0.7484,0.58286,0.5622,0.58286 -2030,9,3,18,0.58286,0.58286,0.60352,0.6655 -2030,9,3,19,0.58286,0.5622,0.68824,0.7792 -2030,9,3,20,0.58286,0.8415,0.68824,0.82184 -2030,9,3,21,0.8415,0.7484,0.71098,0.82184 -2030,9,3,22,0.4691,0.8415,0.6655,0.75646 -2030,9,3,23,0.43586,0.8415,0.58286,0.68824 -2030,9,3,24,0.41924,0.5622,0.8415,0.62418 -2030,9,4,1,0.40262,0.5622,0.5622,0.7484 -2030,9,4,2,0.3713,0.7484,0.43586,0.4691 -2030,9,4,3,0.3566,0.7484,0.40262,0.41924 -2030,9,4,4,0.3566,0.6553,0.3713,0.386 -2030,9,4,5,0.3419,0.5622,0.3566,0.3566 -2030,9,4,6,0.3272,0.4691,0.3272,0.3419 -2030,9,4,7,0.3125,0.4691,0.3272,0.3125 -2030,9,4,8,0.28682,0.45248,0.3125,0.3272 -2030,9,4,9,0.27398,0.45248,0.29966,0.3125 -2030,9,4,10,0.27398,0.43586,0.3125,0.3125 -2030,9,4,11,0.27398,0.45248,0.29966,0.3125 -2030,9,4,12,0.28682,0.5622,0.3125,0.3125 -2030,9,4,13,0.3272,0.6553,0.3272,0.3272 -2030,9,4,14,0.3713,0.7484,0.3713,0.3713 -2030,9,4,15,0.43586,0.5622,0.41924,0.41924 -2030,9,4,16,0.4691,0.5622,0.5622,0.6553 -2030,9,4,17,0.7484,0.58286,0.5622,0.58286 -2030,9,4,18,0.58286,0.58286,0.60352,0.6655 -2030,9,4,19,0.58286,0.5622,0.68824,0.7792 -2030,9,4,20,0.58286,0.8415,0.68824,0.82184 -2030,9,4,21,0.8415,0.7484,0.71098,0.82184 -2030,9,4,22,0.4691,0.8415,0.6655,0.75646 -2030,9,4,23,0.43586,0.8415,0.58286,0.68824 -2030,9,4,24,0.41924,0.5622,0.8415,0.62418 -2030,9,5,1,0.40262,0.5622,0.5622,0.7484 -2030,9,5,2,0.3713,0.7484,0.43586,0.4691 -2030,9,5,3,0.3566,0.7484,0.40262,0.41924 -2030,9,5,4,0.3566,0.6553,0.3713,0.386 -2030,9,5,5,0.3419,0.5622,0.3566,0.3566 -2030,9,5,6,0.3272,0.4691,0.3272,0.3419 -2030,9,5,7,0.3125,0.4691,0.3272,0.3125 -2030,9,5,8,0.28682,0.45248,0.3125,0.3272 -2030,9,5,9,0.27398,0.45248,0.29966,0.3125 -2030,9,5,10,0.27398,0.43586,0.3125,0.3125 -2030,9,5,11,0.27398,0.45248,0.29966,0.3125 -2030,9,5,12,0.28682,0.5622,0.3125,0.3125 -2030,9,5,13,0.3272,0.6553,0.3272,0.3272 -2030,9,5,14,0.3713,0.7484,0.3713,0.3713 -2030,9,5,15,0.43586,0.5622,0.41924,0.41924 -2030,9,5,16,0.4691,0.5622,0.5622,0.6553 -2030,9,5,17,0.7484,0.58286,0.5622,0.58286 -2030,9,5,18,0.58286,0.58286,0.60352,0.6655 -2030,9,5,19,0.58286,0.5622,0.68824,0.7792 -2030,9,5,20,0.58286,0.8415,0.68824,0.82184 -2030,9,5,21,0.8415,0.7484,0.71098,0.82184 -2030,9,5,22,0.4691,0.8415,0.6655,0.75646 -2030,9,5,23,0.43586,0.8415,0.58286,0.68824 -2030,9,5,24,0.41924,0.5622,0.8415,0.62418 -2030,9,6,1,0.40262,0.5622,0.5622,0.7484 -2030,9,6,2,0.3713,0.7484,0.43586,0.4691 -2030,9,6,3,0.3566,0.7484,0.40262,0.41924 -2030,9,6,4,0.3566,0.6553,0.3713,0.386 -2030,9,6,5,0.3419,0.5622,0.3566,0.3566 -2030,9,6,6,0.3272,0.4691,0.3272,0.3419 -2030,9,6,7,0.3125,0.4691,0.3272,0.3125 -2030,9,6,8,0.28682,0.45248,0.3125,0.3272 -2030,9,6,9,0.27398,0.45248,0.29966,0.3125 -2030,9,6,10,0.27398,0.43586,0.3125,0.3125 -2030,9,6,11,0.27398,0.45248,0.29966,0.3125 -2030,9,6,12,0.28682,0.5622,0.3125,0.3125 -2030,9,6,13,0.3272,0.6553,0.3272,0.3272 -2030,9,6,14,0.3713,0.7484,0.3713,0.3713 -2030,9,6,15,0.43586,0.5622,0.41924,0.41924 -2030,9,6,16,0.4691,0.5622,0.5622,0.6553 -2030,9,6,17,0.7484,0.58286,0.5622,0.58286 -2030,9,6,18,0.58286,0.58286,0.60352,0.6655 -2030,9,6,19,0.58286,0.5622,0.68824,0.7792 -2030,9,6,20,0.58286,0.8415,0.68824,0.82184 -2030,9,6,21,0.8415,0.7484,0.71098,0.82184 -2030,9,6,22,0.4691,0.8415,0.6655,0.75646 -2030,9,6,23,0.43586,0.8415,0.58286,0.68824 -2030,9,6,24,0.41924,0.5622,0.8415,0.62418 -2030,9,7,1,0.40262,0.5622,0.5622,0.7484 -2030,9,7,2,0.3713,0.7484,0.43586,0.4691 -2030,9,7,3,0.3566,0.7484,0.40262,0.41924 -2030,9,7,4,0.3566,0.6553,0.3713,0.386 -2030,9,7,5,0.3419,0.5622,0.3566,0.3566 -2030,9,7,6,0.3272,0.4691,0.3272,0.3419 -2030,9,7,7,0.3125,0.4691,0.3272,0.3125 -2030,9,7,8,0.28682,0.45248,0.3125,0.3272 -2030,9,7,9,0.27398,0.45248,0.29966,0.3125 -2030,9,7,10,0.27398,0.43586,0.3125,0.3125 -2030,9,7,11,0.27398,0.45248,0.29966,0.3125 -2030,9,7,12,0.28682,0.5622,0.3125,0.3125 -2030,9,7,13,0.3272,0.6553,0.3272,0.3272 -2030,9,7,14,0.3713,0.7484,0.3713,0.3713 -2030,9,7,15,0.43586,0.5622,0.41924,0.41924 -2030,9,7,16,0.4691,0.5622,0.5622,0.6553 -2030,9,7,17,0.7484,0.58286,0.5622,0.58286 -2030,9,7,18,0.58286,0.58286,0.60352,0.6655 -2030,9,7,19,0.58286,0.5622,0.68824,0.7792 -2030,9,7,20,0.58286,0.8415,0.68824,0.82184 -2030,9,7,21,0.8415,0.7484,0.71098,0.82184 -2030,9,7,22,0.4691,0.8415,0.6655,0.75646 -2030,9,7,23,0.43586,0.8415,0.58286,0.68824 -2030,9,7,24,0.41924,0.5622,0.8415,0.62418 -2030,9,8,1,0.40262,0.5622,0.5622,0.7484 -2030,9,8,2,0.3713,0.7484,0.43586,0.4691 -2030,9,8,3,0.3566,0.7484,0.40262,0.41924 -2030,9,8,4,0.3566,0.6553,0.3713,0.386 -2030,9,8,5,0.3419,0.5622,0.3566,0.3566 -2030,9,8,6,0.3272,0.4691,0.3272,0.3419 -2030,9,8,7,0.3125,0.4691,0.3272,0.3125 -2030,9,8,8,0.28682,0.45248,0.3125,0.3272 -2030,9,8,9,0.27398,0.45248,0.29966,0.3125 -2030,9,8,10,0.27398,0.43586,0.3125,0.3125 -2030,9,8,11,0.27398,0.45248,0.29966,0.3125 -2030,9,8,12,0.28682,0.5622,0.3125,0.3125 -2030,9,8,13,0.3272,0.6553,0.3272,0.3272 -2030,9,8,14,0.3713,0.7484,0.3713,0.3713 -2030,9,8,15,0.43586,0.5622,0.41924,0.41924 -2030,9,8,16,0.4691,0.5622,0.5622,0.6553 -2030,9,8,17,0.7484,0.58286,0.5622,0.58286 -2030,9,8,18,0.58286,0.58286,0.60352,0.6655 -2030,9,8,19,0.58286,0.5622,0.68824,0.7792 -2030,9,8,20,0.58286,0.8415,0.68824,0.82184 -2030,9,8,21,0.8415,0.7484,0.71098,0.82184 -2030,9,8,22,0.4691,0.8415,0.6655,0.75646 -2030,9,8,23,0.43586,0.8415,0.58286,0.68824 -2030,9,8,24,0.41924,0.5622,0.8415,0.62418 -2030,9,9,1,0.40262,0.5622,0.5622,0.7484 -2030,9,9,2,0.3713,0.7484,0.43586,0.4691 -2030,9,9,3,0.3566,0.7484,0.40262,0.41924 -2030,9,9,4,0.3566,0.6553,0.3713,0.386 -2030,9,9,5,0.3419,0.5622,0.3566,0.3566 -2030,9,9,6,0.3272,0.4691,0.3272,0.3419 -2030,9,9,7,0.3125,0.4691,0.3272,0.3125 -2030,9,9,8,0.28682,0.45248,0.3125,0.3272 -2030,9,9,9,0.27398,0.45248,0.29966,0.3125 -2030,9,9,10,0.27398,0.43586,0.3125,0.3125 -2030,9,9,11,0.27398,0.45248,0.29966,0.3125 -2030,9,9,12,0.28682,0.5622,0.3125,0.3125 -2030,9,9,13,0.3272,0.6553,0.3272,0.3272 -2030,9,9,14,0.3713,0.7484,0.3713,0.3713 -2030,9,9,15,0.43586,0.5622,0.41924,0.41924 -2030,9,9,16,0.4691,0.5622,0.5622,0.6553 -2030,9,9,17,0.7484,0.58286,0.5622,0.58286 -2030,9,9,18,0.58286,0.58286,0.60352,0.6655 -2030,9,9,19,0.58286,0.5622,0.68824,0.7792 -2030,9,9,20,0.58286,0.8415,0.68824,0.82184 -2030,9,9,21,0.8415,0.7484,0.71098,0.82184 -2030,9,9,22,0.4691,0.8415,0.6655,0.75646 -2030,9,9,23,0.43586,0.8415,0.58286,0.68824 -2030,9,9,24,0.41924,0.5622,0.8415,0.62418 -2030,9,10,1,0.40262,0.5622,0.5622,0.7484 -2030,9,10,2,0.3713,0.7484,0.43586,0.4691 -2030,9,10,3,0.3566,0.7484,0.40262,0.41924 -2030,9,10,4,0.3566,0.6553,0.3713,0.386 -2030,9,10,5,0.3419,0.5622,0.3566,0.3566 -2030,9,10,6,0.3272,0.4691,0.3272,0.3419 -2030,9,10,7,0.3125,0.4691,0.3272,0.3125 -2030,9,10,8,0.28682,0.45248,0.3125,0.3272 -2030,9,10,9,0.27398,0.45248,0.29966,0.3125 -2030,9,10,10,0.27398,0.43586,0.3125,0.3125 -2030,9,10,11,0.27398,0.45248,0.29966,0.3125 -2030,9,10,12,0.28682,0.5622,0.3125,0.3125 -2030,9,10,13,0.3272,0.6553,0.3272,0.3272 -2030,9,10,14,0.3713,0.7484,0.3713,0.3713 -2030,9,10,15,0.43586,0.5622,0.41924,0.41924 -2030,9,10,16,0.4691,0.5622,0.5622,0.6553 -2030,9,10,17,0.7484,0.58286,0.5622,0.58286 -2030,9,10,18,0.58286,0.58286,0.60352,0.6655 -2030,9,10,19,0.58286,0.5622,0.68824,0.7792 -2030,9,10,20,0.58286,0.8415,0.68824,0.82184 -2030,9,10,21,0.8415,0.7484,0.71098,0.82184 -2030,9,10,22,0.4691,0.8415,0.6655,0.75646 -2030,9,10,23,0.43586,0.8415,0.58286,0.68824 -2030,9,10,24,0.41924,0.5622,0.8415,0.62418 -2030,9,11,1,0.40262,0.5622,0.5622,0.7484 -2030,9,11,2,0.3713,0.7484,0.43586,0.4691 -2030,9,11,3,0.3566,0.7484,0.40262,0.41924 -2030,9,11,4,0.3566,0.6553,0.3713,0.386 -2030,9,11,5,0.3419,0.5622,0.3566,0.3566 -2030,9,11,6,0.3272,0.4691,0.3272,0.3419 -2030,9,11,7,0.3125,0.4691,0.3272,0.3125 -2030,9,11,8,0.28682,0.45248,0.3125,0.3272 -2030,9,11,9,0.27398,0.45248,0.29966,0.3125 -2030,9,11,10,0.27398,0.43586,0.3125,0.3125 -2030,9,11,11,0.27398,0.45248,0.29966,0.3125 -2030,9,11,12,0.28682,0.5622,0.3125,0.3125 -2030,9,11,13,0.3272,0.6553,0.3272,0.3272 -2030,9,11,14,0.3713,0.7484,0.3713,0.3713 -2030,9,11,15,0.43586,0.5622,0.41924,0.41924 -2030,9,11,16,0.4691,0.5622,0.5622,0.6553 -2030,9,11,17,0.7484,0.58286,0.5622,0.58286 -2030,9,11,18,0.58286,0.58286,0.60352,0.6655 -2030,9,11,19,0.58286,0.5622,0.68824,0.7792 -2030,9,11,20,0.58286,0.8415,0.68824,0.82184 -2030,9,11,21,0.8415,0.7484,0.71098,0.82184 -2030,9,11,22,0.4691,0.8415,0.6655,0.75646 -2030,9,11,23,0.43586,0.8415,0.58286,0.68824 -2030,9,11,24,0.41924,0.5622,0.8415,0.62418 -2030,9,12,1,0.40262,0.5622,0.5622,0.7484 -2030,9,12,2,0.3713,0.7484,0.43586,0.4691 -2030,9,12,3,0.3566,0.7484,0.40262,0.41924 -2030,9,12,4,0.3566,0.6553,0.3713,0.386 -2030,9,12,5,0.3419,0.5622,0.3566,0.3566 -2030,9,12,6,0.3272,0.4691,0.3272,0.3419 -2030,9,12,7,0.3125,0.4691,0.3272,0.3125 -2030,9,12,8,0.28682,0.45248,0.3125,0.3272 -2030,9,12,9,0.27398,0.45248,0.29966,0.3125 -2030,9,12,10,0.27398,0.43586,0.3125,0.3125 -2030,9,12,11,0.27398,0.45248,0.29966,0.3125 -2030,9,12,12,0.28682,0.5622,0.3125,0.3125 -2030,9,12,13,0.3272,0.6553,0.3272,0.3272 -2030,9,12,14,0.3713,0.7484,0.3713,0.3713 -2030,9,12,15,0.43586,0.5622,0.41924,0.41924 -2030,9,12,16,0.4691,0.5622,0.5622,0.6553 -2030,9,12,17,0.7484,0.58286,0.5622,0.58286 -2030,9,12,18,0.58286,0.58286,0.60352,0.6655 -2030,9,12,19,0.58286,0.5622,0.68824,0.7792 -2030,9,12,20,0.58286,0.8415,0.68824,0.82184 -2030,9,12,21,0.8415,0.7484,0.71098,0.82184 -2030,9,12,22,0.4691,0.8415,0.6655,0.75646 -2030,9,12,23,0.43586,0.8415,0.58286,0.68824 -2030,9,12,24,0.41924,0.5622,0.8415,0.62418 -2030,9,13,1,0.40262,0.5622,0.5622,0.7484 -2030,9,13,2,0.3713,0.7484,0.43586,0.4691 -2030,9,13,3,0.3566,0.7484,0.40262,0.41924 -2030,9,13,4,0.3566,0.6553,0.3713,0.386 -2030,9,13,5,0.3419,0.5622,0.3566,0.3566 -2030,9,13,6,0.3272,0.4691,0.3272,0.3419 -2030,9,13,7,0.3125,0.4691,0.3272,0.3125 -2030,9,13,8,0.28682,0.45248,0.3125,0.3272 -2030,9,13,9,0.27398,0.45248,0.29966,0.3125 -2030,9,13,10,0.27398,0.43586,0.3125,0.3125 -2030,9,13,11,0.27398,0.45248,0.29966,0.3125 -2030,9,13,12,0.28682,0.5622,0.3125,0.3125 -2030,9,13,13,0.3272,0.6553,0.3272,0.3272 -2030,9,13,14,0.3713,0.7484,0.3713,0.3713 -2030,9,13,15,0.43586,0.5622,0.41924,0.41924 -2030,9,13,16,0.4691,0.5622,0.5622,0.6553 -2030,9,13,17,0.7484,0.58286,0.5622,0.58286 -2030,9,13,18,0.58286,0.58286,0.60352,0.6655 -2030,9,13,19,0.58286,0.5622,0.68824,0.7792 -2030,9,13,20,0.58286,0.8415,0.68824,0.82184 -2030,9,13,21,0.8415,0.7484,0.71098,0.82184 -2030,9,13,22,0.4691,0.8415,0.6655,0.75646 -2030,9,13,23,0.43586,0.8415,0.58286,0.68824 -2030,9,13,24,0.41924,0.5622,0.8415,0.62418 -2030,9,14,1,0.40262,0.5622,0.5622,0.7484 -2030,9,14,2,0.3713,0.7484,0.43586,0.4691 -2030,9,14,3,0.3566,0.7484,0.40262,0.41924 -2030,9,14,4,0.3566,0.6553,0.3713,0.386 -2030,9,14,5,0.3419,0.5622,0.3566,0.3566 -2030,9,14,6,0.3272,0.4691,0.3272,0.3419 -2030,9,14,7,0.3125,0.4691,0.3272,0.3125 -2030,9,14,8,0.28682,0.45248,0.3125,0.3272 -2030,9,14,9,0.27398,0.45248,0.29966,0.3125 -2030,9,14,10,0.27398,0.43586,0.3125,0.3125 -2030,9,14,11,0.27398,0.45248,0.29966,0.3125 -2030,9,14,12,0.28682,0.5622,0.3125,0.3125 -2030,9,14,13,0.3272,0.6553,0.3272,0.3272 -2030,9,14,14,0.3713,0.7484,0.3713,0.3713 -2030,9,14,15,0.43586,0.5622,0.41924,0.41924 -2030,9,14,16,0.4691,0.5622,0.5622,0.6553 -2030,9,14,17,0.7484,0.58286,0.5622,0.58286 -2030,9,14,18,0.58286,0.58286,0.60352,0.6655 -2030,9,14,19,0.58286,0.5622,0.68824,0.7792 -2030,9,14,20,0.58286,0.8415,0.68824,0.82184 -2030,9,14,21,0.8415,0.7484,0.71098,0.82184 -2030,9,14,22,0.4691,0.8415,0.6655,0.75646 -2030,9,14,23,0.43586,0.8415,0.58286,0.68824 -2030,9,14,24,0.41924,0.5622,0.8415,0.62418 -2030,9,15,1,0.40262,0.5622,0.5622,0.7484 -2030,9,15,2,0.3713,0.7484,0.43586,0.4691 -2030,9,15,3,0.3566,0.7484,0.40262,0.41924 -2030,9,15,4,0.3566,0.6553,0.3713,0.386 -2030,9,15,5,0.3419,0.5622,0.3566,0.3566 -2030,9,15,6,0.3272,0.4691,0.3272,0.3419 -2030,9,15,7,0.3125,0.4691,0.3272,0.3125 -2030,9,15,8,0.28682,0.45248,0.3125,0.3272 -2030,9,15,9,0.27398,0.45248,0.29966,0.3125 -2030,9,15,10,0.27398,0.43586,0.3125,0.3125 -2030,9,15,11,0.27398,0.45248,0.29966,0.3125 -2030,9,15,12,0.28682,0.5622,0.3125,0.3125 -2030,9,15,13,0.3272,0.6553,0.3272,0.3272 -2030,9,15,14,0.3713,0.7484,0.3713,0.3713 -2030,9,15,15,0.43586,0.5622,0.41924,0.41924 -2030,9,15,16,0.4691,0.5622,0.5622,0.6553 -2030,9,15,17,0.7484,0.58286,0.5622,0.58286 -2030,9,15,18,0.58286,0.58286,0.60352,0.6655 -2030,9,15,19,0.58286,0.5622,0.68824,0.7792 -2030,9,15,20,0.58286,0.8415,0.68824,0.82184 -2030,9,15,21,0.8415,0.7484,0.71098,0.82184 -2030,9,15,22,0.4691,0.8415,0.6655,0.75646 -2030,9,15,23,0.43586,0.8415,0.58286,0.68824 -2030,9,15,24,0.41924,0.5622,0.8415,0.62418 -2030,9,16,1,0.40262,0.5622,0.5622,0.7484 -2030,9,16,2,0.3713,0.7484,0.43586,0.4691 -2030,9,16,3,0.3566,0.7484,0.40262,0.41924 -2030,9,16,4,0.3566,0.6553,0.3713,0.386 -2030,9,16,5,0.3419,0.5622,0.3566,0.3566 -2030,9,16,6,0.3272,0.4691,0.3272,0.3419 -2030,9,16,7,0.3125,0.4691,0.3272,0.3125 -2030,9,16,8,0.28682,0.45248,0.3125,0.3272 -2030,9,16,9,0.27398,0.45248,0.29966,0.3125 -2030,9,16,10,0.27398,0.43586,0.3125,0.3125 -2030,9,16,11,0.27398,0.45248,0.29966,0.3125 -2030,9,16,12,0.28682,0.5622,0.3125,0.3125 -2030,9,16,13,0.3272,0.6553,0.3272,0.3272 -2030,9,16,14,0.3713,0.7484,0.3713,0.3713 -2030,9,16,15,0.43586,0.5622,0.41924,0.41924 -2030,9,16,16,0.4691,0.5622,0.5622,0.6553 -2030,9,16,17,0.7484,0.58286,0.5622,0.58286 -2030,9,16,18,0.58286,0.58286,0.60352,0.6655 -2030,9,16,19,0.58286,0.5622,0.68824,0.7792 -2030,9,16,20,0.58286,0.8415,0.68824,0.82184 -2030,9,16,21,0.8415,0.7484,0.71098,0.82184 -2030,9,16,22,0.4691,0.8415,0.6655,0.75646 -2030,9,16,23,0.43586,0.8415,0.58286,0.68824 -2030,9,16,24,0.41924,0.5622,0.8415,0.62418 -2030,9,17,1,0.40262,0.5622,0.5622,0.7484 -2030,9,17,2,0.3713,0.7484,0.43586,0.4691 -2030,9,17,3,0.3566,0.7484,0.40262,0.41924 -2030,9,17,4,0.3566,0.6553,0.3713,0.386 -2030,9,17,5,0.3419,0.5622,0.3566,0.3566 -2030,9,17,6,0.3272,0.4691,0.3272,0.3419 -2030,9,17,7,0.3125,0.4691,0.3272,0.3125 -2030,9,17,8,0.28682,0.45248,0.3125,0.3272 -2030,9,17,9,0.27398,0.45248,0.29966,0.3125 -2030,9,17,10,0.27398,0.43586,0.3125,0.3125 -2030,9,17,11,0.27398,0.45248,0.29966,0.3125 -2030,9,17,12,0.28682,0.5622,0.3125,0.3125 -2030,9,17,13,0.3272,0.6553,0.3272,0.3272 -2030,9,17,14,0.3713,0.7484,0.3713,0.3713 -2030,9,17,15,0.43586,0.5622,0.41924,0.41924 -2030,9,17,16,0.4691,0.5622,0.5622,0.6553 -2030,9,17,17,0.7484,0.58286,0.5622,0.58286 -2030,9,17,18,0.58286,0.58286,0.60352,0.6655 -2030,9,17,19,0.58286,0.5622,0.68824,0.7792 -2030,9,17,20,0.58286,0.8415,0.68824,0.82184 -2030,9,17,21,0.8415,0.7484,0.71098,0.82184 -2030,9,17,22,0.4691,0.8415,0.6655,0.75646 -2030,9,17,23,0.43586,0.8415,0.58286,0.68824 -2030,9,17,24,0.41924,0.5622,0.8415,0.62418 -2030,9,18,1,0.40262,0.5622,0.5622,0.7484 -2030,9,18,2,0.3713,0.7484,0.43586,0.4691 -2030,9,18,3,0.3566,0.7484,0.40262,0.41924 -2030,9,18,4,0.3566,0.6553,0.3713,0.386 -2030,9,18,5,0.3419,0.5622,0.3566,0.3566 -2030,9,18,6,0.3272,0.4691,0.3272,0.3419 -2030,9,18,7,0.3125,0.4691,0.3272,0.3125 -2030,9,18,8,0.28682,0.45248,0.3125,0.3272 -2030,9,18,9,0.27398,0.45248,0.29966,0.3125 -2030,9,18,10,0.27398,0.43586,0.3125,0.3125 -2030,9,18,11,0.27398,0.45248,0.29966,0.3125 -2030,9,18,12,0.28682,0.5622,0.3125,0.3125 -2030,9,18,13,0.3272,0.6553,0.3272,0.3272 -2030,9,18,14,0.3713,0.7484,0.3713,0.3713 -2030,9,18,15,0.43586,0.5622,0.41924,0.41924 -2030,9,18,16,0.4691,0.5622,0.5622,0.6553 -2030,9,18,17,0.7484,0.58286,0.5622,0.58286 -2030,9,18,18,0.58286,0.58286,0.60352,0.6655 -2030,9,18,19,0.58286,0.5622,0.68824,0.7792 -2030,9,18,20,0.58286,0.8415,0.68824,0.82184 -2030,9,18,21,0.8415,0.7484,0.71098,0.82184 -2030,9,18,22,0.4691,0.8415,0.6655,0.75646 -2030,9,18,23,0.43586,0.8415,0.58286,0.68824 -2030,9,18,24,0.41924,0.5622,0.8415,0.62418 -2030,9,19,1,0.40262,0.5622,0.5622,0.7484 -2030,9,19,2,0.3713,0.7484,0.43586,0.4691 -2030,9,19,3,0.3566,0.7484,0.40262,0.41924 -2030,9,19,4,0.3566,0.6553,0.3713,0.386 -2030,9,19,5,0.3419,0.5622,0.3566,0.3566 -2030,9,19,6,0.3272,0.4691,0.3272,0.3419 -2030,9,19,7,0.3125,0.4691,0.3272,0.3125 -2030,9,19,8,0.28682,0.45248,0.3125,0.3272 -2030,9,19,9,0.27398,0.45248,0.29966,0.3125 -2030,9,19,10,0.27398,0.43586,0.3125,0.3125 -2030,9,19,11,0.27398,0.45248,0.29966,0.3125 -2030,9,19,12,0.28682,0.5622,0.3125,0.3125 -2030,9,19,13,0.3272,0.6553,0.3272,0.3272 -2030,9,19,14,0.3713,0.7484,0.3713,0.3713 -2030,9,19,15,0.43586,0.5622,0.41924,0.41924 -2030,9,19,16,0.4691,0.5622,0.5622,0.6553 -2030,9,19,17,0.7484,0.58286,0.5622,0.58286 -2030,9,19,18,0.58286,0.58286,0.60352,0.6655 -2030,9,19,19,0.58286,0.5622,0.68824,0.7792 -2030,9,19,20,0.58286,0.8415,0.68824,0.82184 -2030,9,19,21,0.8415,0.7484,0.71098,0.82184 -2030,9,19,22,0.4691,0.8415,0.6655,0.75646 -2030,9,19,23,0.43586,0.8415,0.58286,0.68824 -2030,9,19,24,0.41924,0.5622,0.8415,0.62418 -2030,9,20,1,0.40262,0.5622,0.5622,0.7484 -2030,9,20,2,0.3713,0.7484,0.43586,0.4691 -2030,9,20,3,0.3566,0.7484,0.40262,0.41924 -2030,9,20,4,0.3566,0.6553,0.3713,0.386 -2030,9,20,5,0.3419,0.5622,0.3566,0.3566 -2030,9,20,6,0.3272,0.4691,0.3272,0.3419 -2030,9,20,7,0.3125,0.4691,0.3272,0.3125 -2030,9,20,8,0.28682,0.45248,0.3125,0.3272 -2030,9,20,9,0.27398,0.45248,0.29966,0.3125 -2030,9,20,10,0.27398,0.43586,0.3125,0.3125 -2030,9,20,11,0.27398,0.45248,0.29966,0.3125 -2030,9,20,12,0.28682,0.5622,0.3125,0.3125 -2030,9,20,13,0.3272,0.6553,0.3272,0.3272 -2030,9,20,14,0.3713,0.7484,0.3713,0.3713 -2030,9,20,15,0.43586,0.5622,0.41924,0.41924 -2030,9,20,16,0.4691,0.5622,0.5622,0.6553 -2030,9,20,17,0.7484,0.58286,0.5622,0.58286 -2030,9,20,18,0.58286,0.58286,0.60352,0.6655 -2030,9,20,19,0.58286,0.5622,0.68824,0.7792 -2030,9,20,20,0.58286,0.8415,0.68824,0.82184 -2030,9,20,21,0.8415,0.7484,0.71098,0.82184 -2030,9,20,22,0.4691,0.8415,0.6655,0.75646 -2030,9,20,23,0.43586,0.8415,0.58286,0.68824 -2030,9,20,24,0.41924,0.5622,0.8415,0.62418 -2030,9,21,1,0.40262,0.5622,0.5622,0.7484 -2030,9,21,2,0.3713,0.7484,0.43586,0.4691 -2030,9,21,3,0.3566,0.7484,0.40262,0.41924 -2030,9,21,4,0.3566,0.6553,0.3713,0.386 -2030,9,21,5,0.3419,0.5622,0.3566,0.3566 -2030,9,21,6,0.3272,0.4691,0.3272,0.3419 -2030,9,21,7,0.3125,0.4691,0.3272,0.3125 -2030,9,21,8,0.28682,0.45248,0.3125,0.3272 -2030,9,21,9,0.27398,0.45248,0.29966,0.3125 -2030,9,21,10,0.27398,0.43586,0.3125,0.3125 -2030,9,21,11,0.27398,0.45248,0.29966,0.3125 -2030,9,21,12,0.28682,0.5622,0.3125,0.3125 -2030,9,21,13,0.3272,0.6553,0.3272,0.3272 -2030,9,21,14,0.3713,0.7484,0.3713,0.3713 -2030,9,21,15,0.43586,0.5622,0.41924,0.41924 -2030,9,21,16,0.4691,0.5622,0.5622,0.6553 -2030,9,21,17,0.7484,0.58286,0.5622,0.58286 -2030,9,21,18,0.58286,0.58286,0.60352,0.6655 -2030,9,21,19,0.58286,0.5622,0.68824,0.7792 -2030,9,21,20,0.58286,0.8415,0.68824,0.82184 -2030,9,21,21,0.8415,0.7484,0.71098,0.82184 -2030,9,21,22,0.4691,0.8415,0.6655,0.75646 -2030,9,21,23,0.43586,0.8415,0.58286,0.68824 -2030,9,21,24,0.41924,0.5622,0.8415,0.62418 -2030,9,22,1,0.40262,0.5622,0.5622,0.7484 -2030,9,22,2,0.3713,0.7484,0.43586,0.4691 -2030,9,22,3,0.3566,0.7484,0.40262,0.41924 -2030,9,22,4,0.3566,0.6553,0.3713,0.386 -2030,9,22,5,0.3419,0.5622,0.3566,0.3566 -2030,9,22,6,0.3272,0.4691,0.3272,0.3419 -2030,9,22,7,0.3125,0.4691,0.3272,0.3125 -2030,9,22,8,0.28682,0.45248,0.3125,0.3272 -2030,9,22,9,0.27398,0.45248,0.29966,0.3125 -2030,9,22,10,0.27398,0.43586,0.3125,0.3125 -2030,9,22,11,0.27398,0.45248,0.29966,0.3125 -2030,9,22,12,0.28682,0.5622,0.3125,0.3125 -2030,9,22,13,0.3272,0.6553,0.3272,0.3272 -2030,9,22,14,0.3713,0.7484,0.3713,0.3713 -2030,9,22,15,0.43586,0.5622,0.41924,0.41924 -2030,9,22,16,0.4691,0.5622,0.5622,0.6553 -2030,9,22,17,0.7484,0.58286,0.5622,0.58286 -2030,9,22,18,0.58286,0.58286,0.60352,0.6655 -2030,9,22,19,0.58286,0.5622,0.68824,0.7792 -2030,9,22,20,0.58286,0.8415,0.68824,0.82184 -2030,9,22,21,0.8415,0.7484,0.71098,0.82184 -2030,9,22,22,0.4691,0.8415,0.6655,0.75646 -2030,9,22,23,0.43586,0.8415,0.58286,0.68824 -2030,9,22,24,0.41924,0.5622,0.8415,0.62418 -2030,9,23,1,0.40262,0.5622,0.5622,0.7484 -2030,9,23,2,0.3713,0.7484,0.43586,0.4691 -2030,9,23,3,0.3566,0.7484,0.40262,0.41924 -2030,9,23,4,0.3566,0.6553,0.3713,0.386 -2030,9,23,5,0.3419,0.5622,0.3566,0.3566 -2030,9,23,6,0.3272,0.4691,0.3272,0.3419 -2030,9,23,7,0.3125,0.4691,0.3272,0.3125 -2030,9,23,8,0.28682,0.45248,0.3125,0.3272 -2030,9,23,9,0.27398,0.45248,0.29966,0.3125 -2030,9,23,10,0.27398,0.43586,0.3125,0.3125 -2030,9,23,11,0.27398,0.45248,0.29966,0.3125 -2030,9,23,12,0.28682,0.5622,0.3125,0.3125 -2030,9,23,13,0.3272,0.6553,0.3272,0.3272 -2030,9,23,14,0.3713,0.7484,0.3713,0.3713 -2030,9,23,15,0.43586,0.5622,0.41924,0.41924 -2030,9,23,16,0.4691,0.5622,0.5622,0.6553 -2030,9,23,17,0.7484,0.58286,0.5622,0.58286 -2030,9,23,18,0.58286,0.58286,0.60352,0.6655 -2030,9,23,19,0.58286,0.5622,0.68824,0.7792 -2030,9,23,20,0.58286,0.8415,0.68824,0.82184 -2030,9,23,21,0.8415,0.7484,0.71098,0.82184 -2030,9,23,22,0.4691,0.8415,0.6655,0.75646 -2030,9,23,23,0.43586,0.8415,0.58286,0.68824 -2030,9,23,24,0.41924,0.5622,0.8415,0.62418 -2030,9,24,1,0.40262,0.5622,0.5622,0.7484 -2030,9,24,2,0.3713,0.7484,0.43586,0.4691 -2030,9,24,3,0.3566,0.7484,0.40262,0.41924 -2030,9,24,4,0.3566,0.6553,0.3713,0.386 -2030,9,24,5,0.3419,0.5622,0.3566,0.3566 -2030,9,24,6,0.3272,0.4691,0.3272,0.3419 -2030,9,24,7,0.3125,0.4691,0.3272,0.3125 -2030,9,24,8,0.28682,0.45248,0.3125,0.3272 -2030,9,24,9,0.27398,0.45248,0.29966,0.3125 -2030,9,24,10,0.27398,0.43586,0.3125,0.3125 -2030,9,24,11,0.27398,0.45248,0.29966,0.3125 -2030,9,24,12,0.28682,0.5622,0.3125,0.3125 -2030,9,24,13,0.3272,0.6553,0.3272,0.3272 -2030,9,24,14,0.3713,0.7484,0.3713,0.3713 -2030,9,24,15,0.43586,0.5622,0.41924,0.41924 -2030,9,24,16,0.4691,0.5622,0.5622,0.6553 -2030,9,24,17,0.7484,0.58286,0.5622,0.58286 -2030,9,24,18,0.58286,0.58286,0.60352,0.6655 -2030,9,24,19,0.58286,0.5622,0.68824,0.7792 -2030,9,24,20,0.58286,0.8415,0.68824,0.82184 -2030,9,24,21,0.8415,0.7484,0.71098,0.82184 -2030,9,24,22,0.4691,0.8415,0.6655,0.75646 -2030,9,24,23,0.43586,0.8415,0.58286,0.68824 -2030,9,24,24,0.41924,0.5622,0.8415,0.62418 -2030,9,25,1,0.40262,0.5622,0.5622,0.7484 -2030,9,25,2,0.3713,0.7484,0.43586,0.4691 -2030,9,25,3,0.3566,0.7484,0.40262,0.41924 -2030,9,25,4,0.3566,0.6553,0.3713,0.386 -2030,9,25,5,0.3419,0.5622,0.3566,0.3566 -2030,9,25,6,0.3272,0.4691,0.3272,0.3419 -2030,9,25,7,0.3125,0.4691,0.3272,0.3125 -2030,9,25,8,0.28682,0.45248,0.3125,0.3272 -2030,9,25,9,0.27398,0.45248,0.29966,0.3125 -2030,9,25,10,0.27398,0.43586,0.3125,0.3125 -2030,9,25,11,0.27398,0.45248,0.29966,0.3125 -2030,9,25,12,0.28682,0.5622,0.3125,0.3125 -2030,9,25,13,0.3272,0.6553,0.3272,0.3272 -2030,9,25,14,0.3713,0.7484,0.3713,0.3713 -2030,9,25,15,0.43586,0.5622,0.41924,0.41924 -2030,9,25,16,0.4691,0.5622,0.5622,0.6553 -2030,9,25,17,0.7484,0.58286,0.5622,0.58286 -2030,9,25,18,0.58286,0.58286,0.60352,0.6655 -2030,9,25,19,0.58286,0.5622,0.68824,0.7792 -2030,9,25,20,0.58286,0.8415,0.68824,0.82184 -2030,9,25,21,0.8415,0.7484,0.71098,0.82184 -2030,9,25,22,0.4691,0.8415,0.6655,0.75646 -2030,9,25,23,0.43586,0.8415,0.58286,0.68824 -2030,9,25,24,0.41924,0.5622,0.8415,0.62418 -2030,9,26,1,0.40262,0.5622,0.5622,0.7484 -2030,9,26,2,0.3713,0.7484,0.43586,0.4691 -2030,9,26,3,0.3566,0.7484,0.40262,0.41924 -2030,9,26,4,0.3566,0.6553,0.3713,0.386 -2030,9,26,5,0.3419,0.5622,0.3566,0.3566 -2030,9,26,6,0.3272,0.4691,0.3272,0.3419 -2030,9,26,7,0.3125,0.4691,0.3272,0.3125 -2030,9,26,8,0.28682,0.45248,0.3125,0.3272 -2030,9,26,9,0.27398,0.45248,0.29966,0.3125 -2030,9,26,10,0.27398,0.43586,0.3125,0.3125 -2030,9,26,11,0.27398,0.45248,0.29966,0.3125 -2030,9,26,12,0.28682,0.5622,0.3125,0.3125 -2030,9,26,13,0.3272,0.6553,0.3272,0.3272 -2030,9,26,14,0.3713,0.7484,0.3713,0.3713 -2030,9,26,15,0.43586,0.5622,0.41924,0.41924 -2030,9,26,16,0.4691,0.5622,0.5622,0.6553 -2030,9,26,17,0.7484,0.58286,0.5622,0.58286 -2030,9,26,18,0.58286,0.58286,0.60352,0.6655 -2030,9,26,19,0.58286,0.5622,0.68824,0.7792 -2030,9,26,20,0.58286,0.8415,0.68824,0.82184 -2030,9,26,21,0.8415,0.7484,0.71098,0.82184 -2030,9,26,22,0.4691,0.8415,0.6655,0.75646 -2030,9,26,23,0.43586,0.8415,0.58286,0.68824 -2030,9,26,24,0.41924,0.5622,0.8415,0.62418 -2030,9,27,1,0.40262,0.5622,0.5622,0.7484 -2030,9,27,2,0.3713,0.7484,0.43586,0.4691 -2030,9,27,3,0.3566,0.7484,0.40262,0.41924 -2030,9,27,4,0.3566,0.6553,0.3713,0.386 -2030,9,27,5,0.3419,0.5622,0.3566,0.3566 -2030,9,27,6,0.3272,0.4691,0.3272,0.3419 -2030,9,27,7,0.3125,0.4691,0.3272,0.3125 -2030,9,27,8,0.28682,0.45248,0.3125,0.3272 -2030,9,27,9,0.27398,0.45248,0.29966,0.3125 -2030,9,27,10,0.27398,0.43586,0.3125,0.3125 -2030,9,27,11,0.27398,0.45248,0.29966,0.3125 -2030,9,27,12,0.28682,0.5622,0.3125,0.3125 -2030,9,27,13,0.3272,0.6553,0.3272,0.3272 -2030,9,27,14,0.3713,0.7484,0.3713,0.3713 -2030,9,27,15,0.43586,0.5622,0.41924,0.41924 -2030,9,27,16,0.4691,0.5622,0.5622,0.6553 -2030,9,27,17,0.7484,0.58286,0.5622,0.58286 -2030,9,27,18,0.58286,0.58286,0.60352,0.6655 -2030,9,27,19,0.58286,0.5622,0.68824,0.7792 -2030,9,27,20,0.58286,0.8415,0.68824,0.82184 -2030,9,27,21,0.8415,0.7484,0.71098,0.82184 -2030,9,27,22,0.4691,0.8415,0.6655,0.75646 -2030,9,27,23,0.43586,0.8415,0.58286,0.68824 -2030,9,27,24,0.41924,0.5622,0.8415,0.62418 -2030,9,28,1,0.40262,0.5622,0.5622,0.7484 -2030,9,28,2,0.3713,0.7484,0.43586,0.4691 -2030,9,28,3,0.3566,0.7484,0.40262,0.41924 -2030,9,28,4,0.3566,0.6553,0.3713,0.386 -2030,9,28,5,0.3419,0.5622,0.3566,0.3566 -2030,9,28,6,0.3272,0.4691,0.3272,0.3419 -2030,9,28,7,0.3125,0.4691,0.3272,0.3125 -2030,9,28,8,0.28682,0.45248,0.3125,0.3272 -2030,9,28,9,0.27398,0.45248,0.29966,0.3125 -2030,9,28,10,0.27398,0.43586,0.3125,0.3125 -2030,9,28,11,0.27398,0.45248,0.29966,0.3125 -2030,9,28,12,0.28682,0.5622,0.3125,0.3125 -2030,9,28,13,0.3272,0.6553,0.3272,0.3272 -2030,9,28,14,0.3713,0.7484,0.3713,0.3713 -2030,9,28,15,0.43586,0.5622,0.41924,0.41924 -2030,9,28,16,0.4691,0.5622,0.5622,0.6553 -2030,9,28,17,0.7484,0.58286,0.5622,0.58286 -2030,9,28,18,0.58286,0.58286,0.60352,0.6655 -2030,9,28,19,0.58286,0.5622,0.68824,0.7792 -2030,9,28,20,0.58286,0.8415,0.68824,0.82184 -2030,9,28,21,0.8415,0.7484,0.71098,0.82184 -2030,9,28,22,0.4691,0.8415,0.6655,0.75646 -2030,9,28,23,0.43586,0.8415,0.58286,0.68824 -2030,9,28,24,0.41924,0.5622,0.8415,0.62418 -2030,9,29,1,0.40262,0.5622,0.5622,0.7484 -2030,9,29,2,0.3713,0.7484,0.43586,0.4691 -2030,9,29,3,0.3566,0.7484,0.40262,0.41924 -2030,9,29,4,0.3566,0.6553,0.3713,0.386 -2030,9,29,5,0.3419,0.5622,0.3566,0.3566 -2030,9,29,6,0.3272,0.4691,0.3272,0.3419 -2030,9,29,7,0.3125,0.4691,0.3272,0.3125 -2030,9,29,8,0.28682,0.45248,0.3125,0.3272 -2030,9,29,9,0.27398,0.45248,0.29966,0.3125 -2030,9,29,10,0.27398,0.43586,0.3125,0.3125 -2030,9,29,11,0.27398,0.45248,0.29966,0.3125 -2030,9,29,12,0.28682,0.5622,0.3125,0.3125 -2030,9,29,13,0.3272,0.6553,0.3272,0.3272 -2030,9,29,14,0.3713,0.7484,0.3713,0.3713 -2030,9,29,15,0.43586,0.5622,0.41924,0.41924 -2030,9,29,16,0.4691,0.5622,0.5622,0.6553 -2030,9,29,17,0.7484,0.58286,0.5622,0.58286 -2030,9,29,18,0.58286,0.58286,0.60352,0.6655 -2030,9,29,19,0.58286,0.5622,0.68824,0.7792 -2030,9,29,20,0.58286,0.8415,0.68824,0.82184 -2030,9,29,21,0.8415,0.7484,0.71098,0.82184 -2030,9,29,22,0.4691,0.8415,0.6655,0.75646 -2030,9,29,23,0.43586,0.8415,0.58286,0.68824 -2030,9,29,24,0.41924,0.5622,0.8415,0.62418 -2030,9,30,1,0.40262,0.5622,0.5622,0.7484 -2030,9,30,2,0.3713,0.7484,0.43586,0.4691 -2030,9,30,3,0.3566,0.7484,0.40262,0.41924 -2030,9,30,4,0.3566,0.6553,0.3713,0.386 -2030,9,30,5,0.3419,0.5622,0.3566,0.3566 -2030,9,30,6,0.3272,0.4691,0.3272,0.3419 -2030,9,30,7,0.3125,0.4691,0.3272,0.3125 -2030,9,30,8,0.28682,0.45248,0.3125,0.3272 -2030,9,30,9,0.27398,0.45248,0.29966,0.3125 -2030,9,30,10,0.27398,0.43586,0.3125,0.3125 -2030,9,30,11,0.27398,0.45248,0.29966,0.3125 -2030,9,30,12,0.28682,0.5622,0.3125,0.3125 -2030,9,30,13,0.3272,0.6553,0.3272,0.3272 -2030,9,30,14,0.3713,0.7484,0.3713,0.3713 -2030,9,30,15,0.43586,0.5622,0.41924,0.41924 -2030,9,30,16,0.4691,0.5622,0.5622,0.6553 -2030,9,30,17,0.7484,0.58286,0.5622,0.58286 -2030,9,30,18,0.58286,0.58286,0.60352,0.6655 -2030,9,30,19,0.58286,0.5622,0.68824,0.7792 -2030,9,30,20,0.58286,0.8415,0.68824,0.82184 -2030,9,30,21,0.8415,0.7484,0.71098,0.82184 -2030,9,30,22,0.4691,0.8415,0.6655,0.75646 -2030,9,30,23,0.43586,0.8415,0.58286,0.68824 -2030,9,30,24,0.41924,0.5622,0.8415,0.62418 -2030,10,1,1,0.3419,0.6655,0.40262,0.41924 -2030,10,1,2,0.3272,0.64484,0.3419,0.3566 -2030,10,1,3,0.3125,0.64484,0.3125,0.29966 -2030,10,1,4,0.29966,0.62418,0.28682,0.27398 -2030,10,1,5,0.28682,0.64484,0.28682,0.26114 -2030,10,1,6,0.28682,0.62418,0.27398,0.2483 -2030,10,1,7,0.28682,0.62418,0.27398,0.2483 -2030,10,1,8,0.27398,0.64484,0.2483,0.2372 -2030,10,1,9,0.27398,0.62418,0.2372,0.2372 -2030,10,1,10,0.26114,0.60352,0.2483,0.2261 -2030,10,1,11,0.26114,0.60352,0.2372,0.2372 -2030,10,1,12,0.27398,0.64484,0.2372,0.2372 -2030,10,1,13,0.29966,0.6655,0.26114,0.26114 -2030,10,1,14,0.3272,0.73372,0.29966,0.29966 -2030,10,1,15,0.386,0.75646,0.3419,0.3272 -2030,10,1,16,0.45248,0.80052,0.386,0.386 -2030,10,1,17,0.6553,0.7792,0.45248,0.4691 -2030,10,1,18,0.8415,0.75646,0.6553,0.7484 -2030,10,1,19,0.8415,0.73372,0.8415,0.58286 -2030,10,1,20,0.7484,0.71098,0.5622,0.62418 -2030,10,1,21,0.5622,0.68824,0.5622,0.62418 -2030,10,1,22,0.43586,0.68824,0.8415,0.58286 -2030,10,1,23,0.40262,0.68824,0.5622,0.7484 -2030,10,1,24,0.3713,0.6655,0.43586,0.4691 -2030,10,2,1,0.3419,0.6655,0.40262,0.41924 -2030,10,2,2,0.3272,0.64484,0.3419,0.3566 -2030,10,2,3,0.3125,0.64484,0.3125,0.29966 -2030,10,2,4,0.29966,0.62418,0.28682,0.27398 -2030,10,2,5,0.28682,0.64484,0.28682,0.26114 -2030,10,2,6,0.28682,0.62418,0.27398,0.2483 -2030,10,2,7,0.28682,0.62418,0.27398,0.2483 -2030,10,2,8,0.27398,0.64484,0.2483,0.2372 -2030,10,2,9,0.27398,0.62418,0.2372,0.2372 -2030,10,2,10,0.26114,0.60352,0.2483,0.2261 -2030,10,2,11,0.26114,0.60352,0.2372,0.2372 -2030,10,2,12,0.27398,0.64484,0.2372,0.2372 -2030,10,2,13,0.29966,0.6655,0.26114,0.26114 -2030,10,2,14,0.3272,0.73372,0.29966,0.29966 -2030,10,2,15,0.386,0.75646,0.3419,0.3272 -2030,10,2,16,0.45248,0.80052,0.386,0.386 -2030,10,2,17,0.6553,0.7792,0.45248,0.4691 -2030,10,2,18,0.8415,0.75646,0.6553,0.7484 -2030,10,2,19,0.8415,0.73372,0.8415,0.58286 -2030,10,2,20,0.7484,0.71098,0.5622,0.62418 -2030,10,2,21,0.5622,0.68824,0.5622,0.62418 -2030,10,2,22,0.43586,0.68824,0.8415,0.58286 -2030,10,2,23,0.40262,0.68824,0.5622,0.7484 -2030,10,2,24,0.3713,0.6655,0.43586,0.4691 -2030,10,3,1,0.3419,0.6655,0.40262,0.41924 -2030,10,3,2,0.3272,0.64484,0.3419,0.3566 -2030,10,3,3,0.3125,0.64484,0.3125,0.29966 -2030,10,3,4,0.29966,0.62418,0.28682,0.27398 -2030,10,3,5,0.28682,0.64484,0.28682,0.26114 -2030,10,3,6,0.28682,0.62418,0.27398,0.2483 -2030,10,3,7,0.28682,0.62418,0.27398,0.2483 -2030,10,3,8,0.27398,0.64484,0.2483,0.2372 -2030,10,3,9,0.27398,0.62418,0.2372,0.2372 -2030,10,3,10,0.26114,0.60352,0.2483,0.2261 -2030,10,3,11,0.26114,0.60352,0.2372,0.2372 -2030,10,3,12,0.27398,0.64484,0.2372,0.2372 -2030,10,3,13,0.29966,0.6655,0.26114,0.26114 -2030,10,3,14,0.3272,0.73372,0.29966,0.29966 -2030,10,3,15,0.386,0.75646,0.3419,0.3272 -2030,10,3,16,0.45248,0.80052,0.386,0.386 -2030,10,3,17,0.6553,0.7792,0.45248,0.4691 -2030,10,3,18,0.8415,0.75646,0.6553,0.7484 -2030,10,3,19,0.8415,0.73372,0.8415,0.58286 -2030,10,3,20,0.7484,0.71098,0.5622,0.62418 -2030,10,3,21,0.5622,0.68824,0.5622,0.62418 -2030,10,3,22,0.43586,0.68824,0.8415,0.58286 -2030,10,3,23,0.40262,0.68824,0.5622,0.7484 -2030,10,3,24,0.3713,0.6655,0.43586,0.4691 -2030,10,4,1,0.3419,0.6655,0.40262,0.41924 -2030,10,4,2,0.3272,0.64484,0.3419,0.3566 -2030,10,4,3,0.3125,0.64484,0.3125,0.29966 -2030,10,4,4,0.29966,0.62418,0.28682,0.27398 -2030,10,4,5,0.28682,0.64484,0.28682,0.26114 -2030,10,4,6,0.28682,0.62418,0.27398,0.2483 -2030,10,4,7,0.28682,0.62418,0.27398,0.2483 -2030,10,4,8,0.27398,0.64484,0.2483,0.2372 -2030,10,4,9,0.27398,0.62418,0.2372,0.2372 -2030,10,4,10,0.26114,0.60352,0.2483,0.2261 -2030,10,4,11,0.26114,0.60352,0.2372,0.2372 -2030,10,4,12,0.27398,0.64484,0.2372,0.2372 -2030,10,4,13,0.29966,0.6655,0.26114,0.26114 -2030,10,4,14,0.3272,0.73372,0.29966,0.29966 -2030,10,4,15,0.386,0.75646,0.3419,0.3272 -2030,10,4,16,0.45248,0.80052,0.386,0.386 -2030,10,4,17,0.6553,0.7792,0.45248,0.4691 -2030,10,4,18,0.8415,0.75646,0.6553,0.7484 -2030,10,4,19,0.8415,0.73372,0.8415,0.58286 -2030,10,4,20,0.7484,0.71098,0.5622,0.62418 -2030,10,4,21,0.5622,0.68824,0.5622,0.62418 -2030,10,4,22,0.43586,0.68824,0.8415,0.58286 -2030,10,4,23,0.40262,0.68824,0.5622,0.7484 -2030,10,4,24,0.3713,0.6655,0.43586,0.4691 -2030,10,5,1,0.3419,0.6655,0.40262,0.41924 -2030,10,5,2,0.3272,0.64484,0.3419,0.3566 -2030,10,5,3,0.3125,0.64484,0.3125,0.29966 -2030,10,5,4,0.29966,0.62418,0.28682,0.27398 -2030,10,5,5,0.28682,0.64484,0.28682,0.26114 -2030,10,5,6,0.28682,0.62418,0.27398,0.2483 -2030,10,5,7,0.28682,0.62418,0.27398,0.2483 -2030,10,5,8,0.27398,0.64484,0.2483,0.2372 -2030,10,5,9,0.27398,0.62418,0.2372,0.2372 -2030,10,5,10,0.26114,0.60352,0.2483,0.2261 -2030,10,5,11,0.26114,0.60352,0.2372,0.2372 -2030,10,5,12,0.27398,0.64484,0.2372,0.2372 -2030,10,5,13,0.29966,0.6655,0.26114,0.26114 -2030,10,5,14,0.3272,0.73372,0.29966,0.29966 -2030,10,5,15,0.386,0.75646,0.3419,0.3272 -2030,10,5,16,0.45248,0.80052,0.386,0.386 -2030,10,5,17,0.6553,0.7792,0.45248,0.4691 -2030,10,5,18,0.8415,0.75646,0.6553,0.7484 -2030,10,5,19,0.8415,0.73372,0.8415,0.58286 -2030,10,5,20,0.7484,0.71098,0.5622,0.62418 -2030,10,5,21,0.5622,0.68824,0.5622,0.62418 -2030,10,5,22,0.43586,0.68824,0.8415,0.58286 -2030,10,5,23,0.40262,0.68824,0.5622,0.7484 -2030,10,5,24,0.3713,0.6655,0.43586,0.4691 -2030,10,6,1,0.3419,0.6655,0.40262,0.41924 -2030,10,6,2,0.3272,0.64484,0.3419,0.3566 -2030,10,6,3,0.3125,0.64484,0.3125,0.29966 -2030,10,6,4,0.29966,0.62418,0.28682,0.27398 -2030,10,6,5,0.28682,0.64484,0.28682,0.26114 -2030,10,6,6,0.28682,0.62418,0.27398,0.2483 -2030,10,6,7,0.28682,0.62418,0.27398,0.2483 -2030,10,6,8,0.27398,0.64484,0.2483,0.2372 -2030,10,6,9,0.27398,0.62418,0.2372,0.2372 -2030,10,6,10,0.26114,0.60352,0.2483,0.2261 -2030,10,6,11,0.26114,0.60352,0.2372,0.2372 -2030,10,6,12,0.27398,0.64484,0.2372,0.2372 -2030,10,6,13,0.29966,0.6655,0.26114,0.26114 -2030,10,6,14,0.3272,0.73372,0.29966,0.29966 -2030,10,6,15,0.386,0.75646,0.3419,0.3272 -2030,10,6,16,0.45248,0.80052,0.386,0.386 -2030,10,6,17,0.6553,0.7792,0.45248,0.4691 -2030,10,6,18,0.8415,0.75646,0.6553,0.7484 -2030,10,6,19,0.8415,0.73372,0.8415,0.58286 -2030,10,6,20,0.7484,0.71098,0.5622,0.62418 -2030,10,6,21,0.5622,0.68824,0.5622,0.62418 -2030,10,6,22,0.43586,0.68824,0.8415,0.58286 -2030,10,6,23,0.40262,0.68824,0.5622,0.7484 -2030,10,6,24,0.3713,0.6655,0.43586,0.4691 -2030,10,7,1,0.3419,0.6655,0.40262,0.41924 -2030,10,7,2,0.3272,0.64484,0.3419,0.3566 -2030,10,7,3,0.3125,0.64484,0.3125,0.29966 -2030,10,7,4,0.29966,0.62418,0.28682,0.27398 -2030,10,7,5,0.28682,0.64484,0.28682,0.26114 -2030,10,7,6,0.28682,0.62418,0.27398,0.2483 -2030,10,7,7,0.28682,0.62418,0.27398,0.2483 -2030,10,7,8,0.27398,0.64484,0.2483,0.2372 -2030,10,7,9,0.27398,0.62418,0.2372,0.2372 -2030,10,7,10,0.26114,0.60352,0.2483,0.2261 -2030,10,7,11,0.26114,0.60352,0.2372,0.2372 -2030,10,7,12,0.27398,0.64484,0.2372,0.2372 -2030,10,7,13,0.29966,0.6655,0.26114,0.26114 -2030,10,7,14,0.3272,0.73372,0.29966,0.29966 -2030,10,7,15,0.386,0.75646,0.3419,0.3272 -2030,10,7,16,0.45248,0.80052,0.386,0.386 -2030,10,7,17,0.6553,0.7792,0.45248,0.4691 -2030,10,7,18,0.8415,0.75646,0.6553,0.7484 -2030,10,7,19,0.8415,0.73372,0.8415,0.58286 -2030,10,7,20,0.7484,0.71098,0.5622,0.62418 -2030,10,7,21,0.5622,0.68824,0.5622,0.62418 -2030,10,7,22,0.43586,0.68824,0.8415,0.58286 -2030,10,7,23,0.40262,0.68824,0.5622,0.7484 -2030,10,7,24,0.3713,0.6655,0.43586,0.4691 -2030,10,8,1,0.3419,0.6655,0.40262,0.41924 -2030,10,8,2,0.3272,0.64484,0.3419,0.3566 -2030,10,8,3,0.3125,0.64484,0.3125,0.29966 -2030,10,8,4,0.29966,0.62418,0.28682,0.27398 -2030,10,8,5,0.28682,0.64484,0.28682,0.26114 -2030,10,8,6,0.28682,0.62418,0.27398,0.2483 -2030,10,8,7,0.28682,0.62418,0.27398,0.2483 -2030,10,8,8,0.27398,0.64484,0.2483,0.2372 -2030,10,8,9,0.27398,0.62418,0.2372,0.2372 -2030,10,8,10,0.26114,0.60352,0.2483,0.2261 -2030,10,8,11,0.26114,0.60352,0.2372,0.2372 -2030,10,8,12,0.27398,0.64484,0.2372,0.2372 -2030,10,8,13,0.29966,0.6655,0.26114,0.26114 -2030,10,8,14,0.3272,0.73372,0.29966,0.29966 -2030,10,8,15,0.386,0.75646,0.3419,0.3272 -2030,10,8,16,0.45248,0.80052,0.386,0.386 -2030,10,8,17,0.6553,0.7792,0.45248,0.4691 -2030,10,8,18,0.8415,0.75646,0.6553,0.7484 -2030,10,8,19,0.8415,0.73372,0.8415,0.58286 -2030,10,8,20,0.7484,0.71098,0.5622,0.62418 -2030,10,8,21,0.5622,0.68824,0.5622,0.62418 -2030,10,8,22,0.43586,0.68824,0.8415,0.58286 -2030,10,8,23,0.40262,0.68824,0.5622,0.7484 -2030,10,8,24,0.3713,0.6655,0.43586,0.4691 -2030,10,9,1,0.3419,0.6655,0.40262,0.41924 -2030,10,9,2,0.3272,0.64484,0.3419,0.3566 -2030,10,9,3,0.3125,0.64484,0.3125,0.29966 -2030,10,9,4,0.29966,0.62418,0.28682,0.27398 -2030,10,9,5,0.28682,0.64484,0.28682,0.26114 -2030,10,9,6,0.28682,0.62418,0.27398,0.2483 -2030,10,9,7,0.28682,0.62418,0.27398,0.2483 -2030,10,9,8,0.27398,0.64484,0.2483,0.2372 -2030,10,9,9,0.27398,0.62418,0.2372,0.2372 -2030,10,9,10,0.26114,0.60352,0.2483,0.2261 -2030,10,9,11,0.26114,0.60352,0.2372,0.2372 -2030,10,9,12,0.27398,0.64484,0.2372,0.2372 -2030,10,9,13,0.29966,0.6655,0.26114,0.26114 -2030,10,9,14,0.3272,0.73372,0.29966,0.29966 -2030,10,9,15,0.386,0.75646,0.3419,0.3272 -2030,10,9,16,0.45248,0.80052,0.386,0.386 -2030,10,9,17,0.6553,0.7792,0.45248,0.4691 -2030,10,9,18,0.8415,0.75646,0.6553,0.7484 -2030,10,9,19,0.8415,0.73372,0.8415,0.58286 -2030,10,9,20,0.7484,0.71098,0.5622,0.62418 -2030,10,9,21,0.5622,0.68824,0.5622,0.62418 -2030,10,9,22,0.43586,0.68824,0.8415,0.58286 -2030,10,9,23,0.40262,0.68824,0.5622,0.7484 -2030,10,9,24,0.3713,0.6655,0.43586,0.4691 -2030,10,10,1,0.3419,0.6655,0.40262,0.41924 -2030,10,10,2,0.3272,0.64484,0.3419,0.3566 -2030,10,10,3,0.3125,0.64484,0.3125,0.29966 -2030,10,10,4,0.29966,0.62418,0.28682,0.27398 -2030,10,10,5,0.28682,0.64484,0.28682,0.26114 -2030,10,10,6,0.28682,0.62418,0.27398,0.2483 -2030,10,10,7,0.28682,0.62418,0.27398,0.2483 -2030,10,10,8,0.27398,0.64484,0.2483,0.2372 -2030,10,10,9,0.27398,0.62418,0.2372,0.2372 -2030,10,10,10,0.26114,0.60352,0.2483,0.2261 -2030,10,10,11,0.26114,0.60352,0.2372,0.2372 -2030,10,10,12,0.27398,0.64484,0.2372,0.2372 -2030,10,10,13,0.29966,0.6655,0.26114,0.26114 -2030,10,10,14,0.3272,0.73372,0.29966,0.29966 -2030,10,10,15,0.386,0.75646,0.3419,0.3272 -2030,10,10,16,0.45248,0.80052,0.386,0.386 -2030,10,10,17,0.6553,0.7792,0.45248,0.4691 -2030,10,10,18,0.8415,0.75646,0.6553,0.7484 -2030,10,10,19,0.8415,0.73372,0.8415,0.58286 -2030,10,10,20,0.7484,0.71098,0.5622,0.62418 -2030,10,10,21,0.5622,0.68824,0.5622,0.62418 -2030,10,10,22,0.43586,0.68824,0.8415,0.58286 -2030,10,10,23,0.40262,0.68824,0.5622,0.7484 -2030,10,10,24,0.3713,0.6655,0.43586,0.4691 -2030,10,11,1,0.3419,0.6655,0.40262,0.41924 -2030,10,11,2,0.3272,0.64484,0.3419,0.3566 -2030,10,11,3,0.3125,0.64484,0.3125,0.29966 -2030,10,11,4,0.29966,0.62418,0.28682,0.27398 -2030,10,11,5,0.28682,0.64484,0.28682,0.26114 -2030,10,11,6,0.28682,0.62418,0.27398,0.2483 -2030,10,11,7,0.28682,0.62418,0.27398,0.2483 -2030,10,11,8,0.27398,0.64484,0.2483,0.2372 -2030,10,11,9,0.27398,0.62418,0.2372,0.2372 -2030,10,11,10,0.26114,0.60352,0.2483,0.2261 -2030,10,11,11,0.26114,0.60352,0.2372,0.2372 -2030,10,11,12,0.27398,0.64484,0.2372,0.2372 -2030,10,11,13,0.29966,0.6655,0.26114,0.26114 -2030,10,11,14,0.3272,0.73372,0.29966,0.29966 -2030,10,11,15,0.386,0.75646,0.3419,0.3272 -2030,10,11,16,0.45248,0.80052,0.386,0.386 -2030,10,11,17,0.6553,0.7792,0.45248,0.4691 -2030,10,11,18,0.8415,0.75646,0.6553,0.7484 -2030,10,11,19,0.8415,0.73372,0.8415,0.58286 -2030,10,11,20,0.7484,0.71098,0.5622,0.62418 -2030,10,11,21,0.5622,0.68824,0.5622,0.62418 -2030,10,11,22,0.43586,0.68824,0.8415,0.58286 -2030,10,11,23,0.40262,0.68824,0.5622,0.7484 -2030,10,11,24,0.3713,0.6655,0.43586,0.4691 -2030,10,12,1,0.3419,0.6655,0.40262,0.41924 -2030,10,12,2,0.3272,0.64484,0.3419,0.3566 -2030,10,12,3,0.3125,0.64484,0.3125,0.29966 -2030,10,12,4,0.29966,0.62418,0.28682,0.27398 -2030,10,12,5,0.28682,0.64484,0.28682,0.26114 -2030,10,12,6,0.28682,0.62418,0.27398,0.2483 -2030,10,12,7,0.28682,0.62418,0.27398,0.2483 -2030,10,12,8,0.27398,0.64484,0.2483,0.2372 -2030,10,12,9,0.27398,0.62418,0.2372,0.2372 -2030,10,12,10,0.26114,0.60352,0.2483,0.2261 -2030,10,12,11,0.26114,0.60352,0.2372,0.2372 -2030,10,12,12,0.27398,0.64484,0.2372,0.2372 -2030,10,12,13,0.29966,0.6655,0.26114,0.26114 -2030,10,12,14,0.3272,0.73372,0.29966,0.29966 -2030,10,12,15,0.386,0.75646,0.3419,0.3272 -2030,10,12,16,0.45248,0.80052,0.386,0.386 -2030,10,12,17,0.6553,0.7792,0.45248,0.4691 -2030,10,12,18,0.8415,0.75646,0.6553,0.7484 -2030,10,12,19,0.8415,0.73372,0.8415,0.58286 -2030,10,12,20,0.7484,0.71098,0.5622,0.62418 -2030,10,12,21,0.5622,0.68824,0.5622,0.62418 -2030,10,12,22,0.43586,0.68824,0.8415,0.58286 -2030,10,12,23,0.40262,0.68824,0.5622,0.7484 -2030,10,12,24,0.3713,0.6655,0.43586,0.4691 -2030,10,13,1,0.3419,0.6655,0.40262,0.41924 -2030,10,13,2,0.3272,0.64484,0.3419,0.3566 -2030,10,13,3,0.3125,0.64484,0.3125,0.29966 -2030,10,13,4,0.29966,0.62418,0.28682,0.27398 -2030,10,13,5,0.28682,0.64484,0.28682,0.26114 -2030,10,13,6,0.28682,0.62418,0.27398,0.2483 -2030,10,13,7,0.28682,0.62418,0.27398,0.2483 -2030,10,13,8,0.27398,0.64484,0.2483,0.2372 -2030,10,13,9,0.27398,0.62418,0.2372,0.2372 -2030,10,13,10,0.26114,0.60352,0.2483,0.2261 -2030,10,13,11,0.26114,0.60352,0.2372,0.2372 -2030,10,13,12,0.27398,0.64484,0.2372,0.2372 -2030,10,13,13,0.29966,0.6655,0.26114,0.26114 -2030,10,13,14,0.3272,0.73372,0.29966,0.29966 -2030,10,13,15,0.386,0.75646,0.3419,0.3272 -2030,10,13,16,0.45248,0.80052,0.386,0.386 -2030,10,13,17,0.6553,0.7792,0.45248,0.4691 -2030,10,13,18,0.8415,0.75646,0.6553,0.7484 -2030,10,13,19,0.8415,0.73372,0.8415,0.58286 -2030,10,13,20,0.7484,0.71098,0.5622,0.62418 -2030,10,13,21,0.5622,0.68824,0.5622,0.62418 -2030,10,13,22,0.43586,0.68824,0.8415,0.58286 -2030,10,13,23,0.40262,0.68824,0.5622,0.7484 -2030,10,13,24,0.3713,0.6655,0.43586,0.4691 -2030,10,14,1,0.3419,0.6655,0.40262,0.41924 -2030,10,14,2,0.3272,0.64484,0.3419,0.3566 -2030,10,14,3,0.3125,0.64484,0.3125,0.29966 -2030,10,14,4,0.29966,0.62418,0.28682,0.27398 -2030,10,14,5,0.28682,0.64484,0.28682,0.26114 -2030,10,14,6,0.28682,0.62418,0.27398,0.2483 -2030,10,14,7,0.28682,0.62418,0.27398,0.2483 -2030,10,14,8,0.27398,0.64484,0.2483,0.2372 -2030,10,14,9,0.27398,0.62418,0.2372,0.2372 -2030,10,14,10,0.26114,0.60352,0.2483,0.2261 -2030,10,14,11,0.26114,0.60352,0.2372,0.2372 -2030,10,14,12,0.27398,0.64484,0.2372,0.2372 -2030,10,14,13,0.29966,0.6655,0.26114,0.26114 -2030,10,14,14,0.3272,0.73372,0.29966,0.29966 -2030,10,14,15,0.386,0.75646,0.3419,0.3272 -2030,10,14,16,0.45248,0.80052,0.386,0.386 -2030,10,14,17,0.6553,0.7792,0.45248,0.4691 -2030,10,14,18,0.8415,0.75646,0.6553,0.7484 -2030,10,14,19,0.8415,0.73372,0.8415,0.58286 -2030,10,14,20,0.7484,0.71098,0.5622,0.62418 -2030,10,14,21,0.5622,0.68824,0.5622,0.62418 -2030,10,14,22,0.43586,0.68824,0.8415,0.58286 -2030,10,14,23,0.40262,0.68824,0.5622,0.7484 -2030,10,14,24,0.3713,0.6655,0.43586,0.4691 -2030,10,15,1,0.3419,0.6655,0.40262,0.41924 -2030,10,15,2,0.3272,0.64484,0.3419,0.3566 -2030,10,15,3,0.3125,0.64484,0.3125,0.29966 -2030,10,15,4,0.29966,0.62418,0.28682,0.27398 -2030,10,15,5,0.28682,0.64484,0.28682,0.26114 -2030,10,15,6,0.28682,0.62418,0.27398,0.2483 -2030,10,15,7,0.28682,0.62418,0.27398,0.2483 -2030,10,15,8,0.27398,0.64484,0.2483,0.2372 -2030,10,15,9,0.27398,0.62418,0.2372,0.2372 -2030,10,15,10,0.26114,0.60352,0.2483,0.2261 -2030,10,15,11,0.26114,0.60352,0.2372,0.2372 -2030,10,15,12,0.27398,0.64484,0.2372,0.2372 -2030,10,15,13,0.29966,0.6655,0.26114,0.26114 -2030,10,15,14,0.3272,0.73372,0.29966,0.29966 -2030,10,15,15,0.386,0.75646,0.3419,0.3272 -2030,10,15,16,0.45248,0.80052,0.386,0.386 -2030,10,15,17,0.6553,0.7792,0.45248,0.4691 -2030,10,15,18,0.8415,0.75646,0.6553,0.7484 -2030,10,15,19,0.8415,0.73372,0.8415,0.58286 -2030,10,15,20,0.7484,0.71098,0.5622,0.62418 -2030,10,15,21,0.5622,0.68824,0.5622,0.62418 -2030,10,15,22,0.43586,0.68824,0.8415,0.58286 -2030,10,15,23,0.40262,0.68824,0.5622,0.7484 -2030,10,15,24,0.3713,0.6655,0.43586,0.4691 -2030,10,16,1,0.3419,0.6655,0.40262,0.41924 -2030,10,16,2,0.3272,0.64484,0.3419,0.3566 -2030,10,16,3,0.3125,0.64484,0.3125,0.29966 -2030,10,16,4,0.29966,0.62418,0.28682,0.27398 -2030,10,16,5,0.28682,0.64484,0.28682,0.26114 -2030,10,16,6,0.28682,0.62418,0.27398,0.2483 -2030,10,16,7,0.28682,0.62418,0.27398,0.2483 -2030,10,16,8,0.27398,0.64484,0.2483,0.2372 -2030,10,16,9,0.27398,0.62418,0.2372,0.2372 -2030,10,16,10,0.26114,0.60352,0.2483,0.2261 -2030,10,16,11,0.26114,0.60352,0.2372,0.2372 -2030,10,16,12,0.27398,0.64484,0.2372,0.2372 -2030,10,16,13,0.29966,0.6655,0.26114,0.26114 -2030,10,16,14,0.3272,0.73372,0.29966,0.29966 -2030,10,16,15,0.386,0.75646,0.3419,0.3272 -2030,10,16,16,0.45248,0.80052,0.386,0.386 -2030,10,16,17,0.6553,0.7792,0.45248,0.4691 -2030,10,16,18,0.8415,0.75646,0.6553,0.7484 -2030,10,16,19,0.8415,0.73372,0.8415,0.58286 -2030,10,16,20,0.7484,0.71098,0.5622,0.62418 -2030,10,16,21,0.5622,0.68824,0.5622,0.62418 -2030,10,16,22,0.43586,0.68824,0.8415,0.58286 -2030,10,16,23,0.40262,0.68824,0.5622,0.7484 -2030,10,16,24,0.3713,0.6655,0.43586,0.4691 -2030,10,17,1,0.3419,0.6655,0.40262,0.41924 -2030,10,17,2,0.3272,0.64484,0.3419,0.3566 -2030,10,17,3,0.3125,0.64484,0.3125,0.29966 -2030,10,17,4,0.29966,0.62418,0.28682,0.27398 -2030,10,17,5,0.28682,0.64484,0.28682,0.26114 -2030,10,17,6,0.28682,0.62418,0.27398,0.2483 -2030,10,17,7,0.28682,0.62418,0.27398,0.2483 -2030,10,17,8,0.27398,0.64484,0.2483,0.2372 -2030,10,17,9,0.27398,0.62418,0.2372,0.2372 -2030,10,17,10,0.26114,0.60352,0.2483,0.2261 -2030,10,17,11,0.26114,0.60352,0.2372,0.2372 -2030,10,17,12,0.27398,0.64484,0.2372,0.2372 -2030,10,17,13,0.29966,0.6655,0.26114,0.26114 -2030,10,17,14,0.3272,0.73372,0.29966,0.29966 -2030,10,17,15,0.386,0.75646,0.3419,0.3272 -2030,10,17,16,0.45248,0.80052,0.386,0.386 -2030,10,17,17,0.6553,0.7792,0.45248,0.4691 -2030,10,17,18,0.8415,0.75646,0.6553,0.7484 -2030,10,17,19,0.8415,0.73372,0.8415,0.58286 -2030,10,17,20,0.7484,0.71098,0.5622,0.62418 -2030,10,17,21,0.5622,0.68824,0.5622,0.62418 -2030,10,17,22,0.43586,0.68824,0.8415,0.58286 -2030,10,17,23,0.40262,0.68824,0.5622,0.7484 -2030,10,17,24,0.3713,0.6655,0.43586,0.4691 -2030,10,18,1,0.3419,0.6655,0.40262,0.41924 -2030,10,18,2,0.3272,0.64484,0.3419,0.3566 -2030,10,18,3,0.3125,0.64484,0.3125,0.29966 -2030,10,18,4,0.29966,0.62418,0.28682,0.27398 -2030,10,18,5,0.28682,0.64484,0.28682,0.26114 -2030,10,18,6,0.28682,0.62418,0.27398,0.2483 -2030,10,18,7,0.28682,0.62418,0.27398,0.2483 -2030,10,18,8,0.27398,0.64484,0.2483,0.2372 -2030,10,18,9,0.27398,0.62418,0.2372,0.2372 -2030,10,18,10,0.26114,0.60352,0.2483,0.2261 -2030,10,18,11,0.26114,0.60352,0.2372,0.2372 -2030,10,18,12,0.27398,0.64484,0.2372,0.2372 -2030,10,18,13,0.29966,0.6655,0.26114,0.26114 -2030,10,18,14,0.3272,0.73372,0.29966,0.29966 -2030,10,18,15,0.386,0.75646,0.3419,0.3272 -2030,10,18,16,0.45248,0.80052,0.386,0.386 -2030,10,18,17,0.6553,0.7792,0.45248,0.4691 -2030,10,18,18,0.8415,0.75646,0.6553,0.7484 -2030,10,18,19,0.8415,0.73372,0.8415,0.58286 -2030,10,18,20,0.7484,0.71098,0.5622,0.62418 -2030,10,18,21,0.5622,0.68824,0.5622,0.62418 -2030,10,18,22,0.43586,0.68824,0.8415,0.58286 -2030,10,18,23,0.40262,0.68824,0.5622,0.7484 -2030,10,18,24,0.3713,0.6655,0.43586,0.4691 -2030,10,19,1,0.3419,0.6655,0.40262,0.41924 -2030,10,19,2,0.3272,0.64484,0.3419,0.3566 -2030,10,19,3,0.3125,0.64484,0.3125,0.29966 -2030,10,19,4,0.29966,0.62418,0.28682,0.27398 -2030,10,19,5,0.28682,0.64484,0.28682,0.26114 -2030,10,19,6,0.28682,0.62418,0.27398,0.2483 -2030,10,19,7,0.28682,0.62418,0.27398,0.2483 -2030,10,19,8,0.27398,0.64484,0.2483,0.2372 -2030,10,19,9,0.27398,0.62418,0.2372,0.2372 -2030,10,19,10,0.26114,0.60352,0.2483,0.2261 -2030,10,19,11,0.26114,0.60352,0.2372,0.2372 -2030,10,19,12,0.27398,0.64484,0.2372,0.2372 -2030,10,19,13,0.29966,0.6655,0.26114,0.26114 -2030,10,19,14,0.3272,0.73372,0.29966,0.29966 -2030,10,19,15,0.386,0.75646,0.3419,0.3272 -2030,10,19,16,0.45248,0.80052,0.386,0.386 -2030,10,19,17,0.6553,0.7792,0.45248,0.4691 -2030,10,19,18,0.8415,0.75646,0.6553,0.7484 -2030,10,19,19,0.8415,0.73372,0.8415,0.58286 -2030,10,19,20,0.7484,0.71098,0.5622,0.62418 -2030,10,19,21,0.5622,0.68824,0.5622,0.62418 -2030,10,19,22,0.43586,0.68824,0.8415,0.58286 -2030,10,19,23,0.40262,0.68824,0.5622,0.7484 -2030,10,19,24,0.3713,0.6655,0.43586,0.4691 -2030,10,20,1,0.3419,0.6655,0.40262,0.41924 -2030,10,20,2,0.3272,0.64484,0.3419,0.3566 -2030,10,20,3,0.3125,0.64484,0.3125,0.29966 -2030,10,20,4,0.29966,0.62418,0.28682,0.27398 -2030,10,20,5,0.28682,0.64484,0.28682,0.26114 -2030,10,20,6,0.28682,0.62418,0.27398,0.2483 -2030,10,20,7,0.28682,0.62418,0.27398,0.2483 -2030,10,20,8,0.27398,0.64484,0.2483,0.2372 -2030,10,20,9,0.27398,0.62418,0.2372,0.2372 -2030,10,20,10,0.26114,0.60352,0.2483,0.2261 -2030,10,20,11,0.26114,0.60352,0.2372,0.2372 -2030,10,20,12,0.27398,0.64484,0.2372,0.2372 -2030,10,20,13,0.29966,0.6655,0.26114,0.26114 -2030,10,20,14,0.3272,0.73372,0.29966,0.29966 -2030,10,20,15,0.386,0.75646,0.3419,0.3272 -2030,10,20,16,0.45248,0.80052,0.386,0.386 -2030,10,20,17,0.6553,0.7792,0.45248,0.4691 -2030,10,20,18,0.8415,0.75646,0.6553,0.7484 -2030,10,20,19,0.8415,0.73372,0.8415,0.58286 -2030,10,20,20,0.7484,0.71098,0.5622,0.62418 -2030,10,20,21,0.5622,0.68824,0.5622,0.62418 -2030,10,20,22,0.43586,0.68824,0.8415,0.58286 -2030,10,20,23,0.40262,0.68824,0.5622,0.7484 -2030,10,20,24,0.3713,0.6655,0.43586,0.4691 -2030,10,21,1,0.3419,0.6655,0.40262,0.41924 -2030,10,21,2,0.3272,0.64484,0.3419,0.3566 -2030,10,21,3,0.3125,0.64484,0.3125,0.29966 -2030,10,21,4,0.29966,0.62418,0.28682,0.27398 -2030,10,21,5,0.28682,0.64484,0.28682,0.26114 -2030,10,21,6,0.28682,0.62418,0.27398,0.2483 -2030,10,21,7,0.28682,0.62418,0.27398,0.2483 -2030,10,21,8,0.27398,0.64484,0.2483,0.2372 -2030,10,21,9,0.27398,0.62418,0.2372,0.2372 -2030,10,21,10,0.26114,0.60352,0.2483,0.2261 -2030,10,21,11,0.26114,0.60352,0.2372,0.2372 -2030,10,21,12,0.27398,0.64484,0.2372,0.2372 -2030,10,21,13,0.29966,0.6655,0.26114,0.26114 -2030,10,21,14,0.3272,0.73372,0.29966,0.29966 -2030,10,21,15,0.386,0.75646,0.3419,0.3272 -2030,10,21,16,0.45248,0.80052,0.386,0.386 -2030,10,21,17,0.6553,0.7792,0.45248,0.4691 -2030,10,21,18,0.8415,0.75646,0.6553,0.7484 -2030,10,21,19,0.8415,0.73372,0.8415,0.58286 -2030,10,21,20,0.7484,0.71098,0.5622,0.62418 -2030,10,21,21,0.5622,0.68824,0.5622,0.62418 -2030,10,21,22,0.43586,0.68824,0.8415,0.58286 -2030,10,21,23,0.40262,0.68824,0.5622,0.7484 -2030,10,21,24,0.3713,0.6655,0.43586,0.4691 -2030,10,22,1,0.3419,0.6655,0.40262,0.41924 -2030,10,22,2,0.3272,0.64484,0.3419,0.3566 -2030,10,22,3,0.3125,0.64484,0.3125,0.29966 -2030,10,22,4,0.29966,0.62418,0.28682,0.27398 -2030,10,22,5,0.28682,0.64484,0.28682,0.26114 -2030,10,22,6,0.28682,0.62418,0.27398,0.2483 -2030,10,22,7,0.28682,0.62418,0.27398,0.2483 -2030,10,22,8,0.27398,0.64484,0.2483,0.2372 -2030,10,22,9,0.27398,0.62418,0.2372,0.2372 -2030,10,22,10,0.26114,0.60352,0.2483,0.2261 -2030,10,22,11,0.26114,0.60352,0.2372,0.2372 -2030,10,22,12,0.27398,0.64484,0.2372,0.2372 -2030,10,22,13,0.29966,0.6655,0.26114,0.26114 -2030,10,22,14,0.3272,0.73372,0.29966,0.29966 -2030,10,22,15,0.386,0.75646,0.3419,0.3272 -2030,10,22,16,0.45248,0.80052,0.386,0.386 -2030,10,22,17,0.6553,0.7792,0.45248,0.4691 -2030,10,22,18,0.8415,0.75646,0.6553,0.7484 -2030,10,22,19,0.8415,0.73372,0.8415,0.58286 -2030,10,22,20,0.7484,0.71098,0.5622,0.62418 -2030,10,22,21,0.5622,0.68824,0.5622,0.62418 -2030,10,22,22,0.43586,0.68824,0.8415,0.58286 -2030,10,22,23,0.40262,0.68824,0.5622,0.7484 -2030,10,22,24,0.3713,0.6655,0.43586,0.4691 -2030,10,23,1,0.3419,0.6655,0.40262,0.41924 -2030,10,23,2,0.3272,0.64484,0.3419,0.3566 -2030,10,23,3,0.3125,0.64484,0.3125,0.29966 -2030,10,23,4,0.29966,0.62418,0.28682,0.27398 -2030,10,23,5,0.28682,0.64484,0.28682,0.26114 -2030,10,23,6,0.28682,0.62418,0.27398,0.2483 -2030,10,23,7,0.28682,0.62418,0.27398,0.2483 -2030,10,23,8,0.27398,0.64484,0.2483,0.2372 -2030,10,23,9,0.27398,0.62418,0.2372,0.2372 -2030,10,23,10,0.26114,0.60352,0.2483,0.2261 -2030,10,23,11,0.26114,0.60352,0.2372,0.2372 -2030,10,23,12,0.27398,0.64484,0.2372,0.2372 -2030,10,23,13,0.29966,0.6655,0.26114,0.26114 -2030,10,23,14,0.3272,0.73372,0.29966,0.29966 -2030,10,23,15,0.386,0.75646,0.3419,0.3272 -2030,10,23,16,0.45248,0.80052,0.386,0.386 -2030,10,23,17,0.6553,0.7792,0.45248,0.4691 -2030,10,23,18,0.8415,0.75646,0.6553,0.7484 -2030,10,23,19,0.8415,0.73372,0.8415,0.58286 -2030,10,23,20,0.7484,0.71098,0.5622,0.62418 -2030,10,23,21,0.5622,0.68824,0.5622,0.62418 -2030,10,23,22,0.43586,0.68824,0.8415,0.58286 -2030,10,23,23,0.40262,0.68824,0.5622,0.7484 -2030,10,23,24,0.3713,0.6655,0.43586,0.4691 -2030,10,24,1,0.3419,0.6655,0.40262,0.41924 -2030,10,24,2,0.3272,0.64484,0.3419,0.3566 -2030,10,24,3,0.3125,0.64484,0.3125,0.29966 -2030,10,24,4,0.29966,0.62418,0.28682,0.27398 -2030,10,24,5,0.28682,0.64484,0.28682,0.26114 -2030,10,24,6,0.28682,0.62418,0.27398,0.2483 -2030,10,24,7,0.28682,0.62418,0.27398,0.2483 -2030,10,24,8,0.27398,0.64484,0.2483,0.2372 -2030,10,24,9,0.27398,0.62418,0.2372,0.2372 -2030,10,24,10,0.26114,0.60352,0.2483,0.2261 -2030,10,24,11,0.26114,0.60352,0.2372,0.2372 -2030,10,24,12,0.27398,0.64484,0.2372,0.2372 -2030,10,24,13,0.29966,0.6655,0.26114,0.26114 -2030,10,24,14,0.3272,0.73372,0.29966,0.29966 -2030,10,24,15,0.386,0.75646,0.3419,0.3272 -2030,10,24,16,0.45248,0.80052,0.386,0.386 -2030,10,24,17,0.6553,0.7792,0.45248,0.4691 -2030,10,24,18,0.8415,0.75646,0.6553,0.7484 -2030,10,24,19,0.8415,0.73372,0.8415,0.58286 -2030,10,24,20,0.7484,0.71098,0.5622,0.62418 -2030,10,24,21,0.5622,0.68824,0.5622,0.62418 -2030,10,24,22,0.43586,0.68824,0.8415,0.58286 -2030,10,24,23,0.40262,0.68824,0.5622,0.7484 -2030,10,24,24,0.3713,0.6655,0.43586,0.4691 -2030,10,25,1,0.3419,0.6655,0.40262,0.41924 -2030,10,25,2,0.3272,0.64484,0.3419,0.3566 -2030,10,25,3,0.3125,0.64484,0.3125,0.29966 -2030,10,25,4,0.29966,0.62418,0.28682,0.27398 -2030,10,25,5,0.28682,0.64484,0.28682,0.26114 -2030,10,25,6,0.28682,0.62418,0.27398,0.2483 -2030,10,25,7,0.28682,0.62418,0.27398,0.2483 -2030,10,25,8,0.27398,0.64484,0.2483,0.2372 -2030,10,25,9,0.27398,0.62418,0.2372,0.2372 -2030,10,25,10,0.26114,0.60352,0.2483,0.2261 -2030,10,25,11,0.26114,0.60352,0.2372,0.2372 -2030,10,25,12,0.27398,0.64484,0.2372,0.2372 -2030,10,25,13,0.29966,0.6655,0.26114,0.26114 -2030,10,25,14,0.3272,0.73372,0.29966,0.29966 -2030,10,25,15,0.386,0.75646,0.3419,0.3272 -2030,10,25,16,0.45248,0.80052,0.386,0.386 -2030,10,25,17,0.6553,0.7792,0.45248,0.4691 -2030,10,25,18,0.8415,0.75646,0.6553,0.7484 -2030,10,25,19,0.8415,0.73372,0.8415,0.58286 -2030,10,25,20,0.7484,0.71098,0.5622,0.62418 -2030,10,25,21,0.5622,0.68824,0.5622,0.62418 -2030,10,25,22,0.43586,0.68824,0.8415,0.58286 -2030,10,25,23,0.40262,0.68824,0.5622,0.7484 -2030,10,25,24,0.3713,0.6655,0.43586,0.4691 -2030,10,26,1,0.3419,0.6655,0.40262,0.41924 -2030,10,26,2,0.3272,0.64484,0.3419,0.3566 -2030,10,26,3,0.3125,0.64484,0.3125,0.29966 -2030,10,26,4,0.29966,0.62418,0.28682,0.27398 -2030,10,26,5,0.28682,0.64484,0.28682,0.26114 -2030,10,26,6,0.28682,0.62418,0.27398,0.2483 -2030,10,26,7,0.28682,0.62418,0.27398,0.2483 -2030,10,26,8,0.27398,0.64484,0.2483,0.2372 -2030,10,26,9,0.27398,0.62418,0.2372,0.2372 -2030,10,26,10,0.26114,0.60352,0.2483,0.2261 -2030,10,26,11,0.26114,0.60352,0.2372,0.2372 -2030,10,26,12,0.27398,0.64484,0.2372,0.2372 -2030,10,26,13,0.29966,0.6655,0.26114,0.26114 -2030,10,26,14,0.3272,0.73372,0.29966,0.29966 -2030,10,26,15,0.386,0.75646,0.3419,0.3272 -2030,10,26,16,0.45248,0.80052,0.386,0.386 -2030,10,26,17,0.6553,0.7792,0.45248,0.4691 -2030,10,26,18,0.8415,0.75646,0.6553,0.7484 -2030,10,26,19,0.8415,0.73372,0.8415,0.58286 -2030,10,26,20,0.7484,0.71098,0.5622,0.62418 -2030,10,26,21,0.5622,0.68824,0.5622,0.62418 -2030,10,26,22,0.43586,0.68824,0.8415,0.58286 -2030,10,26,23,0.40262,0.68824,0.5622,0.7484 -2030,10,26,24,0.3713,0.6655,0.43586,0.4691 -2030,10,27,1,0.3419,0.6655,0.40262,0.41924 -2030,10,27,2,0.3272,0.64484,0.3419,0.3566 -2030,10,27,3,0.3125,0.64484,0.3125,0.29966 -2030,10,27,4,0.29966,0.62418,0.28682,0.27398 -2030,10,27,5,0.28682,0.64484,0.28682,0.26114 -2030,10,27,6,0.28682,0.62418,0.27398,0.2483 -2030,10,27,7,0.28682,0.62418,0.27398,0.2483 -2030,10,27,8,0.27398,0.64484,0.2483,0.2372 -2030,10,27,9,0.27398,0.62418,0.2372,0.2372 -2030,10,27,10,0.26114,0.60352,0.2483,0.2261 -2030,10,27,11,0.26114,0.60352,0.2372,0.2372 -2030,10,27,12,0.27398,0.64484,0.2372,0.2372 -2030,10,27,13,0.29966,0.6655,0.26114,0.26114 -2030,10,27,14,0.3272,0.73372,0.29966,0.29966 -2030,10,27,15,0.386,0.75646,0.3419,0.3272 -2030,10,27,16,0.45248,0.80052,0.386,0.386 -2030,10,27,17,0.6553,0.7792,0.45248,0.4691 -2030,10,27,18,0.8415,0.75646,0.6553,0.7484 -2030,10,27,19,0.8415,0.73372,0.8415,0.58286 -2030,10,27,20,0.7484,0.71098,0.5622,0.62418 -2030,10,27,21,0.5622,0.68824,0.5622,0.62418 -2030,10,27,22,0.43586,0.68824,0.8415,0.58286 -2030,10,27,23,0.40262,0.68824,0.5622,0.7484 -2030,10,27,24,0.3713,0.6655,0.43586,0.4691 -2030,10,28,1,0.3419,0.6655,0.40262,0.41924 -2030,10,28,2,0.3272,0.64484,0.3419,0.3566 -2030,10,28,3,0.3125,0.64484,0.3125,0.29966 -2030,10,28,4,0.29966,0.62418,0.28682,0.27398 -2030,10,28,5,0.28682,0.64484,0.28682,0.26114 -2030,10,28,6,0.28682,0.62418,0.27398,0.2483 -2030,10,28,7,0.28682,0.62418,0.27398,0.2483 -2030,10,28,8,0.27398,0.64484,0.2483,0.2372 -2030,10,28,9,0.27398,0.62418,0.2372,0.2372 -2030,10,28,10,0.26114,0.60352,0.2483,0.2261 -2030,10,28,11,0.26114,0.60352,0.2372,0.2372 -2030,10,28,12,0.27398,0.64484,0.2372,0.2372 -2030,10,28,13,0.29966,0.6655,0.26114,0.26114 -2030,10,28,14,0.3272,0.73372,0.29966,0.29966 -2030,10,28,15,0.386,0.75646,0.3419,0.3272 -2030,10,28,16,0.45248,0.80052,0.386,0.386 -2030,10,28,17,0.6553,0.7792,0.45248,0.4691 -2030,10,28,18,0.8415,0.75646,0.6553,0.7484 -2030,10,28,19,0.8415,0.73372,0.8415,0.58286 -2030,10,28,20,0.7484,0.71098,0.5622,0.62418 -2030,10,28,21,0.5622,0.68824,0.5622,0.62418 -2030,10,28,22,0.43586,0.68824,0.8415,0.58286 -2030,10,28,23,0.40262,0.68824,0.5622,0.7484 -2030,10,28,24,0.3713,0.6655,0.43586,0.4691 -2030,10,29,1,0.3419,0.6655,0.40262,0.41924 -2030,10,29,2,0.3272,0.64484,0.3419,0.3566 -2030,10,29,3,0.3125,0.64484,0.3125,0.29966 -2030,10,29,4,0.29966,0.62418,0.28682,0.27398 -2030,10,29,5,0.28682,0.64484,0.28682,0.26114 -2030,10,29,6,0.28682,0.62418,0.27398,0.2483 -2030,10,29,7,0.28682,0.62418,0.27398,0.2483 -2030,10,29,8,0.27398,0.64484,0.2483,0.2372 -2030,10,29,9,0.27398,0.62418,0.2372,0.2372 -2030,10,29,10,0.26114,0.60352,0.2483,0.2261 -2030,10,29,11,0.26114,0.60352,0.2372,0.2372 -2030,10,29,12,0.27398,0.64484,0.2372,0.2372 -2030,10,29,13,0.29966,0.6655,0.26114,0.26114 -2030,10,29,14,0.3272,0.73372,0.29966,0.29966 -2030,10,29,15,0.386,0.75646,0.3419,0.3272 -2030,10,29,16,0.45248,0.80052,0.386,0.386 -2030,10,29,17,0.6553,0.7792,0.45248,0.4691 -2030,10,29,18,0.8415,0.75646,0.6553,0.7484 -2030,10,29,19,0.8415,0.73372,0.8415,0.58286 -2030,10,29,20,0.7484,0.71098,0.5622,0.62418 -2030,10,29,21,0.5622,0.68824,0.5622,0.62418 -2030,10,29,22,0.43586,0.68824,0.8415,0.58286 -2030,10,29,23,0.40262,0.68824,0.5622,0.7484 -2030,10,29,24,0.3713,0.6655,0.43586,0.4691 -2030,10,30,1,0.3419,0.6655,0.40262,0.41924 -2030,10,30,2,0.3272,0.64484,0.3419,0.3566 -2030,10,30,3,0.3125,0.64484,0.3125,0.29966 -2030,10,30,4,0.29966,0.62418,0.28682,0.27398 -2030,10,30,5,0.28682,0.64484,0.28682,0.26114 -2030,10,30,6,0.28682,0.62418,0.27398,0.2483 -2030,10,30,7,0.28682,0.62418,0.27398,0.2483 -2030,10,30,8,0.27398,0.64484,0.2483,0.2372 -2030,10,30,9,0.27398,0.62418,0.2372,0.2372 -2030,10,30,10,0.26114,0.60352,0.2483,0.2261 -2030,10,30,11,0.26114,0.60352,0.2372,0.2372 -2030,10,30,12,0.27398,0.64484,0.2372,0.2372 -2030,10,30,13,0.29966,0.6655,0.26114,0.26114 -2030,10,30,14,0.3272,0.73372,0.29966,0.29966 -2030,10,30,15,0.386,0.75646,0.3419,0.3272 -2030,10,30,16,0.45248,0.80052,0.386,0.386 -2030,10,30,17,0.6553,0.7792,0.45248,0.4691 -2030,10,30,18,0.8415,0.75646,0.6553,0.7484 -2030,10,30,19,0.8415,0.73372,0.8415,0.58286 -2030,10,30,20,0.7484,0.71098,0.5622,0.62418 -2030,10,30,21,0.5622,0.68824,0.5622,0.62418 -2030,10,30,22,0.43586,0.68824,0.8415,0.58286 -2030,10,30,23,0.40262,0.68824,0.5622,0.7484 -2030,10,30,24,0.3713,0.6655,0.43586,0.4691 -2030,10,31,1,0.3419,0.6655,0.40262,0.41924 -2030,10,31,2,0.3272,0.64484,0.3419,0.3566 -2030,10,31,3,0.3125,0.64484,0.3125,0.29966 -2030,10,31,4,0.29966,0.62418,0.28682,0.27398 -2030,10,31,5,0.28682,0.64484,0.28682,0.26114 -2030,10,31,6,0.28682,0.62418,0.27398,0.2483 -2030,10,31,7,0.28682,0.62418,0.27398,0.2483 -2030,10,31,8,0.27398,0.64484,0.2483,0.2372 -2030,10,31,9,0.27398,0.62418,0.2372,0.2372 -2030,10,31,10,0.26114,0.60352,0.2483,0.2261 -2030,10,31,11,0.26114,0.60352,0.2372,0.2372 -2030,10,31,12,0.27398,0.64484,0.2372,0.2372 -2030,10,31,13,0.29966,0.6655,0.26114,0.26114 -2030,10,31,14,0.3272,0.73372,0.29966,0.29966 -2030,10,31,15,0.386,0.75646,0.3419,0.3272 -2030,10,31,16,0.45248,0.80052,0.386,0.386 -2030,10,31,17,0.6553,0.7792,0.45248,0.4691 -2030,10,31,18,0.8415,0.75646,0.6553,0.7484 -2030,10,31,19,0.8415,0.73372,0.8415,0.58286 -2030,10,31,20,0.7484,0.71098,0.5622,0.62418 -2030,10,31,21,0.5622,0.68824,0.5622,0.62418 -2030,10,31,22,0.43586,0.68824,0.8415,0.58286 -2030,10,31,23,0.40262,0.68824,0.5622,0.7484 -2030,10,31,24,0.3713,0.6655,0.43586,0.4691 -2030,11,1,1,0.29966,0.8415,0.29966,0.28682 -2030,11,1,2,0.28682,0.6553,0.27398,0.26114 -2030,11,1,3,0.28682,0.6553,0.2483,0.2372 -2030,11,1,4,0.27398,0.6553,0.2261,0.215 -2030,11,1,5,0.26114,0.7484,0.2261,0.2039 -2030,11,1,6,0.2483,0.7484,0.2261,0.215 -2030,11,1,7,0.2483,0.7484,0.2261,0.2039 -2030,11,1,8,0.26114,0.8415,0.2261,0.2039 -2030,11,1,9,0.26114,0.8415,0.2261,0.215 -2030,11,1,10,0.2483,0.5622,0.2261,0.215 -2030,11,1,11,0.2483,0.5622,0.2261,0.2372 -2030,11,1,12,0.2372,0.58286,0.2372,0.2372 -2030,11,1,13,0.2372,0.60352,0.2483,0.2372 -2030,11,1,14,0.2483,0.62418,0.26114,0.27398 -2030,11,1,15,0.29966,0.62418,0.29966,0.3125 -2030,11,1,16,0.3419,0.62418,0.3272,0.3272 -2030,11,1,17,0.386,0.60352,0.3566,0.3566 -2030,11,1,18,0.41924,0.60352,0.386,0.386 -2030,11,1,19,0.43586,0.60352,0.40262,0.41924 -2030,11,1,20,0.40262,0.60352,0.41924,0.43586 -2030,11,1,21,0.386,0.60352,0.40262,0.43586 -2030,11,1,22,0.3566,0.5622,0.3713,0.386 -2030,11,1,23,0.3272,0.5622,0.3419,0.3419 -2030,11,1,24,0.3125,0.8415,0.3272,0.3125 -2030,11,2,1,0.29966,0.8415,0.29966,0.28682 -2030,11,2,2,0.28682,0.6553,0.27398,0.26114 -2030,11,2,3,0.28682,0.6553,0.2483,0.2372 -2030,11,2,4,0.27398,0.6553,0.2261,0.215 -2030,11,2,5,0.26114,0.7484,0.2261,0.2039 -2030,11,2,6,0.2483,0.7484,0.2261,0.215 -2030,11,2,7,0.2483,0.7484,0.2261,0.2039 -2030,11,2,8,0.26114,0.8415,0.2261,0.2039 -2030,11,2,9,0.26114,0.8415,0.2261,0.215 -2030,11,2,10,0.2483,0.5622,0.2261,0.215 -2030,11,2,11,0.2483,0.5622,0.2261,0.2372 -2030,11,2,12,0.2372,0.58286,0.2372,0.2372 -2030,11,2,13,0.2372,0.60352,0.2483,0.2372 -2030,11,2,14,0.2483,0.62418,0.26114,0.27398 -2030,11,2,15,0.29966,0.62418,0.29966,0.3125 -2030,11,2,16,0.3419,0.62418,0.3272,0.3272 -2030,11,2,17,0.386,0.60352,0.3566,0.3566 -2030,11,2,18,0.41924,0.60352,0.386,0.386 -2030,11,2,19,0.43586,0.60352,0.40262,0.41924 -2030,11,2,20,0.40262,0.60352,0.41924,0.43586 -2030,11,2,21,0.386,0.60352,0.40262,0.43586 -2030,11,2,22,0.3566,0.5622,0.3713,0.386 -2030,11,2,23,0.3272,0.5622,0.3419,0.3419 -2030,11,2,24,0.3125,0.8415,0.3272,0.3125 -2030,11,3,1,0.29966,0.8415,0.29966,0.28682 -2030,11,3,2,0.28682,0.6553,0.27398,0.26114 -2030,11,3,3,0.28682,0.6553,0.2483,0.2372 -2030,11,3,4,0.27398,0.6553,0.2261,0.215 -2030,11,3,5,0.26114,0.7484,0.2261,0.2039 -2030,11,3,6,0.2483,0.7484,0.2261,0.215 -2030,11,3,7,0.2483,0.7484,0.2261,0.2039 -2030,11,3,8,0.26114,0.8415,0.2261,0.2039 -2030,11,3,9,0.26114,0.8415,0.2261,0.215 -2030,11,3,10,0.2483,0.5622,0.2261,0.215 -2030,11,3,11,0.2483,0.5622,0.2261,0.2372 -2030,11,3,12,0.2372,0.58286,0.2372,0.2372 -2030,11,3,13,0.2372,0.60352,0.2483,0.2372 -2030,11,3,14,0.2483,0.62418,0.26114,0.27398 -2030,11,3,15,0.29966,0.62418,0.29966,0.3125 -2030,11,3,16,0.3419,0.62418,0.3272,0.3272 -2030,11,3,17,0.386,0.60352,0.3566,0.3566 -2030,11,3,18,0.41924,0.60352,0.386,0.386 -2030,11,3,19,0.43586,0.60352,0.40262,0.41924 -2030,11,3,20,0.40262,0.60352,0.41924,0.43586 -2030,11,3,21,0.386,0.60352,0.40262,0.43586 -2030,11,3,22,0.3566,0.5622,0.3713,0.386 -2030,11,3,23,0.3272,0.5622,0.3419,0.3419 -2030,11,3,24,0.3125,0.8415,0.3272,0.3125 -2030,11,4,1,0.29966,0.8415,0.29966,0.28682 -2030,11,4,2,0.28682,0.6553,0.27398,0.26114 -2030,11,4,3,0.28682,0.6553,0.2483,0.2372 -2030,11,4,4,0.27398,0.6553,0.2261,0.215 -2030,11,4,5,0.26114,0.7484,0.2261,0.2039 -2030,11,4,6,0.2483,0.7484,0.2261,0.215 -2030,11,4,7,0.2483,0.7484,0.2261,0.2039 -2030,11,4,8,0.26114,0.8415,0.2261,0.2039 -2030,11,4,9,0.26114,0.8415,0.2261,0.215 -2030,11,4,10,0.2483,0.5622,0.2261,0.215 -2030,11,4,11,0.2483,0.5622,0.2261,0.2372 -2030,11,4,12,0.2372,0.58286,0.2372,0.2372 -2030,11,4,13,0.2372,0.60352,0.2483,0.2372 -2030,11,4,14,0.2483,0.62418,0.26114,0.27398 -2030,11,4,15,0.29966,0.62418,0.29966,0.3125 -2030,11,4,16,0.3419,0.62418,0.3272,0.3272 -2030,11,4,17,0.386,0.60352,0.3566,0.3566 -2030,11,4,18,0.41924,0.60352,0.386,0.386 -2030,11,4,19,0.43586,0.60352,0.40262,0.41924 -2030,11,4,20,0.40262,0.60352,0.41924,0.43586 -2030,11,4,21,0.386,0.60352,0.40262,0.43586 -2030,11,4,22,0.3566,0.5622,0.3713,0.386 -2030,11,4,23,0.3272,0.5622,0.3419,0.3419 -2030,11,4,24,0.3125,0.8415,0.3272,0.3125 -2030,11,5,1,0.29966,0.8415,0.29966,0.28682 -2030,11,5,2,0.28682,0.6553,0.27398,0.26114 -2030,11,5,3,0.28682,0.6553,0.2483,0.2372 -2030,11,5,4,0.27398,0.6553,0.2261,0.215 -2030,11,5,5,0.26114,0.7484,0.2261,0.2039 -2030,11,5,6,0.2483,0.7484,0.2261,0.215 -2030,11,5,7,0.2483,0.7484,0.2261,0.2039 -2030,11,5,8,0.26114,0.8415,0.2261,0.2039 -2030,11,5,9,0.26114,0.8415,0.2261,0.215 -2030,11,5,10,0.2483,0.5622,0.2261,0.215 -2030,11,5,11,0.2483,0.5622,0.2261,0.2372 -2030,11,5,12,0.2372,0.58286,0.2372,0.2372 -2030,11,5,13,0.2372,0.60352,0.2483,0.2372 -2030,11,5,14,0.2483,0.62418,0.26114,0.27398 -2030,11,5,15,0.29966,0.62418,0.29966,0.3125 -2030,11,5,16,0.3419,0.62418,0.3272,0.3272 -2030,11,5,17,0.386,0.60352,0.3566,0.3566 -2030,11,5,18,0.41924,0.60352,0.386,0.386 -2030,11,5,19,0.43586,0.60352,0.40262,0.41924 -2030,11,5,20,0.40262,0.60352,0.41924,0.43586 -2030,11,5,21,0.386,0.60352,0.40262,0.43586 -2030,11,5,22,0.3566,0.5622,0.3713,0.386 -2030,11,5,23,0.3272,0.5622,0.3419,0.3419 -2030,11,5,24,0.3125,0.8415,0.3272,0.3125 -2030,11,6,1,0.29966,0.8415,0.29966,0.28682 -2030,11,6,2,0.28682,0.6553,0.27398,0.26114 -2030,11,6,3,0.28682,0.6553,0.2483,0.2372 -2030,11,6,4,0.27398,0.6553,0.2261,0.215 -2030,11,6,5,0.26114,0.7484,0.2261,0.2039 -2030,11,6,6,0.2483,0.7484,0.2261,0.215 -2030,11,6,7,0.2483,0.7484,0.2261,0.2039 -2030,11,6,8,0.26114,0.8415,0.2261,0.2039 -2030,11,6,9,0.26114,0.8415,0.2261,0.215 -2030,11,6,10,0.2483,0.5622,0.2261,0.215 -2030,11,6,11,0.2483,0.5622,0.2261,0.2372 -2030,11,6,12,0.2372,0.58286,0.2372,0.2372 -2030,11,6,13,0.2372,0.60352,0.2483,0.2372 -2030,11,6,14,0.2483,0.62418,0.26114,0.27398 -2030,11,6,15,0.29966,0.62418,0.29966,0.3125 -2030,11,6,16,0.3419,0.62418,0.3272,0.3272 -2030,11,6,17,0.386,0.60352,0.3566,0.3566 -2030,11,6,18,0.41924,0.60352,0.386,0.386 -2030,11,6,19,0.43586,0.60352,0.40262,0.41924 -2030,11,6,20,0.40262,0.60352,0.41924,0.43586 -2030,11,6,21,0.386,0.60352,0.40262,0.43586 -2030,11,6,22,0.3566,0.5622,0.3713,0.386 -2030,11,6,23,0.3272,0.5622,0.3419,0.3419 -2030,11,6,24,0.3125,0.8415,0.3272,0.3125 -2030,11,7,1,0.29966,0.8415,0.29966,0.28682 -2030,11,7,2,0.28682,0.6553,0.27398,0.26114 -2030,11,7,3,0.28682,0.6553,0.2483,0.2372 -2030,11,7,4,0.27398,0.6553,0.2261,0.215 -2030,11,7,5,0.26114,0.7484,0.2261,0.2039 -2030,11,7,6,0.2483,0.7484,0.2261,0.215 -2030,11,7,7,0.2483,0.7484,0.2261,0.2039 -2030,11,7,8,0.26114,0.8415,0.2261,0.2039 -2030,11,7,9,0.26114,0.8415,0.2261,0.215 -2030,11,7,10,0.2483,0.5622,0.2261,0.215 -2030,11,7,11,0.2483,0.5622,0.2261,0.2372 -2030,11,7,12,0.2372,0.58286,0.2372,0.2372 -2030,11,7,13,0.2372,0.60352,0.2483,0.2372 -2030,11,7,14,0.2483,0.62418,0.26114,0.27398 -2030,11,7,15,0.29966,0.62418,0.29966,0.3125 -2030,11,7,16,0.3419,0.62418,0.3272,0.3272 -2030,11,7,17,0.386,0.60352,0.3566,0.3566 -2030,11,7,18,0.41924,0.60352,0.386,0.386 -2030,11,7,19,0.43586,0.60352,0.40262,0.41924 -2030,11,7,20,0.40262,0.60352,0.41924,0.43586 -2030,11,7,21,0.386,0.60352,0.40262,0.43586 -2030,11,7,22,0.3566,0.5622,0.3713,0.386 -2030,11,7,23,0.3272,0.5622,0.3419,0.3419 -2030,11,7,24,0.3125,0.8415,0.3272,0.3125 -2030,11,8,1,0.29966,0.8415,0.29966,0.28682 -2030,11,8,2,0.28682,0.6553,0.27398,0.26114 -2030,11,8,3,0.28682,0.6553,0.2483,0.2372 -2030,11,8,4,0.27398,0.6553,0.2261,0.215 -2030,11,8,5,0.26114,0.7484,0.2261,0.2039 -2030,11,8,6,0.2483,0.7484,0.2261,0.215 -2030,11,8,7,0.2483,0.7484,0.2261,0.2039 -2030,11,8,8,0.26114,0.8415,0.2261,0.2039 -2030,11,8,9,0.26114,0.8415,0.2261,0.215 -2030,11,8,10,0.2483,0.5622,0.2261,0.215 -2030,11,8,11,0.2483,0.5622,0.2261,0.2372 -2030,11,8,12,0.2372,0.58286,0.2372,0.2372 -2030,11,8,13,0.2372,0.60352,0.2483,0.2372 -2030,11,8,14,0.2483,0.62418,0.26114,0.27398 -2030,11,8,15,0.29966,0.62418,0.29966,0.3125 -2030,11,8,16,0.3419,0.62418,0.3272,0.3272 -2030,11,8,17,0.386,0.60352,0.3566,0.3566 -2030,11,8,18,0.41924,0.60352,0.386,0.386 -2030,11,8,19,0.43586,0.60352,0.40262,0.41924 -2030,11,8,20,0.40262,0.60352,0.41924,0.43586 -2030,11,8,21,0.386,0.60352,0.40262,0.43586 -2030,11,8,22,0.3566,0.5622,0.3713,0.386 -2030,11,8,23,0.3272,0.5622,0.3419,0.3419 -2030,11,8,24,0.3125,0.8415,0.3272,0.3125 -2030,11,9,1,0.29966,0.8415,0.29966,0.28682 -2030,11,9,2,0.28682,0.6553,0.27398,0.26114 -2030,11,9,3,0.28682,0.6553,0.2483,0.2372 -2030,11,9,4,0.27398,0.6553,0.2261,0.215 -2030,11,9,5,0.26114,0.7484,0.2261,0.2039 -2030,11,9,6,0.2483,0.7484,0.2261,0.215 -2030,11,9,7,0.2483,0.7484,0.2261,0.2039 -2030,11,9,8,0.26114,0.8415,0.2261,0.2039 -2030,11,9,9,0.26114,0.8415,0.2261,0.215 -2030,11,9,10,0.2483,0.5622,0.2261,0.215 -2030,11,9,11,0.2483,0.5622,0.2261,0.2372 -2030,11,9,12,0.2372,0.58286,0.2372,0.2372 -2030,11,9,13,0.2372,0.60352,0.2483,0.2372 -2030,11,9,14,0.2483,0.62418,0.26114,0.27398 -2030,11,9,15,0.29966,0.62418,0.29966,0.3125 -2030,11,9,16,0.3419,0.62418,0.3272,0.3272 -2030,11,9,17,0.386,0.60352,0.3566,0.3566 -2030,11,9,18,0.41924,0.60352,0.386,0.386 -2030,11,9,19,0.43586,0.60352,0.40262,0.41924 -2030,11,9,20,0.40262,0.60352,0.41924,0.43586 -2030,11,9,21,0.386,0.60352,0.40262,0.43586 -2030,11,9,22,0.3566,0.5622,0.3713,0.386 -2030,11,9,23,0.3272,0.5622,0.3419,0.3419 -2030,11,9,24,0.3125,0.8415,0.3272,0.3125 -2030,11,10,1,0.29966,0.8415,0.29966,0.28682 -2030,11,10,2,0.28682,0.6553,0.27398,0.26114 -2030,11,10,3,0.28682,0.6553,0.2483,0.2372 -2030,11,10,4,0.27398,0.6553,0.2261,0.215 -2030,11,10,5,0.26114,0.7484,0.2261,0.2039 -2030,11,10,6,0.2483,0.7484,0.2261,0.215 -2030,11,10,7,0.2483,0.7484,0.2261,0.2039 -2030,11,10,8,0.26114,0.8415,0.2261,0.2039 -2030,11,10,9,0.26114,0.8415,0.2261,0.215 -2030,11,10,10,0.2483,0.5622,0.2261,0.215 -2030,11,10,11,0.2483,0.5622,0.2261,0.2372 -2030,11,10,12,0.2372,0.58286,0.2372,0.2372 -2030,11,10,13,0.2372,0.60352,0.2483,0.2372 -2030,11,10,14,0.2483,0.62418,0.26114,0.27398 -2030,11,10,15,0.29966,0.62418,0.29966,0.3125 -2030,11,10,16,0.3419,0.62418,0.3272,0.3272 -2030,11,10,17,0.386,0.60352,0.3566,0.3566 -2030,11,10,18,0.41924,0.60352,0.386,0.386 -2030,11,10,19,0.43586,0.60352,0.40262,0.41924 -2030,11,10,20,0.40262,0.60352,0.41924,0.43586 -2030,11,10,21,0.386,0.60352,0.40262,0.43586 -2030,11,10,22,0.3566,0.5622,0.3713,0.386 -2030,11,10,23,0.3272,0.5622,0.3419,0.3419 -2030,11,10,24,0.3125,0.8415,0.3272,0.3125 -2030,11,11,1,0.29966,0.8415,0.29966,0.28682 -2030,11,11,2,0.28682,0.6553,0.27398,0.26114 -2030,11,11,3,0.28682,0.6553,0.2483,0.2372 -2030,11,11,4,0.27398,0.6553,0.2261,0.215 -2030,11,11,5,0.26114,0.7484,0.2261,0.2039 -2030,11,11,6,0.2483,0.7484,0.2261,0.215 -2030,11,11,7,0.2483,0.7484,0.2261,0.2039 -2030,11,11,8,0.26114,0.8415,0.2261,0.2039 -2030,11,11,9,0.26114,0.8415,0.2261,0.215 -2030,11,11,10,0.2483,0.5622,0.2261,0.215 -2030,11,11,11,0.2483,0.5622,0.2261,0.2372 -2030,11,11,12,0.2372,0.58286,0.2372,0.2372 -2030,11,11,13,0.2372,0.60352,0.2483,0.2372 -2030,11,11,14,0.2483,0.62418,0.26114,0.27398 -2030,11,11,15,0.29966,0.62418,0.29966,0.3125 -2030,11,11,16,0.3419,0.62418,0.3272,0.3272 -2030,11,11,17,0.386,0.60352,0.3566,0.3566 -2030,11,11,18,0.41924,0.60352,0.386,0.386 -2030,11,11,19,0.43586,0.60352,0.40262,0.41924 -2030,11,11,20,0.40262,0.60352,0.41924,0.43586 -2030,11,11,21,0.386,0.60352,0.40262,0.43586 -2030,11,11,22,0.3566,0.5622,0.3713,0.386 -2030,11,11,23,0.3272,0.5622,0.3419,0.3419 -2030,11,11,24,0.3125,0.8415,0.3272,0.3125 -2030,11,12,1,0.29966,0.8415,0.29966,0.28682 -2030,11,12,2,0.28682,0.6553,0.27398,0.26114 -2030,11,12,3,0.28682,0.6553,0.2483,0.2372 -2030,11,12,4,0.27398,0.6553,0.2261,0.215 -2030,11,12,5,0.26114,0.7484,0.2261,0.2039 -2030,11,12,6,0.2483,0.7484,0.2261,0.215 -2030,11,12,7,0.2483,0.7484,0.2261,0.2039 -2030,11,12,8,0.26114,0.8415,0.2261,0.2039 -2030,11,12,9,0.26114,0.8415,0.2261,0.215 -2030,11,12,10,0.2483,0.5622,0.2261,0.215 -2030,11,12,11,0.2483,0.5622,0.2261,0.2372 -2030,11,12,12,0.2372,0.58286,0.2372,0.2372 -2030,11,12,13,0.2372,0.60352,0.2483,0.2372 -2030,11,12,14,0.2483,0.62418,0.26114,0.27398 -2030,11,12,15,0.29966,0.62418,0.29966,0.3125 -2030,11,12,16,0.3419,0.62418,0.3272,0.3272 -2030,11,12,17,0.386,0.60352,0.3566,0.3566 -2030,11,12,18,0.41924,0.60352,0.386,0.386 -2030,11,12,19,0.43586,0.60352,0.40262,0.41924 -2030,11,12,20,0.40262,0.60352,0.41924,0.43586 -2030,11,12,21,0.386,0.60352,0.40262,0.43586 -2030,11,12,22,0.3566,0.5622,0.3713,0.386 -2030,11,12,23,0.3272,0.5622,0.3419,0.3419 -2030,11,12,24,0.3125,0.8415,0.3272,0.3125 -2030,11,13,1,0.29966,0.8415,0.29966,0.28682 -2030,11,13,2,0.28682,0.6553,0.27398,0.26114 -2030,11,13,3,0.28682,0.6553,0.2483,0.2372 -2030,11,13,4,0.27398,0.6553,0.2261,0.215 -2030,11,13,5,0.26114,0.7484,0.2261,0.2039 -2030,11,13,6,0.2483,0.7484,0.2261,0.215 -2030,11,13,7,0.2483,0.7484,0.2261,0.2039 -2030,11,13,8,0.26114,0.8415,0.2261,0.2039 -2030,11,13,9,0.26114,0.8415,0.2261,0.215 -2030,11,13,10,0.2483,0.5622,0.2261,0.215 -2030,11,13,11,0.2483,0.5622,0.2261,0.2372 -2030,11,13,12,0.2372,0.58286,0.2372,0.2372 -2030,11,13,13,0.2372,0.60352,0.2483,0.2372 -2030,11,13,14,0.2483,0.62418,0.26114,0.27398 -2030,11,13,15,0.29966,0.62418,0.29966,0.3125 -2030,11,13,16,0.3419,0.62418,0.3272,0.3272 -2030,11,13,17,0.386,0.60352,0.3566,0.3566 -2030,11,13,18,0.41924,0.60352,0.386,0.386 -2030,11,13,19,0.43586,0.60352,0.40262,0.41924 -2030,11,13,20,0.40262,0.60352,0.41924,0.43586 -2030,11,13,21,0.386,0.60352,0.40262,0.43586 -2030,11,13,22,0.3566,0.5622,0.3713,0.386 -2030,11,13,23,0.3272,0.5622,0.3419,0.3419 -2030,11,13,24,0.3125,0.8415,0.3272,0.3125 -2030,11,14,1,0.29966,0.8415,0.29966,0.28682 -2030,11,14,2,0.28682,0.6553,0.27398,0.26114 -2030,11,14,3,0.28682,0.6553,0.2483,0.2372 -2030,11,14,4,0.27398,0.6553,0.2261,0.215 -2030,11,14,5,0.26114,0.7484,0.2261,0.2039 -2030,11,14,6,0.2483,0.7484,0.2261,0.215 -2030,11,14,7,0.2483,0.7484,0.2261,0.2039 -2030,11,14,8,0.26114,0.8415,0.2261,0.2039 -2030,11,14,9,0.26114,0.8415,0.2261,0.215 -2030,11,14,10,0.2483,0.5622,0.2261,0.215 -2030,11,14,11,0.2483,0.5622,0.2261,0.2372 -2030,11,14,12,0.2372,0.58286,0.2372,0.2372 -2030,11,14,13,0.2372,0.60352,0.2483,0.2372 -2030,11,14,14,0.2483,0.62418,0.26114,0.27398 -2030,11,14,15,0.29966,0.62418,0.29966,0.3125 -2030,11,14,16,0.3419,0.62418,0.3272,0.3272 -2030,11,14,17,0.386,0.60352,0.3566,0.3566 -2030,11,14,18,0.41924,0.60352,0.386,0.386 -2030,11,14,19,0.43586,0.60352,0.40262,0.41924 -2030,11,14,20,0.40262,0.60352,0.41924,0.43586 -2030,11,14,21,0.386,0.60352,0.40262,0.43586 -2030,11,14,22,0.3566,0.5622,0.3713,0.386 -2030,11,14,23,0.3272,0.5622,0.3419,0.3419 -2030,11,14,24,0.3125,0.8415,0.3272,0.3125 -2030,11,15,1,0.29966,0.8415,0.29966,0.28682 -2030,11,15,2,0.28682,0.6553,0.27398,0.26114 -2030,11,15,3,0.28682,0.6553,0.2483,0.2372 -2030,11,15,4,0.27398,0.6553,0.2261,0.215 -2030,11,15,5,0.26114,0.7484,0.2261,0.2039 -2030,11,15,6,0.2483,0.7484,0.2261,0.215 -2030,11,15,7,0.2483,0.7484,0.2261,0.2039 -2030,11,15,8,0.26114,0.8415,0.2261,0.2039 -2030,11,15,9,0.26114,0.8415,0.2261,0.215 -2030,11,15,10,0.2483,0.5622,0.2261,0.215 -2030,11,15,11,0.2483,0.5622,0.2261,0.2372 -2030,11,15,12,0.2372,0.58286,0.2372,0.2372 -2030,11,15,13,0.2372,0.60352,0.2483,0.2372 -2030,11,15,14,0.2483,0.62418,0.26114,0.27398 -2030,11,15,15,0.29966,0.62418,0.29966,0.3125 -2030,11,15,16,0.3419,0.62418,0.3272,0.3272 -2030,11,15,17,0.386,0.60352,0.3566,0.3566 -2030,11,15,18,0.41924,0.60352,0.386,0.386 -2030,11,15,19,0.43586,0.60352,0.40262,0.41924 -2030,11,15,20,0.40262,0.60352,0.41924,0.43586 -2030,11,15,21,0.386,0.60352,0.40262,0.43586 -2030,11,15,22,0.3566,0.5622,0.3713,0.386 -2030,11,15,23,0.3272,0.5622,0.3419,0.3419 -2030,11,15,24,0.3125,0.8415,0.3272,0.3125 -2030,11,16,1,0.29966,0.8415,0.29966,0.28682 -2030,11,16,2,0.28682,0.6553,0.27398,0.26114 -2030,11,16,3,0.28682,0.6553,0.2483,0.2372 -2030,11,16,4,0.27398,0.6553,0.2261,0.215 -2030,11,16,5,0.26114,0.7484,0.2261,0.2039 -2030,11,16,6,0.2483,0.7484,0.2261,0.215 -2030,11,16,7,0.2483,0.7484,0.2261,0.2039 -2030,11,16,8,0.26114,0.8415,0.2261,0.2039 -2030,11,16,9,0.26114,0.8415,0.2261,0.215 -2030,11,16,10,0.2483,0.5622,0.2261,0.215 -2030,11,16,11,0.2483,0.5622,0.2261,0.2372 -2030,11,16,12,0.2372,0.58286,0.2372,0.2372 -2030,11,16,13,0.2372,0.60352,0.2483,0.2372 -2030,11,16,14,0.2483,0.62418,0.26114,0.27398 -2030,11,16,15,0.29966,0.62418,0.29966,0.3125 -2030,11,16,16,0.3419,0.62418,0.3272,0.3272 -2030,11,16,17,0.386,0.60352,0.3566,0.3566 -2030,11,16,18,0.41924,0.60352,0.386,0.386 -2030,11,16,19,0.43586,0.60352,0.40262,0.41924 -2030,11,16,20,0.40262,0.60352,0.41924,0.43586 -2030,11,16,21,0.386,0.60352,0.40262,0.43586 -2030,11,16,22,0.3566,0.5622,0.3713,0.386 -2030,11,16,23,0.3272,0.5622,0.3419,0.3419 -2030,11,16,24,0.3125,0.8415,0.3272,0.3125 -2030,11,17,1,0.29966,0.8415,0.29966,0.28682 -2030,11,17,2,0.28682,0.6553,0.27398,0.26114 -2030,11,17,3,0.28682,0.6553,0.2483,0.2372 -2030,11,17,4,0.27398,0.6553,0.2261,0.215 -2030,11,17,5,0.26114,0.7484,0.2261,0.2039 -2030,11,17,6,0.2483,0.7484,0.2261,0.215 -2030,11,17,7,0.2483,0.7484,0.2261,0.2039 -2030,11,17,8,0.26114,0.8415,0.2261,0.2039 -2030,11,17,9,0.26114,0.8415,0.2261,0.215 -2030,11,17,10,0.2483,0.5622,0.2261,0.215 -2030,11,17,11,0.2483,0.5622,0.2261,0.2372 -2030,11,17,12,0.2372,0.58286,0.2372,0.2372 -2030,11,17,13,0.2372,0.60352,0.2483,0.2372 -2030,11,17,14,0.2483,0.62418,0.26114,0.27398 -2030,11,17,15,0.29966,0.62418,0.29966,0.3125 -2030,11,17,16,0.3419,0.62418,0.3272,0.3272 -2030,11,17,17,0.386,0.60352,0.3566,0.3566 -2030,11,17,18,0.41924,0.60352,0.386,0.386 -2030,11,17,19,0.43586,0.60352,0.40262,0.41924 -2030,11,17,20,0.40262,0.60352,0.41924,0.43586 -2030,11,17,21,0.386,0.60352,0.40262,0.43586 -2030,11,17,22,0.3566,0.5622,0.3713,0.386 -2030,11,17,23,0.3272,0.5622,0.3419,0.3419 -2030,11,17,24,0.3125,0.8415,0.3272,0.3125 -2030,11,18,1,0.29966,0.8415,0.29966,0.28682 -2030,11,18,2,0.28682,0.6553,0.27398,0.26114 -2030,11,18,3,0.28682,0.6553,0.2483,0.2372 -2030,11,18,4,0.27398,0.6553,0.2261,0.215 -2030,11,18,5,0.26114,0.7484,0.2261,0.2039 -2030,11,18,6,0.2483,0.7484,0.2261,0.215 -2030,11,18,7,0.2483,0.7484,0.2261,0.2039 -2030,11,18,8,0.26114,0.8415,0.2261,0.2039 -2030,11,18,9,0.26114,0.8415,0.2261,0.215 -2030,11,18,10,0.2483,0.5622,0.2261,0.215 -2030,11,18,11,0.2483,0.5622,0.2261,0.2372 -2030,11,18,12,0.2372,0.58286,0.2372,0.2372 -2030,11,18,13,0.2372,0.60352,0.2483,0.2372 -2030,11,18,14,0.2483,0.62418,0.26114,0.27398 -2030,11,18,15,0.29966,0.62418,0.29966,0.3125 -2030,11,18,16,0.3419,0.62418,0.3272,0.3272 -2030,11,18,17,0.386,0.60352,0.3566,0.3566 -2030,11,18,18,0.41924,0.60352,0.386,0.386 -2030,11,18,19,0.43586,0.60352,0.40262,0.41924 -2030,11,18,20,0.40262,0.60352,0.41924,0.43586 -2030,11,18,21,0.386,0.60352,0.40262,0.43586 -2030,11,18,22,0.3566,0.5622,0.3713,0.386 -2030,11,18,23,0.3272,0.5622,0.3419,0.3419 -2030,11,18,24,0.3125,0.8415,0.3272,0.3125 -2030,11,19,1,0.29966,0.8415,0.29966,0.28682 -2030,11,19,2,0.28682,0.6553,0.27398,0.26114 -2030,11,19,3,0.28682,0.6553,0.2483,0.2372 -2030,11,19,4,0.27398,0.6553,0.2261,0.215 -2030,11,19,5,0.26114,0.7484,0.2261,0.2039 -2030,11,19,6,0.2483,0.7484,0.2261,0.215 -2030,11,19,7,0.2483,0.7484,0.2261,0.2039 -2030,11,19,8,0.26114,0.8415,0.2261,0.2039 -2030,11,19,9,0.26114,0.8415,0.2261,0.215 -2030,11,19,10,0.2483,0.5622,0.2261,0.215 -2030,11,19,11,0.2483,0.5622,0.2261,0.2372 -2030,11,19,12,0.2372,0.58286,0.2372,0.2372 -2030,11,19,13,0.2372,0.60352,0.2483,0.2372 -2030,11,19,14,0.2483,0.62418,0.26114,0.27398 -2030,11,19,15,0.29966,0.62418,0.29966,0.3125 -2030,11,19,16,0.3419,0.62418,0.3272,0.3272 -2030,11,19,17,0.386,0.60352,0.3566,0.3566 -2030,11,19,18,0.41924,0.60352,0.386,0.386 -2030,11,19,19,0.43586,0.60352,0.40262,0.41924 -2030,11,19,20,0.40262,0.60352,0.41924,0.43586 -2030,11,19,21,0.386,0.60352,0.40262,0.43586 -2030,11,19,22,0.3566,0.5622,0.3713,0.386 -2030,11,19,23,0.3272,0.5622,0.3419,0.3419 -2030,11,19,24,0.3125,0.8415,0.3272,0.3125 -2030,11,20,1,0.29966,0.8415,0.29966,0.28682 -2030,11,20,2,0.28682,0.6553,0.27398,0.26114 -2030,11,20,3,0.28682,0.6553,0.2483,0.2372 -2030,11,20,4,0.27398,0.6553,0.2261,0.215 -2030,11,20,5,0.26114,0.7484,0.2261,0.2039 -2030,11,20,6,0.2483,0.7484,0.2261,0.215 -2030,11,20,7,0.2483,0.7484,0.2261,0.2039 -2030,11,20,8,0.26114,0.8415,0.2261,0.2039 -2030,11,20,9,0.26114,0.8415,0.2261,0.215 -2030,11,20,10,0.2483,0.5622,0.2261,0.215 -2030,11,20,11,0.2483,0.5622,0.2261,0.2372 -2030,11,20,12,0.2372,0.58286,0.2372,0.2372 -2030,11,20,13,0.2372,0.60352,0.2483,0.2372 -2030,11,20,14,0.2483,0.62418,0.26114,0.27398 -2030,11,20,15,0.29966,0.62418,0.29966,0.3125 -2030,11,20,16,0.3419,0.62418,0.3272,0.3272 -2030,11,20,17,0.386,0.60352,0.3566,0.3566 -2030,11,20,18,0.41924,0.60352,0.386,0.386 -2030,11,20,19,0.43586,0.60352,0.40262,0.41924 -2030,11,20,20,0.40262,0.60352,0.41924,0.43586 -2030,11,20,21,0.386,0.60352,0.40262,0.43586 -2030,11,20,22,0.3566,0.5622,0.3713,0.386 -2030,11,20,23,0.3272,0.5622,0.3419,0.3419 -2030,11,20,24,0.3125,0.8415,0.3272,0.3125 -2030,11,21,1,0.29966,0.8415,0.29966,0.28682 -2030,11,21,2,0.28682,0.6553,0.27398,0.26114 -2030,11,21,3,0.28682,0.6553,0.2483,0.2372 -2030,11,21,4,0.27398,0.6553,0.2261,0.215 -2030,11,21,5,0.26114,0.7484,0.2261,0.2039 -2030,11,21,6,0.2483,0.7484,0.2261,0.215 -2030,11,21,7,0.2483,0.7484,0.2261,0.2039 -2030,11,21,8,0.26114,0.8415,0.2261,0.2039 -2030,11,21,9,0.26114,0.8415,0.2261,0.215 -2030,11,21,10,0.2483,0.5622,0.2261,0.215 -2030,11,21,11,0.2483,0.5622,0.2261,0.2372 -2030,11,21,12,0.2372,0.58286,0.2372,0.2372 -2030,11,21,13,0.2372,0.60352,0.2483,0.2372 -2030,11,21,14,0.2483,0.62418,0.26114,0.27398 -2030,11,21,15,0.29966,0.62418,0.29966,0.3125 -2030,11,21,16,0.3419,0.62418,0.3272,0.3272 -2030,11,21,17,0.386,0.60352,0.3566,0.3566 -2030,11,21,18,0.41924,0.60352,0.386,0.386 -2030,11,21,19,0.43586,0.60352,0.40262,0.41924 -2030,11,21,20,0.40262,0.60352,0.41924,0.43586 -2030,11,21,21,0.386,0.60352,0.40262,0.43586 -2030,11,21,22,0.3566,0.5622,0.3713,0.386 -2030,11,21,23,0.3272,0.5622,0.3419,0.3419 -2030,11,21,24,0.3125,0.8415,0.3272,0.3125 -2030,11,22,1,0.29966,0.8415,0.29966,0.28682 -2030,11,22,2,0.28682,0.6553,0.27398,0.26114 -2030,11,22,3,0.28682,0.6553,0.2483,0.2372 -2030,11,22,4,0.27398,0.6553,0.2261,0.215 -2030,11,22,5,0.26114,0.7484,0.2261,0.2039 -2030,11,22,6,0.2483,0.7484,0.2261,0.215 -2030,11,22,7,0.2483,0.7484,0.2261,0.2039 -2030,11,22,8,0.26114,0.8415,0.2261,0.2039 -2030,11,22,9,0.26114,0.8415,0.2261,0.215 -2030,11,22,10,0.2483,0.5622,0.2261,0.215 -2030,11,22,11,0.2483,0.5622,0.2261,0.2372 -2030,11,22,12,0.2372,0.58286,0.2372,0.2372 -2030,11,22,13,0.2372,0.60352,0.2483,0.2372 -2030,11,22,14,0.2483,0.62418,0.26114,0.27398 -2030,11,22,15,0.29966,0.62418,0.29966,0.3125 -2030,11,22,16,0.3419,0.62418,0.3272,0.3272 -2030,11,22,17,0.386,0.60352,0.3566,0.3566 -2030,11,22,18,0.41924,0.60352,0.386,0.386 -2030,11,22,19,0.43586,0.60352,0.40262,0.41924 -2030,11,22,20,0.40262,0.60352,0.41924,0.43586 -2030,11,22,21,0.386,0.60352,0.40262,0.43586 -2030,11,22,22,0.3566,0.5622,0.3713,0.386 -2030,11,22,23,0.3272,0.5622,0.3419,0.3419 -2030,11,22,24,0.3125,0.8415,0.3272,0.3125 -2030,11,23,1,0.29966,0.8415,0.29966,0.28682 -2030,11,23,2,0.28682,0.6553,0.27398,0.26114 -2030,11,23,3,0.28682,0.6553,0.2483,0.2372 -2030,11,23,4,0.27398,0.6553,0.2261,0.215 -2030,11,23,5,0.26114,0.7484,0.2261,0.2039 -2030,11,23,6,0.2483,0.7484,0.2261,0.215 -2030,11,23,7,0.2483,0.7484,0.2261,0.2039 -2030,11,23,8,0.26114,0.8415,0.2261,0.2039 -2030,11,23,9,0.26114,0.8415,0.2261,0.215 -2030,11,23,10,0.2483,0.5622,0.2261,0.215 -2030,11,23,11,0.2483,0.5622,0.2261,0.2372 -2030,11,23,12,0.2372,0.58286,0.2372,0.2372 -2030,11,23,13,0.2372,0.60352,0.2483,0.2372 -2030,11,23,14,0.2483,0.62418,0.26114,0.27398 -2030,11,23,15,0.29966,0.62418,0.29966,0.3125 -2030,11,23,16,0.3419,0.62418,0.3272,0.3272 -2030,11,23,17,0.386,0.60352,0.3566,0.3566 -2030,11,23,18,0.41924,0.60352,0.386,0.386 -2030,11,23,19,0.43586,0.60352,0.40262,0.41924 -2030,11,23,20,0.40262,0.60352,0.41924,0.43586 -2030,11,23,21,0.386,0.60352,0.40262,0.43586 -2030,11,23,22,0.3566,0.5622,0.3713,0.386 -2030,11,23,23,0.3272,0.5622,0.3419,0.3419 -2030,11,23,24,0.3125,0.8415,0.3272,0.3125 -2030,11,24,1,0.29966,0.8415,0.29966,0.28682 -2030,11,24,2,0.28682,0.6553,0.27398,0.26114 -2030,11,24,3,0.28682,0.6553,0.2483,0.2372 -2030,11,24,4,0.27398,0.6553,0.2261,0.215 -2030,11,24,5,0.26114,0.7484,0.2261,0.2039 -2030,11,24,6,0.2483,0.7484,0.2261,0.215 -2030,11,24,7,0.2483,0.7484,0.2261,0.2039 -2030,11,24,8,0.26114,0.8415,0.2261,0.2039 -2030,11,24,9,0.26114,0.8415,0.2261,0.215 -2030,11,24,10,0.2483,0.5622,0.2261,0.215 -2030,11,24,11,0.2483,0.5622,0.2261,0.2372 -2030,11,24,12,0.2372,0.58286,0.2372,0.2372 -2030,11,24,13,0.2372,0.60352,0.2483,0.2372 -2030,11,24,14,0.2483,0.62418,0.26114,0.27398 -2030,11,24,15,0.29966,0.62418,0.29966,0.3125 -2030,11,24,16,0.3419,0.62418,0.3272,0.3272 -2030,11,24,17,0.386,0.60352,0.3566,0.3566 -2030,11,24,18,0.41924,0.60352,0.386,0.386 -2030,11,24,19,0.43586,0.60352,0.40262,0.41924 -2030,11,24,20,0.40262,0.60352,0.41924,0.43586 -2030,11,24,21,0.386,0.60352,0.40262,0.43586 -2030,11,24,22,0.3566,0.5622,0.3713,0.386 -2030,11,24,23,0.3272,0.5622,0.3419,0.3419 -2030,11,24,24,0.3125,0.8415,0.3272,0.3125 -2030,11,25,1,0.29966,0.8415,0.29966,0.28682 -2030,11,25,2,0.28682,0.6553,0.27398,0.26114 -2030,11,25,3,0.28682,0.6553,0.2483,0.2372 -2030,11,25,4,0.27398,0.6553,0.2261,0.215 -2030,11,25,5,0.26114,0.7484,0.2261,0.2039 -2030,11,25,6,0.2483,0.7484,0.2261,0.215 -2030,11,25,7,0.2483,0.7484,0.2261,0.2039 -2030,11,25,8,0.26114,0.8415,0.2261,0.2039 -2030,11,25,9,0.26114,0.8415,0.2261,0.215 -2030,11,25,10,0.2483,0.5622,0.2261,0.215 -2030,11,25,11,0.2483,0.5622,0.2261,0.2372 -2030,11,25,12,0.2372,0.58286,0.2372,0.2372 -2030,11,25,13,0.2372,0.60352,0.2483,0.2372 -2030,11,25,14,0.2483,0.62418,0.26114,0.27398 -2030,11,25,15,0.29966,0.62418,0.29966,0.3125 -2030,11,25,16,0.3419,0.62418,0.3272,0.3272 -2030,11,25,17,0.386,0.60352,0.3566,0.3566 -2030,11,25,18,0.41924,0.60352,0.386,0.386 -2030,11,25,19,0.43586,0.60352,0.40262,0.41924 -2030,11,25,20,0.40262,0.60352,0.41924,0.43586 -2030,11,25,21,0.386,0.60352,0.40262,0.43586 -2030,11,25,22,0.3566,0.5622,0.3713,0.386 -2030,11,25,23,0.3272,0.5622,0.3419,0.3419 -2030,11,25,24,0.3125,0.8415,0.3272,0.3125 -2030,11,26,1,0.29966,0.8415,0.29966,0.28682 -2030,11,26,2,0.28682,0.6553,0.27398,0.26114 -2030,11,26,3,0.28682,0.6553,0.2483,0.2372 -2030,11,26,4,0.27398,0.6553,0.2261,0.215 -2030,11,26,5,0.26114,0.7484,0.2261,0.2039 -2030,11,26,6,0.2483,0.7484,0.2261,0.215 -2030,11,26,7,0.2483,0.7484,0.2261,0.2039 -2030,11,26,8,0.26114,0.8415,0.2261,0.2039 -2030,11,26,9,0.26114,0.8415,0.2261,0.215 -2030,11,26,10,0.2483,0.5622,0.2261,0.215 -2030,11,26,11,0.2483,0.5622,0.2261,0.2372 -2030,11,26,12,0.2372,0.58286,0.2372,0.2372 -2030,11,26,13,0.2372,0.60352,0.2483,0.2372 -2030,11,26,14,0.2483,0.62418,0.26114,0.27398 -2030,11,26,15,0.29966,0.62418,0.29966,0.3125 -2030,11,26,16,0.3419,0.62418,0.3272,0.3272 -2030,11,26,17,0.386,0.60352,0.3566,0.3566 -2030,11,26,18,0.41924,0.60352,0.386,0.386 -2030,11,26,19,0.43586,0.60352,0.40262,0.41924 -2030,11,26,20,0.40262,0.60352,0.41924,0.43586 -2030,11,26,21,0.386,0.60352,0.40262,0.43586 -2030,11,26,22,0.3566,0.5622,0.3713,0.386 -2030,11,26,23,0.3272,0.5622,0.3419,0.3419 -2030,11,26,24,0.3125,0.8415,0.3272,0.3125 -2030,11,27,1,0.29966,0.8415,0.29966,0.28682 -2030,11,27,2,0.28682,0.6553,0.27398,0.26114 -2030,11,27,3,0.28682,0.6553,0.2483,0.2372 -2030,11,27,4,0.27398,0.6553,0.2261,0.215 -2030,11,27,5,0.26114,0.7484,0.2261,0.2039 -2030,11,27,6,0.2483,0.7484,0.2261,0.215 -2030,11,27,7,0.2483,0.7484,0.2261,0.2039 -2030,11,27,8,0.26114,0.8415,0.2261,0.2039 -2030,11,27,9,0.26114,0.8415,0.2261,0.215 -2030,11,27,10,0.2483,0.5622,0.2261,0.215 -2030,11,27,11,0.2483,0.5622,0.2261,0.2372 -2030,11,27,12,0.2372,0.58286,0.2372,0.2372 -2030,11,27,13,0.2372,0.60352,0.2483,0.2372 -2030,11,27,14,0.2483,0.62418,0.26114,0.27398 -2030,11,27,15,0.29966,0.62418,0.29966,0.3125 -2030,11,27,16,0.3419,0.62418,0.3272,0.3272 -2030,11,27,17,0.386,0.60352,0.3566,0.3566 -2030,11,27,18,0.41924,0.60352,0.386,0.386 -2030,11,27,19,0.43586,0.60352,0.40262,0.41924 -2030,11,27,20,0.40262,0.60352,0.41924,0.43586 -2030,11,27,21,0.386,0.60352,0.40262,0.43586 -2030,11,27,22,0.3566,0.5622,0.3713,0.386 -2030,11,27,23,0.3272,0.5622,0.3419,0.3419 -2030,11,27,24,0.3125,0.8415,0.3272,0.3125 -2030,11,28,1,0.29966,0.8415,0.29966,0.28682 -2030,11,28,2,0.28682,0.6553,0.27398,0.26114 -2030,11,28,3,0.28682,0.6553,0.2483,0.2372 -2030,11,28,4,0.27398,0.6553,0.2261,0.215 -2030,11,28,5,0.26114,0.7484,0.2261,0.2039 -2030,11,28,6,0.2483,0.7484,0.2261,0.215 -2030,11,28,7,0.2483,0.7484,0.2261,0.2039 -2030,11,28,8,0.26114,0.8415,0.2261,0.2039 -2030,11,28,9,0.26114,0.8415,0.2261,0.215 -2030,11,28,10,0.2483,0.5622,0.2261,0.215 -2030,11,28,11,0.2483,0.5622,0.2261,0.2372 -2030,11,28,12,0.2372,0.58286,0.2372,0.2372 -2030,11,28,13,0.2372,0.60352,0.2483,0.2372 -2030,11,28,14,0.2483,0.62418,0.26114,0.27398 -2030,11,28,15,0.29966,0.62418,0.29966,0.3125 -2030,11,28,16,0.3419,0.62418,0.3272,0.3272 -2030,11,28,17,0.386,0.60352,0.3566,0.3566 -2030,11,28,18,0.41924,0.60352,0.386,0.386 -2030,11,28,19,0.43586,0.60352,0.40262,0.41924 -2030,11,28,20,0.40262,0.60352,0.41924,0.43586 -2030,11,28,21,0.386,0.60352,0.40262,0.43586 -2030,11,28,22,0.3566,0.5622,0.3713,0.386 -2030,11,28,23,0.3272,0.5622,0.3419,0.3419 -2030,11,28,24,0.3125,0.8415,0.3272,0.3125 -2030,11,29,1,0.29966,0.8415,0.29966,0.28682 -2030,11,29,2,0.28682,0.6553,0.27398,0.26114 -2030,11,29,3,0.28682,0.6553,0.2483,0.2372 -2030,11,29,4,0.27398,0.6553,0.2261,0.215 -2030,11,29,5,0.26114,0.7484,0.2261,0.2039 -2030,11,29,6,0.2483,0.7484,0.2261,0.215 -2030,11,29,7,0.2483,0.7484,0.2261,0.2039 -2030,11,29,8,0.26114,0.8415,0.2261,0.2039 -2030,11,29,9,0.26114,0.8415,0.2261,0.215 -2030,11,29,10,0.2483,0.5622,0.2261,0.215 -2030,11,29,11,0.2483,0.5622,0.2261,0.2372 -2030,11,29,12,0.2372,0.58286,0.2372,0.2372 -2030,11,29,13,0.2372,0.60352,0.2483,0.2372 -2030,11,29,14,0.2483,0.62418,0.26114,0.27398 -2030,11,29,15,0.29966,0.62418,0.29966,0.3125 -2030,11,29,16,0.3419,0.62418,0.3272,0.3272 -2030,11,29,17,0.386,0.60352,0.3566,0.3566 -2030,11,29,18,0.41924,0.60352,0.386,0.386 -2030,11,29,19,0.43586,0.60352,0.40262,0.41924 -2030,11,29,20,0.40262,0.60352,0.41924,0.43586 -2030,11,29,21,0.386,0.60352,0.40262,0.43586 -2030,11,29,22,0.3566,0.5622,0.3713,0.386 -2030,11,29,23,0.3272,0.5622,0.3419,0.3419 -2030,11,29,24,0.3125,0.8415,0.3272,0.3125 -2030,11,30,1,0.29966,0.8415,0.29966,0.28682 -2030,11,30,2,0.28682,0.6553,0.27398,0.26114 -2030,11,30,3,0.28682,0.6553,0.2483,0.2372 -2030,11,30,4,0.27398,0.6553,0.2261,0.215 -2030,11,30,5,0.26114,0.7484,0.2261,0.2039 -2030,11,30,6,0.2483,0.7484,0.2261,0.215 -2030,11,30,7,0.2483,0.7484,0.2261,0.2039 -2030,11,30,8,0.26114,0.8415,0.2261,0.2039 -2030,11,30,9,0.26114,0.8415,0.2261,0.215 -2030,11,30,10,0.2483,0.5622,0.2261,0.215 -2030,11,30,11,0.2483,0.5622,0.2261,0.2372 -2030,11,30,12,0.2372,0.58286,0.2372,0.2372 -2030,11,30,13,0.2372,0.60352,0.2483,0.2372 -2030,11,30,14,0.2483,0.62418,0.26114,0.27398 -2030,11,30,15,0.29966,0.62418,0.29966,0.3125 -2030,11,30,16,0.3419,0.62418,0.3272,0.3272 -2030,11,30,17,0.386,0.60352,0.3566,0.3566 -2030,11,30,18,0.41924,0.60352,0.386,0.386 -2030,11,30,19,0.43586,0.60352,0.40262,0.41924 -2030,11,30,20,0.40262,0.60352,0.41924,0.43586 -2030,11,30,21,0.386,0.60352,0.40262,0.43586 -2030,11,30,22,0.3566,0.5622,0.3713,0.386 -2030,11,30,23,0.3272,0.5622,0.3419,0.3419 -2030,11,30,24,0.3125,0.8415,0.3272,0.3125 -2030,12,1,1,0.28682,0.80052,0.26114,0.2372 -2030,12,1,2,0.28682,0.7792,0.2483,0.215 -2030,12,1,3,0.28682,0.80052,0.2372,0.215 -2030,12,1,4,0.27398,0.80052,0.2372,0.215 -2030,12,1,5,0.28682,0.80052,0.2372,0.215 -2030,12,1,6,0.27398,0.75646,0.2372,0.215 -2030,12,1,7,0.28682,0.75646,0.2372,0.215 -2030,12,1,8,0.27398,0.7792,0.2372,0.2261 -2030,12,1,9,0.27398,0.80052,0.2261,0.2261 -2030,12,1,10,0.26114,0.75646,0.2261,0.215 -2030,12,1,11,0.2483,0.7792,0.2261,0.215 -2030,12,1,12,0.2372,0.80052,0.215,0.1928 -2030,12,1,13,0.2261,0.82184,0.2261,0.1928 -2030,12,1,14,0.2372,0.84316,0.2372,0.215 -2030,12,1,15,0.26114,0.86448,0.2372,0.2261 -2030,12,1,16,0.29966,0.86448,0.2372,0.2372 -2030,12,1,17,0.3272,0.90816,0.27398,0.26114 -2030,12,1,18,0.3419,0.89698,0.3125,0.29966 -2030,12,1,19,0.3419,0.89698,0.3272,0.3272 -2030,12,1,20,0.3419,0.89698,0.3272,0.3419 -2030,12,1,21,0.3419,0.86448,0.3272,0.3272 -2030,12,1,22,0.3272,0.84316,0.3125,0.28682 -2030,12,1,23,0.3125,0.84316,0.27398,0.26114 -2030,12,1,24,0.29966,0.84316,0.26114,0.2483 -2030,12,2,1,0.28682,0.80052,0.26114,0.2372 -2030,12,2,2,0.28682,0.7792,0.2483,0.215 -2030,12,2,3,0.28682,0.80052,0.2372,0.215 -2030,12,2,4,0.27398,0.80052,0.2372,0.215 -2030,12,2,5,0.28682,0.80052,0.2372,0.215 -2030,12,2,6,0.27398,0.75646,0.2372,0.215 -2030,12,2,7,0.28682,0.75646,0.2372,0.215 -2030,12,2,8,0.27398,0.7792,0.2372,0.2261 -2030,12,2,9,0.27398,0.80052,0.2261,0.2261 -2030,12,2,10,0.26114,0.75646,0.2261,0.215 -2030,12,2,11,0.2483,0.7792,0.2261,0.215 -2030,12,2,12,0.2372,0.80052,0.215,0.1928 -2030,12,2,13,0.2261,0.82184,0.2261,0.1928 -2030,12,2,14,0.2372,0.84316,0.2372,0.215 -2030,12,2,15,0.26114,0.86448,0.2372,0.2261 -2030,12,2,16,0.29966,0.86448,0.2372,0.2372 -2030,12,2,17,0.3272,0.90816,0.27398,0.26114 -2030,12,2,18,0.3419,0.89698,0.3125,0.29966 -2030,12,2,19,0.3419,0.89698,0.3272,0.3272 -2030,12,2,20,0.3419,0.89698,0.3272,0.3419 -2030,12,2,21,0.3419,0.86448,0.3272,0.3272 -2030,12,2,22,0.3272,0.84316,0.3125,0.28682 -2030,12,2,23,0.3125,0.84316,0.27398,0.26114 -2030,12,2,24,0.29966,0.84316,0.26114,0.2483 -2030,12,3,1,0.28682,0.80052,0.26114,0.2372 -2030,12,3,2,0.28682,0.7792,0.2483,0.215 -2030,12,3,3,0.28682,0.80052,0.2372,0.215 -2030,12,3,4,0.27398,0.80052,0.2372,0.215 -2030,12,3,5,0.28682,0.80052,0.2372,0.215 -2030,12,3,6,0.27398,0.75646,0.2372,0.215 -2030,12,3,7,0.28682,0.75646,0.2372,0.215 -2030,12,3,8,0.27398,0.7792,0.2372,0.2261 -2030,12,3,9,0.27398,0.80052,0.2261,0.2261 -2030,12,3,10,0.26114,0.75646,0.2261,0.215 -2030,12,3,11,0.2483,0.7792,0.2261,0.215 -2030,12,3,12,0.2372,0.80052,0.215,0.1928 -2030,12,3,13,0.2261,0.82184,0.2261,0.1928 -2030,12,3,14,0.2372,0.84316,0.2372,0.215 -2030,12,3,15,0.26114,0.86448,0.2372,0.2261 -2030,12,3,16,0.29966,0.86448,0.2372,0.2372 -2030,12,3,17,0.3272,0.90816,0.27398,0.26114 -2030,12,3,18,0.3419,0.89698,0.3125,0.29966 -2030,12,3,19,0.3419,0.89698,0.3272,0.3272 -2030,12,3,20,0.3419,0.89698,0.3272,0.3419 -2030,12,3,21,0.3419,0.86448,0.3272,0.3272 -2030,12,3,22,0.3272,0.84316,0.3125,0.28682 -2030,12,3,23,0.3125,0.84316,0.27398,0.26114 -2030,12,3,24,0.29966,0.84316,0.26114,0.2483 -2030,12,4,1,0.28682,0.80052,0.26114,0.2372 -2030,12,4,2,0.28682,0.7792,0.2483,0.215 -2030,12,4,3,0.28682,0.80052,0.2372,0.215 -2030,12,4,4,0.27398,0.80052,0.2372,0.215 -2030,12,4,5,0.28682,0.80052,0.2372,0.215 -2030,12,4,6,0.27398,0.75646,0.2372,0.215 -2030,12,4,7,0.28682,0.75646,0.2372,0.215 -2030,12,4,8,0.27398,0.7792,0.2372,0.2261 -2030,12,4,9,0.27398,0.80052,0.2261,0.2261 -2030,12,4,10,0.26114,0.75646,0.2261,0.215 -2030,12,4,11,0.2483,0.7792,0.2261,0.215 -2030,12,4,12,0.2372,0.80052,0.215,0.1928 -2030,12,4,13,0.2261,0.82184,0.2261,0.1928 -2030,12,4,14,0.2372,0.84316,0.2372,0.215 -2030,12,4,15,0.26114,0.86448,0.2372,0.2261 -2030,12,4,16,0.29966,0.86448,0.2372,0.2372 -2030,12,4,17,0.3272,0.90816,0.27398,0.26114 -2030,12,4,18,0.3419,0.89698,0.3125,0.29966 -2030,12,4,19,0.3419,0.89698,0.3272,0.3272 -2030,12,4,20,0.3419,0.89698,0.3272,0.3419 -2030,12,4,21,0.3419,0.86448,0.3272,0.3272 -2030,12,4,22,0.3272,0.84316,0.3125,0.28682 -2030,12,4,23,0.3125,0.84316,0.27398,0.26114 -2030,12,4,24,0.29966,0.84316,0.26114,0.2483 -2030,12,5,1,0.28682,0.80052,0.26114,0.2372 -2030,12,5,2,0.28682,0.7792,0.2483,0.215 -2030,12,5,3,0.28682,0.80052,0.2372,0.215 -2030,12,5,4,0.27398,0.80052,0.2372,0.215 -2030,12,5,5,0.28682,0.80052,0.2372,0.215 -2030,12,5,6,0.27398,0.75646,0.2372,0.215 -2030,12,5,7,0.28682,0.75646,0.2372,0.215 -2030,12,5,8,0.27398,0.7792,0.2372,0.2261 -2030,12,5,9,0.27398,0.80052,0.2261,0.2261 -2030,12,5,10,0.26114,0.75646,0.2261,0.215 -2030,12,5,11,0.2483,0.7792,0.2261,0.215 -2030,12,5,12,0.2372,0.80052,0.215,0.1928 -2030,12,5,13,0.2261,0.82184,0.2261,0.1928 -2030,12,5,14,0.2372,0.84316,0.2372,0.215 -2030,12,5,15,0.26114,0.86448,0.2372,0.2261 -2030,12,5,16,0.29966,0.86448,0.2372,0.2372 -2030,12,5,17,0.3272,0.90816,0.27398,0.26114 -2030,12,5,18,0.3419,0.89698,0.3125,0.29966 -2030,12,5,19,0.3419,0.89698,0.3272,0.3272 -2030,12,5,20,0.3419,0.89698,0.3272,0.3419 -2030,12,5,21,0.3419,0.86448,0.3272,0.3272 -2030,12,5,22,0.3272,0.84316,0.3125,0.28682 -2030,12,5,23,0.3125,0.84316,0.27398,0.26114 -2030,12,5,24,0.29966,0.84316,0.26114,0.2483 -2030,12,6,1,0.28682,0.80052,0.26114,0.2372 -2030,12,6,2,0.28682,0.7792,0.2483,0.215 -2030,12,6,3,0.28682,0.80052,0.2372,0.215 -2030,12,6,4,0.27398,0.80052,0.2372,0.215 -2030,12,6,5,0.28682,0.80052,0.2372,0.215 -2030,12,6,6,0.27398,0.75646,0.2372,0.215 -2030,12,6,7,0.28682,0.75646,0.2372,0.215 -2030,12,6,8,0.27398,0.7792,0.2372,0.2261 -2030,12,6,9,0.27398,0.80052,0.2261,0.2261 -2030,12,6,10,0.26114,0.75646,0.2261,0.215 -2030,12,6,11,0.2483,0.7792,0.2261,0.215 -2030,12,6,12,0.2372,0.80052,0.215,0.1928 -2030,12,6,13,0.2261,0.82184,0.2261,0.1928 -2030,12,6,14,0.2372,0.84316,0.2372,0.215 -2030,12,6,15,0.26114,0.86448,0.2372,0.2261 -2030,12,6,16,0.29966,0.86448,0.2372,0.2372 -2030,12,6,17,0.3272,0.90816,0.27398,0.26114 -2030,12,6,18,0.3419,0.89698,0.3125,0.29966 -2030,12,6,19,0.3419,0.89698,0.3272,0.3272 -2030,12,6,20,0.3419,0.89698,0.3272,0.3419 -2030,12,6,21,0.3419,0.86448,0.3272,0.3272 -2030,12,6,22,0.3272,0.84316,0.3125,0.28682 -2030,12,6,23,0.3125,0.84316,0.27398,0.26114 -2030,12,6,24,0.29966,0.84316,0.26114,0.2483 -2030,12,7,1,0.28682,0.80052,0.26114,0.2372 -2030,12,7,2,0.28682,0.7792,0.2483,0.215 -2030,12,7,3,0.28682,0.80052,0.2372,0.215 -2030,12,7,4,0.27398,0.80052,0.2372,0.215 -2030,12,7,5,0.28682,0.80052,0.2372,0.215 -2030,12,7,6,0.27398,0.75646,0.2372,0.215 -2030,12,7,7,0.28682,0.75646,0.2372,0.215 -2030,12,7,8,0.27398,0.7792,0.2372,0.2261 -2030,12,7,9,0.27398,0.80052,0.2261,0.2261 -2030,12,7,10,0.26114,0.75646,0.2261,0.215 -2030,12,7,11,0.2483,0.7792,0.2261,0.215 -2030,12,7,12,0.2372,0.80052,0.215,0.1928 -2030,12,7,13,0.2261,0.82184,0.2261,0.1928 -2030,12,7,14,0.2372,0.84316,0.2372,0.215 -2030,12,7,15,0.26114,0.86448,0.2372,0.2261 -2030,12,7,16,0.29966,0.86448,0.2372,0.2372 -2030,12,7,17,0.3272,0.90816,0.27398,0.26114 -2030,12,7,18,0.3419,0.89698,0.3125,0.29966 -2030,12,7,19,0.3419,0.89698,0.3272,0.3272 -2030,12,7,20,0.3419,0.89698,0.3272,0.3419 -2030,12,7,21,0.3419,0.86448,0.3272,0.3272 -2030,12,7,22,0.3272,0.84316,0.3125,0.28682 -2030,12,7,23,0.3125,0.84316,0.27398,0.26114 -2030,12,7,24,0.29966,0.84316,0.26114,0.2483 -2030,12,8,1,0.28682,0.80052,0.26114,0.2372 -2030,12,8,2,0.28682,0.7792,0.2483,0.215 -2030,12,8,3,0.28682,0.80052,0.2372,0.215 -2030,12,8,4,0.27398,0.80052,0.2372,0.215 -2030,12,8,5,0.28682,0.80052,0.2372,0.215 -2030,12,8,6,0.27398,0.75646,0.2372,0.215 -2030,12,8,7,0.28682,0.75646,0.2372,0.215 -2030,12,8,8,0.27398,0.7792,0.2372,0.2261 -2030,12,8,9,0.27398,0.80052,0.2261,0.2261 -2030,12,8,10,0.26114,0.75646,0.2261,0.215 -2030,12,8,11,0.2483,0.7792,0.2261,0.215 -2030,12,8,12,0.2372,0.80052,0.215,0.1928 -2030,12,8,13,0.2261,0.82184,0.2261,0.1928 -2030,12,8,14,0.2372,0.84316,0.2372,0.215 -2030,12,8,15,0.26114,0.86448,0.2372,0.2261 -2030,12,8,16,0.29966,0.86448,0.2372,0.2372 -2030,12,8,17,0.3272,0.90816,0.27398,0.26114 -2030,12,8,18,0.3419,0.89698,0.3125,0.29966 -2030,12,8,19,0.3419,0.89698,0.3272,0.3272 -2030,12,8,20,0.3419,0.89698,0.3272,0.3419 -2030,12,8,21,0.3419,0.86448,0.3272,0.3272 -2030,12,8,22,0.3272,0.84316,0.3125,0.28682 -2030,12,8,23,0.3125,0.84316,0.27398,0.26114 -2030,12,8,24,0.29966,0.84316,0.26114,0.2483 -2030,12,9,1,0.28682,0.80052,0.26114,0.2372 -2030,12,9,2,0.28682,0.7792,0.2483,0.215 -2030,12,9,3,0.28682,0.80052,0.2372,0.215 -2030,12,9,4,0.27398,0.80052,0.2372,0.215 -2030,12,9,5,0.28682,0.80052,0.2372,0.215 -2030,12,9,6,0.27398,0.75646,0.2372,0.215 -2030,12,9,7,0.28682,0.75646,0.2372,0.215 -2030,12,9,8,0.27398,0.7792,0.2372,0.2261 -2030,12,9,9,0.27398,0.80052,0.2261,0.2261 -2030,12,9,10,0.26114,0.75646,0.2261,0.215 -2030,12,9,11,0.2483,0.7792,0.2261,0.215 -2030,12,9,12,0.2372,0.80052,0.215,0.1928 -2030,12,9,13,0.2261,0.82184,0.2261,0.1928 -2030,12,9,14,0.2372,0.84316,0.2372,0.215 -2030,12,9,15,0.26114,0.86448,0.2372,0.2261 -2030,12,9,16,0.29966,0.86448,0.2372,0.2372 -2030,12,9,17,0.3272,0.90816,0.27398,0.26114 -2030,12,9,18,0.3419,0.89698,0.3125,0.29966 -2030,12,9,19,0.3419,0.89698,0.3272,0.3272 -2030,12,9,20,0.3419,0.89698,0.3272,0.3419 -2030,12,9,21,0.3419,0.86448,0.3272,0.3272 -2030,12,9,22,0.3272,0.84316,0.3125,0.28682 -2030,12,9,23,0.3125,0.84316,0.27398,0.26114 -2030,12,9,24,0.29966,0.84316,0.26114,0.2483 -2030,12,10,1,0.28682,0.80052,0.26114,0.2372 -2030,12,10,2,0.28682,0.7792,0.2483,0.215 -2030,12,10,3,0.28682,0.80052,0.2372,0.215 -2030,12,10,4,0.27398,0.80052,0.2372,0.215 -2030,12,10,5,0.28682,0.80052,0.2372,0.215 -2030,12,10,6,0.27398,0.75646,0.2372,0.215 -2030,12,10,7,0.28682,0.75646,0.2372,0.215 -2030,12,10,8,0.27398,0.7792,0.2372,0.2261 -2030,12,10,9,0.27398,0.80052,0.2261,0.2261 -2030,12,10,10,0.26114,0.75646,0.2261,0.215 -2030,12,10,11,0.2483,0.7792,0.2261,0.215 -2030,12,10,12,0.2372,0.80052,0.215,0.1928 -2030,12,10,13,0.2261,0.82184,0.2261,0.1928 -2030,12,10,14,0.2372,0.84316,0.2372,0.215 -2030,12,10,15,0.26114,0.86448,0.2372,0.2261 -2030,12,10,16,0.29966,0.86448,0.2372,0.2372 -2030,12,10,17,0.3272,0.90816,0.27398,0.26114 -2030,12,10,18,0.3419,0.89698,0.3125,0.29966 -2030,12,10,19,0.3419,0.89698,0.3272,0.3272 -2030,12,10,20,0.3419,0.89698,0.3272,0.3419 -2030,12,10,21,0.3419,0.86448,0.3272,0.3272 -2030,12,10,22,0.3272,0.84316,0.3125,0.28682 -2030,12,10,23,0.3125,0.84316,0.27398,0.26114 -2030,12,10,24,0.29966,0.84316,0.26114,0.2483 -2030,12,11,1,0.28682,0.80052,0.26114,0.2372 -2030,12,11,2,0.28682,0.7792,0.2483,0.215 -2030,12,11,3,0.28682,0.80052,0.2372,0.215 -2030,12,11,4,0.27398,0.80052,0.2372,0.215 -2030,12,11,5,0.28682,0.80052,0.2372,0.215 -2030,12,11,6,0.27398,0.75646,0.2372,0.215 -2030,12,11,7,0.28682,0.75646,0.2372,0.215 -2030,12,11,8,0.27398,0.7792,0.2372,0.2261 -2030,12,11,9,0.27398,0.80052,0.2261,0.2261 -2030,12,11,10,0.26114,0.75646,0.2261,0.215 -2030,12,11,11,0.2483,0.7792,0.2261,0.215 -2030,12,11,12,0.2372,0.80052,0.215,0.1928 -2030,12,11,13,0.2261,0.82184,0.2261,0.1928 -2030,12,11,14,0.2372,0.84316,0.2372,0.215 -2030,12,11,15,0.26114,0.86448,0.2372,0.2261 -2030,12,11,16,0.29966,0.86448,0.2372,0.2372 -2030,12,11,17,0.3272,0.90816,0.27398,0.26114 -2030,12,11,18,0.3419,0.89698,0.3125,0.29966 -2030,12,11,19,0.3419,0.89698,0.3272,0.3272 -2030,12,11,20,0.3419,0.89698,0.3272,0.3419 -2030,12,11,21,0.3419,0.86448,0.3272,0.3272 -2030,12,11,22,0.3272,0.84316,0.3125,0.28682 -2030,12,11,23,0.3125,0.84316,0.27398,0.26114 -2030,12,11,24,0.29966,0.84316,0.26114,0.2483 -2030,12,12,1,0.28682,0.80052,0.26114,0.2372 -2030,12,12,2,0.28682,0.7792,0.2483,0.215 -2030,12,12,3,0.28682,0.80052,0.2372,0.215 -2030,12,12,4,0.27398,0.80052,0.2372,0.215 -2030,12,12,5,0.28682,0.80052,0.2372,0.215 -2030,12,12,6,0.27398,0.75646,0.2372,0.215 -2030,12,12,7,0.28682,0.75646,0.2372,0.215 -2030,12,12,8,0.27398,0.7792,0.2372,0.2261 -2030,12,12,9,0.27398,0.80052,0.2261,0.2261 -2030,12,12,10,0.26114,0.75646,0.2261,0.215 -2030,12,12,11,0.2483,0.7792,0.2261,0.215 -2030,12,12,12,0.2372,0.80052,0.215,0.1928 -2030,12,12,13,0.2261,0.82184,0.2261,0.1928 -2030,12,12,14,0.2372,0.84316,0.2372,0.215 -2030,12,12,15,0.26114,0.86448,0.2372,0.2261 -2030,12,12,16,0.29966,0.86448,0.2372,0.2372 -2030,12,12,17,0.3272,0.90816,0.27398,0.26114 -2030,12,12,18,0.3419,0.89698,0.3125,0.29966 -2030,12,12,19,0.3419,0.89698,0.3272,0.3272 -2030,12,12,20,0.3419,0.89698,0.3272,0.3419 -2030,12,12,21,0.3419,0.86448,0.3272,0.3272 -2030,12,12,22,0.3272,0.84316,0.3125,0.28682 -2030,12,12,23,0.3125,0.84316,0.27398,0.26114 -2030,12,12,24,0.29966,0.84316,0.26114,0.2483 -2030,12,13,1,0.28682,0.80052,0.26114,0.2372 -2030,12,13,2,0.28682,0.7792,0.2483,0.215 -2030,12,13,3,0.28682,0.80052,0.2372,0.215 -2030,12,13,4,0.27398,0.80052,0.2372,0.215 -2030,12,13,5,0.28682,0.80052,0.2372,0.215 -2030,12,13,6,0.27398,0.75646,0.2372,0.215 -2030,12,13,7,0.28682,0.75646,0.2372,0.215 -2030,12,13,8,0.27398,0.7792,0.2372,0.2261 -2030,12,13,9,0.27398,0.80052,0.2261,0.2261 -2030,12,13,10,0.26114,0.75646,0.2261,0.215 -2030,12,13,11,0.2483,0.7792,0.2261,0.215 -2030,12,13,12,0.2372,0.80052,0.215,0.1928 -2030,12,13,13,0.2261,0.82184,0.2261,0.1928 -2030,12,13,14,0.2372,0.84316,0.2372,0.215 -2030,12,13,15,0.26114,0.86448,0.2372,0.2261 -2030,12,13,16,0.29966,0.86448,0.2372,0.2372 -2030,12,13,17,0.3272,0.90816,0.27398,0.26114 -2030,12,13,18,0.3419,0.89698,0.3125,0.29966 -2030,12,13,19,0.3419,0.89698,0.3272,0.3272 -2030,12,13,20,0.3419,0.89698,0.3272,0.3419 -2030,12,13,21,0.3419,0.86448,0.3272,0.3272 -2030,12,13,22,0.3272,0.84316,0.3125,0.28682 -2030,12,13,23,0.3125,0.84316,0.27398,0.26114 -2030,12,13,24,0.29966,0.84316,0.26114,0.2483 -2030,12,14,1,0.28682,0.80052,0.26114,0.2372 -2030,12,14,2,0.28682,0.7792,0.2483,0.215 -2030,12,14,3,0.28682,0.80052,0.2372,0.215 -2030,12,14,4,0.27398,0.80052,0.2372,0.215 -2030,12,14,5,0.28682,0.80052,0.2372,0.215 -2030,12,14,6,0.27398,0.75646,0.2372,0.215 -2030,12,14,7,0.28682,0.75646,0.2372,0.215 -2030,12,14,8,0.27398,0.7792,0.2372,0.2261 -2030,12,14,9,0.27398,0.80052,0.2261,0.2261 -2030,12,14,10,0.26114,0.75646,0.2261,0.215 -2030,12,14,11,0.2483,0.7792,0.2261,0.215 -2030,12,14,12,0.2372,0.80052,0.215,0.1928 -2030,12,14,13,0.2261,0.82184,0.2261,0.1928 -2030,12,14,14,0.2372,0.84316,0.2372,0.215 -2030,12,14,15,0.26114,0.86448,0.2372,0.2261 -2030,12,14,16,0.29966,0.86448,0.2372,0.2372 -2030,12,14,17,0.3272,0.90816,0.27398,0.26114 -2030,12,14,18,0.3419,0.89698,0.3125,0.29966 -2030,12,14,19,0.3419,0.89698,0.3272,0.3272 -2030,12,14,20,0.3419,0.89698,0.3272,0.3419 -2030,12,14,21,0.3419,0.86448,0.3272,0.3272 -2030,12,14,22,0.3272,0.84316,0.3125,0.28682 -2030,12,14,23,0.3125,0.84316,0.27398,0.26114 -2030,12,14,24,0.29966,0.84316,0.26114,0.2483 -2030,12,15,1,0.28682,0.80052,0.26114,0.2372 -2030,12,15,2,0.28682,0.7792,0.2483,0.215 -2030,12,15,3,0.28682,0.80052,0.2372,0.215 -2030,12,15,4,0.27398,0.80052,0.2372,0.215 -2030,12,15,5,0.28682,0.80052,0.2372,0.215 -2030,12,15,6,0.27398,0.75646,0.2372,0.215 -2030,12,15,7,0.28682,0.75646,0.2372,0.215 -2030,12,15,8,0.27398,0.7792,0.2372,0.2261 -2030,12,15,9,0.27398,0.80052,0.2261,0.2261 -2030,12,15,10,0.26114,0.75646,0.2261,0.215 -2030,12,15,11,0.2483,0.7792,0.2261,0.215 -2030,12,15,12,0.2372,0.80052,0.215,0.1928 -2030,12,15,13,0.2261,0.82184,0.2261,0.1928 -2030,12,15,14,0.2372,0.84316,0.2372,0.215 -2030,12,15,15,0.26114,0.86448,0.2372,0.2261 -2030,12,15,16,0.29966,0.86448,0.2372,0.2372 -2030,12,15,17,0.3272,0.90816,0.27398,0.26114 -2030,12,15,18,0.3419,0.89698,0.3125,0.29966 -2030,12,15,19,0.3419,0.89698,0.3272,0.3272 -2030,12,15,20,0.3419,0.89698,0.3272,0.3419 -2030,12,15,21,0.3419,0.86448,0.3272,0.3272 -2030,12,15,22,0.3272,0.84316,0.3125,0.28682 -2030,12,15,23,0.3125,0.84316,0.27398,0.26114 -2030,12,15,24,0.29966,0.84316,0.26114,0.2483 -2030,12,16,1,0.28682,0.80052,0.26114,0.2372 -2030,12,16,2,0.28682,0.7792,0.2483,0.215 -2030,12,16,3,0.28682,0.80052,0.2372,0.215 -2030,12,16,4,0.27398,0.80052,0.2372,0.215 -2030,12,16,5,0.28682,0.80052,0.2372,0.215 -2030,12,16,6,0.27398,0.75646,0.2372,0.215 -2030,12,16,7,0.28682,0.75646,0.2372,0.215 -2030,12,16,8,0.27398,0.7792,0.2372,0.2261 -2030,12,16,9,0.27398,0.80052,0.2261,0.2261 -2030,12,16,10,0.26114,0.75646,0.2261,0.215 -2030,12,16,11,0.2483,0.7792,0.2261,0.215 -2030,12,16,12,0.2372,0.80052,0.215,0.1928 -2030,12,16,13,0.2261,0.82184,0.2261,0.1928 -2030,12,16,14,0.2372,0.84316,0.2372,0.215 -2030,12,16,15,0.26114,0.86448,0.2372,0.2261 -2030,12,16,16,0.29966,0.86448,0.2372,0.2372 -2030,12,16,17,0.3272,0.90816,0.27398,0.26114 -2030,12,16,18,0.3419,0.89698,0.3125,0.29966 -2030,12,16,19,0.3419,0.89698,0.3272,0.3272 -2030,12,16,20,0.3419,0.89698,0.3272,0.3419 -2030,12,16,21,0.3419,0.86448,0.3272,0.3272 -2030,12,16,22,0.3272,0.84316,0.3125,0.28682 -2030,12,16,23,0.3125,0.84316,0.27398,0.26114 -2030,12,16,24,0.29966,0.84316,0.26114,0.2483 -2030,12,17,1,0.28682,0.80052,0.26114,0.2372 -2030,12,17,2,0.28682,0.7792,0.2483,0.215 -2030,12,17,3,0.28682,0.80052,0.2372,0.215 -2030,12,17,4,0.27398,0.80052,0.2372,0.215 -2030,12,17,5,0.28682,0.80052,0.2372,0.215 -2030,12,17,6,0.27398,0.75646,0.2372,0.215 -2030,12,17,7,0.28682,0.75646,0.2372,0.215 -2030,12,17,8,0.27398,0.7792,0.2372,0.2261 -2030,12,17,9,0.27398,0.80052,0.2261,0.2261 -2030,12,17,10,0.26114,0.75646,0.2261,0.215 -2030,12,17,11,0.2483,0.7792,0.2261,0.215 -2030,12,17,12,0.2372,0.80052,0.215,0.1928 -2030,12,17,13,0.2261,0.82184,0.2261,0.1928 -2030,12,17,14,0.2372,0.84316,0.2372,0.215 -2030,12,17,15,0.26114,0.86448,0.2372,0.2261 -2030,12,17,16,0.29966,0.86448,0.2372,0.2372 -2030,12,17,17,0.3272,0.90816,0.27398,0.26114 -2030,12,17,18,0.3419,0.89698,0.3125,0.29966 -2030,12,17,19,0.3419,0.89698,0.3272,0.3272 -2030,12,17,20,0.3419,0.89698,0.3272,0.3419 -2030,12,17,21,0.3419,0.86448,0.3272,0.3272 -2030,12,17,22,0.3272,0.84316,0.3125,0.28682 -2030,12,17,23,0.3125,0.84316,0.27398,0.26114 -2030,12,17,24,0.29966,0.84316,0.26114,0.2483 -2030,12,18,1,0.28682,0.80052,0.26114,0.2372 -2030,12,18,2,0.28682,0.7792,0.2483,0.215 -2030,12,18,3,0.28682,0.80052,0.2372,0.215 -2030,12,18,4,0.27398,0.80052,0.2372,0.215 -2030,12,18,5,0.28682,0.80052,0.2372,0.215 -2030,12,18,6,0.27398,0.75646,0.2372,0.215 -2030,12,18,7,0.28682,0.75646,0.2372,0.215 -2030,12,18,8,0.27398,0.7792,0.2372,0.2261 -2030,12,18,9,0.27398,0.80052,0.2261,0.2261 -2030,12,18,10,0.26114,0.75646,0.2261,0.215 -2030,12,18,11,0.2483,0.7792,0.2261,0.215 -2030,12,18,12,0.2372,0.80052,0.215,0.1928 -2030,12,18,13,0.2261,0.82184,0.2261,0.1928 -2030,12,18,14,0.2372,0.84316,0.2372,0.215 -2030,12,18,15,0.26114,0.86448,0.2372,0.2261 -2030,12,18,16,0.29966,0.86448,0.2372,0.2372 -2030,12,18,17,0.3272,0.90816,0.27398,0.26114 -2030,12,18,18,0.3419,0.89698,0.3125,0.29966 -2030,12,18,19,0.3419,0.89698,0.3272,0.3272 -2030,12,18,20,0.3419,0.89698,0.3272,0.3419 -2030,12,18,21,0.3419,0.86448,0.3272,0.3272 -2030,12,18,22,0.3272,0.84316,0.3125,0.28682 -2030,12,18,23,0.3125,0.84316,0.27398,0.26114 -2030,12,18,24,0.29966,0.84316,0.26114,0.2483 -2030,12,19,1,0.28682,0.80052,0.26114,0.2372 -2030,12,19,2,0.28682,0.7792,0.2483,0.215 -2030,12,19,3,0.28682,0.80052,0.2372,0.215 -2030,12,19,4,0.27398,0.80052,0.2372,0.215 -2030,12,19,5,0.28682,0.80052,0.2372,0.215 -2030,12,19,6,0.27398,0.75646,0.2372,0.215 -2030,12,19,7,0.28682,0.75646,0.2372,0.215 -2030,12,19,8,0.27398,0.7792,0.2372,0.2261 -2030,12,19,9,0.27398,0.80052,0.2261,0.2261 -2030,12,19,10,0.26114,0.75646,0.2261,0.215 -2030,12,19,11,0.2483,0.7792,0.2261,0.215 -2030,12,19,12,0.2372,0.80052,0.215,0.1928 -2030,12,19,13,0.2261,0.82184,0.2261,0.1928 -2030,12,19,14,0.2372,0.84316,0.2372,0.215 -2030,12,19,15,0.26114,0.86448,0.2372,0.2261 -2030,12,19,16,0.29966,0.86448,0.2372,0.2372 -2030,12,19,17,0.3272,0.90816,0.27398,0.26114 -2030,12,19,18,0.3419,0.89698,0.3125,0.29966 -2030,12,19,19,0.3419,0.89698,0.3272,0.3272 -2030,12,19,20,0.3419,0.89698,0.3272,0.3419 -2030,12,19,21,0.3419,0.86448,0.3272,0.3272 -2030,12,19,22,0.3272,0.84316,0.3125,0.28682 -2030,12,19,23,0.3125,0.84316,0.27398,0.26114 -2030,12,19,24,0.29966,0.84316,0.26114,0.2483 -2030,12,20,1,0.28682,0.80052,0.26114,0.2372 -2030,12,20,2,0.28682,0.7792,0.2483,0.215 -2030,12,20,3,0.28682,0.80052,0.2372,0.215 -2030,12,20,4,0.27398,0.80052,0.2372,0.215 -2030,12,20,5,0.28682,0.80052,0.2372,0.215 -2030,12,20,6,0.27398,0.75646,0.2372,0.215 -2030,12,20,7,0.28682,0.75646,0.2372,0.215 -2030,12,20,8,0.27398,0.7792,0.2372,0.2261 -2030,12,20,9,0.27398,0.80052,0.2261,0.2261 -2030,12,20,10,0.26114,0.75646,0.2261,0.215 -2030,12,20,11,0.2483,0.7792,0.2261,0.215 -2030,12,20,12,0.2372,0.80052,0.215,0.1928 -2030,12,20,13,0.2261,0.82184,0.2261,0.1928 -2030,12,20,14,0.2372,0.84316,0.2372,0.215 -2030,12,20,15,0.26114,0.86448,0.2372,0.2261 -2030,12,20,16,0.29966,0.86448,0.2372,0.2372 -2030,12,20,17,0.3272,0.90816,0.27398,0.26114 -2030,12,20,18,0.3419,0.89698,0.3125,0.29966 -2030,12,20,19,0.3419,0.89698,0.3272,0.3272 -2030,12,20,20,0.3419,0.89698,0.3272,0.3419 -2030,12,20,21,0.3419,0.86448,0.3272,0.3272 -2030,12,20,22,0.3272,0.84316,0.3125,0.28682 -2030,12,20,23,0.3125,0.84316,0.27398,0.26114 -2030,12,20,24,0.29966,0.84316,0.26114,0.2483 -2030,12,21,1,0.28682,0.80052,0.26114,0.2372 -2030,12,21,2,0.28682,0.7792,0.2483,0.215 -2030,12,21,3,0.28682,0.80052,0.2372,0.215 -2030,12,21,4,0.27398,0.80052,0.2372,0.215 -2030,12,21,5,0.28682,0.80052,0.2372,0.215 -2030,12,21,6,0.27398,0.75646,0.2372,0.215 -2030,12,21,7,0.28682,0.75646,0.2372,0.215 -2030,12,21,8,0.27398,0.7792,0.2372,0.2261 -2030,12,21,9,0.27398,0.80052,0.2261,0.2261 -2030,12,21,10,0.26114,0.75646,0.2261,0.215 -2030,12,21,11,0.2483,0.7792,0.2261,0.215 -2030,12,21,12,0.2372,0.80052,0.215,0.1928 -2030,12,21,13,0.2261,0.82184,0.2261,0.1928 -2030,12,21,14,0.2372,0.84316,0.2372,0.215 -2030,12,21,15,0.26114,0.86448,0.2372,0.2261 -2030,12,21,16,0.29966,0.86448,0.2372,0.2372 -2030,12,21,17,0.3272,0.90816,0.27398,0.26114 -2030,12,21,18,0.3419,0.89698,0.3125,0.29966 -2030,12,21,19,0.3419,0.89698,0.3272,0.3272 -2030,12,21,20,0.3419,0.89698,0.3272,0.3419 -2030,12,21,21,0.3419,0.86448,0.3272,0.3272 -2030,12,21,22,0.3272,0.84316,0.3125,0.28682 -2030,12,21,23,0.3125,0.84316,0.27398,0.26114 -2030,12,21,24,0.29966,0.84316,0.26114,0.2483 -2030,12,22,1,0.28682,0.80052,0.26114,0.2372 -2030,12,22,2,0.28682,0.7792,0.2483,0.215 -2030,12,22,3,0.28682,0.80052,0.2372,0.215 -2030,12,22,4,0.27398,0.80052,0.2372,0.215 -2030,12,22,5,0.28682,0.80052,0.2372,0.215 -2030,12,22,6,0.27398,0.75646,0.2372,0.215 -2030,12,22,7,0.28682,0.75646,0.2372,0.215 -2030,12,22,8,0.27398,0.7792,0.2372,0.2261 -2030,12,22,9,0.27398,0.80052,0.2261,0.2261 -2030,12,22,10,0.26114,0.75646,0.2261,0.215 -2030,12,22,11,0.2483,0.7792,0.2261,0.215 -2030,12,22,12,0.2372,0.80052,0.215,0.1928 -2030,12,22,13,0.2261,0.82184,0.2261,0.1928 -2030,12,22,14,0.2372,0.84316,0.2372,0.215 -2030,12,22,15,0.26114,0.86448,0.2372,0.2261 -2030,12,22,16,0.29966,0.86448,0.2372,0.2372 -2030,12,22,17,0.3272,0.90816,0.27398,0.26114 -2030,12,22,18,0.3419,0.89698,0.3125,0.29966 -2030,12,22,19,0.3419,0.89698,0.3272,0.3272 -2030,12,22,20,0.3419,0.89698,0.3272,0.3419 -2030,12,22,21,0.3419,0.86448,0.3272,0.3272 -2030,12,22,22,0.3272,0.84316,0.3125,0.28682 -2030,12,22,23,0.3125,0.84316,0.27398,0.26114 -2030,12,22,24,0.29966,0.84316,0.26114,0.2483 -2030,12,23,1,0.28682,0.80052,0.26114,0.2372 -2030,12,23,2,0.28682,0.7792,0.2483,0.215 -2030,12,23,3,0.28682,0.80052,0.2372,0.215 -2030,12,23,4,0.27398,0.80052,0.2372,0.215 -2030,12,23,5,0.28682,0.80052,0.2372,0.215 -2030,12,23,6,0.27398,0.75646,0.2372,0.215 -2030,12,23,7,0.28682,0.75646,0.2372,0.215 -2030,12,23,8,0.27398,0.7792,0.2372,0.2261 -2030,12,23,9,0.27398,0.80052,0.2261,0.2261 -2030,12,23,10,0.26114,0.75646,0.2261,0.215 -2030,12,23,11,0.2483,0.7792,0.2261,0.215 -2030,12,23,12,0.2372,0.80052,0.215,0.1928 -2030,12,23,13,0.2261,0.82184,0.2261,0.1928 -2030,12,23,14,0.2372,0.84316,0.2372,0.215 -2030,12,23,15,0.26114,0.86448,0.2372,0.2261 -2030,12,23,16,0.29966,0.86448,0.2372,0.2372 -2030,12,23,17,0.3272,0.90816,0.27398,0.26114 -2030,12,23,18,0.3419,0.89698,0.3125,0.29966 -2030,12,23,19,0.3419,0.89698,0.3272,0.3272 -2030,12,23,20,0.3419,0.89698,0.3272,0.3419 -2030,12,23,21,0.3419,0.86448,0.3272,0.3272 -2030,12,23,22,0.3272,0.84316,0.3125,0.28682 -2030,12,23,23,0.3125,0.84316,0.27398,0.26114 -2030,12,23,24,0.29966,0.84316,0.26114,0.2483 -2030,12,24,1,0.28682,0.80052,0.26114,0.2372 -2030,12,24,2,0.28682,0.7792,0.2483,0.215 -2030,12,24,3,0.28682,0.80052,0.2372,0.215 -2030,12,24,4,0.27398,0.80052,0.2372,0.215 -2030,12,24,5,0.28682,0.80052,0.2372,0.215 -2030,12,24,6,0.27398,0.75646,0.2372,0.215 -2030,12,24,7,0.28682,0.75646,0.2372,0.215 -2030,12,24,8,0.27398,0.7792,0.2372,0.2261 -2030,12,24,9,0.27398,0.80052,0.2261,0.2261 -2030,12,24,10,0.26114,0.75646,0.2261,0.215 -2030,12,24,11,0.2483,0.7792,0.2261,0.215 -2030,12,24,12,0.2372,0.80052,0.215,0.1928 -2030,12,24,13,0.2261,0.82184,0.2261,0.1928 -2030,12,24,14,0.2372,0.84316,0.2372,0.215 -2030,12,24,15,0.26114,0.86448,0.2372,0.2261 -2030,12,24,16,0.29966,0.86448,0.2372,0.2372 -2030,12,24,17,0.3272,0.90816,0.27398,0.26114 -2030,12,24,18,0.3419,0.89698,0.3125,0.29966 -2030,12,24,19,0.3419,0.89698,0.3272,0.3272 -2030,12,24,20,0.3419,0.89698,0.3272,0.3419 -2030,12,24,21,0.3419,0.86448,0.3272,0.3272 -2030,12,24,22,0.3272,0.84316,0.3125,0.28682 -2030,12,24,23,0.3125,0.84316,0.27398,0.26114 -2030,12,24,24,0.29966,0.84316,0.26114,0.2483 -2030,12,25,1,0.28682,0.80052,0.26114,0.2372 -2030,12,25,2,0.28682,0.7792,0.2483,0.215 -2030,12,25,3,0.28682,0.80052,0.2372,0.215 -2030,12,25,4,0.27398,0.80052,0.2372,0.215 -2030,12,25,5,0.28682,0.80052,0.2372,0.215 -2030,12,25,6,0.27398,0.75646,0.2372,0.215 -2030,12,25,7,0.28682,0.75646,0.2372,0.215 -2030,12,25,8,0.27398,0.7792,0.2372,0.2261 -2030,12,25,9,0.27398,0.80052,0.2261,0.2261 -2030,12,25,10,0.26114,0.75646,0.2261,0.215 -2030,12,25,11,0.2483,0.7792,0.2261,0.215 -2030,12,25,12,0.2372,0.80052,0.215,0.1928 -2030,12,25,13,0.2261,0.82184,0.2261,0.1928 -2030,12,25,14,0.2372,0.84316,0.2372,0.215 -2030,12,25,15,0.26114,0.86448,0.2372,0.2261 -2030,12,25,16,0.29966,0.86448,0.2372,0.2372 -2030,12,25,17,0.3272,0.90816,0.27398,0.26114 -2030,12,25,18,0.3419,0.89698,0.3125,0.29966 -2030,12,25,19,0.3419,0.89698,0.3272,0.3272 -2030,12,25,20,0.3419,0.89698,0.3272,0.3419 -2030,12,25,21,0.3419,0.86448,0.3272,0.3272 -2030,12,25,22,0.3272,0.84316,0.3125,0.28682 -2030,12,25,23,0.3125,0.84316,0.27398,0.26114 -2030,12,25,24,0.29966,0.84316,0.26114,0.2483 -2030,12,26,1,0.28682,0.80052,0.26114,0.2372 -2030,12,26,2,0.28682,0.7792,0.2483,0.215 -2030,12,26,3,0.28682,0.80052,0.2372,0.215 -2030,12,26,4,0.27398,0.80052,0.2372,0.215 -2030,12,26,5,0.28682,0.80052,0.2372,0.215 -2030,12,26,6,0.27398,0.75646,0.2372,0.215 -2030,12,26,7,0.28682,0.75646,0.2372,0.215 -2030,12,26,8,0.27398,0.7792,0.2372,0.2261 -2030,12,26,9,0.27398,0.80052,0.2261,0.2261 -2030,12,26,10,0.26114,0.75646,0.2261,0.215 -2030,12,26,11,0.2483,0.7792,0.2261,0.215 -2030,12,26,12,0.2372,0.80052,0.215,0.1928 -2030,12,26,13,0.2261,0.82184,0.2261,0.1928 -2030,12,26,14,0.2372,0.84316,0.2372,0.215 -2030,12,26,15,0.26114,0.86448,0.2372,0.2261 -2030,12,26,16,0.29966,0.86448,0.2372,0.2372 -2030,12,26,17,0.3272,0.90816,0.27398,0.26114 -2030,12,26,18,0.3419,0.89698,0.3125,0.29966 -2030,12,26,19,0.3419,0.89698,0.3272,0.3272 -2030,12,26,20,0.3419,0.89698,0.3272,0.3419 -2030,12,26,21,0.3419,0.86448,0.3272,0.3272 -2030,12,26,22,0.3272,0.84316,0.3125,0.28682 -2030,12,26,23,0.3125,0.84316,0.27398,0.26114 -2030,12,26,24,0.29966,0.84316,0.26114,0.2483 -2030,12,27,1,0.28682,0.80052,0.26114,0.2372 -2030,12,27,2,0.28682,0.7792,0.2483,0.215 -2030,12,27,3,0.28682,0.80052,0.2372,0.215 -2030,12,27,4,0.27398,0.80052,0.2372,0.215 -2030,12,27,5,0.28682,0.80052,0.2372,0.215 -2030,12,27,6,0.27398,0.75646,0.2372,0.215 -2030,12,27,7,0.28682,0.75646,0.2372,0.215 -2030,12,27,8,0.27398,0.7792,0.2372,0.2261 -2030,12,27,9,0.27398,0.80052,0.2261,0.2261 -2030,12,27,10,0.26114,0.75646,0.2261,0.215 -2030,12,27,11,0.2483,0.7792,0.2261,0.215 -2030,12,27,12,0.2372,0.80052,0.215,0.1928 -2030,12,27,13,0.2261,0.82184,0.2261,0.1928 -2030,12,27,14,0.2372,0.84316,0.2372,0.215 -2030,12,27,15,0.26114,0.86448,0.2372,0.2261 -2030,12,27,16,0.29966,0.86448,0.2372,0.2372 -2030,12,27,17,0.3272,0.90816,0.27398,0.26114 -2030,12,27,18,0.3419,0.89698,0.3125,0.29966 -2030,12,27,19,0.3419,0.89698,0.3272,0.3272 -2030,12,27,20,0.3419,0.89698,0.3272,0.3419 -2030,12,27,21,0.3419,0.86448,0.3272,0.3272 -2030,12,27,22,0.3272,0.84316,0.3125,0.28682 -2030,12,27,23,0.3125,0.84316,0.27398,0.26114 -2030,12,27,24,0.29966,0.84316,0.26114,0.2483 -2030,12,28,1,0.28682,0.80052,0.26114,0.2372 -2030,12,28,2,0.28682,0.7792,0.2483,0.215 -2030,12,28,3,0.28682,0.80052,0.2372,0.215 -2030,12,28,4,0.27398,0.80052,0.2372,0.215 -2030,12,28,5,0.28682,0.80052,0.2372,0.215 -2030,12,28,6,0.27398,0.75646,0.2372,0.215 -2030,12,28,7,0.28682,0.75646,0.2372,0.215 -2030,12,28,8,0.27398,0.7792,0.2372,0.2261 -2030,12,28,9,0.27398,0.80052,0.2261,0.2261 -2030,12,28,10,0.26114,0.75646,0.2261,0.215 -2030,12,28,11,0.2483,0.7792,0.2261,0.215 -2030,12,28,12,0.2372,0.80052,0.215,0.1928 -2030,12,28,13,0.2261,0.82184,0.2261,0.1928 -2030,12,28,14,0.2372,0.84316,0.2372,0.215 -2030,12,28,15,0.26114,0.86448,0.2372,0.2261 -2030,12,28,16,0.29966,0.86448,0.2372,0.2372 -2030,12,28,17,0.3272,0.90816,0.27398,0.26114 -2030,12,28,18,0.3419,0.89698,0.3125,0.29966 -2030,12,28,19,0.3419,0.89698,0.3272,0.3272 -2030,12,28,20,0.3419,0.89698,0.3272,0.3419 -2030,12,28,21,0.3419,0.86448,0.3272,0.3272 -2030,12,28,22,0.3272,0.84316,0.3125,0.28682 -2030,12,28,23,0.3125,0.84316,0.27398,0.26114 -2030,12,28,24,0.29966,0.84316,0.26114,0.2483 -2030,12,29,1,0.28682,0.80052,0.26114,0.2372 -2030,12,29,2,0.28682,0.7792,0.2483,0.215 -2030,12,29,3,0.28682,0.80052,0.2372,0.215 -2030,12,29,4,0.27398,0.80052,0.2372,0.215 -2030,12,29,5,0.28682,0.80052,0.2372,0.215 -2030,12,29,6,0.27398,0.75646,0.2372,0.215 -2030,12,29,7,0.28682,0.75646,0.2372,0.215 -2030,12,29,8,0.27398,0.7792,0.2372,0.2261 -2030,12,29,9,0.27398,0.80052,0.2261,0.2261 -2030,12,29,10,0.26114,0.75646,0.2261,0.215 -2030,12,29,11,0.2483,0.7792,0.2261,0.215 -2030,12,29,12,0.2372,0.80052,0.215,0.1928 -2030,12,29,13,0.2261,0.82184,0.2261,0.1928 -2030,12,29,14,0.2372,0.84316,0.2372,0.215 -2030,12,29,15,0.26114,0.86448,0.2372,0.2261 -2030,12,29,16,0.29966,0.86448,0.2372,0.2372 -2030,12,29,17,0.3272,0.90816,0.27398,0.26114 -2030,12,29,18,0.3419,0.89698,0.3125,0.29966 -2030,12,29,19,0.3419,0.89698,0.3272,0.3272 -2030,12,29,20,0.3419,0.89698,0.3272,0.3419 -2030,12,29,21,0.3419,0.86448,0.3272,0.3272 -2030,12,29,22,0.3272,0.84316,0.3125,0.28682 -2030,12,29,23,0.3125,0.84316,0.27398,0.26114 -2030,12,29,24,0.29966,0.84316,0.26114,0.2483 -2030,12,30,1,0.28682,0.80052,0.26114,0.2372 -2030,12,30,2,0.28682,0.7792,0.2483,0.215 -2030,12,30,3,0.28682,0.80052,0.2372,0.215 -2030,12,30,4,0.27398,0.80052,0.2372,0.215 -2030,12,30,5,0.28682,0.80052,0.2372,0.215 -2030,12,30,6,0.27398,0.75646,0.2372,0.215 -2030,12,30,7,0.28682,0.75646,0.2372,0.215 -2030,12,30,8,0.27398,0.7792,0.2372,0.2261 -2030,12,30,9,0.27398,0.80052,0.2261,0.2261 -2030,12,30,10,0.26114,0.75646,0.2261,0.215 -2030,12,30,11,0.2483,0.7792,0.2261,0.215 -2030,12,30,12,0.2372,0.80052,0.215,0.1928 -2030,12,30,13,0.2261,0.82184,0.2261,0.1928 -2030,12,30,14,0.2372,0.84316,0.2372,0.215 -2030,12,30,15,0.26114,0.86448,0.2372,0.2261 -2030,12,30,16,0.29966,0.86448,0.2372,0.2372 -2030,12,30,17,0.3272,0.90816,0.27398,0.26114 -2030,12,30,18,0.3419,0.89698,0.3125,0.29966 -2030,12,30,19,0.3419,0.89698,0.3272,0.3272 -2030,12,30,20,0.3419,0.89698,0.3272,0.3419 -2030,12,30,21,0.3419,0.86448,0.3272,0.3272 -2030,12,30,22,0.3272,0.84316,0.3125,0.28682 -2030,12,30,23,0.3125,0.84316,0.27398,0.26114 -2030,12,30,24,0.29966,0.84316,0.26114,0.2483 -2030,12,31,1,0.28682,0.80052,0.26114,0.2372 -2030,12,31,2,0.28682,0.7792,0.2483,0.215 -2030,12,31,3,0.28682,0.80052,0.2372,0.215 -2030,12,31,4,0.27398,0.80052,0.2372,0.215 -2030,12,31,5,0.28682,0.80052,0.2372,0.215 -2030,12,31,6,0.27398,0.75646,0.2372,0.215 -2030,12,31,7,0.28682,0.75646,0.2372,0.215 -2030,12,31,8,0.27398,0.7792,0.2372,0.2261 -2030,12,31,9,0.27398,0.80052,0.2261,0.2261 -2030,12,31,10,0.26114,0.75646,0.2261,0.215 -2030,12,31,11,0.2483,0.7792,0.2261,0.215 -2030,12,31,12,0.2372,0.80052,0.215,0.1928 -2030,12,31,13,0.2261,0.82184,0.2261,0.1928 -2030,12,31,14,0.2372,0.84316,0.2372,0.215 -2030,12,31,15,0.26114,0.86448,0.2372,0.2261 -2030,12,31,16,0.29966,0.86448,0.2372,0.2372 -2030,12,31,17,0.3272,0.90816,0.27398,0.26114 -2030,12,31,18,0.3419,0.89698,0.3125,0.29966 -2030,12,31,19,0.3419,0.89698,0.3272,0.3272 -2030,12,31,20,0.3419,0.89698,0.3272,0.3419 -2030,12,31,21,0.3419,0.86448,0.3272,0.3272 -2030,12,31,22,0.3272,0.84316,0.3125,0.28682 -2030,12,31,23,0.3125,0.84316,0.27398,0.26114 -2030,12,31,24,0.29966,0.84316,0.26114,0.2483 diff --git a/workflow/repo_data/plants/plants_merged.csv b/workflow/repo_data/plants/plants_merged.csv deleted file mode 100644 index 71d941a1..00000000 --- a/workflow/repo_data/plants/plants_merged.csv +++ /dev/null @@ -1,25386 +0,0 @@ -plant_code,plant_name,generator_id,operating_year,nameplate_capacity_mw,summer_capacity_mw,winter_capacity_mw,minimum_load_mw,energy_source_1,technology,status,prime_mover,operating_month,operating_year,planned_retirement_month,planned_retirement_year,nameplate_energy_capacity_mwh,maximum_charge_rate_mw,maximum_discharge_rate_mw,storage_technology_1,carrier,fuel_type,fuel_name,prime_mover_name,summer_derate,winter_derate,nerc_region,balancing_authority_code,state,latitude,longitude,ads_generatorname,ads__turbine_type,ads_mustrun,ads_minimumdowntimehr,ads_minimumuptimehr,ads_maxuptimehr,ads_rampup_ratemw/minute,ads_rampdn_ratemw/minute,ads_startup_cost_fixed$,ads_startfuelmmbtu,ads_startup_time,ads_vom_cost,ads_iomaxcapmw,ads_linear_a,ads_linear_b,ads_quadratic_a,ads_quadratic_b,ads_quadratic_c,ads_avg_hr,ads_servicestatus,ads_commission_date,ads_retirement_date,ads_devstatus,ads_balancing_area,ads_region_name,ads_mincapmw,ads_maxcapmw,ads_initialdispatchmw,ads_state,ads_fueltype,ads_technology,ads_btm,ads_economicpmin,ads_economicpmax,egrid_heat_rate -1,Sand Point,1,2000.0,0.9,0.4,0.4,0.4,DFO,Petroleum Liquids,SB,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.4444444444444444,0.4444444444444444,non-conus,non-conus,AK,55.339722,-160.497222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.68756458835687 -1,Sand Point,2,2000.0,0.9,0.3,0.3,0.3,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.33333333333333326,0.33333333333333326,non-conus,non-conus,AK,55.339722,-160.497222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.68756458835687 -1,Sand Point,3,2010.0,0.5,0.3,0.3,0.3,DFO,Petroleum Liquids,OP,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6,0.6,non-conus,non-conus,AK,55.339722,-160.497222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.687571951479125 -1,Sand Point,5,2000.0,0.7,0.4,0.3,0.3,DFO,Petroleum Liquids,OS,IC,12.0,2000.0,2,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5714285714285715,0.4285714285714286,non-conus,non-conus,AK,55.339722,-160.497222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.687559328990046 -1,Sand Point,WT1,2011.0,0.5,0.1,0.1,0.1,WND,Onshore Wind Turbine,OS,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.19999999999999996,0.19999999999999996,non-conus,non-conus,AK,55.339722,-160.497222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1,Sand Point,WT2,2011.0,0.5,0.3,0.3,0.3,WND,Onshore Wind Turbine,OS,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.6,0.6,non-conus,non-conus,AK,55.339722,-160.497222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2,Bankhead Dam,1,1963.0,53.9,53.0,53.0,52,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833024118738405,0.9833024118738405,SERC,SOCO,AL,33.458665,-87.356823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Barry,1,1954.0,153.1,80.0,80.0,55,NG,Natural Gas Steam Turbine,OP,ST,2.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5225342913128674,0.5225342913128674,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.708910805477 -3,Barry,2,1954.0,153.1,80.0,80.0,55,NG,Natural Gas Steam Turbine,OP,ST,7.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5225342913128674,0.5225342913128674,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.900490205401294 -3,Barry,4,1969.0,403.7,362.0,362.0,200,BIT,Conventional Steam Coal,OP,ST,12.0,1969.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8967054743621501,0.8967054743621501,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.179650627305568 -3,Barry,5,1971.0,788.8,756.5,756.5,465,BIT,Conventional Steam Coal,OP,ST,10.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.959051724137931,0.959051724137931,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.889524854088934 -3,Barry,A1CT,2000.0,170.1,184.4,194.5,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Barry,A1CT2,2000.0,170.1,184.4,194.5,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Barry,A1ST,2000.0,195.2,200.0,205.0,136,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Barry,A2C1,2000.0,170.1,186.2,190.0,86,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Barry,A2C2,2000.0,170.1,186.2,190.0,86,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3,Barry,A2ST,2000.0,195.2,195.0,200.0,128,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9989754098360656,1.0,SERC,SOCO,AL,31.0069,-88.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4,Walter Bouldin Dam,1,1967.0,75.0,74.7,74.7,74,WAT,Conventional Hydroelectric,OP,HY,7.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.996,0.996,SERC,SOCO,AL,32.583889,-86.283056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4,Walter Bouldin Dam,2,1967.0,75.0,74.7,74.7,74,WAT,Conventional Hydroelectric,OP,HY,8.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.996,0.996,SERC,SOCO,AL,32.583889,-86.283056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4,Walter Bouldin Dam,3,1967.0,75.0,74.7,74.7,74,WAT,Conventional Hydroelectric,OP,HY,8.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.996,0.996,SERC,SOCO,AL,32.583889,-86.283056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7,Gadsden,1,1949.0,69.0,64.0,64.0,28,NG,Natural Gas Steam Turbine,OP,ST,4.0,1949.0,1,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.927536231884058,0.927536231884058,SERC,SOCO,AL,34.0128,-85.9708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97.99532710280374 -7,Gadsden,2,1949.0,69.0,66.0,66.0,28,NG,Natural Gas Steam Turbine,OP,ST,7.0,1949.0,1,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9565217391304348,0.9565217391304348,SERC,SOCO,AL,34.0128,-85.9708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9,Copper,1,1980.0,86.9,63.0,65.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1980.0,12,2030,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7249712313003451,0.7479861910241656,WECC,EPE,TX,31.7569,-106.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,1,1965.0,299.2,257.8,257.8,110,NG,Natural Gas Steam Turbine,OP,ST,6.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8616310160427808,0.8616310160427808,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.505029967176776 -10,Greene County,2,1966.0,269.2,258.3,258.3,110,NG,Natural Gas Steam Turbine,OP,ST,7.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9595096582466568,0.9595096582466568,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.779574489666992 -10,Greene County,GT10,1996.0,80.0,85.0,101.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT2,1996.0,80.0,84.0,100.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT3,1995.0,80.0,82.0,98.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT4,1995.0,80.0,81.0,97.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT5,1995.0,80.0,82.0,98.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT6,1995.0,80.0,81.0,97.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT7,1995.0,80.0,80.0,96.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT8,1996.0,80.0,83.0,99.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10,Greene County,GT9,1996.0,80.0,82.0,98.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,32.6017,-87.7811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -11,H Neely Henry Dam,1,1966.0,24.3,23.7,22.7,22.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9753086419753085,0.934156378600823,SERC,SOCO,AL,33.7845,-86.0524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -11,H Neely Henry Dam,2,1966.0,24.3,23.7,22.7,22.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9753086419753085,0.934156378600823,SERC,SOCO,AL,33.7845,-86.0524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -11,H Neely Henry Dam,3,1966.0,24.3,23.7,22.7,22.4,WAT,Conventional Hydroelectric,OP,HY,6.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9753086419753085,0.934156378600823,SERC,SOCO,AL,33.7845,-86.0524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -12,Holt Dam,1,1968.0,46.9,48.0,48.0,45,WAT,Conventional Hydroelectric,OP,HY,8.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,33.2553,-87.4495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Jordan Dam,1,1929.0,25.0,32.3,32.5,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6189,-86.2548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Jordan Dam,2,1929.0,25.0,32.3,32.5,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6189,-86.2548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Jordan Dam,3,1929.0,25.0,32.3,32.5,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6189,-86.2548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -13,Jordan Dam,4,1929.0,25.0,32.3,32.5,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6189,-86.2548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -14,Logan Martin Dam,1,1964.0,42.7,43.0,39.7,41.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9297423887587822,SERC,SOCO,AL,33.425878,-86.337547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -14,Logan Martin Dam,2,1964.0,42.7,43.0,39.7,41.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9297423887587822,SERC,SOCO,AL,33.425878,-86.337547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -14,Logan Martin Dam,3,1964.0,42.7,43.0,39.7,41.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9297423887587822,SERC,SOCO,AL,33.425878,-86.337547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Lay Dam,1,1968.0,29.5,30.0,30.3,29,WAT,Conventional Hydroelectric,OP,HY,4.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.9633,-86.5187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Lay Dam,2,1968.0,29.5,30.0,30.3,29,WAT,Conventional Hydroelectric,OP,HY,4.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.9633,-86.5187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Lay Dam,3,1967.0,29.5,30.0,30.3,29,WAT,Conventional Hydroelectric,OP,HY,12.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.9633,-86.5187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Lay Dam,4,1967.0,29.5,30.0,30.3,29,WAT,Conventional Hydroelectric,OP,HY,10.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.9633,-86.5187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Lay Dam,5,1967.0,29.5,30.0,30.3,29,WAT,Conventional Hydroelectric,OP,HY,5.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.9633,-86.5187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -15,Lay Dam,6,1967.0,29.5,30.0,30.3,29,WAT,Conventional Hydroelectric,OP,HY,2.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.9633,-86.5187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Martin Dam,1,1927.0,50.2,41.5,39.4,40,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8266932270916334,0.7848605577689243,SERC,SOCO,AL,32.680394,-85.911442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Martin Dam,2,1927.0,50.2,41.5,39.4,40,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8266932270916334,0.7848605577689243,SERC,SOCO,AL,32.680394,-85.911442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Martin Dam,3,1927.0,50.2,41.5,39.4,40,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8266932270916334,0.7848605577689243,SERC,SOCO,AL,32.680394,-85.911442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -16,Martin Dam,4,1952.0,60.0,57.6,54.7,40,WAT,Conventional Hydroelectric,OP,HY,7.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9600000000000001,0.9116666666666667,SERC,SOCO,AL,32.680394,-85.911442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Mitchell Dam,4,1949.0,20.0,22.4,22.7,19,WAT,Conventional Hydroelectric,OP,HY,11.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.806025,-86.444892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Mitchell Dam,5,1985.0,50.0,46.9,47.4,46,WAT,Conventional Hydroelectric,OP,HY,4.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.938,0.948,SERC,SOCO,AL,32.806025,-86.444892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Mitchell Dam,6,1985.0,50.0,46.9,47.4,46,WAT,Conventional Hydroelectric,OP,HY,4.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.938,0.948,SERC,SOCO,AL,32.806025,-86.444892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -17,Mitchell Dam,7,1985.0,50.0,46.9,47.4,46,WAT,Conventional Hydroelectric,OP,HY,4.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.938,0.948,SERC,SOCO,AL,32.806025,-86.444892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -18,Lewis Smith Dam,1,1961.0,90.5,89.0,87.5,83,WAT,Conventional Hydroelectric,OP,HY,9.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9834254143646409,0.9668508287292817,SERC,SOCO,AL,33.9406,-87.1077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -18,Lewis Smith Dam,2,1962.0,90.5,89.0,87.5,83,WAT,Conventional Hydroelectric,OP,HY,7.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9834254143646409,0.9668508287292817,SERC,SOCO,AL,33.9406,-87.1077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -19,Thurlow Dam,1,1931.0,40.5,36.2,35.3,32,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8938271604938273,0.8716049382716049,SERC,SOCO,AL,32.535436,-85.887614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -19,Thurlow Dam,2,1931.0,40.5,36.2,35.3,32,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8938271604938273,0.8716049382716049,SERC,SOCO,AL,32.535436,-85.887614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -19,Thurlow Dam,3,1931.0,10.0,7.5,7.3,7,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.73,SERC,SOCO,AL,32.535436,-85.887614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -20,Weiss Dam,1,1962.0,29.2,27.0,24.3,22.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9246575342465754,0.8321917808219179,SERC,SOCO,AL,34.172142,-85.753806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -20,Weiss Dam,2,1961.0,29.2,27.0,24.3,22.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9246575342465754,0.8321917808219179,SERC,SOCO,AL,34.172142,-85.753806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -20,Weiss Dam,3,1961.0,29.2,27.0,24.3,22.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9246575342465754,0.8321917808219179,SERC,SOCO,AL,34.172142,-85.753806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -21,Yates Dam,1,1928.0,25.5,22.0,22.5,21,WAT,Conventional Hydroelectric,OP,HY,7.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8627450980392157,0.8823529411764706,SERC,SOCO,AL,32.5743,-85.8901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -21,Yates Dam,2,1928.0,25.0,22.0,22.5,21,WAT,Conventional Hydroelectric,OP,HY,7.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.88,0.9,SERC,SOCO,AL,32.5743,-85.8901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -26,E C Gaston,1,1960.0,272.0,254.0,254.0,70,NG,Natural Gas Steam Turbine,OP,ST,5.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9338235294117647,0.9338235294117647,SERC,SOCO,AL,33.244211,-86.458056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.136261675251673 -26,E C Gaston,2,1960.0,272.0,256.0,256.0,70,NG,Natural Gas Steam Turbine,OP,ST,7.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9411764705882353,0.9411764705882353,SERC,SOCO,AL,33.244211,-86.458056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.896058683716182 -26,E C Gaston,3,1961.0,272.0,254.0,254.0,70,NG,Natural Gas Steam Turbine,OP,ST,6.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9338235294117647,0.9338235294117647,SERC,SOCO,AL,33.244211,-86.458056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.5712807627533 -26,E C Gaston,5,1974.0,952.0,832.0,832.0,700,BIT,Conventional Steam Coal,OP,ST,8.0,1974.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8739495798319328,0.8739495798319328,SERC,SOCO,AL,33.244211,-86.458056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72110254383865 -26,E C Gaston,GT4,1970.0,21.2,16.0,20.0,16,DFO,Petroleum Liquids,OP,GT,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7547169811320755,0.9433962264150944,SERC,SOCO,AL,33.244211,-86.458056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -26,E C Gaston,ST4,1962.0,244.8,256.0,256.0,70,NG,Natural Gas Steam Turbine,OP,ST,6.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,33.244211,-86.458056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -30,Madelia,1,2001.0,3.1,3.1,3.1,1.6,DFO,Petroleum Liquids,OP,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.0501,-94.4178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.115624106140949 -30,Madelia,2,1965.0,2.0,1.8,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,MRO,MISO,MN,44.0501,-94.4178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.11561285041948 -30,Madelia,3,1959.0,1.1,0.9,1.0,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.9090909090909091,MRO,MISO,MN,44.0501,-94.4178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.115644571215974 -30,Madelia,4,1973.0,4.3,3.7,4.0,1.7,DFO,Petroleum Liquids,OP,IC,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8604651162790699,0.930232558139535,MRO,MISO,MN,44.0501,-94.4178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.115637194251452 -30,Madelia,5,1954.0,1.3,1.1,1.2,0.7,DFO,Petroleum Liquids,OP,IC,3.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.923076923076923,MRO,MISO,MN,44.0501,-94.4178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.115693373209507 -34,Rollins,1P,1980.0,12.1,12.1,12.1,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.134259,-120.953341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -38,Millers Ferry,1,1970.0,33.7,30.0,30.0,24,WAT,Conventional Hydroelectric,OP,HY,4.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.890207715133531,0.890207715133531,SERC,SOCO,AL,32.100881,-87.399767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -38,Millers Ferry,2,1970.0,33.7,30.0,30.0,24,WAT,Conventional Hydroelectric,OP,HY,4.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.890207715133531,0.890207715133531,SERC,SOCO,AL,32.100881,-87.399767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -38,Millers Ferry,3,1970.0,33.7,30.0,30.0,24,WAT,Conventional Hydroelectric,OP,HY,5.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.890207715133531,0.890207715133531,SERC,SOCO,AL,32.100881,-87.399767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -46,Browns Ferry,1,1974.0,1281.0,1227.4,1254.8,1227.4,NUC,Nuclear,OP,ST,8.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9581576893052304,0.9795472287275566,SERC,TVA,AL,34.7042,-87.1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -46,Browns Ferry,2,1975.0,1281.0,1207.7,1242.0,1207.7,NUC,Nuclear,OP,ST,3.0,1975.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9427790788446526,0.9695550351288056,SERC,TVA,AL,34.7042,-87.1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -46,Browns Ferry,3,1977.0,1292.0,1226.6,1259.0,1226.6,NUC,Nuclear,OP,ST,3.0,1977.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9493808049535603,0.9744582043343654,SERC,TVA,AL,34.7042,-87.1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT1,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT2,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT3,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT4,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT5,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT6,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT7,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -47,Colbert,GT8,1972.0,59.5,45.4,60.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7630252100840336,1.0,SERC,TVA,AL,34.7439,-87.8486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Guntersville,1,1939.0,28.8,31.0,31.4,9.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.421272,-86.393931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Guntersville,2,1939.0,28.8,30.6,31.1,12.9,WAT,Conventional Hydroelectric,OP,HY,10.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.421272,-86.393931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Guntersville,3,1939.0,28.8,29.8,30.3,9.7,WAT,Conventional Hydroelectric,OP,HY,12.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.421272,-86.393931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -48,Guntersville,4,1952.0,28.8,31.3,31.7,14.6,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.421272,-86.393931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,1,1936.0,35.1,34.1,35.6,23.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9715099715099715,1.0,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,10,1963.0,36.0,41.9,38.3,27.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,11,1963.0,43.6,41.9,38.2,27.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9610091743119266,0.8761467889908258,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,2,1937.0,35.1,33.2,30.1,27.6,WAT,Conventional Hydroelectric,OP,HY,4.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9458689458689459,0.8575498575498576,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,3,1941.0,35.1,33.6,30.4,23,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9572649572649573,0.866096866096866,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,4,1941.0,35.1,33.4,30.2,25.4,WAT,Conventional Hydroelectric,OP,HY,3.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9515669515669515,0.8603988603988604,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,5,1948.0,35.1,34.7,31.4,23.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9886039886039887,0.8945868945868946,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,6,1949.0,35.1,34.6,31.3,23.4,WAT,Conventional Hydroelectric,OP,HY,2.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9857549857549858,0.8917378917378918,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,7,1949.0,35.1,34.4,31.1,25,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9800569800569799,0.886039886039886,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,8,1950.0,35.1,34.5,31.2,23.4,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9829059829059829,0.8888888888888888,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -49,Wheeler Dam,9,1962.0,43.6,41.9,38.2,28,WAT,Conventional Hydroelectric,OP,HY,12.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9610091743119266,0.8761467889908258,SERC,TVA,AL,34.8069,-87.3819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -53,Gantt,3,1926.0,1.2,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,SERC,SOCO,AL,31.4033,-86.479469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -53,Gantt,4,1985.0,1.8,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,31.4033,-86.479469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT1,1999.0,149.0,104.0,142.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.697986577181208,0.9530201342281879,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT10,2010.0,98.0,74.0,103.0,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7551020408163265,1.0,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT2,1999.0,149.0,104.0,142.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.697986577181208,0.9530201342281879,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT3,1999.0,149.0,104.0,142.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.697986577181208,0.9530201342281879,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT4,2001.0,108.0,73.0,93.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6759259259259259,0.8611111111111112,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT5,2001.0,108.0,73.0,88.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6759259259259259,0.8148148148148149,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT6,2005.0,98.0,73.0,88.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7448979591836735,0.8979591836734694,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT7,2005.0,98.0,73.0,88.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7448979591836735,0.8979591836734694,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54,J K Smith,GT9,2010.0,98.0,75.0,103.0,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7653061224489796,1.0,SERC,PJM,KY,37.8833,-84.1017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55,Point A,1,1925.0,1.6,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,31.361146,-86.518307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55,Point A,2,1925.0,1.6,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,31.361146,-86.518307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55,Point A,3,1949.0,2.0,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,SERC,SOCO,AL,31.361146,-86.518307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59,Platte,1,1982.0,109.8,100.0,100.0,40,SUB,Conventional Steam Coal,OP,ST,12.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9107468123861566,0.9107468123861566,MRO,SWPP,NE,40.854765,-98.348222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.02957145999288 -60,Whelan Energy Center,1,1981.0,76.3,76.0,76.0,38,SUB,Conventional Steam Coal,OP,ST,7.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9960681520314548,0.9960681520314548,MRO,SWPP,NE,40.580872,-98.312437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.051859663204388 -60,Whelan Energy Center,2,2011.0,248.0,220.0,220.0,125,SUB,Conventional Steam Coal,OP,ST,6.0,2011.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8870967741935484,0.8870967741935484,MRO,SWPP,NE,40.580872,-98.312437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.070599972134316 -62,Annex Creek,5,1915.0,1.8,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,58.3176,-134.101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62,Annex Creek,6,1915.0,2.2,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8181818181818181,0.8181818181818181,non-conus,non-conus,AK,58.3176,-134.101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Gold Creek,1,1951.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Gold Creek,2,1914.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Gold Creek,3,1914.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63,Gold Creek,IC1,1952.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.331833520809898 -63,Gold Creek,IC2,1954.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.331833520809898 -63,Gold Creek,IC3,1961.0,1.1,1.1,1.1,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.330061349693251 -63,Gold Creek,IC4,1963.0,3.5,3.5,3.5,2,DFO,Petroleum Liquids,SB,IC,9.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.331276513690707 -63,Gold Creek,IC5,1966.0,1.1,1.1,1.1,0.3,DFO,Petroleum Liquids,SB,IC,10.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3107,-134.4174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.330061349693251 -64,Lemon Creek,1,1969.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,2,1969.0,2.6,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,3,1974.0,2.6,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,5,1980.0,18.6,17.5,17.5,4,DFO,Petroleum Liquids,SB,GT,9.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9408602150537634,0.9408602150537634,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.20863309352518 -64,Lemon Creek,6,1983.0,18.6,17.5,17.5,4,DFO,Petroleum Liquids,SB,GT,8.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9408602150537634,0.9408602150537634,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.20863309352518 -64,Lemon Creek,7,1983.0,2.8,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,IC10,1984.0,2.8,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,IC11,1984.0,2.8,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,IC12,1984.0,2.8,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,IC8,1985.0,2.8,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64,Lemon Creek,IC9,1985.0,2.8,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,58.3536,-134.4953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65,Salmon Creek 1,HY7,1984.0,8.5,5.2,5.2,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.611764705882353,0.611764705882353,non-conus,non-conus,AK,58.3269,-134.4631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Skagway,1,1957.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Skagway,2,1909.0,0.1,0.1,0.1,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Skagway,3,1981.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Skagway,4,1987.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66,Skagway,6A,1986.0,0.8,0.8,0.8,0.3,DFO,Petroleum Liquids,OP,IC,4.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.39423967284962 -66,Skagway,7A,1996.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394244393860443 -66,Skagway,8B,2022.0,0.8,1.2,1.2,0.6,DFO,Petroleum Liquids,OP,IC,6.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.39423967284962 -66,Skagway,9,2009.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,OP,IC,4.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.4545,-135.3131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394264127669416 -69,Haines,10,1991.0,1.2,1.2,1.2,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.235931,-135.446228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.112211221122113 -69,Haines,11,2006.0,1.9,1.9,1.9,0.7,DFO,Petroleum Liquids,OP,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.235931,-135.446228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.112212610734757 -69,Haines,12,2021.0,1.5,1.5,1.5,0.6,DFO,Petroleum Liquids,OP,IC,1.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.235931,-135.446228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.112211221122113 -69,Haines,5,1968.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,OS,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.235931,-135.446228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.112211221122113 -69,Haines,7A,1995.0,2.8,2.8,2.8,1.1,DFO,Petroleum Liquids,OP,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.235931,-135.446228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11221216407355 -69,Haines,IC8A,1996.0,1.6,1.6,1.6,0.6,DFO,Petroleum Liquids,OP,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.235931,-135.446228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.112212871287129 -70,Swan Lake,1,1984.0,11.3,11.3,11.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.615208,-131.356111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -70,Swan Lake,2,1984.0,11.3,11.3,11.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.615208,-131.356111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -71,Terror Lake Microgrid,1,1984.0,11.2,11.2,11.2,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,57.6861,-152.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -71,Terror Lake Microgrid,2,1984.0,11.2,11.2,11.2,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,57.6861,-152.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -71,Terror Lake Microgrid,3,2014.0,11.2,11.2,11.2,0.3,WAT,Conventional Hydroelectric,OP,HY,2.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,57.6861,-152.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -72,Venice Hydro,1,1982.0,10.1,10.1,10.1,3.8,WAT,Conventional Hydroelectric,SB,HY,8.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.01135,-118.4168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -75,Hank Nikkels Plant 1,3R,2007.0,48.9,29.3,32.9,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5991820040899796,0.6728016359918201,non-conus,non-conus,AK,61.2221,-149.8661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.244586749280675 -75,Hank Nikkels Plant 1,4,1972.0,27.0,31.1,33.2,5,NG,Natural Gas Fired Combustion Turbine,OS,GT,3.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,61.2221,-149.8661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.244586214264817 -75,Hank Nikkels Plant 1,P1 BS,2012.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.2221,-149.8661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -77,Eklutna Hydro Project,1,1955.0,22.2,22.2,22.2,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,61.475211,-149.15009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -77,Eklutna Hydro Project,2,1955.0,22.2,22.2,22.2,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,61.475211,-149.15009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -78,Snettisham,1,1973.0,23.6,23.5,23.5,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9957627118644067,0.9957627118644067,non-conus,non-conus,AK,58.1415,-133.737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -78,Snettisham,2,1973.0,23.6,23.5,23.5,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9957627118644067,0.9957627118644067,non-conus,non-conus,AK,58.1415,-133.737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -78,Snettisham,3,1990.0,31.0,31.0,31.0,3,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,58.1415,-133.737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -79,Aurora Energy LLC Chena,1,1952.0,5.0,4.7,4.3,1,SUB,Conventional Steam Coal,OP,ST,6.0,1952.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.86,non-conus,non-conus,AK,64.847743,-147.735063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -79,Aurora Energy LLC Chena,2,1952.0,2.5,2.0,2.0,1,SUB,Conventional Steam Coal,OP,ST,6.0,1952.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,non-conus,non-conus,AK,64.847743,-147.735063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -79,Aurora Energy LLC Chena,5,1975.0,20.0,19.0,18.8,8,SUB,Conventional Steam Coal,OP,ST,6.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.95,0.9400000000000001,non-conus,non-conus,AK,64.847743,-147.735063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.785409449459218 -84,Ketchikan,3,1952.0,1.4,1.4,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.7857142857142858,non-conus,non-conus,AK,55.344641,-131.633425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -84,Ketchikan,4,1938.0,1.4,1.4,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.7857142857142858,non-conus,non-conus,AK,55.344641,-131.633425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -84,Ketchikan,5,1954.0,1.4,1.4,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.7857142857142858,non-conus,non-conus,AK,55.344641,-131.633425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -85,S W Bailey,1,1969.0,4.5,3.5,3.5,2,DFO,Petroleum Liquids,OP,IC,1.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777778,0.7777777777777778,non-conus,non-conus,AK,55.357397,-131.69696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.693520079837572 -85,S W Bailey,2,1970.0,4.5,3.5,3.5,2,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777778,0.7777777777777778,non-conus,non-conus,AK,55.357397,-131.69696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.693520079837572 -85,S W Bailey,3,1976.0,6.4,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,1.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.859375,0.859375,non-conus,non-conus,AK,55.357397,-131.69696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.693551021395779 -85,S W Bailey,4,1998.0,10.5,10.5,10.5,3.5,DFO,Petroleum Liquids,OP,IC,10.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.357397,-131.69696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.693583711875405 -88,Ashokan,1,1982.0,2.3,2.3,2.3,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.949,-74.2063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -88,Ashokan,2,1982.0,2.3,2.3,2.3,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.949,-74.2063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -90,Snake River,12,1991.0,3.8,3.7,3.7,2.8,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9736842105263159,0.9736842105263159,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.586422603540814 -90,Snake River,14,1999.0,2.0,1.9,1.9,1.4,DFO,Petroleum Liquids,OP,IC,12.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.586422964217908 -90,Snake River,15,2007.0,5.2,5.2,5.2,3.4,DFO,Petroleum Liquids,OP,IC,11.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.586422490867273 -90,Snake River,16,2007.0,5.2,5.2,5.2,3.4,DFO,Petroleum Liquids,OP,IC,11.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.586422490867273 -90,Snake River,18,2013.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.586420913032253 -90,Snake River,EWT 1,2013.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -90,Snake River,EWT 2,2013.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,64.505331,-165.429814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -91,Petersburg,3,1954.0,1.6,1.6,1.6,0.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1954.0,6,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -91,Petersburg,IC1,1972.0,2.6,1.7,1.7,1.4,DFO,Petroleum Liquids,OP,IC,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6538461538461537,0.6538461538461537,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350889409775116 -91,Petersburg,IC3,1965.0,1.2,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350814327859576 -91,Petersburg,IC4,1979.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350953766569672 -91,Petersburg,IC5,1979.0,0.8,0.7,0.7,0.4,DFO,Petroleum Liquids,OP,IC,3.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350953766569674 -91,Petersburg,IC6,1993.0,2.6,2.3,2.3,1.5,DFO,Petroleum Liquids,OP,IC,9.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8846153846153845,0.8846153846153845,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350889409775116 -91,Petersburg,IC7,2001.0,2.6,2.3,2.3,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8846153846153845,0.8846153846153845,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350889409775116 -91,Petersburg,IC8,2012.0,2.5,2.2,2.2,1.2,DFO,Petroleum Liquids,OP,IC,10.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,non-conus,non-conus,AK,56.81104,-132.957091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.350886835519978 -92,Seward (AK),3,1975.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,4.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.130922,-149.43501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.300340805452887 -92,Seward (AK),4,1986.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,3.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.130922,-149.43501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.300340805452887 -92,Seward (AK),5,1985.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,3.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.130922,-149.43501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.300340805452887 -92,Seward (AK),6,2000.0,2.8,2.8,2.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.130922,-149.43501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.300304290061288 -92,Seward (AK),N1,2010.0,2.8,2.8,2.8,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.130922,-149.43501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.300304290061288 -92,Seward (AK),N2,2010.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.130922,-149.43501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.300340805452887 -93,Blue Lake Hydro,3,2014.0,5.3,5.3,5.3,1,WAT,Conventional Hydroelectric,OP,HY,10.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,57.0516,-135.2297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -93,Blue Lake Hydro,4,2014.0,5.3,5.3,5.3,1,WAT,Conventional Hydroelectric,OP,HY,10.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,57.0516,-135.2297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -93,Blue Lake Hydro,5,2014.0,5.3,5.3,5.3,1,WAT,Conventional Hydroelectric,OP,HY,10.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,57.0516,-135.2297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -95,Wrangell,11,2000.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.460976,-132.379439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.742468424248123 -95,Wrangell,12,2000.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.460976,-132.379439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.742468424248123 -95,Wrangell,13,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.460976,-132.379439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.742468424248123 -95,Wrangell,9,1987.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.460976,-132.379439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.742488507005255 -96,Beluga,1,1968.0,16.0,18.9,19.6,1,NG,Natural Gas Fired Combustion Turbine,SB,GT,1.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,61.1861,-151.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.701145983989388 -96,Beluga,2,1968.0,16.0,18.9,19.6,1,NG,Natural Gas Fired Combustion Turbine,OS,GT,1.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,61.1861,-151.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.701145983989388 -96,Beluga,3,1972.0,59.1,58.0,64.8,2,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9813874788494078,1.0,non-conus,non-conus,AK,61.1861,-151.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.701120787693778 -96,Beluga,5,1975.0,68.3,61.4,68.7,2,NG,Natural Gas Fired Combustion Turbine,SB,GT,10.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8989751098096632,1.0,non-conus,non-conus,AK,61.1861,-151.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.70112174299612 -96,Beluga,6,1976.0,76.5,72.6,79.2,2,NG,Natural Gas Fired Combustion Turbine,OS,GT,5.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9490196078431372,1.0,non-conus,non-conus,AK,61.1861,-151.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.701120092790347 -96,Beluga,7,1978.0,76.5,70.6,80.1,2,NG,Natural Gas Fired Combustion Turbine,SB,GT,12.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.922875816993464,1.0,non-conus,non-conus,AK,61.1861,-151.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.701120092790347 -99,Frederickson,1,1981.0,88.9,67.0,81.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7536557930258717,0.9122609673790775,WECC,PSEI,WA,47.079722,-122.365,Frederickson1,GT E_E,False,1.0,1.0,-1.0,80.01,80.01,2663.27,402.717,1.0,0.45,67.0,-19.102337173227692,1809.2235702205808,-0.0014034726655167504,-18.927867127793615,1803.8114146979276,10.164377600363817,#TRUE#,#1981-11-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,57.785,67.0,66.5,WA,NG,Areo,#FALSE#,57.785,67,12.741221005154639 -99,Frederickson,2,1981.0,88.9,67.0,81.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7536557930258717,0.9122609673790775,WECC,PSEI,WA,47.079722,-122.365,Frederickson2,GT E_E,False,1.0,1.0,-1.0,80.01,80.01,2663.27,402.717,1.0,0.45,67.0,-19.102337173227692,1809.2235702205808,-0.0014034726655167504,-18.927867127793615,1803.8114146979276,10.164377600363817,#TRUE#,#1981-11-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,57.785,67.0,66.5,WA,NG,Areo,#FALSE#,57.785,67,12.741221005154639 -100,South Consolidated,SC1,1981.0,1.4,1.4,1.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.466477,-111.781064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -104,J S Eastwood,1,1987.0,199.8,199.8,199.8,0,WAT,Hydroelectric Pumped Storage,OS,PS,12.0,1987.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,37.147926,-119.2567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -108,Holcomb,1,1983.0,348.7,359.1,359.1,95,SUB,Conventional Steam Coal,OP,ST,8.0,1983.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,37.9308,-100.9725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -109,Dillingham,10,1988.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589563944368923 -109,Dillingham,11,2001.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589565239396407 -109,Dillingham,12,2006.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,3.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589565239396407 -109,Dillingham,13,2006.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589565239396407 -109,Dillingham,14,2008.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,3.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589565239396407 -109,Dillingham,15,2008.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589565239396407 -109,Dillingham,16,2009.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.58955972412016 -109,Dillingham,17,2019.0,2.2,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589563944368923 -109,Dillingham,18,2019.0,2.2,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.042914,-158.468597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.589563944368923 -113,Cholla,1,1962.0,113.6,116.0,116.0,30,SUB,Conventional Steam Coal,OP,ST,5.0,1962.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,AZPS,AZ,34.9394,-110.3033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.62648260624086 -113,Cholla,3,1980.0,312.3,271.0,271.0,75,SUB,Conventional Steam Coal,OP,ST,5.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8677553634325968,0.8677553634325968,WECC,AZPS,AZ,34.9394,-110.3033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.366815736127187 -114,Douglas,1,1972.0,26.1,15.0,19.0,2,DFO,Petroleum Liquids,OP,GT,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5747126436781609,0.7279693486590038,WECC,AZPS,AZ,31.364122,-109.5538,Douglas 1,GT,False,8.0,12.0,-1.0,5.0,5.0,1351.991,142.72,1.0,1.036526,16.0,-1.4792503730226785,163.3000044468157,-1.3974970938275733e-06,-1.4792199558071337,163.29984594830555,13.19267129382624,#TRUE#,#1972-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,8.0,16.0,0.0,AZ,Oil,,#FALSE#,8,16,23.625 -116,Ocotillo,GT1,1972.0,53.1,50.0,62.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9416195856873822,1.0,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT1,GT,False,1.0,1.0,-1.0,55.8,55.8,1857.398,280.86,1.0,0.45,62.0,12.400246094438746,22.128424114712722,0.23354262812651724,-6.146220264726446,348.7273398121571,13.037339912469182,#TRUE#,#1972-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,18.6,62.0,50.0,AZ,NG,Areo,#FALSE#,18.6,62, -116,Ocotillo,GT2,1973.0,53.1,50.0,62.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9416195856873822,1.0,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT2,GT,False,1.0,1.0,-1.0,55.8,55.8,1857.398,280.86,1.0,0.45,62.0,12.400246094438746,22.128424114712722,0.23354262812651724,-6.146220264726446,348.7273398121571,13.037339912469182,#TRUE#,#1973-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,18.6,62.0,55.0,AZ,NG,Areo,#FALSE#,18.6,62, -116,Ocotillo,GT3,2019.0,140.0,104.7,105.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7478571428571429,0.7557142857142857,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT3,GT LMS_LMS100,False,1.0,1.0,-1.0,94.23,94.23,3136.607,474.291,1.0,0.45,110.0,9.754896101694564,25.97070675495096,0.049847861211166244,3.533129059688461,188.01418428124467,10.310890889716454,#TRUE#,#2019-04-15#,#2050-12-31#,Future-Planned,AZPS,SW_AZPS,23.0,110.0,115.0,AZ,NG,Areo,#FALSE#,23,110,12.283696218607057 -116,Ocotillo,GT4,2019.0,140.0,104.7,105.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7478571428571429,0.7557142857142857,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT4,GT LMS_LMS100,False,1.0,1.0,-1.0,94.23,94.23,3136.607,474.291,1.0,0.45,110.0,10.058242741068906,55.462325619773246,0.05934543161892447,2.651035785610794,248.380097354255,11.245609887721095,#TRUE#,#2019-01-15#,#2050-12-31#,Future-Planned,AZPS,SW_AZPS,23.0,110.0,115.0,AZ,NG,Areo,#FALSE#,23,110,10.690738644820147 -116,Ocotillo,GT5,2019.0,140.0,104.7,105.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7478571428571429,0.7557142857142857,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT5,GT LMS_LMS100,False,1.0,1.0,-1.0,94.23,94.23,3136.607,474.291,1.0,0.45,104.7,3.654155151695121,284.97723360009525,0.2012343206869418,-26.957561510990562,1402.2119614808948,7.727991015719958,#TRUE#,#2019-02-15#,#2050-12-31#,Future-Planned,AZPS,SW_AZPS,52.35,104.7,115.0,AZ,NG,Areo,#FALSE#,52.35,104.7,13.09364042603373 -116,Ocotillo,GT6,2019.0,140.0,104.7,105.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7478571428571429,0.7557142857142857,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT6,GT LMS_LMS100,False,1.0,1.0,-1.0,94.23,94.23,3136.607,474.291,1.0,0.45,104.7,3.654155151695121,284.97723360009525,0.2012343206869418,-26.957561510990562,1402.2119614808948,7.727991015719958,#TRUE#,#2019-03-15#,#2050-12-31#,Future-Planned,AZPS,SW_AZPS,52.35,104.7,115.0,AZ,NG,Areo,#FALSE#,52.35,104.7,10.708012547721708 -116,Ocotillo,GT7,2019.0,140.0,104.7,105.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7478571428571429,0.7557142857142857,WECC,AZPS,AZ,33.4225,-111.9122,Ocotillo GT7,GT LMS_LMS100,False,1.0,1.0,-1.0,94.23,94.23,3136.607,474.291,1.0,0.45,104.7,3.654155151695121,284.97723360009525,0.2012343206869418,-26.957561510990562,1402.2119614808948,7.727991015719958,#TRUE#,#2018-12-15#,#2050-12-31#,Future-Planned,AZPS,SW_AZPS,52.35,104.7,115.0,AZ,NG,Areo,#FALSE#,52.35,104.7,6.536579486626093 -117,West Phoenix,1B,1976.0,132.0,85.0,92.0,10,NG,Natural Gas Fired Combined Cycle,OP,CS,6.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.6439393939393939,0.696969696969697,WECC,AZPS,AZ,33.4417,-112.1583,West Phoenix 1B,CC B_7B,False,6.0,2.0,-1.0,5.52,5.52,7161.427,22.8,1.0,2.1,92.0,5.6679466033971355,222.36890663921784,-1.2678300675930693e-05,5.669702041065935,222.30993489228808,8.98003400568751,#TRUE#,#1976-06-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,50.6,92.0,85.0,AZ,NG,Single shaft,#FALSE#,50.6,92, -117,West Phoenix,2B,1976.0,132.0,85.0,92.0,10,NG,Natural Gas Fired Combined Cycle,OP,CS,6.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.6439393939393939,0.696969696969697,WECC,AZPS,AZ,33.4417,-112.1583,West Phoenix 2B,CC B_7B,False,6.0,2.0,-1.0,5.52,5.52,7161.427,22.8,1.0,2.1,92.0,5.781110854295295,226.95379555077588,-1.2678320582292617e-05,5.782866295044158,226.89482368760332,9.161488167411694,#TRUE#,#1976-06-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,50.6,92.0,85.0,AZ,NG,Single shaft,#FALSE#,50.6,92, -117,West Phoenix,3B,1976.0,132.0,85.0,92.0,50,NG,Natural Gas Fired Combined Cycle,OP,CS,6.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.6439393939393939,0.696969696969697,WECC,AZPS,AZ,33.4417,-112.1583,West Phoenix 3B,CC B_7B,False,6.0,2.0,-1.0,5.52,5.52,7161.427,22.8,1.0,2.1,92.0,5.645313752478978,221.5991289074182,-1.2678327211548182e-05,5.64706919451963,221.5401569896205,8.945935652840191,#TRUE#,#1976-06-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,50.6,92.0,85.0,AZ,NG,Single shaft,#FALSE#,50.6,92, -117,West Phoenix,C4-1,2001.0,91.0,68.0,80.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7472527472527473,0.8791208791208791,WECC,AZPS,AZ,33.4417,-112.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -117,West Phoenix,C4-2,2001.0,44.6,39.0,40.0,0,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.874439461883408,0.8968609865470851,WECC,AZPS,AZ,33.4417,-112.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -117,West Phoenix,C5-1,2003.0,184.5,155.0,160.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8401084010840109,0.8672086720867209,WECC,AZPS,AZ,33.4417,-112.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -117,West Phoenix,C5-2,2003.0,184.5,153.0,160.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8292682926829268,0.8672086720867209,WECC,AZPS,AZ,33.4417,-112.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -117,West Phoenix,C5-3,2003.0,200.6,150.0,166.0,0,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7477567298105683,0.827517447657029,WECC,AZPS,AZ,33.4417,-112.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -117,West Phoenix,GT1,1972.0,53.1,50.0,62.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9416195856873822,1.0,WECC,AZPS,AZ,33.4417,-112.1583,West Phoenix GT1,GT,False,1.0,1.0,-1.0,45.0,45.0,1497.902,11.0,1.0,0.45,50.0,10.603490767604992,127.82545971501547,-4.562767460677963e-06,10.603808997996392,127.82019542712928,14.475950563855005,#TRUE#,#1972-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,22.5,50.0,50.0,AZ,NG,Industrial,#FALSE#,22.5,50, -117,West Phoenix,GT2,1973.0,53.1,50.0,62.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9416195856873822,1.0,WECC,AZPS,AZ,33.4417,-112.1583,West Phoenix GT2,GT,False,1.0,1.0,-1.0,45.0,45.0,1497.902,11.0,1.0,0.45,50.0,10.626545312921927,128.07273244169284,-4.593376170241442e-06,10.626865723307699,128.06743118935628,14.50649621223468,#TRUE#,#1973-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,22.5,50.0,50.0,AZ,NG,Industrial,#FALSE#,22.5,50, -118,Saguaro,GE1,2002.0,78.3,76.0,79.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9706257982120051,1.0,WECC,AZPS,AZ,32.5517,-111.3,Saguaro GE1,GT E_7EA,False,1.0,1.0,-1.0,6.2,6.2,3659.837,13.64,1.0,0.56,62.0,-0.1110603872922022,566.3117382826701,-4.211008524853163e-05,-0.10684390351788192,566.2078250392543,11.380774097596175,#TRUE#,#2002-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,40.3,62.0,50.0,AZ,NG,Industrial,#FALSE#,40.3,62, -118,Saguaro,GT1,1972.0,53.1,50.0,62.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9416195856873822,1.0,WECC,AZPS,AZ,32.5517,-111.3,Saguaro AZ 1,GT_501AA,False,1.0,1.0,-1.0,6.2,6.2,3659.837,13.64,1.0,0.56,62.0,10.559216514530153,125.59857429351463,-1.3486619718506967e-06,10.559319363492254,125.59682305162377,14.291705978261074,#TRUE#,#1972-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,18.6,62.0,50.0,AZ,NG,Industrial,#FALSE#,18.6,62, -118,Saguaro,GT2,1973.0,53.1,50.0,62.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9416195856873822,1.0,WECC,AZPS,AZ,32.5517,-111.3,Saguaro AZ 2,GT_501AA,False,1.0,1.0,-1.0,7.9,7.9,4663.341,17.38,1.0,0.56,79.0,2.2612729776501115,348.0116046985843,0.5779555001556116,-64.3948613269134,2195.1016438279744,8.807981365764899,#TRUE#,#1973-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,40.0,79.0,75.0,AZ,NG,Industrial,#FALSE#,40,79, -120,Yucca,GT1,1971.0,23.6,18.0,22.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7627118644067796,0.9322033898305084,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT1,GT,False,1.0,1.0,-1.0,19.8,19.8,659.0769,4.84,1.0,0.45,22.0,10.575973953966313,44.19857239538519,-1.263497497428657e-06,10.576008144208505,44.19836581961003,14.277587974432219,#TRUE#,#1971-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,6.6,22.0,20.0,AZ,NG,Industrial,#FALSE#,6.6,22, -120,Yucca,GT2,1971.0,23.6,18.0,22.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7627118644067796,0.9322033898305084,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT2,GT,False,1.0,1.0,-1.0,19.8,19.8,659.0769,4.84,1.0,0.45,22.0,10.575973953966313,44.19857239538519,-1.263497497428657e-06,10.576008144208505,44.19836581961003,14.277587974432219,#TRUE#,#1971-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,6.6,22.0,20.0,AZ,NG,Industrial,#FALSE#,6.6,22, -120,Yucca,GT21,1978.0,25.3,20.0,22.0,2,DFO,Petroleum Liquids,OP,GT,12.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7905138339920948,0.8695652173913043,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT21,GT,False,1.0,1.0,-1.0,19.8,19.8,659.0769,99.66,1.0,0.45,22.0,-1.3746365498625297,208.46400296261984,-6.93408578244862e-06,-1.3744153517241293,208.46230812081922,12.246996533865545,#TRUE#,#1978-12-01#,#2050-12-31#,Existing,IID,CA_IID,11.0,22.0,0.0,AZ,Oil,,#FALSE#,11,22, -120,Yucca,GT3,1973.0,72.4,52.0,62.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.718232044198895,0.8563535911602209,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT3,GT,False,1.0,1.0,-1.0,47.7,47.7,1587.776,11.66,1.0,0.45,53.0,9.460700733604272,95.57485958071804,-1.3325874831035533e-06,9.460787632406143,95.57359398242878,12.783264842002328,#TRUE#,#1973-06-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,15.9,53.0,50.0,AZ,NG,Industrial,#FALSE#,15.9,53, -120,Yucca,GT4,1974.0,72.4,51.0,61.0,5,DFO,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044198895027624,0.8425414364640883,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT4,GT,False,1.0,1.0,-1.0,47.7,47.7,1587.776,5.3,1.0,0.45,53.0,8.965148172956987,119.45414529501646,-1.3405628993102145e-06,8.96523556425214,119.45287326143273,13.117851692457219,#TRUE#,#1974-07-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,15.9,53.0,50.0,AZ,Oil,,#FALSE#,15.9,53, -120,Yucca,GT5,2008.0,60.5,47.0,49.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7768595041322314,0.8099173553719008,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT5,GT LM_LM6000,False,1.0,1.0,-1.0,44.37,44.37,1476.931,223.329,1.0,0.45,49.0,5.136774962403651,115.61510266735168,0.3892827095327841,-20.66169236735052,515.1901413376386,9.08188422763313,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,49.0,45.0,AZ,NG,Areo,#FALSE#,20,49, -120,Yucca,GT6,2008.0,60.5,47.0,49.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7768595041322314,0.8099173553719008,WECC,AZPS,AZ,32.7214,-114.7106,Yucca GT6,GT LM_LM6000,False,1.0,1.0,-1.0,44.37,44.37,1476.931,223.329,1.0,0.45,49.0,4.7584249207130975,131.2146895896119,0.31177051788772053,-15.903170404586724,451.2282003977177,9.235835533092963,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,49.0,45.0,AZ,NG,Areo,#FALSE#,20,49, -120,Yucca,ST1,1959.0,86.7,75.0,75.0,2,NG,Natural Gas Steam Turbine,OP,ST,4.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8650519031141868,0.8650519031141868,WECC,AZPS,AZ,32.7214,-114.7106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -124,Demoss Petrie,GT2,2001.0,85.0,75.0,77.4,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,0.9105882352941177,WECC,TEPC,AZ,32.252273,-110.992148,DeMoss Petrie,GT E_7E,False,1.0,1.0,-1.0,67.5,67.5,2246.853,330.69,1.0,0.45,80.0,3.899495683929679,323.2703994966086,0.5532121639711665,-60.404081293939775,2116.57510236001,9.946848512201544,#TRUE#,#2001-06-01#,#2046-12-31#,Existing,TEPC,SW_TEPC,40.0,80.0,73.0,AZ,NG,Areo,#FALSE#,40,80, -126,H Wilson Sundt Generating Station,4,1967.0,173.3,156.0,156.0,26,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9001731102135025,0.9001731102135025,WECC,TEPC,AZ,32.16,-110.9047,H Wilson Sundt 4 Gas,ST-NG,False,4.0,2.0,-1.0,15.6,15.6,10717.97,1391.52,1.0,0.29,156.0,10.061393459451129,-19.028936103510542,0.03809376372998369,3.033850824028586,262.376269673258,9.79954779913651,#TRUE#,#1967-07-01#,#2037-12-31#,Existing,TEPC,SW_TEPC,40.0,156.0,156.0,AZ,NG,,#FALSE#,40,156,11.710522168734414 -126,H Wilson Sundt Generating Station,GT1,1972.0,27.0,24.0,26.8,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8888888888888888,0.9925925925925926,WECC,TEPC,AZ,32.16,-110.9047,H Wilson Sundt GT1,GT,False,1.0,1.0,-1.0,19.8,19.8,659.0769,99.66,1.0,0.45,22.0,10.794426208605687,12.41292826823586,0.8063917934364304,-13.171698477999687,175.74014359320873,11.712486774189985,#TRUE#,#1972-12-01#,#2032-12-31#,Existing,TEPC,SW_TEPC,8.1,22.0,24.0,AZ,NG,Areo,#FALSE#,8.1,22, -126,H Wilson Sundt Generating Station,GT2,1972.0,27.0,24.0,26.8,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8888888888888888,0.9925925925925926,WECC,TEPC,AZ,32.16,-110.9047,H Wilson Sundt GT2,GT,False,1.0,1.0,-1.0,19.8,19.8,659.0769,99.66,1.0,0.45,22.0,10.794426208605687,12.41292826823586,0.8063917934364304,-13.171698477999687,175.74014359320873,11.712486774189985,#TRUE#,#1972-12-01#,#2032-12-31#,Existing,TEPC,SW_TEPC,8.1,22.0,24.0,AZ,NG,Areo,#FALSE#,8.1,22, -126,H Wilson Sundt Generating Station,RIC1,2020.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 01,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2020-03-04#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC10,2019.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 10,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2019-12-22#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC2,2020.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 02,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2020-03-04#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC3,2020.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 03,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2020-03-04#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC4,2020.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 04,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2020-03-04#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC5,2020.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 05,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2020-03-04#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC6,2019.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 06,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2019-12-22#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC7,2019.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 07,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2019-12-22#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC8,2019.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 08,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2019-12-22#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,RIC9,2019.0,18.8,18.2,18.7,4.7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9680851063829786,0.9946808510638298,WECC,TEPC,AZ,32.16,-110.9047,Sundt RICE 09,IC_18V50SG,False,1.0,1.0,-1.0,17.955,17.955,189.0,1.87,1.0,0.0,18.9,5.541925084622206,31.29981548979333,-4.992999364794581e-07,5.541935585592805,31.29976964131824,9.160614126755604,#TRUE#,#2019-12-22#,#2050-12-31#,Under Construction,TEPC,SW_TEPC,3.94,18.9,19.0,AZ,,,#FALSE#,3.94,18.9, -126,H Wilson Sundt Generating Station,ST3,1962.0,113.6,104.0,104.0,25,NG,Natural Gas Steam Turbine,OP,ST,6.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9154929577464789,0.9154929577464789,WECC,TEPC,AZ,32.16,-110.9047,H Wilson Sundt ST3,ST-NG,False,4.0,2.0,-1.0,10.5,10.5,7214.021,936.6,1.0,0.29,104.0,10.145040777021924,7.153686208637643,0.04998455232091935,4.3419666371351315,145.57840006799879,10.313713766063128,#TRUE#,#1962-06-01#,#2032-12-31#,Existing,TEPC,SW_TEPC,21.0,104.0,99.0,AZ,NG,,#FALSE#,20,104, -130,Cross,1,1995.0,590.9,580.0,585.0,260,BIT,Conventional Steam Coal,OP,ST,5.0,1995.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9815535623624979,0.9900152310035539,SERC,SC,SC,33.371506,-80.113235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.700227988316074 -130,Cross,2,1984.0,556.2,565.0,570.0,250,BIT,Conventional Steam Coal,OP,ST,5.0,1984.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SC,SC,33.371506,-80.113235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.94377384780278 -130,Cross,3,2007.0,591.0,610.0,610.0,250,BIT,Conventional Steam Coal,OP,ST,1.0,2007.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SC,SC,33.371506,-80.113235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.388396039396554 -130,Cross,4,2008.0,652.0,615.0,615.0,250,BIT,Conventional Steam Coal,OP,ST,10.0,2008.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9432515337423313,0.9432515337423313,SERC,SC,SC,33.371506,-80.113235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.738386649900981 -136,Seminole (FL),1,1984.0,714.6,573.0,639.0,300,BIT,Conventional Steam Coal,OP,ST,2.0,1984.0,1,2024,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8018471872376154,0.8942065491183879,SERC,SEC,FL,29.733056,-81.632778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.646936841109426 -136,Seminole (FL),2,1984.0,714.6,634.0,640.0,300,BIT,Conventional Steam Coal,OP,ST,12.0,1984.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8872096277637839,0.8956059333893087,SERC,SEC,FL,29.733056,-81.632778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.855980246860488 -141,Agua Fria,AF1,1958.0,113.6,113.0,113.0,113,NG,Natural Gas Steam Turbine,OP,ST,1.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.994718309859155,0.994718309859155,WECC,SRP,AZ,33.5561,-112.2153,Agua Fria 1,ST-NG,False,4.0,2.0,-1.0,11.35,11.35,7798.013,1012.42,1.0,0.29,114.0,8.742066924342751,41.83702729971177,0.055634469660354055,0.2573352732505145,342.80086823672553,9.366806057393976,#TRUE#,#1958-01-01#,#2050-12-31#,Existing,SRP,SW_SRP,45.0,114.0,118.0,AZ,NG,,#FALSE#,45,114, -141,Agua Fria,AF2,1957.0,113.6,113.0,113.0,113,NG,Natural Gas Steam Turbine,OP,ST,4.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.994718309859155,0.994718309859155,WECC,SRP,AZ,33.5561,-112.2153,Agua Fria 2,ST-NG,False,4.0,2.0,-1.0,11.35,11.35,7798.013,1012.42,1.0,0.29,114.0,8.832369640057921,42.246573499007745,0.05623121761930725,0.2566290057710359,346.43858683577463,9.463224397330238,#TRUE#,#1957-04-01#,#2050-12-31#,Existing,SRP,SW_SRP,45.0,114.0,118.0,AZ,NG,,#FALSE#,45,114, -141,Agua Fria,AF3,1961.0,163.2,181.0,184.0,181,DFO,Petroleum Liquids,OP,ST,4.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,Agua Fria 3,ST-NG,False,4.0,2.0,-1.0,18.25,18.25,12538.66,1627.9,1.0,0.29,184.0,9.090315557703248,44.871306098027794,0.018442155383526712,4.8175319659471,268.73228102189483,9.552841390215406,#TRUE#,#1961-04-01#,#2050-12-31#,Existing,SRP,SW_SRP,60.0,184.0,186.0,AZ,NG,,#FALSE#,60,184, -141,Agua Fria,AF4,1975.0,80.5,73.0,87.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.906832298136646,1.0,WECC,SRP,AZ,33.5561,-112.2153,Agua Fria 4,GT,False,1.0,1.0,-1.0,7.4,7.4,4368.193,16.28,1.0,0.56,74.0,10.970713540595579,5.349196830093338,-2.0737128862170773e-07,10.970729609471556,5.348951689839744,11.270480749268103,#TRUE#,#1975-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,4.07,74.0,74.0,AZ,NG,Industrial,#FALSE#,4.07,74, -141,Agua Fria,AF5,1974.0,71.2,73.0,82.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,Agua Fria 5,GT,False,1.0,1.0,-1.0,7.4,7.4,4368.193,16.28,1.0,0.56,74.0,10.970713540595579,5.349196830093338,-2.0737128862170773e-07,10.970729609471556,5.348951689839744,11.270480749268103,#TRUE#,#1974-07-01#,#2050-12-31#,Existing,SRP,SW_SRP,4.07,74.0,73.0,AZ,NG,Industrial,#FALSE#,4.07,74, -141,Agua Fria,AF6,1974.0,71.2,73.0,82.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,Agua Fria 6,GT,False,1.0,1.0,-1.0,7.4,7.4,4368.193,16.28,1.0,0.56,74.0,10.970713540595579,5.349196830093338,-2.0737128862170773e-07,10.970729609471556,5.348951689839744,11.270480749268103,#TRUE#,#1974-07-01#,#2050-12-31#,Existing,SRP,SW_SRP,4.07,74.0,73.0,AZ,NG,Industrial,#FALSE#,4.07,74, -141,Agua Fria,AF7,2022.0,49.5,49.5,49.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -141,Agua Fria,AF8,2022.0,49.5,49.5,49.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -141,Agua Fria,AFSB1,2021.0,25.0,25.0,25.0,25,MWH,Batteries,OP,BA,9.0,2021.0, , ,100.0,25.0,25.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -141,Agua Fria,PV-3,2001.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OS,PV,6.0,2001.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,33.5561,-112.2153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -143,Crosscut,CC5,1939.0,3.0,3.0,3.0,0.1,WAT,Conventional Hydroelectric,OS,HY,7.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.439375,-111.946052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -145,Horse Mesa,HM1,1927.0,9.9,10.0,10.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.5907,-111.344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -145,Horse Mesa,HM2,1927.0,9.9,10.0,10.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.5907,-111.344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -145,Horse Mesa,HM3,1927.0,9.9,10.0,10.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.5907,-111.344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -145,Horse Mesa,HM4,1972.0,99.8,119.0,119.0,80,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1972.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,SRP,AZ,33.5907,-111.344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -147,Kyrene,KY1,1952.0,34.5,34.0,34.0,4,NG,Natural Gas Steam Turbine,OS,ST,7.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9855072463768116,0.9855072463768116,WECC,SRP,AZ,33.3556,-111.9353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -147,Kyrene,KY2,1954.0,73.5,72.0,72.0,4,NG,Natural Gas Steam Turbine,OS,ST,6.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9795918367346939,0.9795918367346939,WECC,SRP,AZ,33.3556,-111.9353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -147,Kyrene,KY4,1971.0,53.1,59.0,62.5,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,SRP,AZ,33.3556,-111.9353,Kyrene 4,GT,False,1.0,1.0,-1.0,6.0001,6.0001,3541.837,13.2,1.0,0.56,60.001,10.979837027036691,4.329849587620616,-2.258376778341807e-07,10.979850704119384,4.32968100124728,11.265269794066501,#TRUE#,#1971-12-01#,#2050-12-31#,Existing,SRP,SW_SRP,3.613,60.001,55.0,AZ,NG,Industrial,#FALSE#,3.613,60.001, -147,Kyrene,KY5,1973.0,60.3,53.0,62.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.87893864013267,1.0,WECC,SRP,AZ,33.3556,-111.9353,Kyrene 5,GT,False,1.0,1.0,-1.0,5.4,5.4,3187.6,11.88,1.0,0.56,54.0,9.230195372678482,100.10544909119315,-4.241214986901859e-07,9.230219146967372,100.10519399167372,14.34361245995554,#TRUE#,#1973-07-01#,#2050-12-31#,Existing,SRP,SW_SRP,6.814,54.0,50.0,AZ,NG,Industrial,#FALSE#,6.814,54, -147,Kyrene,KY6,1973.0,60.3,53.0,62.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.87893864013267,1.0,WECC,SRP,AZ,33.3556,-111.9353,Kyrene 6,GT,False,1.0,1.0,-1.0,5.4,5.4,3187.6,11.88,1.0,0.56,54.0,-1.3597779710827493,506.2920075598205,-7.396137672825187e-06,-1.359198852674146,506.28111612357765,12.118304128557122,#TRUE#,#1973-06-01#,#2050-12-31#,Existing,SRP,SW_SRP,27.0,54.0,50.0,AZ,NG,Industrial,#FALSE#,27,54, -147,Kyrene,KY7,2002.0,170.0,148.0,167.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8705882352941177,0.9823529411764705,WECC,SRP,AZ,33.3556,-111.9353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -147,Kyrene,KY7A,2002.0,122.0,106.0,110.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8688524590163934,0.9016393442622951,WECC,SRP,AZ,33.3556,-111.9353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -148,Mormon Flat,MF1,1926.0,9.2,11.5,11.5,8,WAT,Conventional Hydroelectric,OP,HY,5.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.5536,-111.4431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -148,Mormon Flat,MF2,1971.0,54.3,57.3,57.3,10,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1971.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,SRP,AZ,33.5536,-111.4431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -149,Roosevelt,ROOS,1973.0,36.0,34.8,34.8,10,WAT,Conventional Hydroelectric,OP,HY,3.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666666,0.9666666666666666,WECC,SRP,AZ,33.671104,-111.161786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -150,Stewart Mountain,SM,1930.0,13.0,13.0,13.0,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SRP,AZ,33.5661,-111.536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -151,McClure,1,1980.0,71.2,53.5,53.5,20,DFO,Petroleum Liquids,OP,GT,7.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7514044943820224,0.7514044943820224,WECC,BANC,CA,37.62936,-120.93139,McClure 1,GT B_7B,False,1.0,1.0,-1.0,6.2,6.2,3659.837,6.2,1.0,0.56,62.0,-1.398516322823036,597.6500087028917,-7.398003378755757e-06,-1.3978512944203836,597.6356499797832,12.458700946957098,#TRUE#,#1980-07-01#,#2050-12-31#,Existing,BANC,CA_BANC,31.0,62.0,35.0,CA,Oil,,#FALSE#,31,62,19.440629470672388 -151,McClure,2,1981.0,71.2,53.5,53.5,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7514044943820224,0.7514044943820224,WECC,BANC,CA,37.62936,-120.93139,McClure 2,GT B_7B,False,1.0,1.0,-1.0,6.2,6.2,3659.837,6.2,1.0,0.56,62.0,-1.398516322823036,597.6500087028917,-7.398003378755757e-06,-1.3978512944203836,597.6356499797832,12.458700946957098,#TRUE#,#1981-07-01#,#2050-12-31#,Existing,BANC,CA_BANC,31.0,62.0,35.0,CA,Oil,,#FALSE#,31,62,19.440629470672388 -152,Davis Dam,1,1951.0,51.7,51.7,51.7,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,35.197044,-114.570669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -152,Davis Dam,2,1951.0,51.7,51.7,51.7,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,35.197044,-114.570669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -152,Davis Dam,3,1951.0,48.0,48.0,48.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,35.197044,-114.570669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -152,Davis Dam,4,1951.0,51.7,51.7,51.7,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,35.197044,-114.570669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -152,Davis Dam,5,1951.0,51.7,51.7,51.7,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,35.197044,-114.570669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,1,1964.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,2,1964.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,3,1964.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,4,1965.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,5,1965.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,6,1965.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,7,1966.0,157.0,157.0,157.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -153,Glen Canyon Dam,8,1966.0,165.0,165.0,165.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.936614,-111.483872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N0,1936.0,2.4,2.4,2.4,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N1,1936.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N2,1936.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N3,1937.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N4,1936.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N5,1938.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N6,1938.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N7,1944.0,127.0,127.0,127.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -154,Hoover Dam (NV),N8,1961.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,NV,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -159,Lake Creek Dam,1,1981.0,1.5,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,WECC,PACE,UT,40.493631,-111.312506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -160,Apache Station,GT1,1963.0,11.5,10.0,10.0,1,NG,Natural Gas Fired Combustion Turbine,SB,GT,2.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913043,0.8695652173913043,WECC,WALC,AZ,32.0603,-109.8931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -160,Apache Station,GT2,1972.0,20.4,18.5,20.0,2,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9068627450980393,0.9803921568627452,WECC,WALC,AZ,32.0603,-109.8931,Apache GT2,GT,False,1.0,1.0,-1.0,2.13,2.13,1257.331,4.686,1.0,0.56,21.3,-1.3522630967243183,198.73460286345022,-4.069605803458387e-06,-1.352137961925104,198.7336788735734,12.060389425310754,#TRUE#,#1972-06-01#,#2050-12-31#,Existing,WALC,SW_WALC,10.65,21.3,19.0,AZ,NG,Industrial,#FALSE#,10.65,21.3, -160,Apache Station,GT3,1975.0,78.7,60.0,63.0,7,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7623888182973316,0.8005082592121981,WECC,WALC,AZ,32.0603,-109.8931,Apache GT3,GT,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,-1.3791430514761334,665.9900098542628,-7.470200347531813e-06,-1.3783848254735087,665.9715248105067,12.297844773774312,#TRUE#,#1975-06-01#,#2050-12-31#,Existing,WALC,SW_WALC,35.0,70.0,69.0,AZ,NG,Industrial,#FALSE#,35,70, -160,Apache Station,GT4,2002.0,60.5,38.0,44.0,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,10.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.628099173553719,0.7272727272727273,WECC,WALC,AZ,32.0603,-109.8931,Apache GT4,GT LM_GE LM6000PC,False,1.0,1.0,-1.0,36.72,36.72,1222.288,184.824,1.0,0.45,45.0,5.737405282812472,80.02138950698948,0.21676868242341893,-5.471124471569082,202.32097558288245,9.802229081161887,#TRUE#,#2002-10-01#,#2050-12-31#,Existing,WALC,SW_WALC,10.0,45.0,40.0,AZ,NG,Areo,#FALSE#,10,45, -160,Apache Station,ST1,1964.0,81.6,72.0,72.0,20,NG,Natural Gas Steam Turbine,SB,ST,11.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8823529411764707,0.8823529411764707,WECC,WALC,AZ,32.0603,-109.8931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -160,Apache Station,ST2,1979.0,204.0,175.0,175.0,50,NG,Natural Gas Steam Turbine,OP,ST,1.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.857843137254902,0.857843137254902,WECC,WALC,AZ,32.0603,-109.8931,Apache ST2,ST-Col,False,6.0,12.0,-1.0,3.894,3.894,28866.91,1632.75,1.0,1.79,175.0,10.79453835394746,24.24040594160731,0.03678216924356907,2.975150634347596,391.9325483243667,11.075926995470535,#TRUE#,#1979-01-01#,#2050-12-31#,Existing,WALC,SW_WALC,50.0,175.0,194.0,AZ,NG,,#FALSE#,50,175, -160,Apache Station,ST3,1979.0,204.0,175.0,175.0,50,SUB,Conventional Steam Coal,OP,ST,9.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.857843137254902,0.857843137254902,WECC,WALC,AZ,32.0603,-109.8931,Apache ST3,ST-Col,False,48.0,108.0,-1.0,3.894,3.894,28866.91,1632.75,1.0,1.79,175.0,11.463088686233514,-34.20655284208442,0.03580816547322096,3.875998726509544,320.59154244054633,11.063369900593898,#TRUE#,#1979-09-01#,#2050-12-31#,Existing,WALC,SW_WALC,49.359,175.0,186.0022,AZ,Coal,,#FALSE#,49.359,175, -161,Turlock Lake,1,1980.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.611461,-120.594678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -161,Turlock Lake,2,1980.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.611461,-120.594678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -161,Turlock Lake,3,1980.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.611461,-120.594678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -162,Hickman,1,1979.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.621536,-120.746247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -162,Hickman,2,1979.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.621536,-120.746247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -165,GREC,2,1985.0,594.0,492.5,492.5,150,SUB,Conventional Steam Coal,OP,ST,10.0,1985.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8291245791245792,0.8291245791245792,MRO,SWPP,OK,36.190278,-95.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.656685574116299 -165,GREC,3CT,2017.0,369.0,310.3,327.3,160,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8409214092140922,0.8869918699186992,MRO,SWPP,OK,36.190278,-95.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -165,GREC,3ST,2017.0,231.3,166.7,175.7,100,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.720709035884133,0.759619541720709,MRO,SWPP,OK,36.190278,-95.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -166,Carpenter,1,1932.0,28.0,30.5,30.5,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.4425,-93.0262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -166,Carpenter,2,1932.0,28.0,30.4,30.4,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.4425,-93.0262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -170,Lake Catherine,4,1970.0,552.5,522.0,522.0,45,NG,Natural Gas Steam Turbine,OP,ST,4.0,1970.0,6,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9447963800904977,0.9447963800904977,SERC,MISO,AR,34.4341,-92.9049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.613741148589485 -172,Osceola (AR),9,1992.0,1.6,1.6,1.6,1.6,DFO,Petroleum Liquids,SB,IC,5.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,35.705381,-89.9689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -174,Remmel,1,1925.0,3.0,4.0,4.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.4272,-92.8941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -174,Remmel,2,1925.0,3.0,3.7,3.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.4272,-92.8941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -174,Remmel,3,1925.0,3.0,3.9,3.9,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.4272,-92.8941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -180,Volta 2,1,1981.0,1.0,0.9,0.9,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,CISO,CA,40.45193,-121.86215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -182,Beaver Dam,1,1965.0,56.0,64.4,64.4,20,WAT,Conventional Hydroelectric,OA,HY,5.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.421507,-93.847373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -182,Beaver Dam,2,1965.0,56.0,64.4,64.4,20,WAT,Conventional Hydroelectric,OS,HY,5.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.421507,-93.847373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -187,Degray,1,1972.0,40.0,40.0,40.0,15,WAT,Conventional Hydroelectric,OP,HY,2.0,1972.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.211913,-93.110963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -187,Degray,2,1972.0,30.0,30.0,30.0,15,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1972.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,MISO,AR,34.211913,-93.110963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -188,Greers Ferry Lake,1,1964.0,48.0,50.0,50.0,15,WAT,Conventional Hydroelectric,OP,HY,3.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,35.5207,-91.9953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -188,Greers Ferry Lake,2,1964.0,48.0,40.0,40.0,15,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,MRO,SPA,AR,35.5207,-91.9953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -193,Municipal Light,1,1963.0,2.0,2.0,2.0,1.2,DFO,Petroleum Liquids,OS,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SPA,AR,36.3858,-90.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -193,Municipal Light,2,1952.0,0.6,0.6,0.6,0.4,DFO,Petroleum Liquids,OS,IC,4.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SPA,AR,36.3858,-90.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -193,Municipal Light,4,1976.0,2.2,2.2,2.2,1.4,DFO,Petroleum Liquids,OS,IC,3.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SPA,AR,36.3858,-90.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -193,Municipal Light,6,1959.0,1.3,1.3,1.3,0.7,DFO,Petroleum Liquids,OS,IC,3.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SPA,AR,36.3858,-90.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -193,Municipal Light,7,1955.0,1.1,1.1,1.1,0.6,DFO,Petroleum Liquids,OS,IC,1.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SPA,AR,36.3858,-90.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -195,Narrows (AR),1,1950.0,8.5,9.7,9.7,5,WAT,Conventional Hydroelectric,OP,HY,5.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SWPP,AR,34.148427,-93.715168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -195,Narrows (AR),2,1950.0,8.5,9.7,9.7,5,WAT,Conventional Hydroelectric,OP,HY,5.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SWPP,AR,34.148427,-93.715168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -195,Narrows (AR),3,1969.0,8.5,9.7,9.7,5,WAT,Conventional Hydroelectric,OP,HY,9.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SWPP,AR,34.148427,-93.715168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -196,Norfork,1,1950.0,40.2,40.0,40.0,10,WAT,Conventional Hydroelectric,OP,HY,2.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9950248756218905,0.9950248756218905,MRO,SPA,AR,36.2491,-92.2401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -196,Norfork,2,1944.0,40.2,40.0,40.0,10,WAT,Conventional Hydroelectric,OP,HY,6.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9950248756218905,0.9950248756218905,MRO,SPA,AR,36.2491,-92.2401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -197,Blakely Mountain,1,1955.0,37.5,37.5,37.5,20,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.570984,-93.194425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -197,Blakely Mountain,2,1955.0,37.5,37.5,37.5,20,WAT,Conventional Hydroelectric,OP,HY,10.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,AR,34.570984,-93.194425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,1,1952.0,40.0,45.0,45.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,2,1952.0,40.0,45.0,45.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,3,1952.0,40.0,35.0,35.0,10,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.875,0.875,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,4,1953.0,40.0,45.0,45.0,10,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,5,1962.0,45.0,50.0,50.0,10,WAT,Conventional Hydroelectric,OP,HY,1.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,6,1962.0,45.0,50.0,50.0,10,WAT,Conventional Hydroelectric,OP,HY,2.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,7,1963.0,45.0,50.0,50.0,10,WAT,Conventional Hydroelectric,OP,HY,8.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -198,Bull Shoals,8,1963.0,45.0,50.0,50.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,36.3635,-92.5763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -199,Dardanelle,1,1965.0,40.2,35.0,35.0,10,WAT,Conventional Hydroelectric,OP,HY,4.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8706467661691542,0.8706467661691542,MRO,SPA,AR,35.2503,-93.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -199,Dardanelle,2,1965.0,40.2,35.0,35.0,10,WAT,Conventional Hydroelectric,OP,HY,5.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8706467661691542,0.8706467661691542,MRO,SPA,AR,35.2503,-93.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -199,Dardanelle,3,1965.0,40.2,35.0,35.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8706467661691542,0.8706467661691542,MRO,SPA,AR,35.2503,-93.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -199,Dardanelle,4,1966.0,40.2,35.0,35.0,10,WAT,Conventional Hydroelectric,OP,HY,1.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8706467661691542,0.8706467661691542,MRO,SPA,AR,35.2503,-93.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -201,Thomas Fitzhugh,1,1963.0,59.0,61.0,62.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1963.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SWPP,AR,35.462382,-93.804926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -201,Thomas Fitzhugh,2,2002.0,126.0,101.0,110.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8015873015873016,0.873015873015873,SERC,SWPP,AR,35.462382,-93.804926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.494762752873376 -202,Carl Bailey,1,1966.0,120.0,122.0,122.0,25,NG,Natural Gas Steam Turbine,OS,ST,7.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,AR,35.260102,-91.363426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -203,McClellan (AR),1,1972.0,136.0,134.0,134.0,35,NG,Natural Gas Steam Turbine,OP,ST,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9852941176470589,0.9852941176470589,SERC,MISO,AR,33.5648,-92.7917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -204,Clinton Power Station,1,1987.0,1138.3,1050.2,1060.5,296.9,NUC,Nuclear,OP,ST,11.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9226038829833964,0.9316524642010016,SERC,MISO,IL,40.1719,-88.8339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -210,Wolf Creek Generating Station,1,1985.0,1267.7,1225.0,1255.0,50,NUC,Nuclear,OP,ST,9.0,1985.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9663169519602429,0.9899818569062081,MRO,SWPP,KS,38.23926,-95.68978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -214,Alta Powerhouse,1,1902.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1902.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.215979,-120.80355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -215,Angels,1,1940.0,1.4,0.7,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.7142857142857144,WECC,CISO,CA,38.071944,-120.539444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -217,Balch 1,1,1927.0,31.0,34.0,34.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.909137,-119.087712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -218,Balch 2,2,1958.0,48.6,52.5,52.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.908907,-119.087556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -218,Balch 2,3,1958.0,48.6,52.5,52.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.908907,-119.087556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -219,Belden,1,1969.0,117.9,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.007445,-121.249438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -220,Bucks Creek,H1,1928.0,33.0,32.5,32.5,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9848484848484849,0.9848484848484849,WECC,CISO,CA,39.91062,-121.327692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -220,Bucks Creek,H2,1928.0,33.0,32.5,32.5,0,WAT,Conventional Hydroelectric,OA,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9848484848484849,0.9848484848484849,WECC,CISO,CA,39.91062,-121.327692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -221,Butt Valley,1,1958.0,40.0,41.0,41.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.175656,-121.190663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -222,Caribou 1,1,1921.0,23.8,25.0,25.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.085476,-121.148241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -222,Caribou 1,2,1921.0,25.0,25.0,25.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.085476,-121.148241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -222,Caribou 1,3,1924.0,25.0,25.0,25.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.085476,-121.148241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -223,Caribou 2,4,1958.0,60.3,60.0,60.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9950248756218906,0.9950248756218906,WECC,CISO,CA,40.085997,-121.149373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -223,Caribou 2,5,1958.0,57.6,60.0,60.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.085997,-121.149373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -224,Centerville PH,1,1900.0,5.5,5.5,5.5,0,WAT,Conventional Hydroelectric,OS,HY,5.0,1900.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.788877,-121.657383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -224,Centerville PH,2,1900.0,0.9,0.9,0.9,0,WAT,Conventional Hydroelectric,OS,HY,5.0,1900.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.788877,-121.657383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -225,Chili Bar,1,1965.0,8.3,7.0,7.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8433734939759036,0.8433734939759036,WECC,CISO,CA,38.771764,-120.813239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -227,Coleman PH,1,1979.0,12.1,13.0,13.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.404645,-122.121904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -229,Cow Creek,1,1907.0,0.7,0.9,0.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0,12,2024,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.570817,-122.02093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -229,Cow Creek,2,1907.0,0.7,0.9,0.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0,12,2024,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.570817,-122.02093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -231,Cresta,1,1949.0,36.9,35.0,35.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.948509485094851,0.948509485094851,WECC,CISO,CA,39.825907,-121.409687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -231,Cresta,2,1950.0,36.9,35.0,35.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.948509485094851,0.948509485094851,WECC,CISO,CA,39.825907,-121.409687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -232,De Sabla,1,1963.0,18.4,18.5,18.5,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.869265,-121.631819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -233,Deer Creek PH,1,1908.0,5.5,5.7,5.7,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.29807,-120.8443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -235,Drum 1,1,1913.0,12.0,13.2,13.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.256873,-120.767437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -235,Drum 1,2,1913.0,12.0,13.2,13.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.256873,-120.767437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -235,Drum 1,3,1922.0,12.0,13.2,13.2,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.256873,-120.767437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -235,Drum 1,4,1928.0,13.2,14.4,14.4,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.256873,-120.767437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -236,Drum 2,5,1965.0,53.1,49.5,49.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9322033898305084,0.9322033898305084,WECC,CISO,CA,39.257388,-120.767046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -237,Dutch Flat,1,1943.0,22.0,22.0,22.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.216985,-120.835587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -238,El Dorado,1,1924.0,10.0,10.4,10.6,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.793574,-120.619152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -238,El Dorado,2,1924.0,10.0,10.4,10.5,2.5,WAT,Conventional Hydroelectric,OA,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.793574,-120.619152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -239,Electra,1,1948.0,32.3,30.7,30.7,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9504643962848298,0.9504643962848298,WECC,CISO,CA,38.330985,-120.669901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -239,Electra,2,1948.0,35.1,30.7,30.7,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8746438746438746,0.8746438746438746,WECC,CISO,CA,38.330985,-120.669901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -239,Electra,3,1948.0,35.1,36.6,36.6,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.330985,-120.669901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -240,Haas,H1,1958.0,67.5,72.0,72.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.927424,-119.02025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -240,Haas,H2,1958.0,67.5,72.0,72.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.927424,-119.02025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -241,Halsey,1,1916.0,13.6,11.0,11.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8088235294117647,0.8088235294117647,WECC,CISO,CA,38.956985,-121.041932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -242,Hamilton Branch,1,1921.0,2.6,2.4,2.4,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,WECC,CISO,CA,40.268712,-121.089479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -242,Hamilton Branch,2,1921.0,2.7,2.4,2.4,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8888888888888888,0.8888888888888888,WECC,CISO,CA,40.268712,-121.089479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -243,Hat Creek 1,1,1921.0,10.0,8.5,8.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.85,0.85,WECC,CISO,CA,40.929297,-121.544462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -244,Hat Creek 2,1,1921.0,10.0,8.5,8.5,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.85,0.85,WECC,CISO,CA,40.960675,-121.548657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -246,Humboldt Bay,IC1,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC01,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,17.35,CA,,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC10,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC10,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,16.8,CA,NG,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC2,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC02,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,16.9,CA,,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC3,2011.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC03,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,17.35,CA,,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC4,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC04,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,17.3,CA,NG,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC5,2010.0,16.7,16.3,16.3,15.4,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC05,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,16.96,CA,,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC6,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC06,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,16.96,CA,,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC7,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC07,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,16.91,CA,,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC8,2010.0,16.7,16.3,16.3,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9760479041916168,0.9760479041916168,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC08,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,17.38,CA,NG,,#FALSE#,3.26,16.3,8.771391856536086 -246,Humboldt Bay,IC9,2010.0,16.7,16.7,16.7,14.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,40.7415,-124.2103,HumboldtBayIC09,IC_18V50DF,False,1.0,1.0,-1.0,15.485,15.485,163.0,1.63,1.0,0.0,16.3,5.573067437894049,29.22480041955578,-5.271067350349765e-07,5.573077032922094,29.22476478086399,9.566912102427386,#TRUE#,#2010-09-29#,#2050-12-31#,Existing,CIPV,CA_CISO,3.26,16.3,17.2,CA,NG,,#FALSE#,3.26,16.3,8.771391856536086 -248,Inskip,1,1979.0,7.6,8.0,8.0,0,WAT,Conventional Hydroelectric,OS,HY,10.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.400988,-121.965502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -249,James B Black,1,1966.0,85.1,86.0,86.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.992295,-121.975182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -249,James B Black,2,1965.0,83.5,86.0,86.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.992295,-121.975182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -250,Kerckhoff,H1,1920.0,11.3,12.6,12.6,0.5,WAT,Conventional Hydroelectric,OS,HY,8.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.092486,-119.552826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -250,Kerckhoff,H3,1920.0,11.3,12.6,12.6,0.5,WAT,Conventional Hydroelectric,OS,HY,8.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.092486,-119.552826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -253,Kilarc,1,1904.0,1.5,1.6,1.6,0,WAT,Conventional Hydroelectric,OS,HY,6.0,1904.0,12,2024,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.677827,-121.873253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -254,Kings River PH,H1,1962.0,48.6,52.0,52.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.888166,-119.158777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -255,Lime Saddle,1,1906.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.698755,-121.57096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -255,Lime Saddle,2,1906.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.698755,-121.57096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -258,Merced Falls,1,1930.0,3.4,3.5,3.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.52301,-120.329905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,BAT1,2021.0,300.0,300.0,300.0,0.2,MWH,Batteries,OP,BA,5.0,2021.0, , ,1200.0,300.0,300.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,BAT2,2021.0,100.0,100.0,100.0,0.2,MWH,Batteries,OP,BA,5.0,2021.0, , ,400.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,CT1A,2002.0,233.0,165.0,165.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7081545064377682,0.7081545064377682,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,CT1B,2002.0,233.0,165.0,165.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7081545064377682,0.7081545064377682,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,CT2A,2002.0,233.0,165.0,165.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7081545064377682,0.7081545064377682,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,CT2B,2002.0,233.0,165.0,165.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7081545064377682,0.7081545064377682,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,ST1,2002.0,233.0,180.0,180.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7725321888412018,0.7725321888412018,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -260,Dynegy Moss Landing Power Plant Hybrid,ST2,2002.0,233.0,180.0,180.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7725321888412018,0.7725321888412018,WECC,CISO,CA,36.804837,-121.782241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -261,Murphys,1,1954.0,3.6,1.7,2.0,0.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4722222222222222,0.5555555555555556,WECC,CISO,CA,38.147093,-120.446396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -262,Narrows PH,1,1942.0,10.2,12.0,12.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.2364,-121.271741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -264,Phoenix,1,1940.0,1.6,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.032103,-120.326537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -265,Pit 1,H1,1922.0,34.6,30.5,30.5,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8815028901734103,0.8815028901734103,WECC,CISO,CA,40.99084,-121.498243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -265,Pit 1,H2,1922.0,34.6,30.5,30.5,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8815028901734103,0.8815028901734103,WECC,CISO,CA,40.99084,-121.498243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -266,Pit 3,H1,1925.0,26.7,23.3,23.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8726591760299626,0.8726591760299626,WECC,CISO,CA,40.997448,-121.748139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -266,Pit 3,H2,1925.0,26.7,23.3,23.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8726591760299626,0.8726591760299626,WECC,CISO,CA,40.997448,-121.748139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -266,Pit 3,H3,1925.0,26.7,23.3,23.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8726591760299626,0.8726591760299626,WECC,CISO,CA,40.997448,-121.748139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -267,Pit 4,1,1955.0,51.7,47.5,47.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9187620889748549,0.9187620889748549,WECC,CISO,CA,40.986361,-121.84944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -267,Pit 4,2,1955.0,51.7,47.5,47.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9187620889748549,0.9187620889748549,WECC,CISO,CA,40.986361,-121.84944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -268,Pit 5,H1,1944.0,38.2,40.0,40.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.986197,-121.977594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -268,Pit 5,H2,1944.0,38.2,40.0,40.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.986197,-121.977594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -268,Pit 5,H3,1944.0,33.2,40.0,40.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.986197,-121.977594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -268,Pit 5,H4,1944.0,32.0,40.0,40.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.986197,-121.977594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -269,Pit 6,H1,1965.0,39.6,40.0,40.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.922568,-121.992906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -269,Pit 6,H2,1965.0,39.6,40.0,40.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.922568,-121.992906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -270,Pit 7,H1,1965.0,57.6,56.0,56.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9722222222222222,0.9722222222222222,WECC,CISO,CA,40.847462,-121.990798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -270,Pit 7,H2,1965.0,52.2,57.0,57.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.847462,-121.990798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -272,Poe,1,1958.0,71.4,60.0,60.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8403361344537814,0.8403361344537814,WECC,CISO,CA,39.722892,-121.469814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -272,Poe,2,1958.0,71.4,60.0,60.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8403361344537814,0.8403361344537814,WECC,CISO,CA,39.722892,-121.469814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -274,Potter Valley,1,1939.0,4.4,4.5,4.5,0,WAT,Conventional Hydroelectric,OS,HY,2.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.361786,-123.127934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -274,Potter Valley,2,1910.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OS,HY,3.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.361786,-123.127934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -274,Potter Valley,3,1917.0,3.0,2.7,2.7,0,WAT,Conventional Hydroelectric,OS,HY,9.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,CISO,CA,39.361786,-123.127934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -275,Rock Creek,H1,1950.0,63.0,63.0,63.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.90521,-121.345226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -275,Rock Creek,H2,1950.0,63.0,63.0,63.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.90521,-121.345226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -276,San Joaquin 2,1,1917.0,2.8,3.2,3.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.203233,-119.497508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -277,San Joaquin 3,3,1923.0,4.0,4.2,4.2,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.253718,-119.519352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -279,Salt Springs,1,1931.0,12.3,11.0,11.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8943089430894309,0.8943089430894309,WECC,CISO,CA,38.497914,-120.21811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -279,Salt Springs,2,1953.0,29.7,33.0,33.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.497914,-120.21811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -280,South,1,1979.0,6.7,7.0,7.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.395396,-121.879186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -281,Spaulding 1,1,1928.0,7.0,7.0,7.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.324613,-120.644807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -282,Spaulding 2,1,1928.0,3.7,4.4,4.4,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.324592,-120.645375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -283,Spaulding 3,1,1929.0,6.6,5.8,5.8,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8787878787878788,0.8787878787878788,WECC,CISO,CA,39.337679,-120.635467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -284,Spring Gap,1,1921.0,6.0,7.0,7.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.18653,-120.11168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -285,Stanislaus,HC1,1963.0,81.9,91.0,91.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.139048,-120.370325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -286,Geysers Unit 5-20,U11,1975.0,110.0,68.0,68.0,22,GEO,Geothermal,OP,ST,12.0,1975.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6181818181818182,0.6181818181818182,WECC,CISO,CA,38.777,-122.745,Geysers11,GEO,True,6.0,16.0,-1.0,4.59,4.59,0.0,0.0,1.0,3.098312,68.0,-1.7614296052416143,399.25720953096095,-7.462857603352933e-06,-1.7606937674950178,399.2397828635748,6.679001710125287,#TRUE#,#1975-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,68.0,68.0,CA,Geo,Binary,#FALSE#,55,68, -286,Geysers Unit 5-20,U12,1979.0,110.0,51.0,56.0,22,GEO,Geothermal,OP,ST,8.0,1979.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4636363636363636,0.509090909090909,WECC,CISO,CA,38.777,-122.745,Geysers12,GEO,True,6.0,16.0,-1.0,2.17,2.17,0.0,0.0,1.0,3.098312,50.0,-1.761428192090378,293.5714069558256,-7.37029208030041e-06,-1.7608938459137364,293.5621019620446,6.6790010923025545,#TRUE#,#1979-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,50.0,47.0,CA,Geo,Binary,#FALSE#,33,50, -286,Geysers Unit 5-20,U13,1980.0,138.0,65.0,68.0,22,GEO,Geothermal,OP,ST,4.0,1980.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.47101449275362317,0.49275362318840576,WECC,CISO,CA,38.777,-122.745,Geysers13,GEO,True,6.0,16.0,-1.0,2.7,2.7,0.0,0.0,1.0,3.098312,56.0,-1.7614287640801327,328.8000078142028,-7.406260108688648e-06,-1.7608273775399155,328.7882787432432,6.679001342373661,#TRUE#,#1980-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,56.0,56.0,CA,Geo,Binary,#FALSE#,51,56, -286,Geysers Unit 5-20,U14,1980.0,113.0,60.0,62.0,22,GEO,Geothermal,OP,ST,2.0,1980.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5309734513274336,0.5486725663716814,WECC,CISO,CA,38.777,-122.745,Geysers14,GEO,True,6.0,16.0,-1.0,2.21,2.21,0.0,0.0,1.0,3.098312,50.0,-1.761428192090378,293.5714069558256,-7.37029208030041e-06,-1.7608938459137364,293.5621019620446,6.6790010923025545,#TRUE#,#1980-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,50.0,50.0,CA,Geo,Binary,#FALSE#,50,50, -286,Geysers Unit 5-20,U16,1985.0,118.0,60.0,60.0,22,GEO,Geothermal,OP,ST,10.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5084745762711864,0.5084745762711864,WECC,CISO,CA,38.777,-122.745,Geysers16,GEO,True,6.0,16.0,-1.0,2.16,2.16,0.0,0.0,1.0,3.098312,49.0,-1.7614287634120542,287.7000068127626,-7.363177543134813e-06,-1.7609056096489661,287.6910789232245,6.6790013423181325,#TRUE#,#1985-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,49.0,49.0,CA,Geo,Binary,#FALSE#,49,49, -286,Geysers Unit 5-20,U17,1982.0,118.0,60.0,65.0,22,GEO,Geothermal,OP,ST,11.0,1982.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5084745762711864,0.5508474576271186,WECC,CISO,CA,38.777,-122.745,Geysers17,GEO,True,6.0,16.0,-1.0,2.84,2.84,0.0,0.0,1.0,3.098312,56.0,-1.7614287640801327,328.8000078142028,-7.406260108688648e-06,-1.7608273775399155,328.7882787432432,6.679001342373661,#TRUE#,#1982-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,56.0,54.5,CA,Geo,Binary,#FALSE#,32.5,56, -286,Geysers Unit 5-20,U18,1983.0,118.0,60.0,60.0,22,GEO,Geothermal,OP,ST,11.0,1983.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5084745762711864,0.5084745762711864,WECC,CISO,CA,38.777,-122.745,Geysers18,GEO,True,6.0,16.0,-1.0,2.13,2.13,0.0,0.0,1.0,3.098312,45.0,-1.7614268581750445,264.21420624051024,-7.331309037832483e-06,-1.7609484905628257,264.2067090708386,6.679000508863775,#TRUE#,#1983-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,45.0,45.0,CA,Geo,Binary,#FALSE#,45,45, -286,Geysers Unit 5-20,U20,1985.0,118.0,50.0,50.0,22,GEO,Geothermal,OP,ST,10.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.423728813559322,0.423728813559322,WECC,CISO,CA,38.777,-122.745,Geysers20,GEO,True,6.0,16.0,-1.0,1.75,1.75,0.0,0.0,1.0,3.098312,40.0,-1.7614301907808985,234.85720552519544,-5.9245189898574844e-06,-1.7610791083842277,234.85218452525615,6.679001967279332,#TRUE#,#1985-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,40.0,40.0,CA,Geo,Binary,#FALSE#,40,40, -286,Geysers Unit 5-20,U5,1971.0,55.0,45.0,50.0,20,GEO,Geothermal,OP,ST,4.0,1971.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8181818181818181,0.9090909090909091,WECC,CISO,CA,38.777,-122.745,Geysers05,GEO,True,6.0,16.0,-1.0,2.09,2.09,0.0,0.0,1.0,3.098312,43.0,-1.761428098214461,252.4714059543852,-7.240829767467151e-06,-1.7609767148518571,252.46464754632325,6.6790010515300295,#TRUE#,#1971-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,43.0,42.5,CA,Geo,Binary,#FALSE#,27.5,43, -286,Geysers Unit 5-20,U6,1971.0,55.0,45.0,50.0,20,GEO,Geothermal,OP,ST,4.0,1971.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8181818181818181,0.9090909090909091,WECC,CISO,CA,38.777,-122.745,Geysers06,GEO,True,6.0,16.0,-1.0,2.04,2.04,0.0,0.0,1.0,3.098312,42.0,-1.7614287625212464,246.60000581132132,-5.211662529988135e-06,-1.761114403237606,246.59546018942186,6.679001342244092,#TRUE#,#1971-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,42.0,42.5,CA,Geo,Binary,#FALSE#,27.5,42, -286,Geysers Unit 5-20,U7,1972.0,55.0,40.0,42.0,20,GEO,Geothermal,OP,ST,7.0,1972.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7272727272727273,0.7636363636363637,WECC,CISO,CA,38.777,-122.745,Geysers07,GEO,True,6.0,16.0,-1.0,4.0,4.0,0.0,0.0,1.0,3.098312,38.0,-1.7614265062257608,223.11420523906907,-6.547845683376629e-06,-1.761074487767668,223.109689581301,6.679000355250876,#TRUE#,#1972-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,38.0,38.0,CA,Geo,Binary,#FALSE#,27.5,38, -286,Geysers Unit 5-20,U8,1972.0,55.0,40.0,42.0,20,GEO,Geothermal,OP,ST,7.0,1972.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7272727272727273,0.7636363636363637,WECC,CISO,CA,38.777,-122.745,Geysers08,GEO,True,6.0,16.0,-1.0,1.75,1.75,0.0,0.0,1.0,3.098312,38.0,-1.7614265062257608,223.11420523906907,-6.547845683376629e-06,-1.761074487767668,223.109689581301,6.679000355250876,#TRUE#,#1972-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,38.0,37.0,CA,Geo,Binary,#FALSE#,27.5,38, -287,Tiger Creek,H1,1931.0,25.5,29.0,29.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.449291,-120.492645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -287,Tiger Creek,H2,1931.0,26.7,29.0,29.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.449291,-120.492645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -289,Tule River,1,1914.0,4.2,3.2,3.2,0,WAT,Conventional Hydroelectric,OS,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7619047619047619,0.7619047619047619,WECC,CISO,CA,36.163076,-118.707104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -289,Tule River,2,1914.0,4.2,3.2,3.2,0,WAT,Conventional Hydroelectric,OS,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7619047619047619,0.7619047619047619,WECC,CISO,CA,36.163076,-118.707104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -290,Volta 1,1,1980.0,8.5,9.0,9.0,0,WAT,Conventional Hydroelectric,OS,HY,4.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.459111,-121.86708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -291,West Point PH,1,1948.0,13.6,14.5,14.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.420898,-120.549572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -292,Wise,1,1917.0,13.6,14.0,14.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.889862,-121.098525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -292,Wise,2,1986.0,2.8,3.2,3.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.889862,-121.098525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -293,A G Wishon,1,1910.0,3.2,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.15105,-119.504724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -293,A G Wishon,2,1910.0,3.2,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.15105,-119.504724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -293,A G Wishon,3,1910.0,3.2,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.15105,-119.504724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -293,A G Wishon,4,1910.0,3.2,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.15105,-119.504724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -294,Copco 1,1,1918.0,10.0,14.0,14.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.978914,-122.335317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -294,Copco 1,2,1918.0,10.0,14.0,14.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.978914,-122.335317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -295,Copco 2,1,1925.0,13.5,17.0,17.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0,5,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.975716,-122.358127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -295,Copco 2,2,1925.0,13.5,17.0,17.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0,5,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.975716,-122.358127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -296,Fall Creek,1,1903.0,0.5,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,WECC,PACW,CA,41.985605,-122.360455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -296,Fall Creek,2,1907.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.985605,-122.360455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -296,Fall Creek,3,1910.0,1.2,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,WECC,PACW,CA,41.985605,-122.360455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -297,Iron Gate,1,1962.0,18.0,18.8,18.8,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.932981,-122.43678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -298,Limestone,1,1985.0,893.0,831.0,831.0,300,SUB,Conventional Steam Coal,OP,ST,12.0,1985.0,12,2029,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9305711086226204,0.9305711086226204,TRE,ERCO,TX,31.4219,-96.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -298,Limestone,2,1986.0,956.8,858.0,858.0,300,SUB,Conventional Steam Coal,OP,ST,12.0,1986.0,12,2029,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8967391304347827,0.8967391304347827,TRE,ERCO,TX,31.4219,-96.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -299,Blundell,1,1984.0,30.7,23.0,23.0,4,GEO,Geothermal,OP,ST,7.0,1984.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.749185667752443,0.749185667752443,WECC,PACE,UT,38.4889,-112.8533,Blundell1,GEO,True,6.0,16.0,-1.0,6.63,6.63,0.0,0.0,1.0,3.098312,25.0,-1.76143218685249,146.78580337925078,-7.058149846139727e-06,-1.761176283841051,146.78357478356807,6.679002842038434,#TRUE#,#1984-07-01#,#2037-12-31#,Existing,PAUT,BS_PACE,13.048,25.0,22.0,UT,Geo,Binary,#FALSE#,13.048,25, -299,Blundell,2,2007.0,14.1,8.7,10.8,4,GEO,Geothermal,OP,ST,12.0,2007.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6170212765957446,0.7659574468085107,WECC,PACE,UT,38.4889,-112.8533,Blundell2,GEO,True,6.0,16.0,-1.0,0.79,0.79,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2007-11-01#,#2037-12-31#,Existing,PAUT,BS_PACE,0.0,12.0,9.0,UT,Geo,Binary,#FALSE#,6,12, -313,Green Lake,1,1982.0,9.3,9.3,9.3,4,WAT,Conventional Hydroelectric,OP,HY,4.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,56.986284,-135.12275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -313,Green Lake,2,1982.0,9.3,9.3,9.3,4,WAT,Conventional Hydroelectric,OP,HY,10.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,56.986284,-135.12275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -314,Drop 5,1,1982.0,2.0,1.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.44999999999999996,WECC,IID,CA,32.673097,-115.392026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -314,Drop 5,2,1982.0,2.0,1.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.44999999999999996,WECC,IID,CA,32.673097,-115.392026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -315,AES Alamitos LLC,3,1961.0,310.0,332.0,332.0,10,NG,Natural Gas Steam Turbine,OP,ST,12.0,1961.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.7688,-118.1009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.583086638077685 -315,AES Alamitos LLC,4,1962.0,310.0,335.0,335.0,20,NG,Natural Gas Steam Turbine,OP,ST,6.0,1962.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.7688,-118.1009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.07638145957537 -315,AES Alamitos LLC,5,1964.0,495.0,485.0,485.0,70,NG,Natural Gas Steam Turbine,OP,ST,3.0,1964.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9797979797979798,0.9797979797979798,WECC,CISO,CA,33.7688,-118.1009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.1176013064659 -316,Sepulveda Canyon,1,1982.0,8.5,8.5,8.5,1.5,WAT,Conventional Hydroelectric,SB,HY,6.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.0969,-118.4795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -317,Big Creek 1,1,1913.0,19.8,19.8,19.8,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2042,-119.2396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -317,Big Creek 1,2,1913.0,15.8,15.8,15.8,1.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2042,-119.2396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -317,Big Creek 1,3,1923.0,21.6,21.6,21.6,2.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2042,-119.2396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -317,Big Creek 1,4,1925.0,31.2,31.2,31.2,3.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2042,-119.2396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -318,Big Creek 2,3,1913.0,15.8,15.8,15.8,1.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2,-119.3069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -318,Big Creek 2,4,1914.0,15.8,15.8,15.8,1.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2,-119.3069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -318,Big Creek 2,5,1921.0,17.5,17.5,17.5,1.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2,-119.3069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -318,Big Creek 2,6,1925.0,17.5,17.5,17.5,1.8,WAT,Conventional Hydroelectric,OP,HY,3.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2,-119.3069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -319,Big Creek 3,1,1923.0,34.0,34.0,34.0,3.4,WAT,Conventional Hydroelectric,OP,HY,10.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.148517,-119.386623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -319,Big Creek 3,2,1923.0,34.0,34.0,34.0,3.4,WAT,Conventional Hydroelectric,OP,HY,9.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.148517,-119.386623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -319,Big Creek 3,3,1923.0,34.0,33.0,33.0,3.4,WAT,Conventional Hydroelectric,OA,HY,10.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9705882352941176,0.9705882352941176,WECC,CISO,CA,37.148517,-119.386623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -319,Big Creek 3,4,1948.0,36.0,36.0,36.0,3.6,WAT,Conventional Hydroelectric,OP,HY,4.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.148517,-119.386623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -319,Big Creek 3,5,1980.0,36.5,36.5,36.5,3.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.148517,-119.386623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -320,Big Creek 4,1,1951.0,50.0,50.0,50.0,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.139,-119.4898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -320,Big Creek 4,2,1951.0,50.0,50.0,50.0,5,WAT,Conventional Hydroelectric,OP,HY,7.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.139,-119.4898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -321,Big Creek 8,1,1921.0,30.0,25.8,25.8,2.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.86,0.86,WECC,CISO,CA,37.2096,-119.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -321,Big Creek 8,2,1929.0,45.0,45.0,45.0,4.5,WAT,Conventional Hydroelectric,OS,HY,6.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.2096,-119.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -322,Big Creek 2A,1,1928.0,55.0,50.0,50.0,5.5,WAT,Conventional Hydroelectric,OS,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.200062,-119.30681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -322,Big Creek 2A,2,1928.0,55.0,50.0,50.0,5.5,WAT,Conventional Hydroelectric,OS,HY,12.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.200062,-119.30681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -323,Bishop Creek 2,1,1908.0,2.5,2.5,2.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.273581,-118.573339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -323,Bishop Creek 2,2,1908.0,2.5,2.5,2.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.273581,-118.573339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -323,Bishop Creek 2,3,1911.0,2.3,2.3,2.3,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.273581,-118.573339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -324,Bishop Creek 3,1,1913.0,2.8,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.301962,-118.531957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -324,Bishop Creek 3,2,1913.0,2.8,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.301962,-118.531957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -324,Bishop Creek 3,3,1913.0,2.8,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.301962,-118.531957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -325,Bishop Creek 4,1,1905.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.323035,-118.501714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -325,Bishop Creek 4,2,1905.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.323035,-118.501714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -325,Bishop Creek 4,3,1906.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.323035,-118.501714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -325,Bishop Creek 4,4,1907.0,2.2,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.323035,-118.501714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -325,Bishop Creek 4,5,1909.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.323035,-118.501714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -326,Bishop Creek 5,1,1943.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.3344,-118.4797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -326,Bishop Creek 5,2,1919.0,2.5,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.72,0.72,WECC,CISO,CA,37.3344,-118.4797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -327,Bishop Creek 6,1,1913.0,1.6,1.6,1.6,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.3499,-118.4628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -332,Fontana,1,1917.0,1.5,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.155162,-117.397119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -332,Fontana,2,1917.0,1.5,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.155162,-117.397119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -335,AES Huntington Beach LLC,2,1958.0,218.0,225.8,225.8,20,NG,Natural Gas Steam Turbine,OP,ST,12.0,1958.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.6439,-117.9792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.690929621997007 -336,Kaweah 2,2,1929.0,1.8,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.461326,-118.87988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -337,Kaweah 1,1,1929.0,2.3,2.3,2.3,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.465066,-118.862023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -338,Kaweah 3,1,1913.0,2.4,2.4,2.4,0,WAT,Conventional Hydroelectric,OS,HY,5.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.486059,-118.835645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -338,Kaweah 3,2,1913.0,2.4,2.1,2.1,0,WAT,Conventional Hydroelectric,OS,HY,5.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8750000000000001,0.8750000000000001,WECC,CISO,CA,36.486059,-118.835645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -339,Kern River 3,1,1921.0,20.5,20.5,20.5,0.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.776185,-118.436233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -339,Kern River 3,2,1921.0,19.8,19.7,19.7,0.8,WAT,Conventional Hydroelectric,OP,HY,3.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9949494949494949,0.9949494949494949,WECC,CISO,CA,35.776185,-118.436233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -340,Kern River 1,1,1907.0,6.6,6.6,6.6,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.460303,-118.77959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -340,Kern River 1,2,1907.0,6.6,6.6,6.6,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.460303,-118.77959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -340,Kern River 1,3,1907.0,6.6,6.6,6.6,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.460303,-118.77959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -340,Kern River 1,4,1907.0,6.6,6.6,6.6,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.460303,-118.77959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -341,Long Beach Generation LLC,CT1,1976.0,63.0,65.0,65.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.7641,-118.2248,LongBeach_GT1,CT_RT?,False,1.0,1.0,-1.0,63.0,63.0,2097.063,317.1,1.0,0.45,65.0,1.3586578657076471,679.4672297659187,-0.0001635517356649698,1.3768609280341793,678.9646360475681,13.663617004521608,#TRUE#,#2007-08-01#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,65.0,35.0,CA,NG,Areo,#FALSE#,48,65, -341,Long Beach Generation LLC,CT2,1976.0,63.0,65.0,65.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.7641,-118.2248,LongBeach_GT2,CT_RT,False,1.0,1.0,-1.0,63.0,63.0,2097.063,317.1,1.0,0.45,65.0,1.3586578657076471,679.4672297659187,-0.0001635517356649698,1.3768609280341793,678.9646360475681,13.663617004521608,#TRUE#,#2007-08-01#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,65.0,35.0,CA,NG,Areo,#FALSE#,48,65, -341,Long Beach Generation LLC,CT3,1976.0,63.0,65.0,65.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.7641,-118.2248,LongBeach_GT3,CT_RT,False,1.0,1.0,-1.0,63.0,63.0,2097.063,317.1,1.0,0.45,65.0,1.3586578657076471,679.4672297659187,-0.0001635517356649698,1.3768609280341793,678.9646360475681,13.663617004521608,#TRUE#,#2007-08-01#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,65.0,35.0,CA,NG,Areo,#FALSE#,48,65, -341,Long Beach Generation LLC,CT4,1976.0,63.0,65.0,65.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.7641,-118.2248,LongBeach_GT4,CT_RT?,False,1.0,1.0,-1.0,63.0,63.0,2097.063,317.1,1.0,0.45,65.0,1.3586578657076471,679.4672297659187,-0.0001635517356649698,1.3768609280341793,678.9646360475681,13.663617004521608,#TRUE#,#2007-08-01#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,65.0,35.0,CA,NG,Areo,#FALSE#,48,65, -342,Lundy,1,1911.0,1.5,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.042729,-119.172015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -342,Lundy,2,1912.0,1.5,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.042729,-119.172015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -344,Mammoth Pool,1,1960.0,95.0,95.0,95.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.220302,-119.337983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -344,Mammoth Pool,2,1960.0,95.0,95.0,95.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.220302,-119.337983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -350,Ormond Beach,1,1971.0,806.0,741.0,741.0,100,NG,Natural Gas Steam Turbine,OP,ST,8.0,1971.0,1,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9193548387096774,0.9193548387096774,WECC,CISO,CA,34.1292,-119.1689,Ormond_Beach_1,ST-NG,False,4.0,2.0,-1.0,74.1,74.1,50910.38,6609.72,1.0,0.29,741.0,9.38527477722615,-185.2190402773152,0.008777368626899207,2.1160316694716172,1019.4243465764798,8.790140170173123,#TRUE#,#1971-01-01#,#2023-12-31#,Existing,CISC,CA_CISO,100.0,741.0,0.0,CA,NG,,#FALSE#,100,741,11.949029070681657 -350,Ormond Beach,2,1973.0,806.0,750.0,750.0,50,NG,Natural Gas Steam Turbine,OP,ST,3.0,1973.0,1,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9305210918114144,0.9305210918114144,WECC,CISO,CA,34.1292,-119.1689,Ormond_Beach_2,ST-NG,False,4.0,2.0,-1.0,77.5,77.5,53246.34,6913.0,1.0,0.29,750.0,9.015108418370872,-26.230257391820295,0.0046151433323381634,5.387606090939178,498.1975445993738,8.908494723418391,#TRUE#,#1971-01-01#,#2023-12-31#,Existing,CISC,CA_CISO,50.0,750.0,0.0,CA,NG,,#FALSE#,50,750,11.348523457120354 -353,Poole,1,1924.0,11.3,11.3,11.3,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.944237,-119.2161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -354,Portal,1,1956.0,10.8,10.8,10.8,1.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.257045,-119.158936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -356,AES Redondo Beach LLC,5,1954.0,163.2,175.0,178.9,10,NG,Natural Gas Steam Turbine,OP,ST,10.0,1954.0,12,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.8504,-118.395,RedondoBeach5,ST-NG,False,4.0,2.0,-1.0,17.695,17.695,12157.34,1578.394,1.0,0.29,178.9,8.180017328607473,27.923595462759927,0.04113573506955181,1.092001662190668,235.67857482276315,8.840725815426424,#TRUE#,#1954-01-01#,#2022-12-31#,Existing,CISC,CA_CISO,10.165,178.9,0.0,CA,NG,,#FALSE#,10.165,178.9,21.31527975907434 -356,AES Redondo Beach LLC,6,1957.0,163.2,175.0,175.0,10,NG,Natural Gas Steam Turbine,OP,ST,7.0,1957.0,12,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.8504,-118.395,RedondoBeach6,ST-NG,False,4.0,2.0,-1.0,17.5,17.5,12023.37,1561.0,1.0,0.29,175.0,8.290156229064193,28.98747367593904,0.04277175384675317,1.078239768046871,235.9804688213887,8.98970510249514,#TRUE#,#1957-01-01#,#2022-12-31#,Existing,CISC,CA_CISO,10.0,175.0,0.0,CA,NG,,#FALSE#,10,175,23.150016499070844 -356,AES Redondo Beach LLC,8,1967.0,495.0,480.0,486.9,130,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0,12,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9696969696969697,0.9836363636363636,WECC,CISO,CA,33.8504,-118.395,RedondoBeach8,ST-NG,False,4.0,2.0,-1.0,48.345,48.345,33215.41,4312.374,1.0,0.29,486.9,8.52248314719852,153.27707300821177,0.00972457447159539,2.6009603088315827,951.0565648974056,9.099840175378713,#TRUE#,#1967-01-01#,#2022-12-31#,Existing,CISC,CA_CISO,129.178,486.9,0.0,CA,NG,,#FALSE#,129.178,486.9,11.308332433405326 -357,Rush Creek,1,1916.0,5.9,5.9,5.9,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.766954,-119.123284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -357,Rush Creek,2,1917.0,7.2,5.5,5.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7638888888888888,0.7638888888888888,WECC,CISO,CA,37.766954,-119.123284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -358,Mountainview Generating Station,MV3A,2005.0,164.6,156.0,182.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9477521263669502,1.0,WECC,CISO,CA,34.0818,-117.2418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -358,Mountainview Generating Station,MV3B,2005.0,164.6,156.0,182.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9477521263669502,1.0,WECC,CISO,CA,34.0818,-117.2418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -358,Mountainview Generating Station,MV3C,2005.0,189.2,197.0,191.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,34.0818,-117.2418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -358,Mountainview Generating Station,MV4A,2006.0,164.6,156.0,182.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9477521263669502,1.0,WECC,CISO,CA,34.0818,-117.2418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -358,Mountainview Generating Station,MV4B,2006.0,164.6,156.0,182.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9477521263669502,1.0,WECC,CISO,CA,34.0818,-117.2418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -358,Mountainview Generating Station,MV4C,2006.0,189.2,197.0,191.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,34.0818,-117.2418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -361,Santa Ana 1,1,1899.0,0.8,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1899.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.14522,-117.058481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -361,Santa Ana 1,2,1899.0,0.8,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1899.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.14522,-117.058481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -361,Santa Ana 1,3,1899.0,0.8,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1899.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.14522,-117.058481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -361,Santa Ana 1,4,1899.0,0.8,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1899.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.14522,-117.058481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -363,Santa Ana 3,1,1999.0,3.1,3.1,3.1,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.107245,-117.099091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -365,Lower Tule River,1,1909.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OS,HY,9.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.13568,-118.788868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -365,Lower Tule River,2,1909.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OS,HY,9.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.13568,-118.788868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -371,Columbia Generating Station,2,1984.0,1200.0,1151.0,1172.0,120,NUC,Nuclear,OP,ST,12.0,1984.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9591666666666667,0.9766666666666667,WECC,BPAT,WA,46.4711,-119.3339,Columbia2,ST-NUC,True,1.0,1.0,-1.0,6.98,6.98,145001.0,0.0,1.0,5.633296,1185.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2014-12-10#,#2050-12-31#,Existing,BPAT,NW_BPAT,1185.0,1185.0,1151.2,WA,Uranium,,#FALSE#,1185,1185, -376,Pardee,1,1930.0,7.5,8.9,8.9,5,WAT,Conventional Hydroelectric,OP,HY,7.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.2569,-120.8507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -376,Pardee,2,1930.0,7.5,8.9,8.9,5,WAT,Conventional Hydroelectric,OP,HY,7.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.2569,-120.8507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -376,Pardee,3,1983.0,8.6,9.9,9.9,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.2569,-120.8507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -377,Grayson,1,1977.0,20.0,19.0,19.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.95,0.95,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -377,Grayson,2,1977.0,20.0,19.0,19.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.95,0.95,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -377,Grayson,3,1953.0,23.0,18.0,18.0,7,NG,Natural Gas Steam Turbine,OS,ST,12.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.782608695652174,0.782608695652174,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -377,Grayson,4,1959.0,50.0,40.0,40.0,15,NG,Natural Gas Steam Turbine,OP,ST,9.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.599342317666599 -377,Grayson,5,1964.0,50.0,40.0,40.0,15,NG,Natural Gas Steam Turbine,OP,ST,11.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.732106278732154 -377,Grayson,8A,1977.0,25.4,26.0,30.0,16,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -377,Grayson,8BC,1977.0,55.1,46.0,50.0,34,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8348457350272231,0.9074410163339383,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -377,Grayson,9,2004.0,57.4,48.0,48.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8362369337979094,0.8362369337979094,WECC,LDWP,CA,34.1556,-118.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.246975297023878 -378,Prairie River,1,1920.0,0.7,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OS,HY,4.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.7142857142857144,MRO,MISO,MN,47.287206,-93.498266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -378,Prairie River,2,1920.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,MRO,MISO,MN,47.287206,-93.498266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -380,Dion R Holm,1,1960.0,78.4,78.4,78.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.896649,-119.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -380,Dion R Holm,2,1960.0,78.4,78.4,78.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.896649,-119.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -381,Moccasin,1,1969.0,50.0,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.809388,-120.299254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -381,Moccasin,2,1969.0,50.0,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.809388,-120.299254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -382,R C Kirkwood,1,1967.0,39.5,39.5,39.5,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.877667,-119.953233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -382,R C Kirkwood,2,1967.0,39.5,39.5,39.5,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.877667,-119.953233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -382,R C Kirkwood,3,1987.0,36.5,36.5,36.5,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.877667,-119.953233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -384,Joliet 29,7,1965.0,660.0,518.0,522.0,120,NG,Natural Gas Steam Turbine,OP,ST,4.0,1965.0,9,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7848484848484849,0.7909090909090909,RFC,PJM,IL,41.494636,-88.123827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -384,Joliet 29,8,1966.0,660.0,518.0,522.0,120,NG,Natural Gas Steam Turbine,OP,ST,3.0,1966.0,9,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7848484848484849,0.7909090909090909,RFC,PJM,IL,41.494636,-88.123827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -385,Drop 2 (CA),1,1953.0,5.0,4.9,2.5,0.7,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9800000000000001,0.5,WECC,IID,CA,32.705435,-115.030975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -385,Drop 2 (CA),2,1953.0,5.0,4.9,2.5,0.7,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9800000000000001,0.5,WECC,IID,CA,32.705435,-115.030975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -386,Drop 3 (CA),1,1941.0,4.8,4.5,3.6,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.75,WECC,IID,CA,32.705428,-115.126103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -386,Drop 3 (CA),2,1966.0,4.4,4.4,4.6,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IID,CA,32.705428,-115.126103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -387,Drop 4,1,1950.0,10.0,10.0,10.0,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IID,CA,32.705341,-115.219067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -387,Drop 4,2,1941.0,9.6,10.0,8.0,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8333333333333334,WECC,IID,CA,32.705341,-115.219067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -388,Pilot Knob,1,1957.0,16.5,,10.4,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,0.6303030303030304,WECC,IID,CA,32.736642,-114.713858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -388,Pilot Knob,2,1957.0,16.5,,7.7,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,0.4666666666666667,WECC,IID,CA,32.736642,-114.713858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -389,El Centro Hybrid,2,1952.0,34.5,32.5,32.5,22,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1952.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9420289855072463,0.9420289855072463,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -389,El Centro Hybrid,2A,1993.0,89.9,73.0,73.0,48,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8120133481646273,0.8120133481646273,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -389,El Centro Hybrid,30,2012.0,65.9,42.0,53.0,28,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.637329286798179,0.8042488619119879,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -389,El Centro Hybrid,31,2012.0,43.2,39.0,46.0,24,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9027777777777777,1.0,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -389,El Centro Hybrid,32,2012.0,43.2,39.0,46.0,24,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9027777777777777,1.0,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -389,El Centro Hybrid,4,1968.0,81.6,67.6,72.0,20,NG,Natural Gas Steam Turbine,OP,ST,8.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8284313725490196,0.8823529411764707,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.918552777188893 -389,El Centro Hybrid,BESS,2016.0,30.0,18.9,29.0,0,MWH,Batteries,OP,BA,10.0,2016.0, , ,20.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.6299999999999999,0.9666666666666667,WECC,IID,CA,32.802222,-115.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -390,Solomon Gulch,1,1982.0,6.0,6.0,6.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,61.0828,-146.3033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -390,Solomon Gulch,2,1982.0,6.0,6.0,6.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,61.0828,-146.3033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -391,Big Pine Creek,1,1925.0,3.2,3.0,3.0,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,WECC,LDWP,CA,37.142795,-118.324075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,1,1973.0,271.0,270.5,270.5,10,WAT,Hydroelectric Pumped Storage,OA,PS,9.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9981549815498155,0.9981549815498155,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,2,1974.0,271.0,270.5,270.5,10,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1974.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9981549815498155,0.9981549815498155,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,3,1976.0,271.0,270.5,270.5,10,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1976.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9981549815498155,0.9981549815498155,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,4,1977.0,271.0,270.5,270.5,10,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1977.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9981549815498155,0.9981549815498155,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,5,1977.0,271.0,270.5,270.5,10,WAT,Hydroelectric Pumped Storage,OA,PS,12.0,1977.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9981549815498155,0.9981549815498155,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,6,1978.0,271.0,270.5,270.5,10,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9981549815498155,0.9981549815498155,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -392,Castaic,7,1972.0,56.0,51.5,51.5,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1972.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9196428571428571,0.9196428571428571,WECC,LDWP,CA,34.587237,-118.656638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -393,Control Gorge,1,1952.0,37.5,37.5,37.5,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,37.437921,-118.556988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -394,Cottonwood,1,1908.0,0.8,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OA,HY,11.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,36.443421,-118.04389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -394,Cottonwood,2,1909.0,0.8,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OA,HY,10.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,36.443421,-118.04389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -396,Foothill,1,1971.0,8.8,8.6,8.6,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9772727272727272,0.9772727272727272,WECC,LDWP,CA,34.318248,-118.494449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -397,Franklin (CA),1,1921.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OA,HY,6.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.103931,-118.413377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -398,Haiwee,1,1927.0,2.8,2.5,2.5,0.5,WAT,Conventional Hydroelectric,OA,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8928571428571429,0.8928571428571429,WECC,LDWP,CA,36.109722,-117.956667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -398,Haiwee,2,1927.0,2.8,2.5,2.5,0.5,WAT,Conventional Hydroelectric,OA,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8928571428571429,0.8928571428571429,WECC,LDWP,CA,36.109722,-117.956667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -399,Harbor,10A,1995.0,85.3,73.0,73.0,36,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8558030480656507,0.8558030480656507,WECC,LDWP,CA,33.7706,-118.2656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -399,Harbor,10B,1995.0,85.3,73.0,73.0,36,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8558030480656507,0.8558030480656507,WECC,LDWP,CA,33.7706,-118.2656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -399,Harbor,5,1995.0,75.0,56.0,60.0,17,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7466666666666666,0.8,WECC,LDWP,CA,33.7706,-118.2656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -399,Harbor,GT10,2002.0,60.5,44.0,44.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,WECC,LDWP,CA,33.7706,-118.2656,Harbor Unit 10,GT LM_GE,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,47.4,-2.561629437489988,478.34322612387064,-0.0003730928338816948,-2.5300065026347003,477.675833137477,8.812105169206362,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,38.0,47.4,0.0,CA,NG,Areo,#FALSE#,38,47.4, -399,Harbor,GT11,2002.0,60.5,44.0,44.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,WECC,LDWP,CA,33.7706,-118.2656,Harbor Unit 11,GT LM_GE,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,47.4,-6.0305665383300555,647.6530395326183,-0.0020211206162418175,-5.853819263830017,643.7955426594026,8.755058694345536,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,41.0,47.4,45.0,CA,NG,Areo,#FALSE#,41,47.4, -399,Harbor,GT12,2002.0,60.5,44.0,44.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,WECC,LDWP,CA,33.7706,-118.2656,Harbor Unit 12,GT LM_GE,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,47.4,-8.58544154117727,759.6533146999092,-0.001088339510157299,-8.48990548538966,757.5604155651473,8.75709919022764,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,41.0,47.4,45.0,CA,NG,Areo,#FALSE#,41,47.4, -399,Harbor,GT13,2002.0,60.5,44.0,44.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,WECC,LDWP,CA,33.7706,-118.2656,Harbor Unit 13,GT LM_GE,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,47.4,-12.18243111685087,925.126216809802,-0.0005759643652215119,-12.12997905713115,923.933934579598,8.665106436718435,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,42.0,47.4,45.0,CA,NG,Areo,#FALSE#,42,47.4, -399,Harbor,GT14,2002.0,60.5,44.0,44.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,WECC,LDWP,CA,33.7706,-118.2656,Harbor Unit 14,GT LM_GE,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,47.4,-7.4424103253271925,711.0194349494611,-0.0012535900975644571,-7.33155014779393,708.5727201479284,8.789840983024806,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,41.0,47.4,45.0,CA,NG,Areo,#FALSE#,41,47.4, -400,Haynes,1,1962.0,230.0,222.0,222.0,50,NG,Natural Gas Steam Turbine,OP,ST,9.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9652173913043478,0.9652173913043478,WECC,LDWP,CA,33.764741,-118.09913,Haynes 1,ST-NG,False,4.0,2.0,-1.0,22.2,22.2,15252.5,1980.24,1.0,0.29,222.0,9.332939380774539,7.323663979770265,0.02585515215399043,2.8840885512328622,341.96068956880333,9.41250680237409,#TRUE#,#2023-12-31#,#2050-12-31#,Existing,LDWP,CA_LDWP,45.0,222.0,0.0,CA,NG,,#FALSE#,45,222,11.790233344003841 -400,Haynes,10,2005.0,182.8,162.5,162.5,105,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8889496717724288,0.8889496717724288,WECC,LDWP,CA,33.764741,-118.09913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.153507616954055 -400,Haynes,11,2013.0,108.2,99.2,99.2,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9168207024029575,0.9168207024029575,WECC,LDWP,CA,33.764741,-118.09913,Haynes 11,GT LMS_LMS100,False,1.0,1.0,-1.0,86.4,86.4,2875.972,21.12,1.0,0.45,102.0,3.430748978671414,300.55248252423036,0.18559767356755433,-24.27826810432198,1295.290039995517,7.793142246854471,#TRUE#,#2013-06-19#,#2050-12-31#,Existing,LDWP,CA_LDWP,48.0,102.0,102.0,CA,NG,Industrial,#FALSE#,52,102, -400,Haynes,12,2013.0,108.2,99.2,99.2,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9168207024029575,0.9168207024029575,WECC,LDWP,CA,33.764741,-118.09913,Haynes 12,GT LMS_LMS100,False,1.0,1.0,-1.0,86.4,86.4,2875.972,21.12,1.0,0.45,102.0,3.2994604469492472,313.23469697171055,0.19343000501422308,-25.57889298059091,1349.9507214321907,7.84593074043813,#TRUE#,#2023-12-31#,#2050-12-31#,Existing,LDWP,CA_LDWP,52.0,102.0,102.0,CA,NG,Industrial,#FALSE#,52,102,22.620100023632972 -400,Haynes,13,2013.0,108.2,99.2,99.2,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9168207024029575,0.9168207024029575,WECC,LDWP,CA,33.764741,-118.09913,Haynes 13,GT LMS_LMS100,False,1.0,1.0,-1.0,86.4,86.4,2875.972,21.12,1.0,0.45,102.0,3.4954963600660114,295.4942409723412,0.18260409525604623,-23.766591684928454,1274.187329688495,7.784471372943105,#TRUE#,#2013-06-19#,#2050-12-31#,Existing,LDWP,CA_LDWP,48.0,102.0,102.0,CA,NG,Industrial,#FALSE#,52,102,7.986056849423013 -400,Haynes,14,2013.0,108.2,99.2,99.2,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9168207024029575,0.9168207024029575,WECC,LDWP,CA,33.764741,-118.09913,Haynes 14,GT LMS_LMS100,False,1.0,1.0,-1.0,86.4,86.4,2875.972,21.12,1.0,0.45,102.0,3.3757346198835343,303.7180987714302,0.1875530776503466,-24.625216324550152,1308.9358796784895,7.784075480614999,#TRUE#,#2013-06-19#,#2050-12-31#,Existing,LDWP,CA_LDWP,52.0,102.0,102.0,CA,NG,Industrial,#FALSE#,52,102,4.3042801095305645 -400,Haynes,15,2013.0,108.2,99.2,99.2,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9168207024029575,0.9168207024029575,WECC,LDWP,CA,33.764741,-118.09913,Haynes 15,GT LMS_LMS100,False,1.0,1.0,-1.0,86.4,86.4,2875.972,21.12,1.0,0.45,102.0,2.7582309673625076,342.33244168395544,0.21140587464069488,-28.803866844893687,1475.3939673413208,7.727042825246132,#TRUE#,#2013-06-19#,#2050-12-31#,Existing,LDWP,CA_LDWP,48.0,102.0,102.0,CA,NG,Industrial,#FALSE#,52,102,9.602291750155189 -400,Haynes,16,2013.0,108.2,99.2,99.2,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9168207024029575,0.9168207024029575,WECC,LDWP,CA,33.764741,-118.09913,Haynes 16,GT LMS_LMS100,False,1.0,1.0,-1.0,86.4,86.4,2875.972,21.12,1.0,0.45,102.0,3.429316861151786,305.0027332515366,0.18847770777273073,-24.709649907887663,1315.1740519971825,7.856303652740401,#TRUE#,#2013-06-29#,#2050-12-31#,Existing,LDWP,CA_LDWP,48.0,102.0,102.0,CA,NG,Industrial,#FALSE#,52,102,11.072041719006636 -400,Haynes,2,1963.0,230.0,222.0,222.0,50,NG,Natural Gas Steam Turbine,OP,ST,4.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9652173913043478,0.9652173913043478,WECC,LDWP,CA,33.764741,-118.09913,Haynes 2,ST-NG,False,4.0,2.0,-1.0,22.2,22.2,15252.5,1980.24,1.0,0.29,222.0,8.68108356993535,49.82440991589273,0.01601524317372871,4.686525638438734,257.1058004687707,9.22239729496113,#FALSE#,#1963-04-01#,#2029-12-31#,Existing,LDWP,CA_LDWP,45.0,222.0,0.0,CA,NG,,#FALSE#,45,222,12.32969960260866 -400,Haynes,8,2005.0,264.3,235.0,250.0,73,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8891411275066212,0.9458948164964056,WECC,LDWP,CA,33.764741,-118.09913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -400,Haynes,9,2005.0,182.8,162.5,162.5,105,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8889496717724288,0.8889496717724288,WECC,LDWP,CA,33.764741,-118.09913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.204385315969091 -401,Middle Gorge,1,1952.0,37.5,37.5,37.5,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,37.51,-118.569167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -402,Pleasant Valley Hydro,1,1958.0,3.2,2.7,2.7,0.3,WAT,Conventional Hydroelectric,OP,HY,2.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.84375,0.84375,WECC,LDWP,CA,37.41416,-118.523889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -403,San Fernando,1,1922.0,2.8,3.2,3.2,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.312778,-118.492778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -403,San Fernando,2,1922.0,2.8,2.9,2.9,0.1,WAT,Conventional Hydroelectric,OA,HY,10.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.312778,-118.492778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -404,Scattergood,1,1958.0,163.2,105.0,105.0,40,NG,Natural Gas Steam Turbine,OP,ST,12.0,1958.0,12,2024,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6433823529411765,0.6433823529411765,WECC,LDWP,CA,33.918151,-118.427648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.59156346326165 -404,Scattergood,2,1959.0,163.2,156.3,156.3,40,NG,Natural Gas Steam Turbine,OP,ST,7.0,1959.0,12,2024,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9577205882352943,0.9577205882352943,WECC,LDWP,CA,33.918151,-118.427648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.296835379192999 -404,Scattergood,4,2015.0,216.9,206.0,206.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9497464269248501,0.9497464269248501,WECC,LDWP,CA,33.918151,-118.427648,Scattergood CC4,CC F_7F.05,False,1.0,1.0,1.0,30.0,30.0,17708.89,44.0,0.0,0.56,311.0,3.358285182532639,458.7513528391677,0.052279378145318266,-18.392094663188697,2548.1340391109848,5.759884940686314,#TRUE#,#2029-12-31#,#2050-12-31#,Future-Planned,LDWP,CA_LDWP,111.685,311.0,0.0,CA,NG,Industrial,#FALSE#,0,0,11.11140899095589 -404,Scattergood,5,2015.0,118.9,107.0,107.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8999158957106812,0.8999158957106812,WECC,LDWP,CA,33.918151,-118.427648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -404,Scattergood,6,2015.0,106.9,102.0,102.0,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9541627689429373,0.9541627689429373,WECC,LDWP,CA,33.918151,-118.427648,Scattergood 6,GT LMS_LMS100,False,1.0,1.0,-1.0,8.9001,8.9001,5253.697,19.58,1.0,0.56,89.001,3.6542442357851455,242.23967533260551,0.23672295701760054,-26.956413280509132,1191.915772518635,7.727989929791224,#TRUE#,#2015-10-29#,#2050-12-31#,Future-Planned,LDWP,CA_LDWP,44.5,89.001,100.0,CA,NG,Industrial,#FALSE#,44.5,89.001,17.650716336895684 -404,Scattergood,7,2015.0,106.9,102.0,102.0,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9541627689429373,0.9541627689429373,WECC,LDWP,CA,33.918151,-118.427648,Scattergood 7,GT LMS_LMS100,False,1.0,1.0,-1.0,8.9001,8.9001,5253.697,19.58,1.0,0.56,89.001,3.6542442357851455,242.23967533260551,0.23672295701760054,-26.956413280509132,1191.915772518635,7.727989929791224,#TRUE#,#2015-12-04#,#2050-12-31#,Future-Planned,LDWP,CA_LDWP,44.5,89.001,100.0,CA,NG,Industrial,#FALSE#,44.5,89.001, -406,Tok,3A,1999.0,1.3,1.3,1.3,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.33552,-142.99997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.683939212981539 -406,Tok,4A,1989.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.33552,-142.99997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.683939144994866 -406,Tok,5A,1996.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.33552,-142.99997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.683939144994866 -406,Tok,6,2010.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,OS,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.33552,-142.99997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.683939586908227 -406,Tok,8,1985.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,10.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.33552,-142.99997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.683939586908227 -406,Tok,9,1985.0,0.9,1.0,1.0,0.4,DFO,Petroleum Liquids,OP,IC,10.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.33552,-142.99997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.683939046791899 -407,Upper Gorge,1,1953.0,37.5,36.5,36.5,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9733333333333334,0.9733333333333334,WECC,LDWP,CA,37.546036,-118.590001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -408,Valley (CA),5,2001.0,60.5,44.0,44.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,WECC,LDWP,CA,34.244991,-118.391327,Valley Unit 5,GT LM_GE,False,1.0,1.0,-1.0,42.3,42.3,1408.028,10.34,1.0,0.45,46.0,9.092647258277054,136.53714221325052,0.34371224885595847,-9.070825626177344,339.0467917055221,15.880948228093505,#TRUE#,#2001-08-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,10.212,46.0,45.0,CA,NG,Industrial,#FALSE#,10.212,46,11.554353056791145 -408,Valley (CA),6,2003.0,182.8,155.0,155.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8479212253829321,0.8479212253829321,WECC,LDWP,CA,34.244991,-118.391327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.388390298243957 -408,Valley (CA),7,2003.0,182.8,155.0,155.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8479212253829321,0.8479212253829321,WECC,LDWP,CA,34.244991,-118.391327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.594388464816827 -408,Valley (CA),8,2003.0,264.4,209.0,209.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7904689863842663,0.7904689863842663,WECC,LDWP,CA,34.244991,-118.391327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -409,Exchequer,1,1967.0,94.5,94.5,94.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.584345,-120.26859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -410,McSwain,1,1967.0,9.0,9.0,9.0,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.522065,-120.31009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -412,Chicago Park,2P,1965.0,44.0,44.0,44.0,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.177903,-120.890856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -413,Dutch Flat 2,3P,1965.0,27.3,27.3,27.3,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.2184,-120.8352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -414,Beardsley,1,1957.0,10.0,11.0,8.5,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.85,WECC,CISO,CA,38.202569,-120.076983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -415,Donnells,H1,1957.0,72.0,72.0,61.2,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8500000000000001,WECC,CISO,CA,38.246656,-120.034072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -416,Tulloch,1,1958.0,11.7,9.0,8.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7692307692307693,0.6837606837606838,WECC,CISO,CA,37.876111,-120.605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -416,Tulloch,2,1958.0,11.7,10.0,8.5,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8547008547008548,0.7264957264957266,WECC,CISO,CA,37.876111,-120.605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -416,Tulloch,3,2012.0,6.5,6.5,6.0,1,WAT,Conventional Hydroelectric,OP,HY,3.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9230769230769231,WECC,CISO,CA,37.876111,-120.605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -417,Forbestown,1,1963.0,41.9,37.5,37.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8949880668257757,0.8949880668257757,WECC,CISO,CA,39.551012,-121.278784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -418,Kelly Ridge,1,1963.0,10.0,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.531784,-121.491247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -419,Woodleaf,1,1963.0,67.2,60.0,60.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8928571428571428,0.8928571428571428,WECC,CISO,CA,39.553811,-121.204077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -421,Craig (AK),1,1984.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,9.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.47691,-133.14869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.272078710309431 -421,Craig (AK),3B,2015.0,1.8,1.8,1.8,0.7,DFO,Petroleum Liquids,OP,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.47691,-133.14869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.272180024135727 -421,Craig (AK),5,1983.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,9.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.47691,-133.14869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.272212993831822 -421,Craig (AK),6,1989.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.47691,-133.14869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.272212993831822 -422,Glenarm,GT1,1976.0,28.8,22.0,22.0,14.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7638888888888888,0.7638888888888888,WECC,CISO,CA,34.126,-118.1494,Glenarm_GT1,GT Aero_FT-3,False,1.0,1.0,-1.0,27.522,27.522,916.1169,138.5274,1.0,0.45,25.0,3.492402703738074,130.6399311476543,-5.80632602339981e-06,3.4926112577415047,130.6381365977912,11.086104565445737,#TRUE#,#1976-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,12.232,25.0,22.0,CA,NG,Areo,#FALSE#,12.232,25, -422,Glenarm,GT2,1976.0,28.8,22.0,22.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7638888888888888,0.7638888888888888,WECC,CISO,CA,34.126,-118.1494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -422,Glenarm,GT3,2004.0,60.5,47.2,47.2,15.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7801652892561984,0.7801652892561984,WECC,CISO,CA,34.126,-118.1494,Glenarm_GT3,GT LM_LM6000,False,1.0,1.0,-1.0,42.57,42.57,1417.015,214.269,1.0,0.45,46.0,4.711770180468435,110.43389493537045,0.3684072361482562,-17.89579324885275,432.69318856402634,8.817781669856789,#TRUE#,#2004-01-08#,#2050-12-31#,Existing,CISC,CA_CISO,18.0,46.0,40.0,CA,NG,Areo,#FALSE#,18,46,16.033916209226835 -422,Glenarm,GT4,2004.0,60.5,47.2,47.2,15.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7801652892561984,0.7801652892561984,WECC,CISO,CA,34.126,-118.1494,Glenarm_GT4,GT LM_LM6000,False,1.0,1.0,-1.0,42.57,42.57,1417.015,214.269,1.0,0.45,44.0,4.003585750438346,109.09488149883855,0.37189771749731715,-18.1444267254667,417.4575094264618,8.144165847832669,#TRUE#,#2004-01-08#,#2050-12-31#,Existing,CISC,CA_CISO,18.0,44.0,42.0,CA,NG,Areo,#FALSE#,18,44,16.859534300897003 -422,Glenarm,GT5,2016.0,71.0,68.0,68.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9577464788732395,0.9577464788732395,WECC,CISO,CA,34.126,-118.1494,Glenarm_GT5,CC LM_LM6000 PC,False,6.0,2.0,-1.0,4.26006,4.26006,5526.832,17.04,1.0,2.1,70.0,4.477376835022839,83.77508707635982,0.17262474640256173,-10.435680764469081,370.5980709453387,6.830261229706086,#TRUE#,#2016-12-20#,#2050-12-31#,Under Construction,CISC,CA_CISO,35.5,70.0,0.0,CA,NG,Areo,#FALSE#,21,70,9.924391246416603 -422,Glenarm,ST1,2016.0,16.0,16.0,16.0,6,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,34.126,-118.1494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -423,Hydaburg,1A,1990.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,10.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.204937,-132.821435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.384615384615385 -423,Hydaburg,3A,2001.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.204937,-132.821435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.384615384615385 -423,Hydaburg,5,1985.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.204937,-132.821435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.384615384615385 -424,French Meadows,1,1966.0,15.3,16.0,16.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.077971,-120.406069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -425,Middle Fork,1,1966.0,61.2,66.0,66.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.024801,-120.596383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -425,Middle Fork,2,1966.0,61.2,66.0,66.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.024801,-120.596383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -426,Oxbow (CA),1,1966.0,6.1,6.0,6.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9836065573770493,0.9836065573770493,WECC,CISO,CA,39.003372,-120.746651,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -427,Ralston,1,1966.0,79.2,86.0,86.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.000999,-120.725053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -428,Parker,1,1982.0,2.7,2.7,2.7,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.477838,-120.444492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -430,Camino,H1,1963.0,78.9,78.9,78.9,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.82881,-120.537089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -430,Camino,H2,1968.0,78.9,77.0,77.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9759188846641318,0.9759188846641318,WECC,BANC,CA,38.82881,-120.537089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -431,Jaybird,H1,1961.0,80.8,78.1,78.1,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9665841584158416,0.9665841584158416,WECC,BANC,CA,38.83405,-120.53176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -431,Jaybird,H2,1962.0,80.8,78.1,78.1,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9665841584158416,0.9665841584158416,WECC,BANC,CA,38.83405,-120.53176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -432,Loon Lake,H1,1971.0,74.1,74.1,74.1,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.982697,-120.324503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -433,Robbs Peak,1,1965.0,25.5,25.5,25.5,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.896511,-120.378292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -435,White Rock/Slab Creek,H1,1968.0,133.0,108.0,108.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8120300751879699,0.8120300751879699,WECC,BANC,CA,38.765336,-120.787366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -435,White Rock/Slab Creek,H2,1968.0,133.0,133.0,133.0,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.765336,-120.787366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -435,White Rock/Slab Creek,H3,2020.0,2.7,2.7,2.7,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,2020.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.765336,-120.787366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -435,White Rock/Slab Creek,H4,1983.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OS,HY,6.0,1983.0,10,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.765336,-120.787366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -436,Devil Canyon,1,1972.0,59.8,57.0,57.0,15,WAT,Conventional Hydroelectric,OP,HY,12.0,1972.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9531772575250836,0.9531772575250836,WECC,CISO,CA,34.2056,-117.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -436,Devil Canyon,2,1976.0,59.8,57.0,57.0,15,WAT,Conventional Hydroelectric,OP,HY,7.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9531772575250836,0.9531772575250836,WECC,CISO,CA,34.2056,-117.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -436,Devil Canyon,3,1994.0,78.3,74.0,74.0,15,WAT,Conventional Hydroelectric,OP,HY,7.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9450830140485313,0.9450830140485313,WECC,CISO,CA,34.2056,-117.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -436,Devil Canyon,4,1992.0,78.3,74.0,74.0,15,WAT,Conventional Hydroelectric,OP,HY,7.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9450830140485313,0.9450830140485313,WECC,CISO,CA,34.2056,-117.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -437,Edward C Hyatt,1,1968.0,117.0,135.3,131.3,115,WAT,Conventional Hydroelectric,OP,HY,3.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.542985,-121.492188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -437,Edward C Hyatt,2,1968.0,97.7,112.4,122.6,97,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,39.542985,-121.492188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -437,Edward C Hyatt,3,1968.0,117.0,135.3,131.3,115,WAT,Conventional Hydroelectric,OP,HY,6.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.542985,-121.492188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -437,Edward C Hyatt,4,1968.0,97.7,112.4,122.6,97,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,39.542985,-121.492188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -437,Edward C Hyatt,5,1968.0,117.0,135.3,131.3,115,WAT,Conventional Hydroelectric,OP,HY,8.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.542985,-121.492188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -437,Edward C Hyatt,6,1969.0,97.7,112.4,122.6,97,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1969.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,39.542985,-121.492188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -438,Thermalito,1,1968.0,32.6,32.6,30.0,30,WAT,Conventional Hydroelectric,OP,HY,11.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9202453987730062,WECC,CISO,CA,39.514893,-121.630077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -438,Thermalito,2,1968.0,27.5,27.5,27.3,27,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,0.9927272727272728,WECC,CISO,CA,39.514893,-121.630077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -438,Thermalito,3,1968.0,27.5,27.5,27.3,27,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,0.9927272727272728,WECC,CISO,CA,39.514893,-121.630077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -438,Thermalito,4,1968.0,27.5,27.5,27.3,27,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,0.9927272727272728,WECC,CISO,CA,39.514893,-121.630077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -439,Don Pedro,1,1971.0,45.5,55.0,55.0,10,WAT,Conventional Hydroelectric,OP,HY,5.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.695994,-120.420152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -439,Don Pedro,2,1971.0,45.5,55.0,55.0,10,WAT,Conventional Hydroelectric,OP,HY,5.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.695994,-120.420152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -439,Don Pedro,3,1971.0,45.5,55.0,55.0,10,WAT,Conventional Hydroelectric,OP,HY,5.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.695994,-120.420152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -439,Don Pedro,4,1989.0,34.3,38.2,38.2,8,WAT,Conventional Hydroelectric,OP,HY,4.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.695994,-120.420152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -440,La Grange,1,1924.0,1.2,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,TIDC,CA,37.6697,-120.4436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -440,La Grange,2,1924.0,3.3,3.3,3.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.6697,-120.4436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -441,Folsom,1,1955.0,66.2,71.7,71.7,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.70675,-121.158443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -441,Folsom,2,1955.0,66.2,71.7,71.7,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.70675,-121.158443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -441,Folsom,3,1955.0,66.2,71.7,71.7,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.70675,-121.158443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -442,Judge F Carr,1,1963.0,77.2,88.7,88.7,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.646934,-122.626973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -442,Judge F Carr,2,1963.0,77.2,88.7,88.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.646934,-122.626973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -443,Keswick,1,1950.0,39.0,39.0,39.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.611858,-122.446441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -443,Keswick,2,1949.0,39.0,39.0,39.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.611858,-122.446441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -443,Keswick,3,1949.0,39.0,39.0,39.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.611858,-122.446441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -444,Nimbus,1,1955.0,6.7,8.3,8.3,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.63735,-121.220198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -444,Nimbus,2,1955.0,6.7,8.3,8.3,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.63735,-121.220198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -445,Shasta,1,1949.0,142.0,142.0,142.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,Shasta1,OT ST,True,8.0,6.0,-1.0,1.8,1.8,103.5963,1.839,1.0,2.027986,18.391,14.635771211023687,4.434912271179773,0.8451438010295068,-4.715826294037458,102.64027211687414,15.09734096522393,#TRUE#,#1949-04-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.0,142.0,120.0,CA,Water,,#FALSE#,0,142, -445,Shasta,2,1948.0,142.0,142.0,142.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,Shasta2,OT ST,True,8.0,6.0,-1.0,1.8,1.8,103.5963,1.839,1.0,2.027986,18.391,14.635771211023687,4.434912271179773,0.8451438010295068,-4.715826294037458,102.64027211687414,15.09734096522393,#TRUE#,#1948-07-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.0,142.0,120.0,CA,Water,,#FALSE#,0,142, -445,Shasta,3,1944.0,142.0,142.0,142.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,Shasta3,OT ST,True,8.0,6.0,-1.0,1.8,1.8,103.5963,1.839,1.0,2.027986,18.391,14.635771211023687,4.434912271179773,0.8451438010295068,-4.715826294037458,102.64027211687414,15.09734096522393,#TRUE#,#1944-06-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.0,142.0,120.0,CA,Water,,#FALSE#,0,142, -445,Shasta,4,1944.0,142.0,142.0,142.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,Shasta4,OT ST,True,8.0,6.0,-1.0,1.8,1.8,44.16504,0.7840001,1.0,2.027986,7.84,14.635567304450648,1.8915305668826237,1.9827765099888237,-4.718947970271902,43.764198847805716,15.097338153784007,#TRUE#,#1944-06-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.0,142.0,120.0,CA,Water,,#FALSE#,0,142, -445,Shasta,5,1948.0,142.0,142.0,142.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -445,Shasta,S1,1944.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -445,Shasta,S2,1944.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.717455,-122.422274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -446,ONeill,1,1968.0,4.2,2.4,2.4,0,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,WECC,CISO,CA,37.098671,-121.047718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -446,ONeill,2,1968.0,4.2,2.4,2.4,0,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,WECC,CISO,CA,37.098671,-121.047718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -446,ONeill,3,1967.0,4.2,2.4,2.4,0,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,WECC,CISO,CA,37.098671,-121.047718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -446,ONeill,4,1967.0,4.2,2.4,2.4,0,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,WECC,CISO,CA,37.098671,-121.047718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -446,ONeill,5,1968.0,4.2,2.4,2.4,0,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,WECC,CISO,CA,37.098671,-121.047718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -446,ONeill,6,1967.0,4.2,2.4,2.4,0,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,WECC,CISO,CA,37.098671,-121.047718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -447,Parker Dam,1,1942.0,30.0,30.0,30.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,CA,34.295334,-114.140222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -447,Parker Dam,2,1943.0,30.0,30.0,30.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,CA,34.295334,-114.140222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -447,Parker Dam,3,1942.0,30.0,30.0,30.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,CA,34.295334,-114.140222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -447,Parker Dam,4,1943.0,30.0,30.0,30.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,CA,34.295334,-114.140222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,1,1968.0,53.0,51.0,51.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9622641509433962,0.9622641509433962,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,2,1968.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,3.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,3,1967.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,4,1967.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,5,1967.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,6,1967.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,7,1967.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -448,W R Gianelli,8,1967.0,53.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,3.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9433962264150944,0.9433962264150944,WECC,CISO,CA,37.0692,-121.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -450,Spring Creek,1,1964.0,90.0,90.0,90.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.628115,-122.467509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -450,Spring Creek,2,1964.0,90.0,90.0,90.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.628115,-122.467509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -451,Trinity,1,1964.0,70.0,70.0,70.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.797296,-122.762553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -451,Trinity,2,1964.0,70.0,70.0,70.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.797296,-122.762553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -454,Colgate,1,1969.0,157.5,176.7,176.7,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.330833,-121.191666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -454,Colgate,2,1969.0,157.5,175.7,175.7,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.330833,-121.191666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -455,Narrows 2,1,1969.0,46.7,55.0,55.0,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.238996,-121.270409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -457,Bear Valley,HC1,1986.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.166246,-117.016566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -457,Bear Valley,HC2,1986.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.166246,-117.016566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -460,Pueblo,IC1,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2667,-104.6144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -460,Pueblo,IC3,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2667,-104.6144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -460,Pueblo,IC4,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2667,-104.6144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -460,Pueblo,IC5,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2667,-104.6144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -464,Alamosa,CT1,1973.0,26.6,13.0,17.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.4887218045112782,0.6390977443609023,WECC,PSCO,CO,37.4594,-105.8947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.95746828143022 -464,Alamosa,CT2,1977.0,26.6,14.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1977.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5263157894736842,0.6766917293233082,WECC,PSCO,CO,37.4594,-105.8947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.95746828143022 -466,Boulder Canyon Hydro,1A,2013.0,5.0,5.0,5.0,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,40.004725,-105.332495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -467,Cabin Creek,A,1967.0,150.0,180.3,180.3,75,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,PSCO,CO,39.6551,-105.7088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -467,Cabin Creek,B,1967.0,150.0,162.0,162.0,75,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,PSCO,CO,39.6551,-105.7088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -469,Cherokee,4,1968.0,380.8,310.0,310.0,220,NG,Natural Gas Steam Turbine,OP,ST,6.0,1968.0,12,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8140756302521008,0.8140756302521008,WECC,PSCO,CO,39.807275,-104.964548,Cherokee 4 Coal,ST-Col,False,48.0,108.0,-1.0,13.405,13.405,44807.73,5331.2,1.0,2.4,383.0,12.675388319239536,-903.9116234062046,-0.01793428786063085,23.299660194986956,-2435.2316718333122,9.537802238876134,#TRUE#,#2017-08-13#,#2027-12-31#,Existing,PSCO,RM_PSCO,215.0,383.0,361.4,CO,Coal,,#FALSE#,215,383,17.426492950237503 -469,Cherokee,5,2015.0,185.3,168.0,176.0,32,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9066378845116028,0.9498111171073933,WECC,PSCO,CO,39.807275,-104.964548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.915191195239366 -469,Cherokee,6,2015.0,185.3,168.0,176.0,32,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9066378845116028,0.9498111171073933,WECC,PSCO,CO,39.807275,-104.964548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.64398441538929 -469,Cherokee,7,2015.0,255.0,240.0,248.0,104,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9411764705882353,0.9725490196078431,WECC,PSCO,CO,39.807275,-104.964548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -470,Comanche (CO),2,1975.0,396.0,335.0,335.0,170,SUB,Conventional Steam Coal,OP,ST,6.0,1975.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.845959595959596,0.845959595959596,WECC,WACM,CO,38.2081,-104.5747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.938265148237088 -470,Comanche (CO),3,2010.0,856.8,750.0,766.0,450,SUB,Conventional Steam Coal,OP,ST,7.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8753501400560224,0.8940242763772176,WECC,WACM,CO,38.2081,-104.5747,Comanche 3,ST-Col,False,48.0,108.0,-1.0,26.81,26.81,98515.81,15396.6,1.0,3.76,766.0,11.835939097051485,-1737.9568441816004,0.03292311695117802,-28.536594619850106,10392.526062651765,8.94284781760151,#TRUE#,#2010-05-01#,#2069-12-31#,Existing,PSCO,RM_PSCO,466.261,766.0,780.0,CO,Coal,,#FALSE#,466.261,766,10.50802041891404 -471,Fruita,1,1973.0,26.6,14.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5263157894736842,0.6766917293233082,WECC,PSCO,CO,39.1364,-108.7347,Fruita,GT,False,1.0,1.0,-1.0,1.7,1.7,1003.504,3.74,1.0,0.56,17.0,-1.34035312407884,157.22200224658624,-3.88232408093635e-06,-1.340258657434149,157.22145039807623,11.954550307077522,#TRUE#,#1972-12-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,8.5,17.0,18.0,CO,NG,Industrial,#FALSE#,8.5,17,3.830534120139204 -472,Georgetown Hydro,1,1906.0,0.6,0.8,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.6919,-105.6978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -472,Georgetown Hydro,2,1908.0,0.6,0.8,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.6919,-105.6978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -474,Salida,2,1908.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,6.0,1908.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,38.53419,-106.182003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -476,Shoshone (CO),A,1909.0,7.2,7.5,4.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.5555555555555556,WECC,PSCO,CO,39.57013,-107.226876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -476,Shoshone (CO),B,1909.0,7.2,7.5,4.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.5555555555555556,WECC,PSCO,CO,39.57013,-107.226876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -477,Valmont,6,1973.0,59.3,43.0,51.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1973.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7251264755480608,0.8600337268128162,WECC,PSCO,CO,40.0195,-105.202,Valmont 6,GT,False,1.0,1.0,-1.0,47.7,47.7,1587.776,11.66,1.0,0.45,53.0,-1.3559624573822129,495.6540074168371,-4.138857163299425e-06,-1.3556471062891404,495.64824320643083,12.087883821882842,#TRUE#,#1972-12-01#,#2026-12-31#,Existing,PSCO,RM_PSCO,26.5,53.0,50.0,CO,NG,Industrial,#FALSE#,26.5,53,19.570996978851962 -479,Temescal,1,1983.0,2.9,2.8,2.8,1.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,33.8343,-117.4971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -480,Corona,1,1983.0,2.9,2.8,2.8,1.4,WAT,Conventional Hydroelectric,OP,HY,8.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,33.85895,-117.6106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -481,Perris,1,1983.0,7.9,7.9,7.9,1.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.8361,-117.1831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -482,Rio Hondo,1,1984.0,1.9,1.9,1.9,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.004722,-118.09917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -483,Coyote Creek,1,1984.0,3.1,3.1,3.1,0.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.92493,-117.95517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -484,Red Mountain,1,1985.0,5.9,5.9,5.9,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.3944,-117.1889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -487,Valley View,1,1985.0,4.1,4.1,4.1,1.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.9001,-117.82905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -489,Upper Dawson,1,1983.0,4.4,5.5,5.5,0.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TIDC,CA,37.6508,-120.4706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -493,George Birdsall,1,1953.0,17.3,16.0,16.0,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9248554913294798,0.9248554913294798,WECC,WACM,CO,38.881389,-104.816944,Birdsall 1,ST-NG,False,4.0,2.0,-1.0,1.72,1.72,1181.725,153.424,1.0,0.29,17.2,12.456074668588355,5.87334399986689,0.8214624973893992,-5.641463318008506,94.28505495861111,13.0656137905108,#TRUE#,#1953-08-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,5.16,17.2,0.0,CO,Natural Gas,Steam Turbine,#FALSE#,5.16,17.2,17.312819617927996 -493,George Birdsall,2,1954.0,18.8,16.0,16.0,5,NG,Natural Gas Steam Turbine,OP,ST,3.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.851063829787234,0.851063829787234,WECC,WACM,CO,38.881389,-104.816944,Birdsall 2,ST-NG,False,4.0,2.0,-1.0,1.72,1.72,1181.725,153.424,1.0,0.29,17.2,12.456074668588355,5.87334399986689,0.8214624973893992,-5.641463318008506,94.28505495861111,13.0656137905108,#TRUE#,#1954-03-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,5.16,17.2,0.0,CO,Natural Gas,Steam Turbine,#FALSE#,5.16,17.2,15.428946362968404 -493,George Birdsall,3,1957.0,25.0,23.0,23.0,6,NG,Natural Gas Steam Turbine,OP,ST,3.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.92,0.92,WECC,WACM,CO,38.881389,-104.816944,Birdsall 3,ST-NG,False,4.0,2.0,-1.0,2.46,2.46,1690.142,219.432,1.0,0.29,24.6,12.494585348061273,7.637762972830557,0.5675392602039546,-5.388165535124232,132.58633159794823,13.048797014088938,#TRUE#,#1957-03-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,7.38,24.6,0.0,CO,Natural Gas,Steam Turbine,#FALSE#,7.38,24.6,16.30408140385084 -494,Manitou Springs,1,1939.0,2.5,2.5,2.5,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.855556,-104.933056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -494,Manitou Springs,2,1927.0,2.5,2.5,2.5,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.855556,-104.933056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -494,Manitou Springs,3,2006.0,0.6,0.5,0.5,0,WAT,Conventional Hydroelectric,OP,HY,3.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,WACM,CO,38.855556,-104.933056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -495,Ruxton Park,1,1925.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.841354,-104.973802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -502,Holly,5,2000.0,0.4,0.3,0.3, ,DFO,Petroleum Liquids,SB,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,WECC,WACM,CO,38.032717,-102.073659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.137681159420291 -502,Holly,CAT,2007.0,1.8,1.7,1.8, ,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,WECC,WACM,CO,38.032717,-102.073659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.14246260069045 -502,Holly,EMD,1993.0,0.7,0.7,0.8, ,DFO,Petroleum Liquids,SB,IC,1.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.032717,-102.073659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.140828402366864 -504,Julesburg,1,1951.0,0.9,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,11.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777777,0.7777777777777777,WECC,WACM,CO,40.9505,-102.2795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -504,Julesburg,3,1945.0,0.3,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,2.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,WECC,WACM,CO,40.9505,-102.2795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -504,Julesburg,4,1964.0,1.3,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,WECC,WACM,CO,40.9505,-102.2795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -504,Julesburg,5,1946.0,0.3,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,WECC,WACM,CO,40.9505,-102.2795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -505,Boysen,1,1952.0,7.5,8.6,8.6,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,43.417872,-108.177545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -505,Boysen,2,1952.0,7.5,8.6,8.6,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,43.417872,-108.177545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -507,Las Animas,1,1941.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,11.0,1941.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.0647,-103.2159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -507,Las Animas,2,1941.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,11.0,1941.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.0647,-103.2159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -507,Las Animas,4,1951.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.0647,-103.2159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -507,Las Animas,5,1951.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.0647,-103.2159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -507,Las Animas,6,1967.0,3.0,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,3.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,WECC,WACM,CO,38.0647,-103.2159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -508,Lamar Plant,IC1,1949.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OS,IC,1.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.033327,-102.537915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -508,Lamar Plant,IC2,1946.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OS,IC,1.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.033327,-102.537915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -508,Lamar Plant,T1-T3,2004.0,4.5,4.0,4.0,1,WND,Onshore Wind Turbine,OP,WT,2.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8888888888888888,0.8888888888888888,WECC,PSCO,CO,38.033327,-102.537915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -508,Lamar Plant,T4,2004.0,1.5,1.5,1.5,1,WND,Onshore Wind Turbine,OP,WT,2.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,38.033327,-102.537915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -510,Sonoma California Geothermal,1,1983.0,78.0,50.0,55.0,10,GEO,Geothermal,OP,ST,12.0,1983.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.641025641025641,0.7051282051282051,WECC,CISO,CA,38.7903,-122.7559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -511,Trinidad (CO),3,1966.0,1.9,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.178979,-104.487492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.126210653753027 -511,Trinidad (CO),4,1966.0,1.9,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.178979,-104.487492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.126210653753027 -511,Trinidad (CO),5,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.178979,-104.487492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.126517571884985 -511,Trinidad (CO),6,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.178979,-104.487492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.126517571884985 -511,Trinidad (CO),7,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.178979,-104.487492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.126517571884985 -512,Blue Mesa,1,1967.0,43.2,43.2,43.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.453191,-107.337483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -512,Blue Mesa,2,1967.0,43.2,43.2,43.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.453191,-107.337483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -513,Estes,1,1950.0,15.0,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.376771,-105.509665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -513,Estes,2,1950.0,15.0,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.376771,-105.509665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -513,Estes,3,1950.0,15.0,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.376771,-105.509665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -514,Morrow Point,1,1970.0,86.6,86.6,86.6,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.451753,-107.539299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -514,Morrow Point,2,1971.0,86.6,86.6,86.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.451753,-107.539299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -515,Big Thompson,1,1959.0,4.5,5.2,4.1,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.911111111111111,WECC,WACM,CO,40.421031,-105.223804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -516,Green Mountain,1,1943.0,13.0,13.0,13.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,39.878805,-106.332725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -516,Green Mountain,2,1943.0,13.0,13.0,13.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,39.878805,-106.332725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -517,Marys Lake,1,1951.0,8.1,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.34408,-105.534308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -518,Flatiron,1,1954.0,43.0,43.0,43.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.364996,-105.236032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -518,Flatiron,2,1954.0,43.0,43.0,43.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.364996,-105.236032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -518,Flatiron,3,1954.0,8.5,8.5,8.5,0,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1954.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WACM,CO,40.364996,-105.236032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -519,Pole Hill,1,1954.0,38.2,38.2,38.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.365056,-105.325074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -520,Lower Molina,1,1962.0,5.6,5.6,5.6,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,39.19366,-108.044088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -521,Upper Molina,1,1962.0,9.9,9.9,9.9,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,39.143808,-108.004777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -525,Hayden,1,1965.0,190.0,179.0,179.0,110,BIT,Conventional Steam Coal,OP,ST,7.0,1965.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9421052631578948,0.9421052631578948,WECC,PSCO,CO,40.4856,-107.185,Hayden 1,ST-Col,False,48.0,108.0,-1.0,4.24,4.24,31431.86,1670.07,1.0,1.79,179.0,11.997958517667687,23.906381945487155,0.099003744249547,-15.205025466974963,1843.7815952383692,12.182782603942503,#TRUE#,#1965-07-01#,#2028-12-31#,Existing,WACM,RM_WACM,102.925,179.0,201.0,CO,Coal,,#FALSE#,102.925,179, -525,Hayden,2,1976.0,275.4,262.0,262.0,120,BIT,Conventional Steam Coal,OP,ST,9.0,1976.0,12,2027,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9513435003631083,0.9513435003631083,WECC,PSCO,CO,40.4856,-107.185,Hayden 2,ST-Col,False,48.0,108.0,-1.0,5.72,5.72,42403.36,2444.46,1.0,1.79,262.0,10.365511847776848,-8.145097172554799,0.02663950973836359,0.5648871397088733,848.5104318564298,10.316415766456911,#TRUE#,#1976-09-01#,#2027-12-31#,Existing,WACM,RM_WACM,120.0,262.0,286.0,CO,Coal,,#FALSE#,120,262, -531,Camp Far West,1,1985.0,7.2,7.2,7.2,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.048802,-121.316966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,1,1954.0,7.5,9.0,9.0,2.5,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1954.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,2,1954.0,7.5,9.0,9.0,2.5,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1954.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,3,1959.0,25.0,22.0,22.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.88,0.88,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,4,1996.0,107.0,109.0,116.0,6,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,VAN1,2002.0,165.0,171.0,205.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,VAN2,2002.0,165.0,168.0,205.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -533,McWilliams,VAN3,2002.0,177.0,176.0,185.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9943502824858758,1.0,SERC,SOCO,AL,31.400255,-86.476449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -534,Jones Fork,1,1985.0,10.0,10.0,10.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.850283,-120.381883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -535,McClellan (CA),1,1986.0,77.0,77.0,77.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,BANC,CA,38.652731,-121.393336,McClellan 1,GT E_7E,False,1.0,1.0,-1.0,7.4,7.4,4368.193,16.28,1.0,0.56,74.0,-1.1963785721666915,610.9720103892924,-7.413742117252577e-06,-1.195583214670905,610.9515162503133,10.672518974006927,#TRUE#,#1986-03-01#,#2050-12-31#,Existing,BANC,CA_BANC,37.0,74.0,65.0,CA,NG,Industrial,#FALSE#,37,74,12.500135244793075 -537,Camanche,1,1983.0,3.6,3.5,3.5,0.8,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9722222222222222,0.9722222222222222,WECC,CISO,CA,38.2268,-121.0245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -537,Camanche,2,1983.0,3.6,3.5,3.5,0.8,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9722222222222222,0.9722222222222222,WECC,CISO,CA,38.2268,-121.0245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -537,Camanche,3,1983.0,3.6,3.5,3.5,0.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9722222222222222,0.9722222222222222,WECC,CISO,CA,38.2268,-121.0245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -539,Rocky River (CT),1,1929.0,3.5,2.0,2.0,2,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1929.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,NPCC,ISNE,CT,41.5826,-73.4349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -539,Rocky River (CT),2,1928.0,3.5,2.0,2.0,2,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1928.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.5714285714285714,0.5714285714285714,NPCC,ISNE,CT,41.5826,-73.4349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -539,Rocky River (CT),3,1928.0,24.0,25.4,25.0,23,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1928.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,CT,41.5826,-73.4349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -540,Branford,UN10,1967.0,21.8,17.4,22.5,17.4,KER,Petroleum Liquids,OP,GT,11.0,1967.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7981651376146788,1.0,NPCC,ISNE,CT,41.2925,-72.7942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -541,Bulls Bridge,1,1903.0,1.2,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.659046,-73.491984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -541,Bulls Bridge,2,1903.0,1.2,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.659046,-73.491984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -541,Bulls Bridge,3,1903.0,1.2,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.659046,-73.491984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -541,Bulls Bridge,4,1903.0,1.2,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.659046,-73.491984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -541,Bulls Bridge,5,1903.0,1.2,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.659046,-73.491984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -541,Bulls Bridge,6,1903.0,1.2,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.659046,-73.491984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -542,Cos Cob,UN10,1969.0,25.0,19.1,24.0,19.1,KER,Petroleum Liquids,OP,GT,9.0,1969.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.764,0.96,NPCC,ISNE,CT,41.0289,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -542,Cos Cob,UN11,1969.0,25.0,18.7,23.6,18.7,KER,Petroleum Liquids,OP,GT,9.0,1969.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.748,0.9440000000000001,NPCC,ISNE,CT,41.0289,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -542,Cos Cob,UN12,1969.0,25.0,19.1,24.0,19.1,KER,Petroleum Liquids,OP,GT,10.0,1969.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.764,0.96,NPCC,ISNE,CT,41.0289,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -542,Cos Cob,UN13,2008.0,20.0,19.1,24.0,19.1,KER,Petroleum Liquids,OP,GT,6.0,2008.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9550000000000001,1.0,NPCC,ISNE,CT,41.0289,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -542,Cos Cob,un14,2008.0,20.0,19.6,23.5,19.6,KER,Petroleum Liquids,OP,GT,6.0,2008.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9800000000000001,1.0,NPCC,ISNE,CT,41.0289,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -544,Devon Station,10,1985.0,18.6,14.4,19.2,14.4,KER,Petroleum Liquids,OP,GT,1.0,1985.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7741935483870968,1.0,NPCC,ISNE,CT,41.209797,-73.108976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,128.1838285852335 -544,Devon Station,11,1996.0,51.0,29.2,38.8,16,KER,Petroleum Liquids,OP,GT,7.0,1996.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.5725490196078431,0.7607843137254902,NPCC,ISNE,CT,41.209797,-73.108976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -544,Devon Station,12,1996.0,51.0,29.2,38.4,16,KER,Petroleum Liquids,OP,GT,7.0,1996.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.5725490196078431,0.7529411764705882,NPCC,ISNE,CT,41.209797,-73.108976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -544,Devon Station,13,1996.0,51.0,29.9,38.9,16,KER,Petroleum Liquids,OP,GT,7.0,1996.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.5862745098039215,0.7627450980392156,NPCC,ISNE,CT,41.209797,-73.108976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -544,Devon Station,14,1996.0,51.0,29.7,40.3,16,KER,Petroleum Liquids,OP,GT,7.0,1996.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.5823529411764705,0.7901960784313725,NPCC,ISNE,CT,41.209797,-73.108976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -546,Montville Station,10,1967.0,2.7,2.7,2.7,1,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.4281,-72.1019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -546,Montville Station,11,1967.0,2.7,2.7,2.7,1,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.4281,-72.1019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -546,Montville Station,5,1954.0,75.0,81.0,83.0,40,NG,Natural Gas Steam Turbine,OP,ST,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,CT,41.4281,-72.1019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.771968430475432 -546,Montville Station,6,1971.0,414.9,410.0,410.0,125,RFO,Petroleum Liquids,OP,ST,1.0,1971.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9881899252832008,0.9881899252832008,NPCC,ISNE,CT,41.4281,-72.1019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.550141832652367 -547,Northfield Mountain,1,1973.0,292.0,292.0,292.0,125,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,MA,42.610683,-72.471643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -547,Northfield Mountain,2,1973.0,292.0,292.0,292.0,125,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,MA,42.610683,-72.471643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -547,Northfield Mountain,3,1973.0,292.0,292.0,292.0,125,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,MA,42.610683,-72.471643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -547,Northfield Mountain,4,1972.0,292.0,292.0,292.0,125,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1972.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,MA,42.610683,-72.471643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -550,Kettle Falls Generating Station,1,1983.0,50.7,50.0,50.7,12,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1983.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9861932938856015,1.0,WECC,AVA,WA,48.620336,-118.111059,KettleFalls1,OT ST,True,4.0,8.0,-1.0,1.8,1.8,285.6081,5.07,1.0,2.027986,50.7,27.00227246897696,-735.62011374323,-0.029350613815192828,29.84927153358504,-804.6208502298268,11.826327526160258,#TRUE#,#1983-12-01#,#2050-12-31#,Existing,AVA,NW_AVA,46.7,50.7,48.0,WA,Bio,,#FALSE#,46.7,50.7,14.849667023445965 -550,Kettle Falls Generating Station,2,2002.0,7.2,6.2,8.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8611111111111112,1.0,WECC,AVA,WA,48.620336,-118.111059,KettleFalls2,GT,False,1.0,1.0,-1.0,6.48,6.48,215.6979,32.616,1.0,0.45,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,2.88,7.2,6.0,WA,NG,Areo,#FALSE#,2.88,7.2,11.813276976628543 -551,Scotland Dam,1,1937.0,2.0,1.7,2.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.85,1.0,NPCC,ISNE,CT,41.6651,-72.1221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -552,Shepaug,1,1955.0,37.2,41.5,42.6,35,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.44842,-73.295321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -553,Stevenson,1,1919.0,7.5,7.1,7.1,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9466666666666667,0.9466666666666667,NPCC,ISNE,CT,41.3833,-73.1714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -553,Stevenson,2,1919.0,7.5,7.1,7.1,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9466666666666667,0.9466666666666667,NPCC,ISNE,CT,41.3833,-73.1714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -553,Stevenson,3,1919.0,7.5,7.1,7.1,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9466666666666667,0.9466666666666667,NPCC,ISNE,CT,41.3833,-73.1714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -553,Stevenson,4,1936.0,8.0,7.6,7.6,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.95,NPCC,ISNE,CT,41.3833,-73.1714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -554,Taftville,1,1926.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.5725,-72.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -554,Taftville,2,1906.0,0.3,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.5725,-72.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -554,Taftville,3,1906.0,0.3,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.5725,-72.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -554,Taftville,4,1949.0,0.3,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.5725,-72.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -554,Taftville,5,1949.0,0.3,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.5725,-72.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -557,Tunnel,1,1919.0,1.0,0.8,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,1.0,NPCC,ISNE,CT,41.555425,-72.041829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -557,Tunnel,10,1969.0,18.5,16.5,21.8,5,JF,Petroleum Liquids,SB,GT,1.0,1969.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.8918918918918919,1.0,NPCC,ISNE,CT,41.555425,-72.041829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.061073825503357 -557,Tunnel,2,1949.0,1.0,0.8,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,1.0,NPCC,ISNE,CT,41.555425,-72.041829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -559,Rainbow (CT),1,1925.0,4.0,4.0,4.0,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.915312,-72.693616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -559,Rainbow (CT),2,1925.0,4.0,4.0,4.0,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.915312,-72.693616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -560,Falls Village,1,1914.0,3.0,3.3,3.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.957272,-73.369297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -560,Falls Village,2,1914.0,3.0,3.3,3.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.957272,-73.369297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -560,Falls Village,3,1914.0,3.0,3.3,3.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.957272,-73.369297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -561,Franklin Drive,UN19,1968.0,21.8,16.1,21.2,16.1,KER,Petroleum Liquids,OP,GT,11.0,1968.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7385321100917432,0.9724770642201834,NPCC,ISNE,CT,41.798943,-73.116267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -562,Middletown,10,1966.0,18.5,17.2,22.1,5,DFO,Petroleum Liquids,OP,GT,8.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9297297297297297,1.0,NPCC,ISNE,CT,41.554944,-72.579075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.94047619047619 -562,Middletown,2,1958.0,113.6,117.0,120.0,45,NG,Natural Gas Steam Turbine,OP,ST,10.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,CT,41.554944,-72.579075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.621402341715205 -562,Middletown,3,1964.0,239.4,236.0,245.0,100,NG,Natural Gas Steam Turbine,OP,ST,1.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.985797827903091,1.0,NPCC,ISNE,CT,41.554944,-72.579075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.128623596349973 -562,Middletown,4,1973.0,414.9,400.0,402.0,125,RFO,Petroleum Liquids,OP,ST,5.0,1973.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9640877319836105,0.9689081706435286,NPCC,ISNE,CT,41.554944,-72.579075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.13679010032742 -563,South Meadow,11,1970.0,41.8,35.7,46.9,10,KER,Petroleum Liquids,SB,GT,8.0,1970.0,6,2023,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8540669856459331,1.0,NPCC,ISNE,CT,41.7495,-72.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -563,South Meadow,12,1970.0,41.8,37.7,47.8,10,KER,Petroleum Liquids,SB,GT,8.0,1970.0,6,2023,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9019138755980862,1.0,NPCC,ISNE,CT,41.7495,-72.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -563,South Meadow,13,1970.0,41.8,38.3,47.9,10,KER,Petroleum Liquids,SB,GT,8.0,1970.0,6,2023,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.916267942583732,1.0,NPCC,ISNE,CT,41.7495,-72.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -563,South Meadow,14,1970.0,41.8,36.7,46.3,10,KER,Petroleum Liquids,SB,GT,8.0,1970.0,6,2023,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8779904306220097,1.0,NPCC,ISNE,CT,41.7495,-72.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -564,Stanton Energy Center,1,1987.0,464.5,453.0,453.0,90,BIT,Conventional Steam Coal,OP,ST,7.0,1987.0,12,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9752421959095802,0.9752421959095802,SERC,FMPP,FL,28.4822,-81.1678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.958293105768865 -564,Stanton Energy Center,2,1996.0,464.5,469.0,469.0,95,BIT,Conventional Steam Coal,OP,ST,6.0,1996.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FMPP,FL,28.4822,-81.1678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.462700813586045 -564,Stanton Energy Center,B,2010.0,129.8,128.0,130.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9861325115562403,1.0,SERC,FMPP,FL,28.4822,-81.1678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -564,Stanton Energy Center,B1,2010.0,203.2,167.0,170.0,155,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8218503937007875,0.8366141732283465,SERC,FMPP,FL,28.4822,-81.1678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -565,Torrington Terminal,UN10,1967.0,21.8,17.4,22.5,17.4,KER,Petroleum Liquids,OP,GT,11.0,1967.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7981651376146788,1.0,NPCC,ISNE,CT,41.776109,-73.120886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -566,Millstone,2,1975.0,909.9,863.8,869.8,50,NUC,Nuclear,OP,ST,12.0,1975.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9493350917683262,0.9559292229915375,NPCC,ISNE,CT,41.3107,-72.1677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -566,Millstone,3,1986.0,1253.0,1244.2,1250.9,65,NUC,Nuclear,OP,ST,4.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.992976855546688,0.9983240223463687,NPCC,ISNE,CT,41.3107,-72.1677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -568,Bridgeport Station,501,2019.0,375.7,342.0,364.0,155,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9103007718924674,0.9688581314878894,NPCC,ISNE,CT,41.1706,-73.1844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -568,Bridgeport Station,502,2019.0,200.6,154.6,150.8,82,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7706879361914257,0.7517447657028914,NPCC,ISNE,CT,41.1706,-73.1844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -579,Central Hudson High Falls,1,1986.0,3.2,3.2,3.2,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.828814,-74.131877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -581,North Main Street,5,1972.0,19.0,15.3,18.8,2,DFO,Petroleum Liquids,OP,GT,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8052631578947369,0.9894736842105264,NPCC,ISNE,CT,41.52679,-72.064935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -583,Tenth Street,1,1967.0,1.4,1.0,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.8571428571428572,NPCC,ISNE,CT,41.538955,-72.050936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -584,Navajo Dam,1,1989.0,15.0,15.0,15.0,6,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,36.8061,-107.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -584,Navajo Dam,2,1989.0,15.0,15.0,15.0,6,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,36.8061,-107.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -585,Drop 1,1,1984.0,1.9,1.3,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6842105263157896,0.7894736842105263,WECC,IID,CA,32.711611,-114.942666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -585,Drop 1,2,1984.0,1.9,1.2,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.631578947368421,0.5789473684210527,WECC,IID,CA,32.711611,-114.942666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -585,Drop 1,3,1984.0,1.9,1.3,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6842105263157896,0.5789473684210527,WECC,IID,CA,32.711611,-114.942666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -586,East Highline,1,1984.0,2.4,1.0,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.41666666666666663,0.33333333333333337,WECC,IID,CA,32.699451,-115.28245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -589,J C McNeil,1,1984.0,59.5,52.0,54.0,15,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1984.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8739495798319328,0.907563025210084,NPCC,ISNE,VT,44.4917,-73.208056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.657614278040535 -591,Christiana,CH11,1973.0,27.5,25.0,25.0,20,DFO,Petroleum Liquids,SB,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,RFC,PJM,DE,39.7302,-75.5371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -591,Christiana,CH14,1973.0,27.5,25.0,25.0,20,DFO,Petroleum Liquids,SB,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,RFC,PJM,DE,39.7302,-75.5371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -592,Delaware City 10,DC10,1968.0,18.5,18.0,18.0,15,DFO,Petroleum Liquids,SB,GT,4.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.972972972972973,0.972972972972973,RFC,PJM,DE,39.600408,-75.626811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -593,Edge Moor,10,1963.0,12.5,15.0,15.0,12.5,DFO,Petroleum Liquids,SB,GT,6.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,DE,39.73886,-75.50384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -593,Edge Moor,3,1954.0,75.0,86.0,86.0,25,NG,Natural Gas Steam Turbine,OP,ST,12.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,DE,39.73886,-75.50384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.591194014447884 -593,Edge Moor,4,1966.0,176.8,174.0,174.0,50,NG,Natural Gas Steam Turbine,OP,ST,4.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9841628959276018,0.9841628959276018,RFC,PJM,DE,39.73886,-75.50384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.763400283254445 -593,Edge Moor,5,1973.0,446.0,450.0,450.0,65,NG,Natural Gas Steam Turbine,OP,ST,8.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,DE,39.73886,-75.50384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.75102188213883 -594,Indian River Generating Station,10,1967.0,18.6,16.1,16.1,14,DFO,Petroleum Liquids,OP,GT,6.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8655913978494624,0.8655913978494624,RFC,PJM,DE,38.5857,-75.2341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.292412935323384 -594,Indian River Generating Station,4,1980.0,445.5,410.0,410.0,190,BIT,Conventional Steam Coal,OP,ST,10.0,1980.0,12,2026,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.920314253647587,0.920314253647587,RFC,PJM,DE,38.5857,-75.2341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.421713625263315 -597,West Station (DE),WEST,1964.0,16.2,15.0,19.0,15,DFO,Petroleum Liquids,SB,GT,6.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9259259259259259,1.0,RFC,PJM,DE,39.7283,-75.6289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -602,Brandon Shores,1,1984.0,685.1,635.0,635.0,220,BIT,Conventional Steam Coal,OP,ST,5.0,1984.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9268719894905852,0.9268719894905852,RFC,PJM,MD,39.18,-76.5389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.682655285844383 -602,Brandon Shores,2,1991.0,685.1,638.0,638.0,220,BIT,Conventional Steam Coal,OP,ST,5.0,1991.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9312509122755802,0.9312509122755802,RFC,PJM,MD,39.18,-76.5389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.041414644342378 -607,Fredonia,1,1984.0,129.1,93.0,114.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7203718048024788,0.8830364058869095,WECC,PSEI,WA,48.4558,-122.4358,Fredonia_1,GT D_W501D,False,1.0,1.0,-1.0,12.91,12.91,7620.726,28.402,1.0,0.56,93.407,3.7466798134778725,576.3510938886014,-3.385437877829683e-06,3.7471103642394836,576.3382271263192,13.476492137709329,#TRUE#,#1984-05-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,38.73,93.407,93.0,WA,NG,Industrial,#FALSE#,38.73,93.407, -607,Fredonia,2,1984.0,129.1,93.0,114.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7203718048024788,0.8830364058869095,WECC,PSEI,WA,48.4558,-122.4358,Fredonia_2,GT D_W501D,False,1.0,1.0,-1.0,12.91,12.91,7620.726,28.402,1.0,0.56,93.407,3.7466798134778725,576.3510938886014,-3.385437877829683e-06,3.7471103642394836,576.3382271263192,13.476492137709329,#TRUE#,#1984-05-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,38.73,93.407,93.0,WA,NG,Industrial,#FALSE#,38.73,93.407, -607,Fredonia,3,2001.0,58.9,47.0,60.0,20,NG,Natural Gas Fired Combustion Turbine,SB,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.797962648556876,1.0,WECC,PSEI,WA,48.4558,-122.4358,Fredonia_3,GT Aero_FT8 Twin Pac,False,1.0,1.0,-1.0,5.89,5.89,3476.845,12.958,1.0,0.56,61.0,-10.739452733521896,1076.3116016805163,-0.0006689890550245037,-10.665673477641269,1074.2830048611875,8.705738849925249,#TRUE#,#2001-07-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,51.0,61.0,46.0,WA,NG,Industrial,#FALSE#,51,61, -607,Fredonia,4,2001.0,58.9,47.0,60.0,20,NG,Natural Gas Fired Combustion Turbine,SB,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.797962648556876,1.0,WECC,PSEI,WA,48.4558,-122.4358,Fredonia_4,GT Aero_FT8 Twin Pac,False,1.0,1.0,-1.0,5.89,5.89,3476.845,12.958,1.0,0.56,61.0,-9.569202739153642,1009.013352015575,-0.00044703885522753796,-9.520296019110328,1007.6797793836746,8.660144514526738,#TRUE#,#2001-07-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,51.0,61.0,46.0,WA,NG,Industrial,#FALSE#,51,61, -609,Cape Canaveral,3A,2013.0,265.0,270.4,300.8,189,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.4698,-80.7644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -609,Cape Canaveral,3B,2013.0,265.0,270.4,300.8,189,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.4698,-80.7644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -609,Cape Canaveral,3C,2013.0,265.0,270.4,300.8,189,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.4698,-80.7644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -609,Cape Canaveral,3ST,2013.0,500.0,478.8,490.6,189,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9576,0.9812000000000001,SERC,FPL,FL,28.4698,-80.7644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,2A,2000.0,188.2,199.5,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,2B,2000.0,188.2,197.4,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,2C,2000.0,188.2,197.4,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,2D,2001.0,188.2,197.4,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,2E,2001.0,188.2,197.4,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,2F,2001.0,188.2,197.4,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,9,1974.0,62.0,54.0,61.5,5,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8709677419354839,0.9919354838709677,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,CT1,2003.0,188.2,182.0,200.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9670563230605739,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,CT2,2003.0,188.2,182.0,200.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9670563230605739,1.0,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,GT1,1974.0,62.0,54.0,61.5,5,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8709677419354839,0.9919354838709677,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,PFM3C,2016.0,229.5,231.0,223.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.971677559912854,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.175236137960214 -612,Fort Myers,PFM3D,2016.0,229.5,231.0,223.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.971677559912854,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.053757131149382 -612,Fort Myers,ST1,1958.0,156.2,155.8,141.0,27.8,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1958.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9974391805377723,0.9026888604353394,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -612,Fort Myers,ST2,1969.0,436.1,459.2,404.0,146.6,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1969.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,0.926393029121761,SERC,FPL,FL,26.6967,-81.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,3,1970.0,34.2,34.3,37.2,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,5,1970.0,34.2,34.3,37.2,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,6A,2016.0,229.5,231.0,222.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9673202614379085,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,6B,2016.0,229.5,231.0,222.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9673202614379085,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,6C,2016.0,229.5,231.0,222.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9673202614379085,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,6D,2016.0,229.5,231.0,222.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9673202614379085,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -613,Lauderdale,6E,2016.0,229.5,231.0,222.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9673202614379085,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -617,Port Everglades,5A,2016.0,296.0,271.9,297.1,100,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.918581081081081,1.0,SERC,FPL,FL,26.0856,-80.1253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -617,Port Everglades,5B,2016.0,296.0,271.9,297.1,100,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.918581081081081,1.0,SERC,FPL,FL,26.0856,-80.1253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -617,Port Everglades,5C,2016.0,296.0,271.9,297.1,100,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.918581081081081,1.0,SERC,FPL,FL,26.0856,-80.1253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -617,Port Everglades,5ST,2016.0,464.0,421.3,446.7,100,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9079741379310345,0.9627155172413793,SERC,FPL,FL,26.0856,-80.1253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -619,Riviera,5A,2014.0,265.0,270.5,300.9, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.7653,-80.0525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -619,Riviera,5B,2014.0,265.0,270.5,300.9, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.7653,-80.0525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -619,Riviera,5C,2014.0,265.0,270.5,300.9, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,26.7653,-80.0525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -619,Riviera,5ST,2014.0,500.0,478.5,490.3, ,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.957,0.9806,SERC,FPL,FL,26.7653,-80.0525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,4,1969.0,436.1,388.0,360.0,132.6,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1969.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8897041962852557,0.8254987388213713,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,4A,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,4B,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,4C,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,4D,2003.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,5,1974.0,436.1,388.0,360.0,132.6,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8897041962852557,0.8254987388213713,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,5A,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,5B,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,5C,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -620,Sanford,5D,2002.0,188.2,197.0,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,28.8419,-81.3256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,3,1972.0,877.2,837.0,859.0,420,NUC,Nuclear,OP,ST,12.0,1972.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.954172366621067,0.9792521659826721,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,4,1973.0,760.0,861.0,888.0,424,NUC,Nuclear,OP,ST,9.0,1973.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,5CA,2007.0,472.0,466.2,460.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9877118644067796,0.9745762711864406,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,5CTA,2007.0,188.0,197.8,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,5CTB,2007.0,188.0,196.7,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,5CTC,2007.0,188.0,196.7,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -621,Turkey Point,5CTD,2007.0,188.0,196.7,207.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,25.4356,-80.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -622,South Fork Tolt,1,1995.0,16.8,16.8,16.8,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,47.699167,-121.783333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -625,Upper Mechanicville,1,1983.0,8.2,9.2,9.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.9126,-73.6805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -625,Upper Mechanicville,2,1983.0,8.2,9.2,9.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.9126,-73.6805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -626,Oak Flat,1,1985.0,1.4,1.3,1.3,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,WECC,CISO,CA,40.07531,-121.16143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -627,Bayboro,P1,1973.0,56.7,44.0,58.0,30,DFO,Petroleum Liquids,OP,GT,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7760141093474426,1.0,SERC,FPC,FL,27.758056,-82.635278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.087375621890548 -627,Bayboro,P2,1973.0,56.7,41.0,55.0,22,DFO,Petroleum Liquids,OP,GT,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7231040564373897,0.9700176366843033,SERC,FPC,FL,27.758056,-82.635278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.087375621890548 -627,Bayboro,P3,1973.0,56.7,43.0,57.0,30,DFO,Petroleum Liquids,OP,GT,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7583774250440917,1.0,SERC,FPC,FL,27.758056,-82.635278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.087375621890548 -627,Bayboro,P4,1973.0,56.7,43.0,56.0,30,DFO,Petroleum Liquids,OP,GT,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7583774250440917,0.9876543209876543,SERC,FPC,FL,27.758056,-82.635278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.087375621890548 -628,Crystal River,1GTA,2018.0,310.3,243.0,295.0,243,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7831131163390267,0.9506928778601353,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.868962935426772 -628,Crystal River,1GTB,2018.0,310.3,242.0,295.0,242,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7798904286174669,0.9506928778601353,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.095680178782048 -628,Crystal River,2GTA,2018.0,310.3,241.0,296.0,241,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7766677408959072,0.9539155655816951,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.587776593079605 -628,Crystal River,2GTB,2018.0,310.3,242.0,297.0,242,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7798904286174669,0.9571382533032549,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.557356468265827 -628,Crystal River,5,1984.0,739.2,698.0,721.0,250,BIT,Conventional Steam Coal,OP,ST,10.0,1984.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9442640692640693,0.9753787878787878,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.423600162828816 -628,Crystal River,CC1ST,2018.0,364.7,322.0,335.0,322,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8829174664107486,0.9185632026323005,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -628,Crystal River,CC2ST,2018.0,364.7,320.0,336.0,320,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8774335069920483,0.9213051823416507,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -628,Crystal River,ST4,1982.0,739.2,712.0,721.0,175,BIT,Conventional Steam Coal,OP,ST,12.0,1982.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9632034632034632,0.9753787878787878,SERC,FPC,FL,28.9656,-82.6977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -632,Newcastle,1,1986.0,12.7,11.5,11.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9055118110236221,0.9055118110236221,WECC,CISO,CA,38.835182,-121.092982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,4AGT,2009.0,208.2,181.0,216.0,181,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8693563880883766,1.0,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,4BGT,2009.0,208.2,165.0,214.0,165,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.792507204610951,1.0,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,4CGT,2009.0,208.2,181.0,197.0,181,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8693563880883766,0.9462055715658022,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,4DGT,2009.0,208.2,183.0,203.0,183,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8789625360230549,0.9750240153698367,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,4ST,2009.0,421.2,402.0,429.0,402,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9544159544159544,1.0,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,P1,1972.0,55.4,41.0,50.0,20,DFO,Petroleum Liquids,OP,GT,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7400722021660651,0.9025270758122744,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,P2,1972.0,55.4,41.0,53.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7400722021660651,0.9566787003610109,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,P3,1972.0,55.4,41.0,51.0,20,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7400722021660651,0.9205776173285198,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -634,P L Bartow,P4,1972.0,55.4,45.0,58.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8122743682310469,1.0,SERC,FPC,FL,27.859535,-82.601759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -638,Suwannee River,P1,1980.0,65.9,48.0,65.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7283763277693474,0.9863429438543246,SERC,FPC,FL,30.376389,-83.180556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.259007781244266 -638,Suwannee River,P2,1980.0,65.9,48.0,64.0,30,DFO,Petroleum Liquids,OP,GT,10.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7283763277693474,0.9711684370257966,SERC,FPC,FL,30.376389,-83.180556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.259007781244266 -638,Suwannee River,P3,1980.0,65.9,49.0,65.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7435508345978755,0.9863429438543246,SERC,FPC,FL,30.376389,-83.180556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.259007781244266 -641,Gulf Clean Energy Center,4,1959.0,93.7,75.0,75.0,45,NG,Natural Gas Steam Turbine,OP,ST,7.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8004268943436499,0.8004268943436499,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.364345401459854 -641,Gulf Clean Energy Center,5,1961.0,93.7,75.0,75.0,45,NG,Natural Gas Steam Turbine,OP,ST,6.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8004268943436499,0.8004268943436499,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.79429244856432 -641,Gulf Clean Energy Center,6,1970.0,369.7,299.0,299.0,220,NG,Natural Gas Steam Turbine,OP,ST,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8087638625912903,0.8087638625912903,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.761402688314433 -641,Gulf Clean Energy Center,7,1973.0,578.0,475.0,475.0,280,NG,Natural Gas Steam Turbine,OP,ST,8.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8217993079584776,0.8217993079584776,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.679997376735576 -641,Gulf Clean Energy Center,8A,2021.0,243.1,236.0,233.0,94,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9707939119703826,0.9584533113944879,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.185281404237672 -641,Gulf Clean Energy Center,8B,2021.0,243.1,236.0,233.0,94,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9707939119703826,0.9584533113944879,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.52612502288462 -641,Gulf Clean Energy Center,8C,2021.0,243.1,231.1,231.1,94,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9506375976964212,0.9506375976964212,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.163451770428962 -641,Gulf Clean Energy Center,8D,2021.0,243.1,231.1,231.1,94,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9506375976964212,0.9506375976964212,SERC,SOCO,FL,30.5661,-87.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.777513814838201 -643,Lansing Smith,3A,2002.0,203.2,,, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,SOCO,FL,30.2686,-85.7003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -643,Lansing Smith,3B,2002.0,203.2,,, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,SOCO,FL,30.2686,-85.7003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -643,Lansing Smith,3S,2002.0,213.3,660.0,646.0,360,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,FL,30.2686,-85.7003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -643,Lansing Smith,CT1,1971.0,41.8,32.0,40.0,32,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7655502392344498,0.9569377990430623,SERC,SOCO,FL,30.2686,-85.7003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,1,2017.0,19.8,19.8,19.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,BESS1,2017.0,12.6,12.6,12.6, ,MWH,Batteries,OP,BA,2.0,2017.0, , ,26.1,12.6,12.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,GT4,2009.0,69.9,56.0,61.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8011444921316165,0.8726752503576537,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,GT5,2021.0,397.8,360.0,390.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9049773755656109,0.9803921568627451,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,GT6,2021.0,397.8,360.0,390.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9049773755656109,0.9803921568627451,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,ST1,1970.0,445.5,335.0,340.0,185,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1970.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7519640852974186,0.7631874298540965,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,ST3,1976.0,445.5,395.0,400.0,185,NG,Natural Gas Steam Turbine,OP,ST,5.0,1976.0,4,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8866442199775533,0.8978675645342312,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -645,Big Bend,ST4,1985.0,486.0,437.0,442.0,157,BIT,Conventional Steam Coal,OP,ST,2.0,1985.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8991769547325102,0.9094650205761317,SERC,TEC,FL,27.7944,-82.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -649,Vogtle,1,1987.0,1215.0,1150.0,1150.0,250,NUC,Nuclear,OP,ST,5.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9465020576131687,0.9465020576131687,SERC,SOCO,GA,33.1427,-81.7625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -649,Vogtle,2,1989.0,1215.0,1152.0,1152.0,250,NUC,Nuclear,OP,ST,5.0,1989.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9481481481481482,0.9481481481481482,SERC,SOCO,GA,33.1427,-81.7625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -663,Deerhaven Generating Station,1,1972.0,75.0,76.0,76.0,22,NG,Natural Gas Steam Turbine,OP,ST,8.0,1972.0,12,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,GVL,FL,29.7592,-82.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -663,Deerhaven Generating Station,2,1981.0,250.7,232.0,232.0,51,NG,Natural Gas Steam Turbine,OP,ST,10.0,1981.0,12,2031,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9254088552054248,0.9254088552054248,SERC,GVL,FL,29.7592,-82.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -663,Deerhaven Generating Station,GT1,1976.0,24.6,17.5,22.0,3,NG,Natural Gas Fired Combustion Turbine,SB,GT,7.0,1976.0,10,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7113821138211383,0.8943089430894309,SERC,GVL,FL,29.7592,-82.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -663,Deerhaven Generating Station,GT2,1976.0,24.6,17.5,22.0,3,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,1976.0,10,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7113821138211383,0.8943089430894309,SERC,GVL,FL,29.7592,-82.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -663,Deerhaven Generating Station,GT3,1996.0,96.1,71.0,81.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7388137356919875,0.8428720083246619,SERC,GVL,FL,29.7592,-82.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -664,John R Kelly,8.2,2021.0,45.5,41.0,40.0,34,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9010989010989011,0.8791208791208791,SERC,GVL,FL,29.6461,-82.3208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -664,John R Kelly,CT04,2001.0,96.1,72.0,81.0,4,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7492195629552549,0.8428720083246619,SERC,GVL,FL,29.6461,-82.3208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,13,1972.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,14,1972.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,15,1972.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,16,1972.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,17,1972.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,19,1975.0,8.8,8.0,8.0,3.5,DFO,Petroleum Liquids,OP,IC,2.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,2,1970.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,3.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,20,1981.0,6.4,6.0,6.0,3,DFO,Petroleum Liquids,OP,IC,5.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,21,1981.0,6.4,6.0,6.0,3,DFO,Petroleum Liquids,OP,IC,5.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,22,2013.0,0.1,0.1,0.1,0,DFO,Petroleum Liquids,SB,IC,1.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -665,G W Ivey,3,1970.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,3.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,HST,FL,25.4756,-80.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -666,J D Kennedy,GT37,2000.0,185.0,178.6,191.2,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9654054054054054,1.0,SERC,JEA,FL,30.364818,-81.625967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -666,J D Kennedy,GT38,2009.0,185.0,178.6,191.2,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9654054054054054,1.0,SERC,JEA,FL,30.364818,-81.625967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,1,1966.0,297.5,293.0,293.0,165,BIT,Conventional Steam Coal,OP,ST,3.0,1966.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.984873949579832,0.984873949579832,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,2,1972.0,297.5,293.0,293.0,165,BIT,Conventional Steam Coal,OP,ST,6.0,1972.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.984873949579832,0.984873949579832,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,4,1975.0,62.1,53.0,61.6,15,DFO,Petroleum Liquids,OP,GT,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8534621578099839,0.9919484702093397,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,5,1974.0,62.1,53.0,61.6,15,DFO,Petroleum Liquids,OP,GT,12.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8534621578099839,0.9919484702093397,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,6,1974.0,62.1,53.0,61.6,15,DFO,Petroleum Liquids,OP,GT,12.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8534621578099839,0.9919484702093397,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,GT3,1975.0,62.1,53.0,61.6,15,DFO,Petroleum Liquids,OP,GT,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8534621578099839,0.9919484702093397,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -667,Northside Generating Station,ST3,1977.0,563.7,524.0,524.0,50,NG,Natural Gas Steam Turbine,OP,ST,6.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.929572467624623,0.929572467624623,SERC,JEA,FL,30.4172,-81.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,GT1,1976.0,30.8,26.0,31.0,8,DFO,Petroleum Liquids,OP,GT,12.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8441558441558441,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,GT2,1978.0,21.4,21.0,23.0,16,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1978.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9813084112149534,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,MU1,1965.0,2.0,2.0,2.0,1.8,DFO,Petroleum Liquids,OP,IC,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,MU2,1965.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,SB,IC,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,MU3,1965.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,MU4,1965.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,MU5,1965.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,S3,1967.0,26.5,26.5,26.5,8,NG,Natural Gas Steam Turbine,OP,ST,11.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -673,Tom G Smith,S5,1978.0,10.0,10.0,10.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1978.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,FMPP,FL,26.612767,-80.0677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -674,Pilot Butte,1,1925.0,0.8,0.8,0.7,0,WAT,Conventional Hydroelectric,OS,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,WECC,WAUW,WY,43.219017,-108.787681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -674,Pilot Butte,2,1929.0,0.8,0.8,0.8,0,WAT,Conventional Hydroelectric,OS,HY,2.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,43.219017,-108.787681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -675,Larsen Memorial,2,1962.0,11.2,10.0,14.0,6,NG,Natural Gas Fired Combustion Turbine,OS,GT,11.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8928571428571429,1.0,SERC,FMPP,FL,28.0491,-81.9238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -675,Larsen Memorial,3,1962.0,11.2,9.0,13.0,6,NG,Natural Gas Fired Combustion Turbine,OS,GT,12.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8035714285714286,1.0,SERC,FMPP,FL,28.0491,-81.9238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -675,Larsen Memorial,5,1956.0,25.0,29.7,29.7,12,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1956.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,FMPP,FL,28.0491,-81.9238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -675,Larsen Memorial,8,1992.0,86.2,114.5,124.5,38,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FMPP,FL,28.0491,-81.9238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -676,C D McIntosh Jr,5CT,2001.0,249.0,234.0,280.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9397590361445783,1.0,SERC,FMPP,FL,28.0801,-81.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -676,C D McIntosh Jr,5ST,2002.0,135.0,118.0,118.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8740740740740741,0.8740740740740741,SERC,FMPP,FL,28.0801,-81.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -676,C D McIntosh Jr,GT1,1973.0,26.6,17.0,19.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6390977443609023,0.7142857142857142,SERC,FMPP,FL,28.0801,-81.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -676,C D McIntosh Jr,GT2,2020.0,130.0,119.5,124.5,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9192307692307692,0.9576923076923077,SERC,FMPP,FL,28.0801,-81.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -676,C D McIntosh Jr,IC1,1970.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0801,-81.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -676,C D McIntosh Jr,IC2,1970.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0801,-81.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -678,W K Sanders,1,1983.0,0.9,0.7,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777777,1.0,NPCC,ISNE,VT,44.625282,-72.530859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -678,W K Sanders,2,1983.0,0.9,0.7,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777777,1.0,NPCC,ISNE,VT,44.625282,-72.530859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -682,Kerckhoff 2,1,1983.0,139.5,155.0,155.0,5,WAT,Conventional Hydroelectric,OP,HY,5.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.071846,-119.558008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -683,Indian River Plant,A,1989.0,41.4,37.0,48.0,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.893719806763285,1.0,SERC,FMPP,FL,28.493232,-80.780124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -683,Indian River Plant,B,1989.0,41.4,37.0,48.0,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.893719806763285,1.0,SERC,FMPP,FL,28.493232,-80.780124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -683,Indian River Plant,C,1992.0,130.0,108.0,127.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8307692307692307,0.9769230769230769,SERC,FMPP,FL,28.493232,-80.780124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -683,Indian River Plant,D,1992.0,130.0,108.0,127.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8307692307692307,0.9769230769230769,SERC,FMPP,FL,28.493232,-80.780124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,2,1977.0,259.2,141.0,145.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.5439814814814815,0.5594135802469136,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,CT 2A,2008.0,198.9,159.0,185.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7993966817496229,0.930115635997989,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,GT3,2005.0,60.5,46.0,48.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7603305785123967,0.7933884297520661,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,GT4,2005.0,60.5,46.0,48.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7603305785123967,0.7933884297520661,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,IC1,2019.0,18.8,18.5,18.5,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9840425531914894,0.9840425531914894,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,IC2,2019.0,18.8,18.5,18.5,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9840425531914894,0.9840425531914894,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,IC3,2019.0,18.8,18.5,18.5,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9840425531914894,0.9840425531914894,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,IC4,2019.0,18.8,18.5,18.5,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9840425531914894,0.9840425531914894,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -688,Arvah B Hopkins,IC5,2020.0,18.8,18.5,18.5,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9840425531914894,0.9840425531914894,SERC,TAL,FL,30.4522,-84.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -689,S O Purdom,8,2000.0,180.0,154.0,182.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8555555555555556,1.0,SERC,TAL,FL,30.162304,-84.200673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.383203698306328 -689,S O Purdom,9,2000.0,90.1,72.0,76.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7991120976692564,0.8435072142064374,SERC,TAL,FL,30.162304,-84.200673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -690,J Woodruff,1A,2003.0,14.5,14.5,14.5,5,WAT,Conventional Hydroelectric,OP,HY,2.0,2003.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,FPL,FL,30.708571,-84.863869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -690,J Woodruff,2A,2002.0,14.5,14.5,14.5,5,WAT,Conventional Hydroelectric,OP,HY,2.0,2002.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,FPL,FL,30.708571,-84.863869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -690,J Woodruff,3A,2001.0,14.5,14.5,14.5,5,WAT,Conventional Hydroelectric,OP,HY,2.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,FPL,FL,30.708571,-84.863869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -692,Medicine Bow,10,2000.0,4.9,4.9,4.9,0,WND,Onshore Wind Turbine,OP,WT,7.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WAUW,WY,41.835278,-106.242778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -692,Medicine Bow,11,2000.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,7.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WAUW,WY,41.835278,-106.242778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -696,Marathon Generating Plant,10,1998.0,3.5,3.5,3.5,3.5,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,24.710833,-81.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.442507766779857 -696,Marathon Generating Plant,11,2001.0,3.5,3.5,3.5,3.5,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,24.710833,-81.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.442507766779857 -696,Marathon Generating Plant,8,1989.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,24.710833,-81.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.442565431786572 -696,Marathon Generating Plant,9,1989.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,24.710833,-81.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.442565431786572 -698,Trenton North,1,1974.0,2.7,2.7,2.7,0.7,DFO,Petroleum Liquids,OP,IC,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.0786,-93.635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.297619047619047 -698,Trenton North,2,1974.0,2.7,2.7,2.7,0.7,DFO,Petroleum Liquids,OP,IC,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.0786,-93.635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.297619047619047 -698,Trenton North,3,1974.0,2.7,2.7,2.7,0.7,DFO,Petroleum Liquids,OP,IC,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.0786,-93.635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.297619047619047 -698,Trenton North,4,1974.0,2.7,2.7,2.7,0.7,DFO,Petroleum Liquids,OP,IC,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.0786,-93.635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.297619047619047 -698,Trenton North,5,1975.0,2.7,2.7,2.7,0.7,DFO,Petroleum Liquids,OP,IC,6.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.0786,-93.635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.297619047619047 -702,Bartletts Ferry,1,1926.0,15.0,16.4,16.5,16.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.663,-85.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -702,Bartletts Ferry,2,1926.0,15.0,16.4,16.5,16.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.663,-85.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -702,Bartletts Ferry,3,1928.0,15.0,16.4,16.5,16.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.663,-85.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -702,Bartletts Ferry,4,1951.0,20.0,21.9,22.0,21.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.663,-85.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -702,Bartletts Ferry,5,1985.0,54.0,59.0,59.5,59,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.663,-85.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -702,Bartletts Ferry,6,1985.0,54.0,59.0,59.5,59,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.663,-85.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -703,Bowen,1,1971.0,805.8,714.0,714.0,450,BIT,Conventional Steam Coal,OP,ST,10.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8860759493670887,0.8860759493670887,SERC,SOCO,GA,34.1256,-84.9222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -703,Bowen,2,1972.0,788.8,718.0,718.0,450,BIT,Conventional Steam Coal,OP,ST,9.0,1972.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9102434077079108,0.9102434077079108,SERC,SOCO,GA,34.1256,-84.9222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -703,Bowen,3,1974.0,952.0,883.0,883.0,550,BIT,Conventional Steam Coal,OP,ST,12.0,1974.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9275210084033614,0.9275210084033614,SERC,SOCO,GA,34.1256,-84.9222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -703,Bowen,4,1975.0,952.0,885.0,885.0,550,BIT,Conventional Steam Coal,OP,ST,11.0,1975.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9296218487394958,0.9296218487394958,SERC,SOCO,GA,34.1256,-84.9222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -704,Burton Dam,1,1927.0,3.0,4.8,4.4,4.4,WAT,Conventional Hydroelectric,OP,HY,9.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7939,-83.5402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -704,Burton Dam,2,1927.0,3.0,4.8,4.4,4.3,WAT,Conventional Hydroelectric,OP,HY,9.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7939,-83.5402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -706,Flint River,1,1921.0,1.8,2.1,2.0,1.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.6026,-84.137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -706,Flint River,2,1921.0,1.8,2.1,2.0,1.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.6026,-84.137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -706,Flint River,3,1925.0,1.8,2.1,2.0,2,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.6026,-84.137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -707,Goat Rock,3,1915.0,5.0,5.0,5.1,3.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6096,-85.0795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -707,Goat Rock,4,1920.0,5.0,5.0,5.1,5,WAT,Conventional Hydroelectric,OP,HY,12.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6096,-85.0795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -707,Goat Rock,5,1955.0,5.0,5.0,5.1,5,WAT,Conventional Hydroelectric,OP,HY,12.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6096,-85.0795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -707,Goat Rock,6,1956.0,5.0,5.0,5.1,5,WAT,Conventional Hydroelectric,OP,HY,2.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6096,-85.0795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -707,Goat Rock,7,2005.0,9.3,9.3,9.5,9.3,WAT,Conventional Hydroelectric,OP,HY,6.0,2005.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6096,-85.0795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -707,Goat Rock,8,2005.0,9.3,9.3,9.5,9.3,WAT,Conventional Hydroelectric,OP,HY,6.0,2005.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.6096,-85.0795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,3A,1971.0,41.8,32.0,40.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7655502392344498,0.9569377990430623,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,3B,1971.0,41.8,32.0,40.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7655502392344498,0.9569377990430623,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,4,2011.0,369.0,360.0,360.0,209,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.975609756097561,0.975609756097561,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,5,2012.0,369.0,360.0,360.0,209,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.975609756097561,0.975609756097561,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,5ACT,2012.0,276.3,232.5,271.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8414766558089033,0.9808179515019906,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,5BCT,2012.0,276.3,232.5,271.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8414766558089033,0.9808179515019906,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,6,2012.0,369.0,345.0,345.0,209,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9349593495934959,0.9349593495934959,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,6ACT,2012.0,276.3,233.0,274.5,150,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8432862830256966,0.993485342019544,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,6BCT,2012.0,276.3,233.0,274.5,150,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8432862830256966,0.993485342019544,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,CT4A,2011.0,276.3,237.5,276.5,150,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8595729279768367,1.0,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -710,Jack McDonough,CT4B,2011.0,276.3,237.5,276.5,150,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8595729279768367,1.0,SERC,SOCO,GA,33.8239,-84.4758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -712,Lloyd Shoals,1,1911.0,2.4,3.8,3.8,3.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3207,-83.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -712,Lloyd Shoals,2,1911.0,2.4,3.8,3.8,3.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3207,-83.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -712,Lloyd Shoals,3,1911.0,2.4,3.8,3.8,3.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3207,-83.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -712,Lloyd Shoals,4,1911.0,2.4,3.8,3.8,3.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3207,-83.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -712,Lloyd Shoals,5,1916.0,2.4,3.8,3.8,3.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3207,-83.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -712,Lloyd Shoals,6,1917.0,2.4,3.8,3.8,3.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3207,-83.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -714,Toadtown,1,1986.0,1.8,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.8333333333333333,WECC,CISO,CA,39.893491,-121.59338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -715,McManus,3A,1972.0,55.4,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8303249097472925,1.0,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.2968710825611 -715,McManus,3B,1972.0,55.4,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8303249097472925,1.0,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.170765729530581 -715,McManus,3C,1972.0,55.4,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8303249097472925,1.0,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.828409521016107 -715,McManus,4A,1972.0,65.3,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044410413476263,0.8728943338437979,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.58534582300603 -715,McManus,4B,1972.0,65.3,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044410413476263,0.8728943338437979,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.44862628382962 -715,McManus,4C,1972.0,65.3,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044410413476263,0.8728943338437979,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.999319999408694 -715,McManus,4D,1972.0,65.3,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044410413476263,0.8728943338437979,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.937687965139297 -715,McManus,4E,1972.0,65.3,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044410413476263,0.8728943338437979,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.742105669463868 -715,McManus,4F,1972.0,65.3,46.0,57.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7044410413476263,0.8728943338437979,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.180295422479112 -715,McManus,IC1,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,31.213645,-81.546165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,1,1903.0,2.4,1.5,1.6,1.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,2,1903.0,2.4,1.5,1.6,1.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,3,1903.0,2.4,1.5,1.6,1.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,4,1903.0,2.4,1.5,1.6,1.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,5,1903.0,2.4,1.5,1.6,1.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,6,1903.0,2.4,1.5,1.6,1.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -717,Morgan Falls,7,1903.0,2.4,1.5,1.6,1.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.6666666666666667,SERC,SOCO,GA,33.9681,-84.3841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -718,Nacoochee,1,1926.0,2.4,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7549,-83.5012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -718,Nacoochee,2,1926.0,2.4,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,12.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7549,-83.5012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -719,North Highlands,1,1963.0,9.2,10.7,10.8,10.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,32.4994,-84.9965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -719,North Highlands,2,1963.0,9.2,10.7,10.8,10.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,32.4994,-84.9965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -719,North Highlands,3,1963.0,9.2,10.7,10.8,10.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,32.4994,-84.9965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -719,North Highlands,4,1963.0,2.0,2.3,2.3,2.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,32.4994,-84.9965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -720,Oliver Dam,1,1959.0,18.0,17.7,17.5,17.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833333333333333,0.9722222222222222,SERC,SOCO,GA,32.5155,-85.0004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -720,Oliver Dam,2,1959.0,18.0,17.7,17.5,17.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833333333333333,0.9722222222222222,SERC,SOCO,GA,32.5155,-85.0004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -720,Oliver Dam,3,1959.0,18.0,17.7,17.5,17.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833333333333333,0.9722222222222222,SERC,SOCO,GA,32.5155,-85.0004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -720,Oliver Dam,4,1959.0,6.0,5.9,5.8,5.7,WAT,Conventional Hydroelectric,OP,HY,11.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833333333333334,0.9666666666666667,SERC,SOCO,GA,32.5155,-85.0004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -722,Sinclair Dam,1,1953.0,22.5,21.9,21.9,21.9,WAT,Conventional Hydroelectric,OP,HY,2.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9733333333333333,0.9733333333333333,SERC,SOCO,GA,33.1405,-83.2018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -722,Sinclair Dam,2,1953.0,22.5,21.9,21.9,21.9,WAT,Conventional Hydroelectric,OP,HY,2.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9733333333333333,0.9733333333333333,SERC,SOCO,GA,33.1405,-83.2018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -723,Tallulah Falls,1,1913.0,12.0,12.1,12.1,12.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7388,-83.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -723,Tallulah Falls,2,1913.0,12.0,12.1,12.1,12.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7388,-83.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -723,Tallulah Falls,3,1914.0,12.0,12.1,12.1,12.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7388,-83.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -723,Tallulah Falls,4,1913.0,12.0,12.2,12.2,12.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7388,-83.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -723,Tallulah Falls,5,1913.0,12.0,12.2,12.2,12.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7388,-83.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -723,Tallulah Falls,6,1920.0,12.0,12.2,12.2,12.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7388,-83.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -724,Terrora,1,1925.0,8.0,8.3,8.3,8.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7653,-83.4162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -724,Terrora,2,1925.0,8.0,9.3,9.3,9.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.7653,-83.4162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -725,Tugalo,1,1923.0,11.2,13.0,13.1,13,WAT,Conventional Hydroelectric,OP,HY,10.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.714,-83.3522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -725,Tugalo,2,1923.0,11.2,13.0,13.1,13,WAT,Conventional Hydroelectric,OP,HY,11.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.714,-83.3522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -725,Tugalo,3,1924.0,11.2,13.0,13.1,13,WAT,Conventional Hydroelectric,OP,HY,4.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.714,-83.3522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -725,Tugalo,4,1924.0,11.2,13.0,13.1,13,WAT,Conventional Hydroelectric,OP,HY,4.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.714,-83.3522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -728,Yates,6,1974.0,403.7,355.5,355.5,60,NG,Natural Gas Steam Turbine,OP,ST,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8806044092147635,0.8806044092147635,SERC,SOCO,GA,33.4622,-84.8986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -728,Yates,7,1974.0,403.7,358.5,358.5,60,NG,Natural Gas Steam Turbine,OP,ST,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8880356700520189,0.8880356700520189,SERC,SOCO,GA,33.4622,-84.8986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -729,Yonah,1,1925.0,7.5,9.5,9.6,9.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.6821,-83.3418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -729,Yonah,2,1925.0,7.5,9.5,9.6,9.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.6821,-83.3418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -729,Yonah,3,1925.0,7.5,9.5,9.6,9.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.6821,-83.3418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,1,1914.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,2,1914.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,3,1914.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,4,1914.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,5,1914.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,6,1925.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,7,1926.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -736,Stevens Creek,8,1926.0,2.2,1.5,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6818181818181818,0.8636363636363635,SERC,SCEG,GA,33.562644,-82.051242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -745,Etiwanda,1,1994.0,23.9,23.9,23.9,2.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.10345,-117.5257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -751,Moccasin Low Head Hydro Project,1,1987.0,2.9,2.9,2.9,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.816447,-120.312033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -752,Lake Blackshear Project,1,1930.0,2.4,2.4,2.4,0.9,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.847697,-83.941996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -752,Lake Blackshear Project,2,1930.0,5.0,4.0,4.0,1.4,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,SERC,SOCO,GA,31.847697,-83.941996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -752,Lake Blackshear Project,3,1930.0,4.8,4.8,4.8,1.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.847697,-83.941996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -752,Lake Blackshear Project,4,1930.0,5.0,4.0,4.0,0.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,SERC,SOCO,GA,31.847697,-83.941996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -753,Crisp Plant,1,1957.0,12.5,10.0,10.0,3,NG,Natural Gas Steam Turbine,OP,ST,6.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,SERC,SOCO,GA,31.844708,-83.940734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -753,Crisp Plant,GT1,1957.0,5.0,4.0,4.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.8,SERC,SOCO,GA,31.844708,-83.940734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -754,Hartwell Lake,1,1962.0,85.0,85.0,85.0,30,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.3564,-82.8219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -754,Hartwell Lake,2,1962.0,85.0,85.0,85.0,30,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.3564,-82.8219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -754,Hartwell Lake,3,1962.0,85.0,85.0,85.0,30,WAT,Conventional Hydroelectric,OS,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.3564,-82.8219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -754,Hartwell Lake,4,1962.0,85.0,70.0,70.0,55,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8235294117647058,0.8235294117647058,SERC,SEPA,GA,34.3564,-82.8219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -754,Hartwell Lake,5,1983.0,80.0,80.0,80.0,25,WAT,Conventional Hydroelectric,OP,HY,11.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.3564,-82.8219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -757,Blue Ridge,1,1931.0,22.0,16.0,13.4,7.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7272727272727273,0.6090909090909091,SERC,TVA,GA,34.883889,-84.282222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -757,Blue Ridge,2,1994.0,1.5,1.3,1.3,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8666666666666667,0.8666666666666667,SERC,TVA,GA,34.883889,-84.282222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -758,Nottely,1,1956.0,15.0,19.2,18.4,13.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,GA,34.959153,-84.08765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -758,Nottely,2,1993.0,0.9,0.9,0.9,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,GA,34.959153,-84.08765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -759,Buford,1A,2003.0,62.0,60.0,60.0,35,WAT,Conventional Hydroelectric,OP,HY,12.0,2003.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.967741935483871,0.967741935483871,SERC,SOCO,GA,34.162279,-84.077367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -759,Buford,2A,2004.0,62.0,60.0,60.0,35,WAT,Conventional Hydroelectric,OP,HY,12.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.967741935483871,0.967741935483871,SERC,SOCO,GA,34.162279,-84.077367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -759,Buford,3A,2005.0,7.2,6.8,6.6,6.6,WAT,Conventional Hydroelectric,OP,HY,2.0,2005.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9166666666666666,SERC,SOCO,GA,34.162279,-84.077367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -760,Allatoona,1,1950.0,42.3,35.0,35.0,20,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8274231678486998,0.8274231678486998,SERC,SOCO,GA,34.1637,-84.7282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -760,Allatoona,2,1950.0,42.3,35.0,35.0,20,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8274231678486998,0.8274231678486998,SERC,SOCO,GA,34.1637,-84.7282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -760,Allatoona,A,1950.0,2.0,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,2.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,34.1637,-84.7282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -761,Walter F George,1,1963.0,42.0,42.0,42.0,40,WAT,Conventional Hydroelectric,OP,HY,3.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.624501,-85.065237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -761,Walter F George,2,1963.0,42.0,42.0,42.0,40,WAT,Conventional Hydroelectric,OP,HY,5.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.624501,-85.065237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -761,Walter F George,3,1963.0,42.0,42.0,42.0,40,WAT,Conventional Hydroelectric,OP,HY,9.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.624501,-85.065237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -761,Walter F George,4,1963.0,42.0,42.0,42.0,40,WAT,Conventional Hydroelectric,OP,HY,11.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,31.624501,-85.065237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -765,Kahe,K1,1963.0,81.6,77.9,77.9,20,RFO,Petroleum Liquids,OP,ST,3.0,1963.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9546568627450982,0.9546568627450982,non-conus,non-conus,HI,21.356395,-158.128853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -765,Kahe,K2,1964.0,81.6,78.1,78.1,30,RFO,Petroleum Liquids,OP,ST,9.0,1964.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9571078431372549,0.9571078431372549,non-conus,non-conus,HI,21.356395,-158.128853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -765,Kahe,K3,1970.0,85.8,82.1,82.1,20,RFO,Petroleum Liquids,OP,ST,8.0,1970.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9568764568764568,0.9568764568764568,non-conus,non-conus,HI,21.356395,-158.128853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -765,Kahe,K4,1972.0,90.9,87.2,87.2,20,RFO,Petroleum Liquids,OP,ST,6.0,1972.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9592959295929593,0.9592959295929593,non-conus,non-conus,HI,21.356395,-158.128853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -765,Kahe,K5,1974.0,134.9,128.1,128.1,55,RFO,Petroleum Liquids,OP,ST,12.0,1974.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9495922905856189,0.9495922905856189,non-conus,non-conus,HI,21.356395,-158.128853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -765,Kahe,K6,1981.0,134.9,128.7,128.7,45,RFO,Petroleum Liquids,OP,ST,3.0,1981.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9540400296515936,0.9540400296515936,non-conus,non-conus,HI,21.356395,-158.128853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W10,1973.0,51.3,51.2,51.2,6,DFO,Petroleum Liquids,OP,GT,12.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9980506822612086,0.9980506822612086,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.17726180125812 -766,Waiau,W3,1947.0,50.0,47.2,47.2,20,RFO,Petroleum Liquids,OP,ST,12.0,1947.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9440000000000001,0.9440000000000001,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W4,1950.0,50.0,47.7,47.7,20,RFO,Petroleum Liquids,OP,ST,10.0,1950.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9540000000000001,0.9540000000000001,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W5,1959.0,54.4,51.9,51.9,23,RFO,Petroleum Liquids,OP,ST,9.0,1959.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9540441176470589,0.9540441176470589,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W6,1961.0,54.4,51.8,51.8,20,RFO,Petroleum Liquids,OP,ST,6.0,1961.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9522058823529411,0.9522058823529411,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W7,1966.0,81.6,77.8,77.8,20,RFO,Petroleum Liquids,OP,ST,10.0,1966.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9534313725490197,0.9534313725490197,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W8,1968.0,81.6,77.8,77.8,20,RFO,Petroleum Liquids,OP,ST,11.0,1968.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9534313725490197,0.9534313725490197,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -766,Waiau,W9,1973.0,51.3,51.2,51.2,6,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9980506822612086,0.9980506822612086,non-conus,non-conus,HI,21.388997,-157.961518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.17726180125812 -768,Waimea,12,1970.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.0252,-155.6955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.584269662921349 -768,Waimea,13,1972.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.0252,-155.6955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.584269662921349 -768,Waimea,14,1972.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.0252,-155.6955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.584269662921349 -769,Kanoelehua,11,1962.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,9.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7052,-155.0625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.38308259275863 -769,Kanoelehua,15,1972.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7052,-155.0625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.383053234215252 -769,Kanoelehua,16,1972.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7052,-155.0625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.383053234215252 -769,Kanoelehua,17,1973.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7052,-155.0625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.383053234215252 -769,Kanoelehua,CT1,1962.0,11.5,10.5,10.5,2.5,DFO,Petroleum Liquids,OP,GT,1.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9130434782608696,0.9130434782608696,non-conus,non-conus,HI,19.7052,-155.0625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.30106100795756 -771,Puueo,1,1918.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,19.7264,-155.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -771,Puueo,2A,2005.0,2.4,2.4,2.4,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,2005.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,19.7264,-155.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -772,W H Hill,5,1965.0,14.1,14.1,14.1,5,RFO,Petroleum Liquids,OP,ST,12.0,1965.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,HI,19.7041,-155.0607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.559905025797821 -772,W H Hill,6,1974.0,23.0,21.4,21.4,8,RFO,Petroleum Liquids,OP,ST,12.0,1974.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9304347826086956,0.9304347826086956,non-conus,non-conus,HI,19.7041,-155.0607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.32219361923477 -774,Waiau Hydro,1,1921.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,19.7203,-155.1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -774,Waiau Hydro,2,1928.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,19.7203,-155.1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -776,Sly Creek,1,1983.0,12.1,12.1,12.1,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.580413,-121.119479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -785,Kingsley,1,1984.0,50.0,41.0,41.0,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8200000000000001,0.8200000000000001,MRO,SWPP,NE,41.2114,-101.6681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -788,East Barnet,1,1984.0,2.2,1.9,1.9,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8636363636363635,0.8636363636363635,NPCC,ISNE,VT,44.326335,-72.035894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -789,Orca,3,1984.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.555889,-145.752983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512801551283744 -789,Orca,4,1984.0,2.4,2.4,2.4,1.4,DFO,Petroleum Liquids,OP,IC,10.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.555889,-145.752983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512804612263725 -789,Orca,5,2000.0,1.1,1.1,1.1,0.7,DFO,Petroleum Liquids,OP,IC,3.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.555889,-145.752983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512804641828303 -789,Orca,6,2000.0,1.1,1.1,1.1,0.7,DFO,Petroleum Liquids,OP,IC,3.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.555889,-145.752983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512804641828303 -789,Orca,7,2009.0,3.6,3.6,3.6,2.2,DFO,Petroleum Liquids,OP,IC,7.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.555889,-145.752983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512802495616652 -790,Gem State,1,1988.0,23.4,23.4,23.4,23.4,WAT,Conventional Hydroelectric,OP,HY,11.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,43.420221,-112.101852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -791,Canyon,1,1989.0,3.0,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.87056,-98.194733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -791,Canyon,2,1989.0,3.0,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.87056,-98.194733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -792,Palaau Power Hybrid,15,1982.0,2.5,2.0,2.0,0.5,DFO,Petroleum Liquids,OA,GT,4.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8,0.8,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -792,Palaau Power Hybrid,7,1996.0,2.2,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076631129763706 -792,Palaau Power Hybrid,8,1996.0,2.2,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076631129763706 -792,Palaau Power Hybrid,9,1996.0,2.2,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076631129763706 -792,Palaau Power Hybrid,BAT1,2017.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,5.0,2017.0, , ,2.0,0.5,0.5,OTH,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -792,Palaau Power Hybrid,CAT1,1985.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076632493037623 -792,Palaau Power Hybrid,CAT2,1985.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076632493037623 -792,Palaau Power Hybrid,CUM3,1985.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,4.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076630379857445 -792,Palaau Power Hybrid,CUM4,1985.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,4.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076630379857445 -792,Palaau Power Hybrid,CUM5,1985.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,4.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076630379857445 -792,Palaau Power Hybrid,CUM6,1991.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,12.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.106,-157.0647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076630379857445 -794,Lewisville,1,1992.0,2.8,2.0,2.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.7142857142857144,TRE,ERCO,TX,33.068473,-96.963806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -805,Charles E Monty,M-1,1990.0,14.2,14.0,14.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9859154929577465,0.9859154929577465,NPCC,ISNE,ME,44.099461,-70.220851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -805,Charles E Monty,M2,1990.0,14.2,14.0,14.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9859154929577465,0.9859154929577465,NPCC,ISNE,ME,44.099461,-70.220851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -808,Jarvis (Hinckley),1,1991.0,4.5,4.5,4.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.3121,-75.109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -808,Jarvis (Hinckley),2,1991.0,4.5,4.5,4.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.3121,-75.109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -809,American Falls,1,1978.0,30.8,34.4,30.8,0,WAT,Conventional Hydroelectric,OA,HY,7.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.7778,-112.8764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -809,American Falls,2,1978.0,30.8,35.3,30.8,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.7778,-112.8764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -809,American Falls,3,1978.0,30.8,35.3,30.8,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.7778,-112.8764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -810,Bliss,1,1949.0,25.0,25.6,25.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.913786,-115.070986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -810,Bliss,2,1950.0,25.0,26.1,25.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.913786,-115.070986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -810,Bliss,3,1950.0,25.0,25.9,25.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.913786,-115.070986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -811,Brownlee,1,1959.0,112.5,115.1,112.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,44.8367,-116.8975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -811,Brownlee,2,1958.0,112.5,117.9,112.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,44.8367,-116.8975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -811,Brownlee,3,1958.0,112.5,118.5,112.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,44.8367,-116.8975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -811,Brownlee,4,1958.0,112.5,117.6,112.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,44.8367,-116.8975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -811,Brownlee,5,1980.0,225.0,199.6,225.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8871111111111111,1.0,WECC,IPCO,ID,44.8367,-116.8975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -812,C J Strike,1,1952.0,27.6,30.6,27.6,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.944869,-115.977858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -812,C J Strike,2,1952.0,27.6,30.3,27.6,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.944869,-115.977858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -812,C J Strike,3,1952.0,27.6,30.4,27.6,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.944869,-115.977858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -813,Cascade Dam,1,1984.0,6.2,6.5,6.2,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,44.5256,-116.0483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -813,Cascade Dam,2,1983.0,6.2,6.6,6.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,44.5256,-116.0483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -814,Clear Lake,1,1937.0,2.5,2.2,2.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8800000000000001,1.0,WECC,IPCO,ID,42.66701,-114.78012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -815,Lower Malad,1,1948.0,13.5,14.8,13.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.865783,-114.906172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -816,Lower Salmon,1,1949.0,15.0,17.9,15.0,0,WAT,Conventional Hydroelectric,OA,HY,7.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.841608,-114.903611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -816,Lower Salmon,2,1949.0,15.0,19.1,15.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.841608,-114.903611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -816,Lower Salmon,3,1949.0,15.0,11.8,15.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7866666666666667,1.0,WECC,IPCO,ID,42.841608,-114.903611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -816,Lower Salmon,4,1949.0,15.0,20.3,15.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.841608,-114.903611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -817,Salmon Diesel,1,1967.0,2.5,2.7,2.5,0,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,IPCO,ID,45.183368,-113.885307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.025641025641026 -817,Salmon Diesel,2,1967.0,2.5,2.7,2.5,0,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,IPCO,ID,45.183368,-113.885307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.025641025641026 -818,Shoshone Falls,3,1921.0,11.5,12.2,11.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.5975,-114.4033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -818,Shoshone Falls,4,2020.0,3.2,3.0,3.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,2020.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,1.0,WECC,IPCO,ID,42.5975,-114.4033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -819,Swan Falls,1,1994.0,12.5,15.1,12.5,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.2435,-116.3791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -819,Swan Falls,2,1994.0,12.5,14.5,12.5,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.2435,-116.3791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -820,Thousand Springs,3,1920.0,6.8,6.8,6.8,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.740542,-114.836722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -821,Twin Falls (ID),1,1935.0,8.4,10.0,8.4,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.5892,-114.3553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -821,Twin Falls (ID),2,1995.0,44.3,39.9,44.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9006772009029346,1.0,WECC,IPCO,ID,42.5892,-114.3553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -822,Upper Salmon A,1,1937.0,9.0,9.6,9.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.767422,-114.924692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -822,Upper Salmon A,2,1937.0,9.0,8.5,9.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,1.0,WECC,IPCO,ID,42.767422,-114.924692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -823,Upper Malad,1,1948.0,8.3,8.0,8.3,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9638554216867469,1.0,WECC,IPCO,ID,42.864267,-114.885542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -825,Ashton,1,1917.0,2.7,2.7,2.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,44.07863,-111.497326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -825,Ashton,2,1925.0,2.0,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,44.07863,-111.497326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -825,Ashton,3,1925.0,2.0,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,44.07863,-111.497326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -827,Grace,3,1923.0,11.0,11.0,11.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,42.53675,-111.793967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -827,Grace,4,1923.0,11.0,11.0,11.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,42.53675,-111.793967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -827,Grace,5,1923.0,11.0,11.0,11.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,42.53675,-111.793967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -829,Oneida,1,1915.0,10.0,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.93,0.93,WECC,PACE,ID,42.267774,-111.748531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -829,Oneida,2,1916.0,10.0,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.93,0.93,WECC,PACE,ID,42.267774,-111.748531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -829,Oneida,3,1920.0,10.0,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.93,0.93,WECC,PACE,ID,42.267774,-111.748531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -831,Soda,1,1924.0,7.6,7.6,7.6,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,42.64455,-111.696689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -831,Soda,2,1924.0,7.0,7.6,7.6,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,42.64455,-111.696689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -833,Cabinet Gorge,1,1953.0,59.4,44.3,66.5,22,WAT,Conventional Hydroelectric,OP,HY,8.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7457912457912458,1.0,WECC,AVA,ID,48.084444,-116.053056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -833,Cabinet Gorge,2,1953.0,73.2,73.9,79.8,55,WAT,Conventional Hydroelectric,OP,HY,2.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,48.084444,-116.053056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -833,Cabinet Gorge,3,1952.0,73.2,73.4,80.2,55,WAT,Conventional Hydroelectric,OP,HY,11.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,48.084444,-116.053056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -833,Cabinet Gorge,4,1952.0,59.4,63.0,68.3,48,WAT,Conventional Hydroelectric,OP,HY,9.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,48.084444,-116.053056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -835,Post Falls,1,1907.0,2.2,2.8,2.9,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,47.703333,-116.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -835,Post Falls,2,1906.0,2.2,2.8,2.9,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,47.703333,-116.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -835,Post Falls,3,1906.0,2.2,2.8,2.9,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,47.703333,-116.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -835,Post Falls,4,1906.0,2.2,2.8,2.9,0.3,WAT,Conventional Hydroelectric,OP,HY,11.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,47.703333,-116.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -835,Post Falls,5,1908.0,2.2,2.8,2.9,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,47.703333,-116.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -835,Post Falls,6,1980.0,3.5,3.5,3.5,0.3,WAT,Conventional Hydroelectric,OS,HY,12.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,ID,47.703333,-116.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -839,Scott Flat,7P,1985.0,1.0,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,CISO,CA,39.272108,-120.932508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -840,Dworshak,1,1975.0,103.0,103.0,90.0,90,WAT,Conventional Hydroelectric,OP,HY,6.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8737864077669903,WECC,BPAT,ID,46.5143,-116.2977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -840,Dworshak,2,1975.0,103.0,103.0,90.0,90,WAT,Conventional Hydroelectric,OP,HY,9.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8737864077669903,WECC,BPAT,ID,46.5143,-116.2977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -840,Dworshak,3,1974.0,259.0,259.0,220.0,220,WAT,Conventional Hydroelectric,OP,HY,9.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8494208494208494,WECC,BPAT,ID,46.5143,-116.2977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -841,City Power Plant,3,1982.0,8.0,8.0,8.0,8,WAT,Conventional Hydroelectric,OP,HY,7.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,43.491398,-112.04541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -843,Lower No 2,1,1940.0,3.0,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,43.468398,-112.062602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -844,Upper Power Plant,4,1982.0,8.0,8.0,8.0,8,WAT,Conventional Hydroelectric,OP,HY,9.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,43.552695,-112.050953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -846,Combie South,1,1984.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.0096,-121.0591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -846,Combie South,2,1984.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.0096,-121.0591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -846,Combie South,3,1984.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.0096,-121.0591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -850,Palisades Dam,1,1957.0,44.1,44.1,44.1,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.334849,-111.205752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -850,Palisades Dam,2,1957.0,44.1,44.1,44.1,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.334849,-111.205752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -850,Palisades Dam,3,1957.0,44.1,44.1,44.1,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.334849,-111.205752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -850,Palisades Dam,4,1958.0,44.1,44.1,44.1,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.334849,-111.205752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -851,Albeni Falls,1,1955.0,14.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,5.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.180245,-116.99859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -851,Albeni Falls,2,1955.0,14.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.180245,-116.99859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -851,Albeni Falls,3,1955.0,14.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.180245,-116.99859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -862,Grand Tower Energy Center LLC,1,2001.0,223.2,161.0,182.0,110,NG,Natural Gas Fired Combined Cycle,OS,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.721326164874552,0.8154121863799284,SERC,MISO,IL,37.6577,-89.511161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -862,Grand Tower Energy Center LLC,2,2001.0,223.2,159.0,178.0,110,NG,Natural Gas Fired Combined Cycle,OS,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7123655913978495,0.7974910394265233,SERC,MISO,IL,37.6577,-89.511161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -862,Grand Tower Energy Center LLC,3,1951.0,80.9,86.0,86.0,42,NG,Natural Gas Fired Combined Cycle,OS,CA,3.0,1951.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,IL,37.6577,-89.511161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -862,Grand Tower Energy Center LLC,4,1958.0,113.6,105.0,105.0,58,NG,Natural Gas Fired Combined Cycle,OS,CA,4.0,1958.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9242957746478874,0.9242957746478874,SERC,MISO,IL,37.6577,-89.511161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -869,Dresden Generating Station,2,1970.0,1009.3,902.0,943.9,150,NUC,Nuclear,OP,ST,8.0,1970.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8936886951352423,0.9352026156742297,RFC,PJM,IL,41.39,-88.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -869,Dresden Generating Station,3,1971.0,1009.3,895.0,938.1,150,NUC,Nuclear,OP,ST,10.0,1971.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8867531952838601,0.9294560586545131,RFC,PJM,IL,41.39,-88.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -874,Joliet 9,6,1959.0,360.4,314.0,314.0,95,NG,Natural Gas Steam Turbine,OP,ST,6.0,1959.0,6,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8712541620421754,0.8712541620421754,RFC,PJM,IL,41.4931,-88.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -876,Kincaid Generation LLC,1,1967.0,659.5,554.0,554.0,220,SUB,Conventional Steam Coal,OP,ST,6.0,1967.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.840030326004549,0.840030326004549,RFC,PJM,IL,39.590556,-89.496389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.922429689655822 -876,Kincaid Generation LLC,2,1968.0,659.5,554.0,554.0,220,SUB,Conventional Steam Coal,OP,ST,6.0,1968.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.840030326004549,0.840030326004549,RFC,PJM,IL,39.590556,-89.496389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.675014604786185 -879,Powerton,5,1972.0,892.8,769.0,769.0,325,SUB,Conventional Steam Coal,OP,ST,9.0,1972.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8613351254480287,0.8613351254480287,RFC,PJM,IL,40.5408,-89.6786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -879,Powerton,6,1975.0,892.8,769.0,769.0,325,SUB,Conventional Steam Coal,OP,ST,12.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8613351254480287,0.8613351254480287,RFC,PJM,IL,40.5408,-89.6786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -880,Quad Cities Generating Station,1,1972.0,1009.3,908.0,941.8,132,NUC,Nuclear,OP,ST,12.0,1972.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996334092935698,0.933121965718815,RFC,PJM,IL,41.726111,-90.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -880,Quad Cities Generating Station,2,1972.0,1009.3,911.0,941.6,132,NUC,Nuclear,OP,ST,12.0,1972.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9026057663727336,0.9329238085802042,RFC,PJM,IL,41.726111,-90.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -883,Waukegan,311,1968.0,28.0,24.6,33.9,10,DFO,Petroleum Liquids,SB,GT,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8785714285714287,1.0,RFC,PJM,IL,42.3833,-87.8133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,78.29570747217807 -883,Waukegan,312,1968.0,28.0,28.5,37.4,10,DFO,Petroleum Liquids,SB,GT,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,42.3833,-87.8133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -883,Waukegan,321,1968.0,28.0,28.0,37.4,10,DFO,Petroleum Liquids,SB,GT,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,42.3833,-87.8133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57.49252782193959 -883,Waukegan,322,1968.0,28.0,26.7,35.0,10,DFO,Petroleum Liquids,SB,GT,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9535714285714285,1.0,RFC,PJM,IL,42.3833,-87.8133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.904292527821944 -886,Fisk Street,311,1968.0,32.5,25.4,34.0,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7815384615384615,1.0,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -886,Fisk Street,312,1968.0,32.5,23.7,31.6,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7292307692307691,0.9723076923076923,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -886,Fisk Street,321,1968.0,32.5,25.4,34.0,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7815384615384615,1.0,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -886,Fisk Street,322,1968.0,32.5,25.4,34.0,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7815384615384615,1.0,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -886,Fisk Street,331,1968.0,32.5,23.7,31.6,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7292307692307691,0.9723076923076923,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -886,Fisk Street,332,1968.0,32.5,25.4,34.0,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7815384615384615,1.0,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -886,Fisk Street,341,1968.0,32.5,25.4,34.0,10,DFO,Petroleum Liquids,OS,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7815384615384615,1.0,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -886,Fisk Street,342,1968.0,32.5,22.8,30.5,10,DFO,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7015384615384616,0.9384615384615385,RFC,PJM,IL,41.8508,-87.6533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,95.15747508305648 -889,Baldwin Energy Complex,1,1970.0,625.1,576.0,590.0,270,SUB,Conventional Steam Coal,OP,ST,7.0,1970.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9214525675891857,0.9438489841625339,SERC,MISO,IL,38.205,-89.8544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.372292024713246 -889,Baldwin Energy Complex,2,1973.0,634.5,581.0,595.0,400,SUB,Conventional Steam Coal,OP,ST,3.0,1973.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9156816390858944,0.9377462568951931,SERC,MISO,IL,38.205,-89.8544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.781277145025879 -899,Moline,GT1,1970.0,18.0,15.0,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.75373134328358 -899,Moline,GT2,1970.0,18.0,15.0,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.75373134328358 -899,Moline,GT3,1970.0,18.0,15.0,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.75373134328358 -899,Moline,GT4,1970.0,18.0,15.0,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.75373134328358 -899,Moline,HY1,1942.0,0.9,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -899,Moline,HY2,1942.0,0.9,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -899,Moline,HY3,1942.0,0.9,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -899,Moline,HY4,1942.0,0.9,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,MRO,MISO,IL,41.509959,-90.534021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -902,Bottle Rock Power,1,1985.0,55.0,9.0,9.0,1.8,GEO,Geothermal,OS,ST,2.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.1636363636363637,0.1636363636363637,WECC,CISO,CA,38.8348,-122.7677,BottleRock,GEO,True,6.0,16.0,-1.0,0.33,0.33,0.0,0.0,1.0,3.098312,10.0,-1.7614201711394954,58.71420123331075,-5.9933302115492995e-06,-1.761333073353733,58.71389614074483,6.678997590218747,#TRUE#,#2017-11-01#,#2050-12-31#,Existing,CIPV,CA_CISO,2.0,10.0,7.41,CA,Geo,Binary,#FALSE#,10,10, -903,Rockton,1,1929.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,IL,42.4511,-89.0756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -903,Rockton,2,1929.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,IL,42.4511,-89.0756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -905,Alamo,1,1986.0,19.6,17.0,17.0,4,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8673469387755102,0.8673469387755102,WECC,CISO,CA,34.8158,-118.6867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -913,Venice,GT2,2002.0,61.0,44.0,53.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7213114754098361,0.8688524590163934,SERC,MISO,IL,38.6642,-90.1764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -913,Venice,GT3,2005.0,200.0,169.0,191.0,119,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.845,0.955,SERC,MISO,IL,38.6642,-90.1764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -913,Venice,GT4,2005.0,200.0,169.0,191.0,119,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.845,0.955,SERC,MISO,IL,38.6642,-90.1764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -913,Venice,GT5,2005.0,125.0,104.0,125.0,67,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.832,1.0,SERC,MISO,IL,38.6642,-90.1764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -917,Quincy Chute,1,1985.0,9.4,9.4,9.4,4,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.982514,-119.257764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -925,Hydro Plant No 3,2,1984.0,0.7,0.6,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.2857142857142857,WECC,PACE,UT,39.205623,-111.334381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -925,Hydro Plant No 3,3,1984.0,2.1,2.0,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9047619047619047,WECC,PACE,UT,39.205623,-111.334381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -934,Breese,2,1982.0,3.0,3.0,3.0,1,DFO,Petroleum Liquids,SB,IC,6.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825211636139757 -934,Breese,5,1992.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,7.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825144989102728 -934,Breese,6,1997.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,7.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825144989102728 -934,Breese,7,2008.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825144989102728 -934,Breese,8,2014.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825144989102728 -934,Breese,IC1,1953.0,0.9,1.0,1.0,0.9,DFO,Petroleum Liquids,SB,IC,12.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825201374993588 -934,Breese,IC3,1968.0,3.0,3.0,3.0,1,DFO,Petroleum Liquids,SB,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.607456,-89.524514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825211636139757 -935,Bushnell,1,1940.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1940.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541551246537397 -935,Bushnell,2,1940.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1940.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541551246537397 -935,Bushnell,3,1965.0,2.2,2.2,2.2,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.53835987160929 -935,Bushnell,4,1965.0,2.2,2.2,2.2,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.53835987160929 -935,Bushnell,5,1956.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538770423705344 -935,Bushnell,6,2000.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538214443952148 -935,Bushnell,7,2000.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.548586,-90.513814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538214443952148 -936,Carlyle,10,2003.0,2.5,2.5,2.5,1.2,DFO,Petroleum Liquids,OP,IC,10.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6106,-89.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.084201238017569 -936,Carlyle,11,2019.0,2.8,2.8,2.8,1.2,DFO,Petroleum Liquids,OP,IC,2.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6106,-89.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.084276369192569 -936,Carlyle,7,1964.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,8.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6106,-89.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.08431238197102 -936,Carlyle,8,1998.0,2.5,2.5,2.5,1.2,DFO,Petroleum Liquids,OP,IC,10.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6106,-89.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.084201238017569 -936,Carlyle,9,1999.0,2.5,2.5,2.5,1.2,DFO,Petroleum Liquids,OP,IC,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6106,-89.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.084201238017569 -937,Carmi,10,1958.0,1.7,1.7,1.7,0.8,DFO,Petroleum Liquids,OP,IC,12.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.361253561253562 -937,Carmi,12,1967.0,2.0,1.9,1.9,0.9,DFO,Petroleum Liquids,OP,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.36155957378108 -937,Carmi,13,1973.0,4.4,4.3,4.3,2,DFO,Petroleum Liquids,OP,IC,12.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9772727272727272,0.9772727272727272,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.36126807074191 -937,Carmi,14,2013.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.362542198737707 -937,Carmi,7,1948.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.362542198737707 -937,Carmi,8,1951.0,1.4,1.2,1.2,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.360816420664207 -937,Carmi,9,1958.0,1.7,1.7,1.7,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.0967,-88.1631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.361253561253562 -941,Farmer City,1,1967.0,1.5,1.3,1.3,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,SERC,MISO,IL,40.24611,-88.638761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.344979867515262 -941,Farmer City,2,1963.0,1.1,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,4.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,SERC,MISO,IL,40.24611,-88.638761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.344845908607864 -941,Farmer City,4,1951.0,0.8,0.7,0.7,0.5,DFO,Petroleum Liquids,OP,IC,4.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,MISO,IL,40.24611,-88.638761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.345348270823186 -941,Farmer City,5,1974.0,3.5,2.8,2.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,SERC,MISO,IL,40.24611,-88.638761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.344614528249375 -941,Farmer City,6,2012.0,2.2,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,40.24611,-88.638761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.344845908607864 -941,Farmer City,7,2012.0,2.2,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,40.24611,-88.638761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.344845908607864 -943,Freeburg,1,1948.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,SB,IC,8.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.69350780070458 -943,Freeburg,10,2007.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.691937828469193 -943,Freeburg,11,2007.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.691937828469193 -943,Freeburg,12,2007.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.691937828469193 -943,Freeburg,2,1948.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,SB,IC,8.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.69350780070458 -943,Freeburg,3,1953.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.692049647769206 -943,Freeburg,4,1959.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.692632850241546 -943,Freeburg,6,1974.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.691937828469193 -943,Freeburg,7,1986.0,2.6,2.6,2.6,1,DFO,Petroleum Liquids,SB,IC,7.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.692498258109469 -943,Freeburg,8,1996.0,1.7,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.692161970163392 -943,Freeburg,9,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.425556,-89.914444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.691937828469193 -944,Geneseo,1,1974.0,5.6,4.4,4.4,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7857142857142858,0.7857142857142858,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.72242477273832 -944,Geneseo,10,2009.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -944,Geneseo,11,2009.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -944,Geneseo,12,2015.0,1.2,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -944,Geneseo,2,1967.0,3.5,2.8,2.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.722330248113868 -944,Geneseo,3,1966.0,3.5,2.8,2.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.722330248113868 -944,Geneseo,4,1957.0,1.6,1.3,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8125,0.8125,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.721503912895542 -944,Geneseo,5A,1990.0,4.4,3.4,3.4,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7727272727272727,0.7727272727272727,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.722390645300996 -944,Geneseo,6A,2003.0,3.0,2.4,2.4,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.722504537205081 -944,Geneseo,7,1961.0,3.0,2.4,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.722504537205081 -944,Geneseo,9,1998.0,4.8,3.8,3.8,1,DFO,Petroleum Liquids,OP,IC,5.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7916666666666666,0.7916666666666666,MRO,MISO,IL,41.451494,-90.148547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.722055237339081 -946,Highland,IC1,1993.0,1.6,1.6,1.6,0.8,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.91468240660004 -946,Highland,IC2,1993.0,1.6,1.6,1.6,0.8,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.91468240660004 -946,Highland,IC3,1993.0,1.6,1.6,1.6,0.8,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.91468240660004 -946,Highland,IC5,1967.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,3.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.914842240824212 -946,Highland,IC6,1968.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.914842240824212 -946,Highland,IC7,1971.0,4.4,4.0,4.0,2.2,DFO,Petroleum Liquids,SB,IC,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.914634146341463 -946,Highland,IC8,1971.0,4.4,4.0,4.0,2.2,DFO,Petroleum Liquids,SB,IC,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,38.7412,-89.6849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.914634146341463 -948,McLeansboro,2,1950.0,0.6,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,SERC,MISO,IL,38.094683,-88.541331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -948,McLeansboro,5,1979.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,MISO,IL,38.094683,-88.541331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -948,McLeansboro,6,1979.0,2.4,2.2,2.2,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,SERC,MISO,IL,38.094683,-88.541331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -948,McLeansboro,7,1995.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,38.094683,-88.541331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -948,McLeansboro,8,1994.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,38.094683,-88.541331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -948,McLeansboro,9,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.094683,-88.541331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -949,Marshall (IL),10,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),11,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),12,2007.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),13,2007.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),5,2002.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,9.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.44526010034328 -949,Marshall (IL),6,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),7,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),8,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -949,Marshall (IL),9,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.392138,-87.68513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.445389862832833 -955,Peru (IL),11,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),12,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),13,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),14,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),15,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),16,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),17,2011.0,2.7,2.7,2.7,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.579312623925976 -955,Peru (IL),GT1,1968.0,10.0,8.6,8.6,1,JF,Petroleum Liquids,OP,GT,10.0,1968.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.86,0.86,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.96551724137931 -955,Peru (IL),HC1,1996.0,1.9,1.7,1.7,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8947368421052632,0.8947368421052632,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -955,Peru (IL),HC2,1996.0,1.9,1.7,1.7,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8947368421052632,0.8947368421052632,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -955,Peru (IL),HC3,1996.0,1.9,1.7,1.7,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8947368421052632,0.8947368421052632,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -955,Peru (IL),HC4,1996.0,1.9,1.7,1.7,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8947368421052632,0.8947368421052632,RFC,MISO,IL,41.3237,-89.1123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -957,Princeton (IL),1,1953.0,2.3,2.3,2.3,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),2,1958.0,3.0,3.0,3.0,1,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),3,1965.0,3.4,3.4,3.4,1,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),4,1965.0,3.4,3.4,3.4,1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),5,1971.0,4.4,4.4,4.4,1,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),6,1971.0,5.6,5.5,5.5,1,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),7,1976.0,7.0,7.0,7.0,1,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -957,Princeton (IL),8,1976.0,8.8,8.7,8.7,1,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9886363636363634,0.9886363636363634,SERC,MISO,IL,41.375528,-89.464872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -958,Rantoul,10,2000.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,11,2000.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,12,2000.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,13,2000.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,14,2000.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,15,2001.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,16,2001.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -958,Rantoul,9,2000.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.312222,-88.159444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775147928994082 -959,Red Bud,1,1968.0,2.4,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,SERC,MISO,IL,38.2165,-89.9992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.436363636363636 -959,Red Bud,2,1959.0,1.1,0.9,1.0,0.5,DFO,Petroleum Liquids,OP,IC,3.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.9090909090909091,SERC,MISO,IL,38.2165,-89.9992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.437143565583932 -959,Red Bud,3,1964.0,2.4,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,11.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,SERC,MISO,IL,38.2165,-89.9992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.436363636363636 -959,Red Bud,4,1973.0,3.5,3.0,3.0,1.5,DFO,Petroleum Liquids,OP,IC,3.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,SERC,MISO,IL,38.2165,-89.9992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.436608743084236 -959,Red Bud,7,2002.0,2.8,3.0,3.0,1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.2165,-89.9992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.43605727086783 -959,Red Bud,8,2002.0,2.8,3.0,3.0,1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.2165,-89.9992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.43605727086783 -960,North Ninth Street,1,1940.0,0.3,0.6,0.6,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1940.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.82366369319379 -960,North Ninth Street,10,1989.0,2.5,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.823770129087453 -960,North Ninth Street,3,1956.0,2.5,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.823770129087453 -960,North Ninth Street,4,1946.0,1.0,0.7,0.7,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7,0.7,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.82381574511126 -960,North Ninth Street,6,1954.0,2.5,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.823770129087453 -960,North Ninth Street,7,1967.0,3.8,3.5,3.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9210526315789475,0.9210526315789475,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.823773730338512 -960,North Ninth Street,8,1949.0,1.0,0.5,0.5,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.5,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.82381574511126 -960,North Ninth Street,9,1989.0,3.5,3.0,3.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.823783162197879 -960,North Ninth Street,SOL1,2014.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.9093,-89.0498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -961,South Main Street,1,1967.0,2.5,1.6,1.6,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.64,0.64,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874897756644454 -961,South Main Street,13,2014.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874892076523425 -961,South Main Street,14,2014.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874892076523425 -961,South Main Street,15,2014.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874892076523425 -961,South Main Street,16,2016.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874892076523425 -961,South Main Street,17,2016.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874892076523425 -961,South Main Street,18,2016.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874892076523425 -961,South Main Street,2,1967.0,2.5,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,IL,41.9092,-89.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.874897756644454 -963,Dallman,3,1978.0,207.3,159.0,159.0,110,BIT,Conventional Steam Coal,OS,ST,6.0,1978.0,12,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7670043415340086,0.7670043415340086,SERC,MISO,IL,39.754803,-89.602389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -963,Dallman,4,2009.0,230.1,208.7,208.7,95,BIT,Conventional Steam Coal,OP,ST,5.0,2009.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9069969578444155,0.9069969578444155,SERC,MISO,IL,39.754803,-89.602389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.708083998118818 -964,Lakeside,D1,2002.0,1.8,1.7,1.7,1.7,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,MISO,IL,39.757327,-89.600512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -964,Lakeside,D2,2002.0,1.8,1.7,1.7,1.7,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,MISO,IL,39.757327,-89.600512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -964,Lakeside,D3,2002.0,1.8,1.7,1.7,1.7,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,MISO,IL,39.757327,-89.600512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -965,Reynolds,1,1970.0,17.5,12.0,17.5,1,DFO,Petroleum Liquids,OP,GT,11.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6857142857142857,1.0,SERC,MISO,IL,39.806868,-89.641653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -969,Sullivan (IL),1,1974.0,4.3,4.3,4.3,1,DFO,Petroleum Liquids,SB,IC,12.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695533980582525 -969,Sullivan (IL),10,1971.0,2.4,2.2,2.4,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695535943164757 -969,Sullivan (IL),11,1996.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.69546493232554 -969,Sullivan (IL),12,1996.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695270054330457 -969,Sullivan (IL),13,2012.0,2.3,2.3,2.3,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695594023462876 -969,Sullivan (IL),14,2012.0,2.3,2.3,2.3,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695594023462876 -969,Sullivan (IL),15,2012.0,2.3,2.3,2.3,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695594023462876 -969,Sullivan (IL),2,1961.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,11.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.69546493232554 -969,Sullivan (IL),3,1956.0,1.5,1.3,1.5,0.5,DFO,Petroleum Liquids,SB,IC,11.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695435636022735 -969,Sullivan (IL),4,1951.0,1.1,0.9,1.1,0.5,DFO,Petroleum Liquids,SB,IC,5.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695270054330457 -969,Sullivan (IL),5,1948.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695270054330457 -969,Sullivan (IL),6,1946.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695180899370147 -969,Sullivan (IL),9,1971.0,2.4,2.2,2.4,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,1.0,SERC,MISO,IL,39.596667,-88.611944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.695535943164757 -971,Waterloo,1,1970.0,3.1,2.7,2.7,1,DFO,Petroleum Liquids,SB,IC,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8709677419354839,0.8709677419354839,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134888304862022 -971,Waterloo,10,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134823196605375 -971,Waterloo,11,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134823196605375 -971,Waterloo,12,2002.0,6.6,6.6,7.0,4,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.779899730346605 -971,Waterloo,13,2012.0,7.0,6.6,7.0,4,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9428571428571428,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.779908620617533 -971,Waterloo,2,1954.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134419551934826 -971,Waterloo,3,1946.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134419551934826 -971,Waterloo,4,1963.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134731910993432 -971,Waterloo,5,1950.0,0.5,0.4,0.4,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134215885947047 -971,Waterloo,6,1950.0,0.5,0.5,0.5,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134215885947047 -971,Waterloo,7,1959.0,1.7,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134846941831906 -971,Waterloo,8,1973.0,3.0,2.4,2.4,1,DFO,Petroleum Liquids,SB,IC,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134903931020435 -971,Waterloo,9,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.334786,-90.158939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.134823196605375 -972,Winnetka,4,1953.0,9.4,9.4,9.4,2.4,NG,Natural Gas Steam Turbine,OP,ST,1.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IL,42.115589,-87.731025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.724578754578754 -972,Winnetka,6,1948.0,6.3,6.3,6.3,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IL,42.115589,-87.731025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -972,Winnetka,7,1960.0,12.5,12.5,12.5,3.1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IL,42.115589,-87.731025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.605859215017064 -972,Winnetka,8,1979.0,2.6,2.6,2.6,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.115589,-87.731025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,136.44654320987655 -972,Winnetka,9,1979.0,2.6,2.6,2.6,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.115589,-87.731025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547325102880658 -976,Marion,1,1963.0,33.0,40.0,40.0,30,BIT,Conventional Steam Coal,OP,ST,6.0,1963.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,37.619747,-88.953114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -976,Marion,2,1963.0,33.0,40.0,40.0,30,BIT,Conventional Steam Coal,OP,ST,8.0,1963.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,37.619747,-88.953114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -976,Marion,3,1963.0,33.0,40.0,40.0,30,BIT,Conventional Steam Coal,OP,ST,9.0,1963.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,37.619747,-88.953114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -976,Marion,5,2003.0,75.0,70.0,90.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333333,1.0,SERC,MISO,IL,37.619747,-88.953114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.369210986822388 -976,Marion,6,2003.0,75.0,70.0,90.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333333,1.0,SERC,MISO,IL,37.619747,-88.953114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.785238753589281 -983,Clifty Creek,1,1955.0,217.3,195.5,199.7,80,BIT,Conventional Steam Coal,OP,ST,2.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996778647031753,0.9190059825126552,RFC,PJM,IN,38.7378,-85.4206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.391600009634722 -983,Clifty Creek,2,1955.0,217.3,195.5,199.7,80,BIT,Conventional Steam Coal,OP,ST,5.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996778647031753,0.9190059825126552,RFC,PJM,IN,38.7378,-85.4206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.115636663098849 -983,Clifty Creek,3,1955.0,217.3,195.5,199.7,80,BIT,Conventional Steam Coal,OP,ST,7.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996778647031753,0.9190059825126552,RFC,PJM,IN,38.7378,-85.4206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.176969106742826 -983,Clifty Creek,4,1955.0,217.3,195.5,199.7,80,BIT,Conventional Steam Coal,OP,ST,10.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996778647031753,0.9190059825126552,RFC,PJM,IN,38.7378,-85.4206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.585922912297306 -983,Clifty Creek,5,1955.0,217.3,195.5,199.7,80,BIT,Conventional Steam Coal,OP,ST,11.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996778647031753,0.9190059825126552,RFC,PJM,IN,38.7378,-85.4206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.48517400158441 -983,Clifty Creek,6,1956.0,217.3,195.5,199.7,80,BIT,Conventional Steam Coal,OP,ST,3.0,1956.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8996778647031753,0.9190059825126552,RFC,PJM,IN,38.7378,-85.4206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.655182424027352 -986,Elkhart,1,1913.0,1.4,0.6,1.1,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4285714285714286,0.7857142857142858,RFC,PJM,IN,41.6928,-85.965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -986,Elkhart,2,1921.0,1.0,0.4,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.5,RFC,PJM,IN,41.6928,-85.965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -986,Elkhart,3,1921.0,1.0,0.4,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.5,RFC,PJM,IN,41.6928,-85.965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -987,Last Chance,1,1984.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,42.603349,-111.705304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -987,Last Chance,2,1984.0,0.5,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,WECC,PACE,ID,42.603349,-111.705304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -987,Last Chance,3,1984.0,1.0,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,WECC,PACE,ID,42.603349,-111.705304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H1E,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H1W,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H2W,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H3W,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H4W,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H5W,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H6E,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -989,Twin Branch,H6W,1989.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,IN,41.665,-86.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,5,1958.0,100.0,101.0,101.0,30,NG,Natural Gas Steam Turbine,OP,ST,6.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,6,1961.0,100.0,99.0,99.0,30,NG,Natural Gas Steam Turbine,OP,ST,5.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.99,0.99,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,7,1973.0,463.0,418.0,418.0,130,NG,Natural Gas Steam Turbine,OP,ST,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9028077753779697,0.9028077753779697,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,BAT1,2016.0,20.0,20.0,20.0,0.1,MWH,Batteries,OP,BA,6.0,2016.0, , ,20.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,GT1,1973.0,26.0,19.1,27.4,5,DFO,Petroleum Liquids,OP,GT,5.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7346153846153847,1.0,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,GT2,1973.0,26.0,17.9,22.6,5,DFO,Petroleum Liquids,OP,GT,5.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6884615384615385,0.8692307692307693,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -990,Harding Street,GT4,1994.0,83.0,67.0,67.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8072289156626506,0.8072289156626506,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.468458690782326 -990,Harding Street,GT5,1995.0,83.0,67.0,67.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8072289156626506,0.8072289156626506,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.850968228384122 -990,Harding Street,GT6,2002.0,161.0,154.0,154.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9565217391304348,0.9565217391304348,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.277825655191993 -990,Harding Street,IC1,1967.0,2.7,3.0,3.0,0.1,DFO,Petroleum Liquids,OP,IC,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.711319,-86.196867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -991,Eagle Valley (IN),GT1,2018.0,207.0,207.0,207.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,IN,39.48517,-86.4183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.410535989461325 -991,Eagle Valley (IN),GT2,2018.0,207.0,207.0,207.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,IN,39.48517,-86.4183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.346894188849337 -991,Eagle Valley (IN),STG1,2018.0,230.0,230.0,230.0,75,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,IN,39.48517,-86.4183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -992,CC Perry K,6,1938.0,5.0,3.0,5.0,1,NG,Natural Gas Steam Turbine,OP,ST,7.0,1938.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,1.0,RFC,MISO,IN,39.7631,-86.1667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -992,CC Perry K,7,2009.0,1.7,1.7,1.7,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,39.7631,-86.1667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -992,CC Perry K,8,2009.0,1.7,1.7,1.7,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,39.7631,-86.1667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -994,AES Petersburg,4,1986.0,670.9,529.6,534.6,220,BIT,Conventional Steam Coal,OP,ST,4.0,1986.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7893873900730363,0.7968400655835446,RFC,MISO,IN,38.5281,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.476965624963722 -994,AES Petersburg,IC1,1967.0,2.7,3.0,3.0,2.7,DFO,Petroleum Liquids,OP,IC,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,38.5281,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -994,AES Petersburg,IC2,1967.0,2.7,3.0,3.0,2.7,DFO,Petroleum Liquids,OP,IC,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,38.5281,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -994,AES Petersburg,IC3,1967.0,2.7,3.0,3.0,2.7,DFO,Petroleum Liquids,OP,IC,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,38.5281,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -994,AES Petersburg,ST2,1969.0,523.3,421.8,432.2,225,BIT,Conventional Steam Coal,OP,ST,12.0,1969.0,6,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8060386011847889,0.8259124785018155,RFC,MISO,IN,38.5281,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -994,AES Petersburg,ST3,1977.0,670.9,527.6,540.3,225,BIT,Conventional Steam Coal,OP,ST,11.0,1977.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7864063198688329,0.8053361156655239,RFC,MISO,IN,38.5281,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -997,Michigan City,12,1974.0,540.0,455.0,455.0,310,SUB,Conventional Steam Coal,OP,ST,5.0,1974.0,5,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8425925925925926,0.8425925925925926,RFC,MISO,IN,41.7208,-86.9086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.015302622759778 -998,Norway (IN),1,1923.0,2.0,1.1,1.1,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.55,0.55,RFC,MISO,IN,40.7803,-86.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -998,Norway (IN),2,1923.0,2.0,1.1,1.1,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.55,0.55,RFC,MISO,IN,40.7803,-86.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -998,Norway (IN),3,1923.0,2.0,1.1,1.1,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.55,0.55,RFC,MISO,IN,40.7803,-86.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -998,Norway (IN),4,1923.0,1.3,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,6.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5384615384615384,0.5384615384615384,RFC,MISO,IN,40.7803,-86.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -999,Oakdale,1,1925.0,4.3,2.9,2.9,1.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6744186046511629,0.6744186046511629,RFC,MISO,IN,40.6564,-86.7528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -999,Oakdale,2,1925.0,3.2,2.2,2.2,2.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6875,0.6875,RFC,MISO,IN,40.6564,-86.7528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -999,Oakdale,3,1925.0,4.3,0.9,0.9,0.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2093023255813954,0.2093023255813954,RFC,MISO,IN,40.6564,-86.7528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1001,Cayuga,1,1970.0,531.0,500.0,505.0,300,BIT,Conventional Steam Coal,OP,ST,10.0,1970.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9416195856873824,0.9510357815442562,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.306939253679008 -1001,Cayuga,2,1972.0,531.0,495.0,500.0,230,BIT,Conventional Steam Coal,OP,ST,6.0,1972.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9322033898305084,0.9416195856873824,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.167332395727575 -1001,Cayuga,31,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1001,Cayuga,32,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1001,Cayuga,33,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1001,Cayuga,34,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1001,Cayuga,4,1993.0,112.5,84.0,105.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7466666666666666,0.9333333333333333,RFC,MISO,IN,39.9242,-87.4244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.214709587123863 -1004,Edwardsport,CT1,2013.0,236.5,,, ,SGC,Coal Integrated Gasification Combined Cycle,OP,CT,6.0,2013.0, , ,,,,,coal,coal,Coal-Derived Synthesis Gas,Combined Cycle Combustion Turbine Part,,,RFC,MISO,IN,38.8067,-87.2472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1004,Edwardsport,CT2,2013.0,236.5,,, ,SGC,Coal Integrated Gasification Combined Cycle,OP,CT,6.0,2013.0, , ,,,,,coal,coal,Coal-Derived Synthesis Gas,Combined Cycle Combustion Turbine Part,,,RFC,MISO,IN,38.8067,-87.2472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1004,Edwardsport,ST,2013.0,331.5,595.0,618.0,185,SGC,Coal Integrated Gasification Combined Cycle,OP,CA,6.0,2013.0, , ,,,,,coal,coal,Coal-Derived Synthesis Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,IN,38.8067,-87.2472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1005,Markland,1,1967.0,25.9,17.9,17.9,17.9,WAT,Conventional Hydroelectric,OP,HY,4.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6911196911196911,0.6911196911196911,RFC,MISO,IN,38.7795,-84.964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1005,Markland,2,1967.0,25.9,17.9,17.9,17.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6911196911196911,0.6911196911196911,RFC,MISO,IN,38.7795,-84.964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1005,Markland,3,1967.0,25.9,17.9,17.9,17.9,WAT,Conventional Hydroelectric,OP,HY,2.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6911196911196911,0.6911196911196911,RFC,MISO,IN,38.7795,-84.964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1007,Noblesville,1,1950.0,50.0,42.0,43.0,42,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1950.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.84,0.86,RFC,MISO,IN,40.0969,-85.9714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1007,Noblesville,2,1950.0,50.0,43.0,44.0,43,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1950.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.86,0.88,RFC,MISO,IN,40.0969,-85.9714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1007,Noblesville,3,2003.0,61.0,60.0,74.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9836065573770492,1.0,RFC,MISO,IN,40.0969,-85.9714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1007,Noblesville,4,2003.0,61.0,60.0,74.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9836065573770492,1.0,RFC,MISO,IN,40.0969,-85.9714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1007,Noblesville,5,2003.0,61.0,59.0,75.0,59,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9672131147540983,1.0,RFC,MISO,IN,40.0969,-85.9714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1012,F B Culley,2,1966.0,103.7,90.0,90.0,45,BIT,Conventional Steam Coal,OP,ST,12.0,1966.0,12,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8678881388621023,0.8678881388621023,RFC,MISO,IN,37.9111,-87.3275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.801460095320214 -1012,F B Culley,3,1973.0,265.2,270.0,270.0,135,BIT,Conventional Steam Coal,OP,ST,6.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,37.9111,-87.3275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.384415231249573 -1016,Butler-Warner Generation Plant,1,1976.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,10,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,11,2019.0,0.5,0.5,0.5,0.1,MWH,Batteries,OP,BA,9.0,2019.0, , ,0.5,0.3,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,2,1976.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,3,1976.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,4,1976.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,5,1977.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,6,1978.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1978.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,7,1979.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1979.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,8,1980.0,28.8,20.0,25.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1980.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6944444444444444,0.8680555555555556,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Butler-Warner Generation Plant,9,1988.0,73.0,65.0,65.0,15,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8904109589041096,0.8904109589041096,SERC,CPLE,NC,35.0986,-78.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1020,Manti Lower,2,1989.0,0.6,0.5,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.16666666666666663,WECC,PACE,UT,39.255911,-111.621491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1020,Manti Lower,HC1,1989.0,0.6,0.5,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.16666666666666663,WECC,PACE,UT,39.255911,-111.621491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1024,Crawfordsville Power Plant,4,1955.0,11.5,10.6,10.6,1.5,BIT,Conventional Steam Coal,OS,ST,1.0,1955.0,2,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9217391304347826,0.9217391304347826,RFC,MISO,IN,40.048889,-86.8992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1024,Crawfordsville Power Plant,D1,1994.0,0.8,0.9,0.9,0.8,DFO,Petroleum Liquids,SB,IC,10.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.048889,-86.8992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1037,Peru (IN),D1,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.7551,-86.0575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.142857142857142 -1038,Rensselaer City Light Plant,10,1971.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OS,IC,1.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,RFC,MISO,IN,40.939528,-87.154472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1038,Rensselaer City Light Plant,11,1971.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OS,IC,1.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,RFC,MISO,IN,40.939528,-87.154472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1038,Rensselaer City Light Plant,14,1994.0,5.0,4.8,4.8,1,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.96,0.96,RFC,MISO,IN,40.939528,-87.154472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1038,Rensselaer City Light Plant,15,2006.0,8.4,8.3,8.3,5.3,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,RFC,MISO,IN,40.939528,-87.154472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1038,Rensselaer City Light Plant,5,1950.0,1.9,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,RFC,MISO,IN,40.939528,-87.154472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1038,Rensselaer City Light Plant,6,1957.0,2.5,2.4,2.4,0.7,DFO,Petroleum Liquids,SB,IC,1.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.96,0.96,RFC,MISO,IN,40.939528,-87.154472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1040,Whitewater Valley,1,1955.0,33.0,34.7,34.7,13,BIT,Conventional Steam Coal,OP,ST,3.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,39.8028,-84.8953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.144288842614362 -1040,Whitewater Valley,2,1973.0,60.9,65.0,65.0,28,BIT,Conventional Steam Coal,OP,ST,8.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,39.8028,-84.8953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.052696981653186 -1047,Lansing,4,1977.0,274.5,235.3,238.3,100,SUB,Conventional Steam Coal,OP,ST,5.0,1977.0,6,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571948998178507,0.8681238615664846,MRO,MISO,IA,43.3359,-91.1675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.61380841163784 -1067,Iowa Hydro LLC,1,1924.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,IA,42.069987,-90.697657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1067,Iowa Hydro LLC,2,1924.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,IA,42.069987,-90.697657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1068,Marshalltown,1,1978.0,63.0,48.6,61.2,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7714285714285715,0.9714285714285715,MRO,MISO,IA,42.0474,-92.859444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1068,Marshalltown,2,1978.0,63.0,55.9,69.4,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8873015873015873,1.0,MRO,MISO,IA,42.0474,-92.859444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1068,Marshalltown,3,1978.0,63.0,59.8,69.6,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9492063492063492,1.0,MRO,MISO,IA,42.0474,-92.859444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1073,Prairie Creek,1,1997.0,14.6,5.3,5.3,1.5,SUB,Conventional Steam Coal,OP,ST,4.0,1997.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.3630136986301369,0.3630136986301369,MRO,MISO,IA,41.944039,-91.639167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1073,Prairie Creek,3,1958.0,50.0,31.0,34.1,9.2,SUB,Conventional Steam Coal,OP,ST,10.0,1958.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.62,0.682,MRO,MISO,IA,41.944039,-91.639167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -1073,Prairie Creek,4,1967.0,148.8,113.8,118.9,35,NG,Natural Gas Steam Turbine,OP,ST,4.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.764784946236559,0.7990591397849462,MRO,MISO,IA,41.944039,-91.639167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.95637753248568 -1079,Coralville GT,1,1970.0,18.0,15.5,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8611111111111112,1.0,MRO,MISO,IA,41.671877,-91.563999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.337671473795286 -1079,Coralville GT,2,1970.0,18.0,16.3,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9055555555555556,1.0,MRO,MISO,IA,41.671877,-91.563999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.337671473795286 -1079,Coralville GT,3,1970.0,18.0,14.8,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8222222222222223,1.0,MRO,MISO,IA,41.671877,-91.563999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.337671473795286 -1079,Coralville GT,4,1970.0,18.0,15.5,20.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8611111111111112,1.0,MRO,MISO,IA,41.671877,-91.563999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.337671473795286 -1082,Walter Scott Jr Energy Center,3,1978.0,725.8,702.0,702.0,250,SUB,Conventional Steam Coal,OP,ST,12.0,1978.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9672085974097548,0.9672085974097548,MRO,MISO,IA,41.18,-95.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.578662318110972 -1082,Walter Scott Jr Energy Center,4,2007.0,922.5,805.8,805.8,230,SUB,Conventional Steam Coal,OP,ST,6.0,2007.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8734959349593495,0.8734959349593495,MRO,MISO,IA,41.18,-95.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.28649324420165 -1084,River Hills,1,1966.0,16.0,14.6,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9125,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,2,1966.0,16.0,14.6,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9125,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,3,1966.0,16.0,14.6,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9125,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,4,1966.0,16.0,14.6,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9125,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,5,1967.0,16.0,15.0,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,6,1967.0,16.0,15.0,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,7,1968.0,16.0,15.0,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1084,River Hills,8,1968.0,16.0,15.0,16.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,MRO,MISO,IA,41.590218,-93.619499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.233702337023374 -1091,George Neal North,3,1975.0,584.1,503.9,503.9,150,SUB,Conventional Steam Coal,OP,ST,5.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8626947440506761,0.8626947440506761,MRO,MISO,IA,42.32517,-96.37971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.44671737089625 -1097,Merl Parr,1,1969.0,18.0,16.4,18.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.911111111111111,1.0,MRO,MISO,IA,43.0563,-92.6932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.452488687782804 -1097,Merl Parr,2,1969.0,18.0,16.4,18.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.911111111111111,1.0,MRO,MISO,IA,43.0563,-92.6932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.452488687782804 -1104,Burlington (IA),1,1968.0,212.0,158.4,163.9,60,NG,Natural Gas Steam Turbine,OP,ST,6.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7471698113207548,0.7731132075471698,MRO,MISO,IA,40.7412,-91.116667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.33680850554058 -1104,Burlington (IA),GT1,1994.0,19.7,5.9,9.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1994.0,6,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.29949238578680204,0.46192893401015234,MRO,MISO,IA,40.7412,-91.116667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1104,Burlington (IA),GT2,1995.0,19.7,12.6,15.7,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0,6,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6395939086294417,0.7969543147208122,MRO,MISO,IA,40.7412,-91.116667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1104,Burlington (IA),GT3,1996.0,19.7,13.3,16.4,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1996.0,6,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6751269035532996,0.83248730964467,MRO,MISO,IA,40.7412,-91.116667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1104,Burlington (IA),GT4,1994.0,19.7,5.8,5.8,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1994.0,6,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.29441624365482233,0.29441624365482233,MRO,MISO,IA,40.7412,-91.116667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,1,1913.0,7.6,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,10,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,11,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,12,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,13,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,14,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,15,1913.0,8.8,10.0,8.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9090909090909091,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,2,1913.0,7.6,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,3,1913.0,7.6,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,4,1913.0,7.6,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,5,1913.0,7.6,10.0,8.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,6,1913.0,7.6,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,7,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,8,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1109,Keokuk,9,1913.0,8.8,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IA,40.3965,-91.3719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1120,Algona,6,1965.0,3.2,3.2,3.2,0.4,DFO,Petroleum Liquids,OP,IC,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0733,-94.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.424784904718443 -1120,Algona,7,1970.0,4.1,4.1,4.1,0.5,DFO,Petroleum Liquids,OP,IC,9.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0733,-94.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.424784633648901 -1120,Algona,8,1994.0,4.4,4.4,4.4,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0733,-94.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.424823994599286 -1120,Algona,9,1994.0,4.4,4.4,4.4,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0733,-94.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.424823994599286 -1121,Alta Municipal Utilities,2A,2018.0,2.0,2.0,2.1,0,DFO,Petroleum Liquids,SB,IC,11.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,42.6736,-95.3026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.09248554913295 -1121,Alta Municipal Utilities,3A,2018.0,2.0,2.0,2.1,0,DFO,Petroleum Liquids,SB,IC,11.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,42.6736,-95.3026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.09248554913295 -1122,Ames Electric Services Power Plant,7,1968.0,37.5,38.6,38.6,15,NG,Natural Gas Steam Turbine,OP,ST,5.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.0258,-93.6089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.967673244247965 -1122,Ames Electric Services Power Plant,8,1982.0,71.3,66.9,66.9,30,NG,Natural Gas Steam Turbine,OP,ST,6.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9382889200561011,0.9382889200561011,MRO,MISO,IA,42.0258,-93.6089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.049884526093031 -1123,Anita,2,1939.0,0.2,0.1,0.2,0,DFO,Petroleum Liquids,OP,IC,10.0,1939.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,1.0,MRO,MISO,IA,41.444224,-94.766474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44051172707889 -1123,Anita,3,1951.0,0.3,0.2,0.3,0,DFO,Petroleum Liquids,OP,IC,3.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,1.0,MRO,MISO,IA,41.444224,-94.766474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.441853852715381 -1123,Anita,4,2000.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.444224,-94.766474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44051172707889 -1123,Anita,5,2000.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.444224,-94.766474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44051172707889 -1123,Anita,6,2003.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,4.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.444224,-94.766474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.441316956670079 -1124,Atlantic,6,1999.0,10.0,9.8,10.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9800000000000001,1.0,MRO,MISO,IA,41.409,-95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.414634146341463 -1125,Bancroft,5,1954.0,0.6,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,MISO,IA,43.292628,-94.217075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.20650607370805 -1125,Bancroft,6,2001.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.292628,-94.217075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.20650607370805 -1125,Bancroft,7,2001.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.292628,-94.217075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.20650607370805 -1126,Bellevue,1A,2021.0,1.8,1.7,1.8,0.2,DFO,Petroleum Liquids,SB,IC,7.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,IA,42.25,-90.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.566969147005445 -1126,Bellevue,2,1992.0,1.6,1.6,1.6,0.2,DFO,Petroleum Liquids,SB,IC,5.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.25,-90.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.566557778685178 -1126,Bellevue,3,2001.0,1.8,1.7,1.8,0.2,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,IA,42.25,-90.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.566969147005445 -1126,Bellevue,4,1963.0,0.7,0.6,0.6,0.2,DFO,Petroleum Liquids,SB,IC,7.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,MISO,IA,42.25,-90.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.566028931404574 -1126,Bellevue,5,1953.0,0.9,0.7,0.7,0.2,DFO,Petroleum Liquids,SB,IC,7.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777777,0.7777777777777777,MRO,MISO,IA,42.25,-90.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.566969147005445 -1126,Bellevue,6,1971.0,3.0,2.4,2.4,0.5,DFO,Petroleum Liquids,SB,IC,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,MISO,IA,42.25,-90.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.566310975609756 -1127,Bloomfield,1,1975.0,2.8,2.3,2.3,1.6,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8214285714285714,0.8214285714285714,MRO,AECI,IA,40.7031,-92.4253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1127,Bloomfield,2,1945.0,0.3,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,AECI,IA,40.7031,-92.4253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1127,Bloomfield,3,1964.0,2.7,2.2,2.2,1.2,NG,Natural Gas Internal Combustion Engine,SB,IC,12.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8148148148148149,0.8148148148148149,MRO,AECI,IA,40.7031,-92.4253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1127,Bloomfield,4,1946.0,0.3,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,5.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,AECI,IA,40.7031,-92.4253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1127,Bloomfield,5,1951.0,0.9,0.8,0.8,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,AECI,IA,40.7031,-92.4253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1127,Bloomfield,6,1958.0,1.5,1.2,1.2,0.6,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,AECI,IA,40.7031,-92.4253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1128,Brooklyn,8,2012.0,2.3,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,MISO,IA,41.7278,-92.4479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.638065522620904 -1129,Cascade,1,1957.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,2.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.29821,-91.011974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.360213947747377 -1129,Cascade,2,1971.0,2.0,1.9,2.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,1.0,MRO,MISO,IA,42.29821,-91.011974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.359925120599035 -1129,Cascade,3A,1998.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.29821,-91.011974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.36 -1129,Cascade,4,1951.0,0.7,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7142857142857144,0.7142857142857144,MRO,MISO,IA,42.29821,-91.011974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.360213947747377 -1129,Cascade,6,2020.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.29821,-91.011974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.359925120599035 -1130,Gas Turbine (IA),1,1968.0,19.6,17.6,17.6,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8979591836734694,0.8979591836734694,MRO,MISO,IA,42.512,-92.476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.899510814251684 -1130,Gas Turbine (IA),2,2000.0,23.8,22.7,22.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.953781512605042,0.953781512605042,MRO,MISO,IA,42.512,-92.476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.89950160873131 -1131,Streeter Station,6,1963.0,16.5,19.4,19.4,5,NG,Natural Gas Steam Turbine,OP,ST,9.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.5267,-92.4394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1131,Streeter Station,7,1973.0,35.0,36.2,36.2,6,NG,Natural Gas Steam Turbine,OP,ST,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.5267,-92.4394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.830911589776562 -1132,Coggon,IC5,2003.0,2.0,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,42.280827,-91.532705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.68 -1134,Corning,5,1975.0,2.8,2.8,2.8,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.9871,-94.7352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44015931610647 -1134,Corning,6,2006.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,3.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.9871,-94.7352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.439956480348158 -1134,Corning,7,2006.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,3.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.9871,-94.7352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.439956480348158 -1135,Dayton (IA),5,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,10.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.260162,-94.069243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.1875 -1137,Estherville,2,1946.0,1.6,1.1,1.1,1,DFO,Petroleum Liquids,OP,IC,12.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6875,0.6875,MRO,SWPP,IA,43.4028,-94.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.966219662196623 -1137,Estherville,3,1960.0,3.0,2.7,2.8,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9333333333333332,MRO,SWPP,IA,43.4028,-94.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.9661599999999995 -1137,Estherville,4,1969.0,4.0,3.5,3.5,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.875,0.875,MRO,SWPP,IA,43.4028,-94.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.966183864735459 -1137,Estherville,5,1969.0,4.0,3.6,3.6,2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,IA,43.4028,-94.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.966183864735459 -1137,Estherville,7,1960.0,3.0,2.7,2.8,2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9333333333333332,MRO,SWPP,IA,43.4028,-94.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.9661599999999995 -1138,Forest City Light Plant,1,1958.0,1.2,1.3,1.3,0.9,DFO,Petroleum Liquids,OP,IC,1.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.263235,-93.635383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.922063492063492 -1138,Forest City Light Plant,2,1965.0,2.7,2.2,2.2,1.7,DFO,Petroleum Liquids,OP,IC,1.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8148148148148149,0.8148148148148149,MRO,MISO,IA,43.263235,-93.635383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.922081128747795 -1138,Forest City Light Plant,3,1968.0,3.5,3.3,3.3,2.6,DFO,Petroleum Liquids,OP,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9428571428571428,0.9428571428571428,MRO,MISO,IA,43.263235,-93.635383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.922068027210885 -1138,Forest City Light Plant,4,1976.0,6.3,6.1,6.1,4.7,DFO,Petroleum Liquids,OP,IC,1.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9682539682539683,0.9682539682539683,MRO,MISO,IA,43.263235,-93.635383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.92207105064248 -1138,Forest City Light Plant,5,1950.0,0.7,0.7,0.7,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.263235,-93.635383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.922040816326533 -1138,Forest City Light Plant,6,2000.0,7.6,7.6,7.6,0.6,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.263235,-93.635383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.922080200501254 -1141,Gowrie,3,2013.0,2.5,2.2,2.2,0.4,DFO,Petroleum Liquids,OP,IC,1.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,MISO,IA,42.282807,-94.288965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.9 -1142,Graettinger,4,1957.0,0.5,0.5,0.5,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.2397,-94.7498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.494757444428911 -1142,Graettinger,5,1990.0,1.1,1.1,1.1,0.8,DFO,Petroleum Liquids,OP,IC,12.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.2397,-94.7498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.495233858668023 -1142,Graettinger,6,2002.0,2.0,2.0,2.0,0.8,DFO,Petroleum Liquids,OP,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.2397,-94.7498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.49519415609381 -1143,Grand Junction,2,1994.0,1.7,1.7,1.7,1,DFO,Petroleum Liquids,OP,IC,12.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0296,-94.3699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.142857142857142 -1145,Grundy Center City Light Plant,IC1,1963.0,2.2,2.2,2.2,2.2,DFO,Petroleum Liquids,OP,IC,11.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.363094,-92.772322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.981949752841055 -1145,Grundy Center City Light Plant,IC2,1972.0,3.5,3.5,3.5,3.5,DFO,Petroleum Liquids,OP,IC,3.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.363094,-92.772322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.981959357302103 -1145,Grundy Center City Light Plant,IC3,1990.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,10.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.363094,-92.772322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.981964676776812 -1146,Harlan,HMU1,2001.0,1.7,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,MRO,MISO,IA,41.644542,-95.315283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1146,Harlan,HMU2,2001.0,1.7,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,MRO,MISO,IA,41.644542,-95.315283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1150,Indianola,7,1977.0,20.6,19.4,23.0,2.5,DFO,Petroleum Liquids,OP,GT,1.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9417475728155339,1.0,MRO,MISO,IA,41.359491,-93.563268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.138925656298255 -1150,Indianola,8,2000.0,20.3,22.8,24.0,2.5,DFO,Petroleum Liquids,OP,GT,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,IA,41.359491,-93.563268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.13885157824043 -1153,Lake Park,3,2005.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.4301,-95.3153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.696969696969697 -1153,Lake Park,G2,2005.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.4301,-95.3153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.696969696969697 -1154,Lake Mills,4,1962.0,1.3,1.3,1.3,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.4172,-93.5322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.98656853725851 -1154,Lake Mills,6,1979.0,5.7,5.7,5.7,2,DFO,Petroleum Liquids,OP,IC,3.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.4172,-93.5322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.986278376904034 -1154,Lake Mills,7,1999.0,7.6,7.6,7.6,3,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.4172,-93.5322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.98649839491408 -1154,Lake Mills,8,2022.0,3.1,3.1,3.1,1,DFO,Petroleum Liquids,OP,IC,9.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.4172,-93.5322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.986805555555556 -1155,Lamoni Municipal Utilities,1,1973.0,2.8,2.7,2.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9642857142857144,1.0,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841811440677965 -1155,Lamoni Municipal Utilities,2,1940.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,OP,IC,3.0,1940.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841613525137179 -1155,Lamoni Municipal Utilities,3,1941.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,OP,IC,8.0,1941.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.842100059323709 -1155,Lamoni Municipal Utilities,4,1948.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,12.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841564091156261 -1155,Lamoni Municipal Utilities,5,1955.0,1.1,1.1,1.1,0,DFO,Petroleum Liquids,OP,IC,1.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841719247155261 -1155,Lamoni Municipal Utilities,6,1993.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,OP,IC,2.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.84190543987661 -1155,Lamoni Municipal Utilities,7,2011.0,2.5,2.3,2.3,0,DFO,Petroleum Liquids,OP,IC,5.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841776807536245 -1155,Lamoni Municipal Utilities,8,2011.0,2.5,2.3,2.3,0,DFO,Petroleum Liquids,OP,IC,5.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,MRO,MISO,IA,40.622,-93.9326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841776807536245 -1156,La Porte,3A,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.3159,-92.1928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.696350586716289 -1156,La Porte,4A,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.3159,-92.1928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.696350586716289 -1156,La Porte,6,2013.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.3159,-92.1928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.696350586716289 -1157,Laurens,3,1952.0,0.8,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,7.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,IA,42.8486,-94.8506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.299885264710703 -1157,Laurens,4,1951.0,0.8,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,7.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,IA,42.8486,-94.8506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.299885264710703 -1157,Laurens,5,2013.0,2.5,2.3,2.3,2.3,DFO,Petroleum Liquids,SB,IC,4.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,MRO,SWPP,IA,42.8486,-94.8506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29967481380468 -1157,Laurens,6,2013.0,2.5,2.3,2.3,2.3,DFO,Petroleum Liquids,SB,IC,4.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,MRO,SWPP,IA,42.8486,-94.8506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29967481380468 -1157,Laurens,7,2013.0,2.5,2.3,2.3,2.3,DFO,Petroleum Liquids,SB,IC,4.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,MRO,SWPP,IA,42.8486,-94.8506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29967481380468 -1158,Lenox,1,1948.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,9.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.88,-94.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.263483642793986 -1158,Lenox,2,1965.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,SB,IC,3.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.88,-94.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.258919961427196 -1158,Lenox,3,1966.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,SB,IC,3.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.88,-94.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.263188918361333 -1158,Lenox,4,2001.0,1.8,1.7,1.8,1.3,DFO,Petroleum Liquids,SB,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,IA,40.88,-94.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.260645351407103 -1158,Lenox,5,2016.0,2.0,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,2.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,40.88,-94.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.260840737302743 -1160,Manning,1,1928.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,3.0,1928.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,41.9067,-95.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.09633911368016 -1160,Manning,2,1928.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,3.0,1928.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,41.9067,-95.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.09633911368016 -1160,Manning,4,1949.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,SB,IC,7.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,41.9067,-95.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.096660244059095 -1160,Manning,M1,2012.0,2.3,2.3,2.3,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,41.9067,-95.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.0967579793918 -1160,Manning,M2,2012.0,2.3,2.3,2.3,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,41.9067,-95.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.0967579793918 -1160,Manning,M3,2012.0,2.3,2.3,2.3,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,41.9067,-95.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.0967579793918 -1162,Maquoketa 1,1A,2004.0,3.1,2.8,3.0,1.5,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9032258064516128,0.967741935483871,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.499485711730244 -1162,Maquoketa 1,2A,2004.0,3.1,2.8,3.0,1.5,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9032258064516128,0.967741935483871,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.499485711730244 -1162,Maquoketa 1,3,1969.0,2.1,1.8,1.9,1,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428571,0.9047619047619047,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.4990097702667 -1162,Maquoketa 1,4A,1999.0,1.8,1.7,1.7,0.9,DFO,Petroleum Liquids,SB,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.49899876771411 -1162,Maquoketa 1,5,1956.0,1.7,1.4,1.5,0.7,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8235294117647058,0.8823529411764706,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.50081552764638 -1162,Maquoketa 1,6,1962.0,2.5,2.1,2.2,1,NG,Natural Gas Internal Combustion Engine,SB,IC,11.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8400000000000001,0.8800000000000001,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.49958409582432 -1162,Maquoketa 1,7,1982.0,6.5,6.0,6.1,3,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9230769230769231,0.9384615384615385,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.50018129465714 -1162,Maquoketa 1,8,1996.0,1.8,1.7,1.7,0.9,DFO,Petroleum Liquids,SB,IC,9.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.49899876771411 -1162,Maquoketa 1,9,2000.0,1.8,1.7,1.7,0.9,DFO,Petroleum Liquids,SB,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,MRO,MISO,IA,42.035556,-90.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.49899876771411 -1163,McGregor,1,1977.0,1.2,1.2,1.2,0.6,DFO,Petroleum Liquids,OP,IC,10.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.023733,-91.174927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.272727272727272 -1163,McGregor,2,1941.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1941.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.023733,-91.174927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.272727272727272 -1164,Milford,1,1954.0,0.6,0.6,0.6,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.326083,-95.148339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.972298234434158 -1164,Milford,4,1949.0,0.5,0.5,0.5,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.326083,-95.148339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.972200980612657 -1164,Milford,5,1997.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,5.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.326083,-95.148339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.97228573927603 -1164,Milford,6,1997.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,5.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.326083,-95.148339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.97228573927603 -1164,Milford,7,1997.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,5.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.326083,-95.148339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.97228573927603 -1165,Montezuma,1,1940.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1940.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.847902783222265 -1165,Montezuma,10,2003.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.847902783222265 -1165,Montezuma,4,1947.0,0.5,0.5,0.5,0.4,DFO,Petroleum Liquids,SB,IC,8.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.847130761994357 -1165,Montezuma,5,1959.0,1.1,1.0,1.1,1,DFO,Petroleum Liquids,SB,IC,8.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.847694390991377 -1165,Montezuma,6,1967.0,1.7,1.6,1.7,1.2,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9411764705882354,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.84781405644715 -1165,Montezuma,7,1974.0,2.5,2.5,2.5,1.5,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.847905168088309 -1165,Montezuma,8,1998.0,1.8,1.8,1.8,1.4,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.848077006838276 -1165,Montezuma,9,2000.0,1.8,1.8,1.8,1.4,DFO,Petroleum Liquids,SB,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.586026,-92.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.848077006838276 -1166,Mt Pleasant,1,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,10,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,11,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,12,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,2,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,3,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,4A,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,5A,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,6,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,7,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,8,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1166,Mt Pleasant,9,2002.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,AECI,IA,40.971826,-91.551221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.930928212338925 -1167,Muscatine Plant #1,7,1958.0,25.0,20.1,20.1,6,SUB,Conventional Steam Coal,OP,ST,4.0,1958.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.804,0.804,MRO,MISO,IA,41.3917,-91.0569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1167,Muscatine Plant #1,8,1969.0,75.0,25.1,25.1,20,SUB,Conventional Steam Coal,OP,ST,1.0,1969.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.33466666666666667,0.33466666666666667,MRO,MISO,IA,41.3917,-91.0569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -1167,Muscatine Plant #1,8A,2000.0,18.0,14.5,14.5,10,SUB,Conventional Steam Coal,OS,ST,7.0,2000.0,5,2024,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8055555555555556,0.8055555555555556,MRO,MISO,IA,41.3917,-91.0569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1167,Muscatine Plant #1,9,1983.0,175.5,160.8,160.8,45,SUB,Conventional Steam Coal,OP,ST,4.0,1983.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9162393162393163,0.9162393162393163,MRO,MISO,IA,41.3917,-91.0569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.621076349199749 -1168,New Hampton,3,1967.0,3.5,3.5,3.5,2,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0689,-92.3201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -1168,New Hampton,4,1973.0,6.2,5.0,5.0,4,NG,Natural Gas Internal Combustion Engine,SB,IC,2.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8064516129032258,0.8064516129032258,MRO,SWPP,IA,43.0689,-92.3201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -1168,New Hampton,5,1973.0,6.2,5.0,5.0,4,NG,Natural Gas Internal Combustion Engine,SB,IC,2.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8064516129032258,0.8064516129032258,MRO,SWPP,IA,43.0689,-92.3201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -1168,New Hampton,7,1999.0,5.3,5.3,5.3,3,DFO,Petroleum Liquids,OP,IC,5.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0689,-92.3201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1168,New Hampton,8,1999.0,5.3,5.3,5.3,3,DFO,Petroleum Liquids,OP,IC,5.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.0689,-92.3201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1169,Ogden,4,1951.0,0.4,0.5,0.5,0.2,DFO,Petroleum Liquids,SB,IC,7.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0372,-94.0462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.163258886442279 -1169,Ogden,5,1958.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0372,-94.0462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.160900742231728 -1169,Ogden,6,1971.0,2.5,2.5,2.5,1.2,DFO,Petroleum Liquids,SB,IC,10.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0372,-94.0462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.161181561996779 -1172,Osage (IA),5,1963.0,3.2,3.1,3.1,1,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.96875,0.96875,MRO,MISO,IA,43.279722,-92.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.92366772215859 -1172,Osage (IA),6,1973.0,6.2,6.0,6.0,1,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.967741935483871,0.967741935483871,MRO,MISO,IA,43.279722,-92.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.92214611078271 -1172,Osage (IA),7,1996.0,3.6,3.6,3.6,1,DFO,Petroleum Liquids,SB,IC,5.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.279722,-92.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.9213126534523 -1172,Osage (IA),8,1998.0,3.6,3.6,3.6,1,DFO,Petroleum Liquids,SB,IC,5.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.279722,-92.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62.9213126534523 -1172,Osage (IA),SO,2016.0,0.8,0.8,0.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.125,MRO,MISO,IA,43.279722,-92.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1172,Osage (IA),W1,2009.0,1.6,0.5,0.5,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.3125,0.3125,MRO,MISO,IA,43.279722,-92.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1173,Ottumwa City of,1,1931.0,1.0,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OS,HY,8.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,IA,41.016346,-92.414873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1173,Ottumwa City of,2,1931.0,1.2,1.2,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,IA,41.016346,-92.414873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1173,Ottumwa City of,3,1931.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,IA,41.016346,-92.414873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1176,Preston (IA),4,1980.0,1.8,1.8,1.8,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0507,-90.3942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.8 -1176,Preston (IA),5,2020.0,1.8,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0507,-90.3942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.8 -1180,Rockford,1,1951.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.0489,-92.9468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.571724495080268 -1180,Rockford,5,1961.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.0489,-92.9468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.571001150747987 -1180,Rockford,6,1999.0,1.6,1.6,1.6,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.0489,-92.9468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.571595028482651 -1181,Rock Rapids,1,1968.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,OP,IC,4.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,43.429444,-96.169166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.714285714285714 -1184,Sibley One,2,1971.0,2.0,1.9,2.1,1,DFO,Petroleum Liquids,OP,IC,9.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,1.0,MRO,MISO,IA,43.405,-95.7261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.34177886847516 -1184,Sibley One,3,1987.0,1.2,1.1,1.2,1,DFO,Petroleum Liquids,OP,IC,4.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,1.0,MRO,MISO,IA,43.405,-95.7261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.34202962635419 -1184,Sibley One,5,2000.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,43.405,-95.7261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.34177886847516 -1186,Spencer Gas Turbine,GT1,1970.0,23.8,17.0,20.0,10,KER,Petroleum Liquids,OP,GT,1.0,1970.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7142857142857142,0.8403361344537815,MRO,MISO,IA,43.144585,-95.144257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.2425 -1187,State Center,1,1995.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.01667,-93.16333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853008962868119 -1187,State Center,2,1995.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.01667,-93.16333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853008962868119 -1187,State Center,3,1995.0,1.3,1.3,1.3,0.2,DFO,Petroleum Liquids,OP,IC,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.01667,-93.16333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853436558123043 -1187,State Center,4,1995.0,1.3,1.3,1.3,0.2,DFO,Petroleum Liquids,OP,IC,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.01667,-93.16333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853436558123043 -1187,State Center,6,1972.0,2.5,2.5,2.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.01667,-93.16333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853564843269822 -1188,Story City,1,1964.0,1.3,1.3,1.3,1,DFO,Petroleum Liquids,OP,IC,1.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.186076,-93.600479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.759505571993474 -1188,Story City,2,1972.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.186076,-93.600479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.7595113417133 -1188,Story City,4A,2003.0,3.5,3.1,3.2,2,DFO,Petroleum Liquids,OP,IC,5.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8857142857142858,0.9142857142857144,MRO,MISO,IA,42.186076,-93.600479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.759495491054004 -1188,Story City,5A,1993.0,3.1,3.1,3.1,2,DFO,Petroleum Liquids,OP,IC,3.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.186076,-93.600479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.759482808604396 -1188,Story City,6,1978.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.186076,-93.600479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.7595113417133 -1188,Story City,7,1978.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.186076,-93.600479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.7595113417133 -1190,Stuart (IA),1,1956.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,2.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.503889,-94.3172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.032710280373834 -1190,Stuart (IA),2,1968.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.503889,-94.3172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.989821882951652 -1190,Stuart (IA),4,1964.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,IA,41.503889,-94.3172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.989821882951652 -1191,Sumner,G1,2021.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,42.8464,-92.0978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.869047748917277 -1191,Sumner,G2,2021.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,42.8464,-92.0978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.869047748917277 -1191,Sumner,G3,2021.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,42.8464,-92.0978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.869047748917277 -1192,Traer Main,3,1963.0,1.1,1.0,1.0,0.9,DFO,Petroleum Liquids,SB,IC,1.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,IA,42.1926,-92.4636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1192,Traer Main,4,1963.0,1.1,1.0,1.0,0.9,DFO,Petroleum Liquids,SB,IC,1.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,IA,42.1926,-92.4636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1192,Traer Main,6,1970.0,1.3,1.2,1.2,1.2,DFO,Petroleum Liquids,SB,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,MISO,IA,42.1926,-92.4636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1193,Villisca Municipal Power Plant,5,2003.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.9315,-94.9855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.56 -1193,Villisca Municipal Power Plant,6,2003.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.9315,-94.9855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.56 -1194,Vinton,1,1955.0,1.3,1.3,1.3,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.483784965034964 -1194,Vinton,10,2009.0,0.8,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.483735795454542 -1194,Vinton,5,1946.0,0.6,0.5,0.5,0.1,DFO,Petroleum Liquids,OS,IC,6.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.483806818181815 -1194,Vinton,6,1961.0,2.5,2.5,2.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.48377272727273 -1194,Vinton,7,1967.0,3.7,3.7,3.7,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.483768427518424 -1194,Vinton,8,1973.0,5.6,5.6,5.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.483766233766232 -1194,Vinton,9,1992.0,3.0,3.0,3.0,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1697,-92.0222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.48376893939394 -1198,Webster City,6,1972.0,21.3,20.7,25.0,5,DFO,Petroleum Liquids,OP,GT,4.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9718309859154929,1.0,MRO,MISO,IA,42.471022,-93.81499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.596644295302013 -1199,West Bend,1,1959.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,IA,42.961151,-94.445574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.19108004659677 -1199,West Bend,3,1954.0,0.9,0.9,0.9,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.961151,-94.445574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.191318851191927 -1199,West Bend,4,1973.0,2.2,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,11.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,IA,42.961151,-94.445574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.19109668830088 -1199,West Bend,5,2013.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.961151,-94.445574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.19112822916056 -1200,West Liberty,2,1974.0,2.5,2.1,2.1,0.5,DFO,Petroleum Liquids,SB,IC,10.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8400000000000001,0.8400000000000001,MRO,MISO,IA,41.569128,-91.26405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1200,West Liberty,3,1982.0,3.0,2.7,2.7,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.569128,-91.26405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1200,West Liberty,5,2004.0,5.5,5.0,5.5,0.3,DFO,Petroleum Liquids,SB,GT,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9090909090909091,1.0,MRO,MISO,IA,41.569128,-91.26405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1200,West Liberty,6,2004.0,5.5,5.0,5.5,0.3,DFO,Petroleum Liquids,SB,GT,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9090909090909091,1.0,MRO,MISO,IA,41.569128,-91.26405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1202,Wilton,5,1992.0,1.6,1.6,1.6,1.6,DFO,Petroleum Liquids,OP,IC,1.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.587748,-91.019456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.793383270911361 -1202,Wilton,6,1992.0,1.6,1.6,1.6,1.6,DFO,Petroleum Liquids,OP,IC,1.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.587748,-91.019456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.793383270911361 -1202,Wilton,7,1992.0,1.6,1.6,1.6,1.6,DFO,Petroleum Liquids,OP,IC,1.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.587748,-91.019456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.793383270911361 -1202,Wilton,8,2002.0,2.2,2.2,2.2,2.2,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.587748,-91.019456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.79317232613038 -1202,Wilton,9,2002.0,2.2,2.2,2.2,2.2,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.587748,-91.019456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.79317232613038 -1203,Winterset,2,1956.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,OP,IC,7.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.298983183418068 -1203,Winterset,3,1966.0,1.7,1.7,1.7,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.301121656600518 -1203,Winterset,4,1972.0,4.4,4.4,4.4,1.5,DFO,Petroleum Liquids,OP,IC,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.3 -1203,Winterset,5,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.300381343502494 -1203,Winterset,6,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.300381343502494 -1203,Winterset,7,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.300381343502494 -1203,Winterset,8,2022.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.300381343502494 -1203,Winterset,9,2022.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3372,-94.0126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.300381343502494 -1206,Summit Lake,GT1,1973.0,27.0,29.2,34.9,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,IA,41.1136,-94.3472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1206,Summit Lake,GT2,1975.0,35.3,27.4,32.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7762039660056658,0.9291784702549575,MRO,MISO,IA,41.1136,-94.3472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1206,Summit Lake,R1,2021.0,18.8,18.4,18.4,5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.978723404255319,0.978723404255319,MRO,MISO,IA,41.1136,-94.3472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1206,Summit Lake,R2,2021.0,18.8,18.4,18.4,5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.978723404255319,0.978723404255319,MRO,MISO,IA,41.1136,-94.3472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1206,Summit Lake,R3,2021.0,18.8,18.4,18.4,5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.978723404255319,0.978723404255319,MRO,MISO,IA,41.1136,-94.3472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1217,Earl F Wisdom,1,1960.0,37.5,37.5,38.0,12,NG,Natural Gas Steam Turbine,OP,ST,4.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,IA,43.1606,-95.2569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60.17765990639625 -1217,Earl F Wisdom,2,2004.0,81.6,76.0,80.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9313725490196079,0.9803921568627452,MRO,SWPP,IA,43.1606,-95.2569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.259754958413307 -1224,Bird City,1,1965.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.7581,-101.5319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1224,Bird City,2,1966.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OS,IC,1.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.7581,-101.5319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1225,Colby,GT1,1970.0,16.0,13.0,13.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8125,0.8125,MRO,SWPP,KS,39.403001,-101.038202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.40530303030303 -1230,Cimarron River,1,1963.0,50.0,53.6,53.6,23,NG,Natural Gas Steam Turbine,OP,ST,10.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,37.1611,-100.7619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.773256443861948 -1230,Cimarron River,2,1968.0,15.0,13.7,13.7,6,NG,Natural Gas Fired Combustion Turbine,SB,GT,2.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9133333333333333,0.9133333333333333,MRO,SWPP,KS,37.1611,-100.7619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1233,Fort Dodge,4,1969.0,149.0,148.8,148.8,30,NG,Natural Gas Steam Turbine,OP,ST,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9986577181208054,0.9986577181208054,MRO,SWPP,KS,37.7328,-99.9497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.406841607943626 -1235,Great Bend - Sunflower,3,1963.0,81.6,99.7,99.7,23,NG,Natural Gas Steam Turbine,OP,ST,6.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,38.41,-98.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.190226206337254 -1239,Riverton,10,1988.0,16.3,13.0,16.0,4,NG,Natural Gas Fired Combustion Turbine,OS,GT,12.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7975460122699386,0.9815950920245399,MRO,SWPP,KS,37.072616,-94.698704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1239,Riverton,11,1988.0,16.3,14.0,16.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8588957055214723,0.9815950920245399,MRO,SWPP,KS,37.072616,-94.698704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1239,Riverton,12,2007.0,148.8,149.0,180.0,98,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,KS,37.072616,-94.698704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.168051407784105 -1239,Riverton,12-2,2016.0,118.8,117.0,117.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9848484848484849,0.9848484848484849,MRO,SWPP,KS,37.072616,-94.698704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1240,Gordon Evans Energy Center,5,1969.0,2.9,3.0,3.0,1,DFO,Petroleum Liquids,SB,IC,8.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.7903,-97.521667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1240,Gordon Evans Energy Center,GT1,2000.0,98.3,71.6,71.6,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7283825025432349,0.7283825025432349,MRO,SWPP,KS,37.7903,-97.521667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1240,Gordon Evans Energy Center,GT2,2000.0,98.3,71.7,71.7,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7293997965412005,0.7293997965412005,MRO,SWPP,KS,37.7903,-97.521667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1240,Gordon Evans Energy Center,GT3,2001.0,178.5,150.4,150.4,112,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8425770308123249,0.8425770308123249,MRO,SWPP,KS,37.7903,-97.521667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1241,La Cygne,1,1973.0,873.0,758.0,758.0,404,SUB,Conventional Steam Coal,OP,ST,6.0,1973.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.868270332187858,0.868270332187858,MRO,SWPP,KS,38.3481,-94.6456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.741077868466022 -1241,La Cygne,2,1977.0,725.9,668.0,668.0,274,SUB,Conventional Steam Coal,OP,ST,5.0,1977.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9202369472379116,0.9202369472379116,MRO,SWPP,KS,38.3481,-94.6456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.621583235159521 -1248,Hutchinson Energy Center,GT1,1974.0,71.0,55.9,55.9,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7873239436619718,0.7873239436619718,MRO,SWPP,KS,38.0906,-97.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1248,Hutchinson Energy Center,GT2,1974.0,71.0,53.9,53.9,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7591549295774648,0.7591549295774648,MRO,SWPP,KS,38.0906,-97.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1248,Hutchinson Energy Center,GT3,1974.0,71.0,56.7,56.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7985915492957747,0.7985915492957747,MRO,SWPP,KS,38.0906,-97.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1248,Hutchinson Energy Center,GT4,1975.0,70.0,69.8,69.8,20,DFO,Petroleum Liquids,OP,GT,6.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9971428571428571,0.9971428571428571,MRO,SWPP,KS,38.0906,-97.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1248,Hutchinson Energy Center,H1DG,1983.0,2.7,3.0,3.0,3,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.0906,-97.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1250,Lawrence Energy Center,4,1960.0,114.0,111.3,111.3,38,SUB,Conventional Steam Coal,OP,ST,3.0,1960.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9763157894736841,0.9763157894736841,MRO,SWPP,KS,39.0072,-95.269167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.37224522393588 -1250,Lawrence Energy Center,5,1971.0,403.0,374.0,374.0,120,SUB,Conventional Steam Coal,OP,ST,5.0,1971.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9280397022332506,0.9280397022332506,MRO,SWPP,KS,39.0072,-95.269167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.260656966189202 -1258,Anthony,IC1,1972.0,4.1,4.1,4.1,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.1517,-98.0311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,103.59149972929073 -1258,Anthony,IC2,1976.0,3.0,3.0,3.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.1517,-98.0311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,103.58860525342213 -1258,Anthony,IC3,1981.0,4.0,4.0,4.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.1517,-98.0311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,103.58851276359601 -1259,Ashland,1,1953.0,0.6,0.6,0.6,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.193787,-99.763073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.103634577603144 -1259,Ashland,2,1974.0,0.9,0.7,0.7,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7777777777777777,0.7777777777777777,MRO,SWPP,KS,37.193787,-99.763073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.103798297314999 -1259,Ashland,3,1963.0,1.2,1.1,1.1,0.6,DFO,Petroleum Liquids,SB,IC,5.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,MRO,SWPP,KS,37.193787,-99.763073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.106362073200689 -1259,Ashland,4B,2014.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,SB,IC,8.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.193787,-99.763073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.10477453580902 -1259,Ashland,5,1971.0,0.9,0.7,0.7,0.3,DFO,Petroleum Liquids,SB,IC,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777777,0.7777777777777777,MRO,SWPP,KS,37.193787,-99.763073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.103798297314999 -1261,Augusta Electric Plant No 1,1,1954.0,1.1,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,2,1929.0,0.3,0.3,0.3,0.2,DFO,Petroleum Liquids,SB,IC,8.0,1929.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,3,1949.0,1.0,1.0,1.0,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,12.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,4,1939.0,0.7,0.7,0.7,0.4,DFO,Petroleum Liquids,SB,IC,8.0,1939.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,5,1956.0,2.2,2.2,2.2,1.5,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,6,1956.0,2.2,2.2,2.2,1.5,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,7,1964.0,2.0,2.0,2.0,0.7,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1261,Augusta Electric Plant No 1,8,2016.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,SB,IC,8.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.678454,-96.97193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1262,Baldwin City Plant No 1,4,1970.0,2.0,1.5,1.5,1,DFO,Petroleum Liquids,OP,IC,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,SWPP,KS,38.7745,-95.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.941445336627547 -1262,Baldwin City Plant No 1,5,1964.0,1.1,0.7,0.7,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6363636363636362,0.6363636363636362,MRO,SWPP,KS,38.7745,-95.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.942048517520215 -1262,Baldwin City Plant No 1,6,1964.0,1.1,0.7,0.7,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6363636363636362,0.6363636363636362,MRO,SWPP,KS,38.7745,-95.1867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.942048517520215 -1263,Belleville,4,1955.0,1.0,1.0,1.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.832769,-97.632038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.54134779376394 -1263,Belleville,5,1961.0,1.7,1.7,1.7,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.832769,-97.632038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541312959818901 -1263,Belleville,6,1966.0,3.7,3.7,3.7,2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.832769,-97.632038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541331788956127 -1263,Belleville,7,1971.0,5.1,5.1,5.1,3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.832769,-97.632038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541321534530363 -1263,Belleville,8,2005.0,2.8,2.8,2.8,1.6,DFO,Petroleum Liquids,OP,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.832769,-97.632038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.54127881551821 -1264,Beloit,1,1951.0,1.5,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7333333333333334,0.7333333333333334,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.871576496538202 -1264,Beloit,2,1951.0,1.5,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7333333333333334,0.7333333333333334,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.871576496538202 -1264,Beloit,3,1961.0,2.0,1.8,1.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.871243451888613 -1264,Beloit,4,1964.0,3.5,3.0,3.0,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.871412441246752 -1264,Beloit,5,1950.0,0.7,0.6,0.6,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.870815281606932 -1264,Beloit,6,1971.0,4.1,3.5,3.5,2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.853658536585366,0.853658536585366,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.871533926610029 -1264,Beloit,7,1980.0,6.0,5.5,5.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9166666666666666,0.9166666666666666,MRO,SWPP,KS,39.4578,-98.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.87142528911695 -1265,Burlingame,1,1973.0,1.1,1.0,1.1,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,1.0,MRO,SWPP,KS,38.7551,-95.8368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.173913043478262 -1265,Burlingame,3,1963.0,0.9,0.8,0.8,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,KS,38.7551,-95.8368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.17391304347826 -1265,Burlingame,4,1969.0,1.1,1.0,1.1,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,1.0,MRO,SWPP,KS,38.7551,-95.8368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.173913043478262 -1265,Burlingame,5,1980.0,0.9,0.8,0.8,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,KS,38.7551,-95.8368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.17391304347826 -1266,Burlington (KS),1A,2003.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.193441,-95.749953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.242978411234542 -1266,Burlington (KS),2,1962.0,1.3,1.3,1.3,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.193441,-95.749953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.242644095122936 -1266,Burlington (KS),4A,2005.0,2.3,2.3,2.3,0.8,DFO,Petroleum Liquids,SB,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.193441,-95.749953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.242812229461887 -1266,Burlington (KS),IC6,1983.0,4.8,4.8,4.8,1,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.193441,-95.749953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.242893323435657 -1268,Chanute 2,14,2002.0,60.0,42.0,52.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.8666666666666667,MRO,SWPP,KS,37.6953,-95.4586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.017411357410879 -1268,Chanute 2,7,1965.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.6953,-95.4586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1268,Chanute 2,8,1965.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.6953,-95.4586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1270,Clay Center,5,1948.0,3.0,3.0,3.0,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1270,Clay Center,6,1961.0,5.0,5.0,5.0,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1270,Clay Center,IC1,1958.0,0.9,0.9,0.9,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.925106427707995 -1270,Clay Center,IC2,1966.0,2.1,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,0.9523809523809523,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.924612023334916 -1270,Clay Center,IC3,1972.0,5.1,5.0,5.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9803921568627452,0.9803921568627452,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.924384633933705 -1270,Clay Center,IC4,1996.0,3.5,3.5,3.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.924603013717146 -1270,Clay Center,IC5,1996.0,3.5,3.5,3.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.924603013717146 -1270,Clay Center,IC6,2005.0,6.8,6.8,6.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.373966,-97.127211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.92429901991472 -1271,Coffeyville,1,2007.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.037344,-95.612689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1271,Coffeyville,2,2007.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.037344,-95.612689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1271,Coffeyville,7,1973.0,40.0,37.0,38.2,9,NG,Natural Gas Steam Turbine,OP,ST,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.925,0.9550000000000001,MRO,SWPP,KS,37.037344,-95.612689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1272,Colby City of,4,1958.0,1.7,1.2,1.2,1.2,DFO,Petroleum Liquids,OP,IC,8.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7058823529411764,0.7058823529411764,MRO,SWPP,KS,39.394414,-101.058372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1272,Colby City of,5,1958.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,5.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,MRO,SWPP,KS,39.394414,-101.058372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1272,Colby City of,6,1971.0,4.5,3.5,3.5,3.5,DFO,Petroleum Liquids,OA,IC,10.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777778,0.7777777777777778,MRO,SWPP,KS,39.394414,-101.058372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1272,Colby City of,7,1971.0,4.5,3.5,3.5,3.5,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777778,0.7777777777777778,MRO,SWPP,KS,39.394414,-101.058372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1272,Colby City of,8,1965.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,3.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,MRO,SWPP,KS,39.394414,-101.058372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1272,Colby City of,9,2019.0,3.0,3.0,3.0,2.5,DFO,Petroleum Liquids,OP,IC,8.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.394414,-101.058372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1274,Ellinwood,1,1965.0,2.1,1.8,1.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428571,0.8571428571428571,MRO,SWPP,KS,38.354514,-98.583436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.160987074030553 -1274,Ellinwood,2,1957.0,1.4,1.3,1.3,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,0.9285714285714286,MRO,SWPP,KS,38.354514,-98.583436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.160987074030553 -1274,Ellinwood,3,1948.0,0.6,0.4,0.4,0.2,DFO,Petroleum Liquids,SB,IC,6.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,SWPP,KS,38.354514,-98.583436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.16270566727605 -1274,Ellinwood,4,1953.0,1.1,1.0,1.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,KS,38.354514,-98.583436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.160518444666003 -1274,Ellinwood,5,1971.0,3.3,2.7,2.7,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818183,0.8181818181818183,MRO,SWPP,KS,38.354514,-98.583436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.16152887411716 -1276,Erie,3,1958.0,1.0,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.56681,-95.237499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.498745969186674 -1276,Erie,6,2005.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,KS,37.56681,-95.237499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499022801302932 -1276,Erie,7,2005.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,KS,37.56681,-95.237499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499022801302932 -1276,Erie,8,2005.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,KS,37.56681,-95.237499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499022801302932 -1278,Garnett Municipal,1,1961.0,1.5,1.3,1.3,0.8,DFO,Petroleum Liquids,OP,IC,1.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1278,Garnett Municipal,2,1930.0,0.4,0.3,0.3,0.3,DFO,Petroleum Liquids,OP,IC,1.0,1930.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1278,Garnett Municipal,3,1955.0,1.5,1.3,1.3,0.8,DFO,Petroleum Liquids,OP,IC,1.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1278,Garnett Municipal,4,1948.0,0.9,0.8,0.8,0.4,DFO,Petroleum Liquids,OP,IC,1.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1278,Garnett Municipal,7,2000.0,2.5,2.2,2.2,1.5,DFO,Petroleum Liquids,OP,IC,11.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1278,Garnett Municipal,IC5,1981.0,2.4,2.1,2.1,1,DFO,Petroleum Liquids,OP,IC,1.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8750000000000001,0.8750000000000001,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1278,Garnett Municipal,IC6,1978.0,2.5,2.2,2.2,1.5,DFO,Petroleum Liquids,OP,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,SWPP,KS,38.2697,-95.2447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1279,Girard,1,1955.0,1.4,1.1,1.1,1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7857142857142858,0.7857142857142858,MRO,SWPP,KS,37.507709,-94.839318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.427567525125626 -1279,Girard,4,1962.0,2.2,1.8,1.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,37.507709,-94.839318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.427425801938643 -1279,Girard,6,1997.0,3.5,3.2,3.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9428571428571428,MRO,SWPP,KS,37.507709,-94.839318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.427493502720614 -1279,Girard,7,1997.0,3.7,3.4,3.4,3.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9189189189189189,0.9189189189189189,MRO,SWPP,KS,37.507709,-94.839318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.427469009722293 -1280,Goodland,10,1971.0,2.0,1.8,2.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,11,1978.0,4.3,3.5,3.8,3.2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.813953488372093,0.8837209302325582,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,12,1995.0,1.0,0.8,0.9,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.9,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,13,1999.0,1.3,1.1,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8461538461538463,1.0,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,3,1939.0,0.7,0.7,0.7,0.5,DFO,Petroleum Liquids,OP,IC,3.0,1939.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,6,1962.0,2.2,1.8,2.1,1.7,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.9545454545454545,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,7,1966.0,2.2,1.8,2.1,1.7,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.9545454545454545,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1280,Goodland,8,1975.0,5.0,4.6,4.8,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9199999999999999,0.96,MRO,SWPP,KS,39.341622,-101.705188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1283,Herington,4B,2001.0,1.6,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,KS,38.6658,-96.9492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1285,Hill City,1,1962.0,1.3,1.1,1.2,0.9,DFO,Petroleum Liquids,OP,IC,3.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.923076923076923,MRO,SWPP,KS,39.3582,-99.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1285,Hill City,2,1962.0,1.3,1.1,1.2,0.9,DFO,Petroleum Liquids,OP,IC,3.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.923076923076923,MRO,SWPP,KS,39.3582,-99.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1285,Hill City,3,1952.0,0.6,0.6,0.6,0.4,DFO,Petroleum Liquids,OP,IC,5.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.3582,-99.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1285,Hill City,4,1967.0,1.1,1.0,1.0,0.8,DFO,Petroleum Liquids,OP,IC,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,KS,39.3582,-99.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1285,Hill City,5,1974.0,1.3,1.2,1.2,0.9,DFO,Petroleum Liquids,OP,IC,10.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,KS,39.3582,-99.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1285,Hill City,6,1974.0,1.3,1.2,1.2,0.9,DFO,Petroleum Liquids,OP,IC,12.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,KS,39.3582,-99.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1286,Hoisington,2A,1996.0,1.0,1.1,1.1,0.7,DFO,Petroleum Liquids,OP,IC,9.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.513,-98.7747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.999517258025586 -1286,Hoisington,6,1961.0,2.0,2.0,2.0,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.513,-98.7747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.99963794351919 -1286,Hoisington,7,1966.0,4.0,4.0,4.0,2.9,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.513,-98.7747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.000301731941342 -1287,Holton,10,1970.0,2.0,1.8,2.0,1,DFO,Petroleum Liquids,OP,IC,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.817750398253256 -1287,Holton,11,1994.0,2.4,2.2,2.4,1.7,DFO,Petroleum Liquids,OP,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666667,1.0,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.817602881517995 -1287,Holton,12,2001.0,3.1,3.0,3.1,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.967741935483871,1.0,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.81752192036798 -1287,Holton,13,2001.0,3.1,3.0,3.1,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.967741935483871,1.0,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.81752192036798 -1287,Holton,6,1958.0,1.8,1.4,1.7,0.9,DFO,Petroleum Liquids,OP,IC,2.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777777,0.9444444444444444,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.817516802614158 -1287,Holton,7,1963.0,2.8,2.4,2.6,1.2,DFO,Petroleum Liquids,OP,IC,5.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.9285714285714286,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.81771090281204 -1287,Holton,8,1969.0,4.3,3.8,4.0,2.6,DFO,Petroleum Liquids,OP,IC,6.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8837209302325582,0.930232558139535,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.817616580310883 -1287,Holton,9,1970.0,2.0,1.8,2.0,1,DFO,Petroleum Liquids,OP,IC,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,MRO,SWPP,KS,39.4735,-95.73155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.817750398253256 -1291,Iola,1,1998.0,5.0,5.0,5.0,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473586030794635 -1291,Iola,10,1981.0,2.7,2.9,2.9,2,DFO,Petroleum Liquids,OP,IC,6.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473595911259611 -1291,Iola,14,2020.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473547906194453 -1291,Iola,15,2020.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473547906194453 -1291,Iola,16,2021.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,8.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473629442432864 -1291,Iola,2,2000.0,5.0,5.0,5.0,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473586030794635 -1291,Iola,6,1969.0,2.7,2.9,2.9,2,DFO,Petroleum Liquids,OP,IC,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473595911259611 -1291,Iola,7,1971.0,2.7,2.9,2.9,2,DFO,Petroleum Liquids,OP,IC,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473595911259611 -1291,Iola,8,1976.0,2.7,2.9,2.9,2,DFO,Petroleum Liquids,OP,IC,2.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473595911259611 -1291,Iola,9,1977.0,2.7,2.9,2.9,2,DFO,Petroleum Liquids,OP,IC,6.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.923076,-95.425572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.473595911259611 -1292,Jetmore,8,2015.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,11.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.080332,-99.893587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.317073170731707 -1294,Kaw,1,1955.0,50.1,41.9,41.9,30,NG,Natural Gas Steam Turbine,OS,ST,6.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8363273453093811,0.8363273453093811,MRO,SWPP,KS,39.0867,-94.651389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1294,Kaw,2,1957.0,50.1,41.9,41.9,30,NG,Natural Gas Steam Turbine,OS,ST,4.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8363273453093811,0.8363273453093811,MRO,SWPP,KS,39.0867,-94.651389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1294,Kaw,3,1962.0,65.5,56.5,56.5,30,NG,Natural Gas Steam Turbine,OS,ST,5.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8625954198473282,0.8625954198473282,MRO,SWPP,KS,39.0867,-94.651389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1295,Quindaro,GT2,1974.0,72.4,56.0,56.0,20,DFO,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7734806629834253,0.7734806629834253,MRO,SWPP,KS,39.1492,-94.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1295,Quindaro,GT3,1977.0,71.2,46.0,46.0,20,DFO,Petroleum Liquids,OP,GT,8.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.646067415730337,0.646067415730337,MRO,SWPP,KS,39.1492,-94.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1295,Quindaro,ST1,1965.0,81.6,72.0,72.0,35,NG,Natural Gas Steam Turbine,OS,ST,5.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8823529411764707,0.8823529411764707,MRO,SWPP,KS,39.1492,-94.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1295,Quindaro,ST2,1971.0,157.5,85.0,85.0,55,NG,Natural Gas Steam Turbine,OS,ST,12.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5396825396825398,0.5396825396825398,MRO,SWPP,KS,39.1492,-94.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1296,Kingman Municipal Power and Light Plant,2,1962.0,2.2,1.9,2.0,1,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8636363636363635,0.9090909090909091,MRO,SWPP,KS,37.38311,-98.070364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.93590158747883 -1296,Kingman Municipal Power and Light Plant,4,1977.0,2.2,1.9,2.0,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8636363636363635,0.9090909090909091,MRO,SWPP,KS,37.38311,-98.070364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.93590158747883 -1296,Kingman Municipal Power and Light Plant,6,1969.0,3.5,3.4,3.4,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,MRO,SWPP,KS,37.38311,-98.070364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.935905189607917 -1296,Kingman Municipal Power and Light Plant,7,1979.0,2.4,2.1,2.1,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8750000000000001,0.8750000000000001,MRO,SWPP,KS,37.38311,-98.070364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.935905134617814 -1296,Kingman Municipal Power and Light Plant,8,1984.0,2.5,2.4,2.4,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.96,0.96,MRO,SWPP,KS,37.38311,-98.070364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.935907514223668 -1296,Kingman Municipal Power and Light Plant,9,1993.0,6.3,6.3,6.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.38311,-98.070364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.935908292428042 -1297,La Crosse,1,1962.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.531667,-99.308333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.741176470588234 -1297,La Crosse,2,1964.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.531667,-99.308333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.741176470588234 -1297,La Crosse,5,1969.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.531667,-99.308333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.741092226727634 -1297,La Crosse,6,1975.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.531667,-99.308333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.741246674814867 -1299,Larned,CAT,2004.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.176167,-99.099984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1299,Larned,CAT1,2004.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.176167,-99.099984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1299,Larned,CAT2,2004.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.176167,-99.099984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1299,Larned,CAT3,2004.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.176167,-99.099984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1299,Larned,CAT4,2004.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.176167,-99.099984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1299,Larned,IC5,1976.0,6.4,6.0,6.0,0.5,DFO,Petroleum Liquids,OP,IC,12.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,KS,38.176167,-99.099984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1300,Lincoln,1,1964.0,1.3,1.1,1.1,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,MRO,SWPP,KS,39.03719,-98.152993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.578019237620234 -1300,Lincoln,2,1964.0,1.3,1.1,1.1,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,MRO,SWPP,KS,39.03719,-98.152993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.578019237620234 -1300,Lincoln,4,1958.0,0.7,0.6,0.6,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.03719,-98.152993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.577571948395633 -1300,Lincoln,7,1974.0,3.5,3.0,3.0,1.5,DFO,Petroleum Liquids,SB,IC,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.03719,-98.152993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.578602620087336 -1300,Lincoln,8,2017.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,8.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,39.03719,-98.152993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.579550717924967 -1305,McPherson 2,GT1,1973.0,72.4,50.5,60.0,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6975138121546961,0.8287292817679557,MRO,SWPP,KS,38.363411,-97.68335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.64874237459924 -1305,McPherson 2,GT2,1976.0,71.2,51.8,60.0,22,DFO,Petroleum Liquids,OP,GT,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7275280898876404,0.8426966292134831,MRO,SWPP,KS,38.363411,-97.68335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.409581433468865 -1305,McPherson 2,GT3,1979.0,71.2,51.7,60.0,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.726123595505618,0.8426966292134831,MRO,SWPP,KS,38.363411,-97.68335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.19842665524908 -1306,Meade,2,1951.0,0.9,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,KS,37.285176,-100.332438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.91017404508819 -1306,Meade,3,1957.0,1.1,1.1,1.1,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.285176,-100.332438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.910733059352003 -1306,Meade,4,1961.0,1.4,1.3,1.4,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,1.0,MRO,SWPP,KS,37.285176,-100.332438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.910340166704213 -1306,Meade,5,1965.0,2.1,1.5,1.7,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7142857142857142,0.8095238095238095,MRO,SWPP,KS,37.285176,-100.332438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.910042050460552 -1306,Meade,6,1972.0,2.7,1.9,2.0,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7037037037037036,0.7407407407407407,MRO,SWPP,KS,37.285176,-100.332438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.910212981349531 -1307,Minneapolis City of,3,1961.0,1.3,1.2,1.2,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,KS,39.1194,-97.7086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.301340980011808 -1307,Minneapolis City of,4,1955.0,0.7,0.5,0.5,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7142857142857144,0.7142857142857144,MRO,SWPP,KS,39.1194,-97.7086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.300704776820673 -1307,Minneapolis City of,5,1966.0,2.1,1.8,1.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428571,0.8571428571428571,MRO,SWPP,KS,39.1194,-97.7086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.301138143468727 -1307,Minneapolis City of,6,1972.0,3.0,2.7,2.7,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,39.1194,-97.7086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.30110002558199 -1307,Minneapolis City of,7,1989.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,39.1194,-97.7086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.30111829843219 -1312,Oberlin (KS),1,1956.0,1.1,0.9,0.9,0.6,DFO,Petroleum Liquids,SB,IC,1.0,1956.0,9,2026,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,39.8217,-100.5289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.587133941430631 -1312,Oberlin (KS),2,1954.0,0.8,0.6,0.6,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1954.0,9,2026,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,SWPP,KS,39.8217,-100.5289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.586578657865786 -1312,Oberlin (KS),4,1967.0,1.5,1.2,1.2,0.8,DFO,Petroleum Liquids,SB,IC,10.0,1967.0,9,2026,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,KS,39.8217,-100.5289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.586364703121333 -1312,Oberlin (KS),5,1973.0,2.0,1.3,1.3,1,DFO,Petroleum Liquids,SB,IC,8.0,1973.0,9,2026,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.65,MRO,SWPP,KS,39.8217,-100.5289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.587044534412955 -1312,Oberlin (KS),6,1963.0,1.5,1.2,1.2,0.8,DFO,Petroleum Liquids,SB,IC,8.0,1963.0,9,2026,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,KS,39.8217,-100.5289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.586364703121333 -1313,Osage City,1,1955.0,1.1,0.9,0.9,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.264003294892916 -1313,Osage City,2,1960.0,1.2,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.26788748348122 -1313,Osage City,4,1967.0,2.0,1.9,1.9,1.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.26446936232868 -1313,Osage City,5,1970.0,2.0,1.9,1.9,1.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.26446936232868 -1313,Osage City,7,1984.0,1.7,1.5,1.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.26235842771486 -1313,Osage City,IC3,2011.0,2.0,1.9,1.9,1.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.26446936232868 -1313,Osage City,IC6,1983.0,1.1,0.9,0.9,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,38.633183,-95.827658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.264003294892916 -1314,Osawatomie City of,2,1957.0,2.3,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7826086956521741,0.7826086956521741,MRO,SWPP,KS,38.501719,-94.960069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.280073461891643 -1314,Osawatomie City of,4,1950.0,1.2,1.0,1.0,0.2,DFO,Petroleum Liquids,SB,IC,10.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,SWPP,KS,38.501719,-94.960069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.280748074807482 -1314,Osawatomie City of,5,1966.0,3.1,2.8,2.8,1.3,DFO,Petroleum Liquids,SB,IC,5.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9032258064516128,0.9032258064516128,MRO,SWPP,KS,38.501719,-94.960069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.28027593254982 -1315,Osborne,1,1967.0,2.3,1.4,1.6,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6086956521739131,0.6956521739130436,MRO,SWPP,KS,39.441979,-98.690296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.656311101455573 -1315,Osborne,2,1963.0,2.0,1.2,1.4,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6,0.7,MRO,SWPP,KS,39.441979,-98.690296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.655508368723458 -1315,Osborne,3,1957.0,1.1,0.6,0.7,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5454545454545454,0.6363636363636362,MRO,SWPP,KS,39.441979,-98.690296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.65614353849648 -1315,Osborne,6,1992.0,0.5,0.4,0.4,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,KS,39.441979,-98.690296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.657671164417792 -1315,Osborne,7,1992.0,0.5,0.4,0.4,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,KS,39.441979,-98.690296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.657671164417792 -1315,Osborne,8,1994.0,0.7,0.6,0.6,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.441979,-98.690296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.655960028551036 -1316,Ottawa,IC3,1962.0,3.7,3.2,3.2,2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8648648648648649,0.8648648648648649,MRO,SWPP,KS,38.615579,-95.279742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.011775827698884 -1316,Ottawa,IC4,1958.0,3.5,3.0,3.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,38.615579,-95.279742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.01199256982087 -1316,Ottawa,IC6,1981.0,6.0,5.9,5.9,3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9833333333333334,0.9833333333333334,MRO,SWPP,KS,38.615579,-95.279742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.011988948875874 -1316,Ottawa,IC7,1981.0,6.0,5.9,5.9,3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9833333333333334,0.9833333333333334,MRO,SWPP,KS,38.615579,-95.279742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.011988948875874 -1317,Pratt,5,1965.0,14.0,13.0,13.0,5,NG,Natural Gas Steam Turbine,OP,ST,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9285714285714286,0.9285714285714286,MRO,SWPP,KS,37.6359,-98.7433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.185451638689049 -1317,Pratt,IC1,1958.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.6359,-98.7433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.666666666666666 -1319,Russell Downtown,11,1994.0,3.6,3.2,3.2,3,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,KS,38.893333,-98.856944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.795567817728728 -1319,Russell Downtown,12,1994.0,3.6,3.2,3.2,3,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,KS,38.893333,-98.856944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.795567817728728 -1319,Russell Downtown,7,1971.0,3.5,3.0,3.0,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,38.893333,-98.856944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.795496155254487 -1319,Russell Downtown,8,1978.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,OP,IC,8.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.893333,-98.856944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.79520697167756 -1319,Russell Downtown,9,1981.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,OP,IC,8.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.893333,-98.856944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.79520697167756 -1320,Sabetha Power Plant,11,1992.0,3.0,2.7,2.7,1.5,DFO,Petroleum Liquids,OP,IC,9.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,12,2001.0,4.4,4.1,4.1,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9318181818181817,0.9318181818181817,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97.09583897813044 -1320,Sabetha Power Plant,2,1957.0,1.5,1.2,1.2,1,DFO,Petroleum Liquids,OP,IC,8.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,3,1947.0,0.8,0.6,0.6,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,4,1950.0,1.0,0.7,0.7,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7,0.7,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,5,1961.0,1.4,1.2,1.2,0.8,DFO,Petroleum Liquids,OP,IC,8.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,6,1967.0,1.4,1.2,1.2,0.8,DFO,Petroleum Liquids,OP,IC,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,7,1970.0,2.2,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,8,1978.0,2.5,2.1,2.1,0.8,DFO,Petroleum Liquids,OP,IC,8.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8400000000000001,0.8400000000000001,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,IC10,1990.0,2.5,2.1,2.1,1.5,DFO,Petroleum Liquids,OP,IC,7.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8400000000000001,0.8400000000000001,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1320,Sabetha Power Plant,IC9,1985.0,1.1,1.0,1.0,0.8,DFO,Petroleum Liquids,OP,IC,6.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,KS,39.904922,-95.803367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1321,St Francis,2,1964.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.770868,-101.810082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1321,St Francis,4,1972.0,2.7,2.7,2.7,0.4,DFO,Petroleum Liquids,OP,IC,10.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.770868,-101.810082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1321,St Francis,5,1953.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.770868,-101.810082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1322,St John,2,2002.0,1.3,1.3,1.3,0.8,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.9953,-98.7602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.666666666666668 -1322,St John,4,1965.0,1.7,1.7,1.7,0.8,DFO,Petroleum Liquids,OP,IC,9.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.9953,-98.7602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.666666666666668 -1322,St John,5,1982.0,2.0,2.0,2.0,1.3,DFO,Petroleum Liquids,OP,IC,12.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.9953,-98.7602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.666666666666668 -1324,Sharon Spring,1,1970.0,1.0,1.0,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.890552,-101.751525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87.30032144497167 -1324,Sharon Spring,2,1964.0,1.0,1.0,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.890552,-101.751525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87.30032144497167 -1324,Sharon Spring,3,1958.0,0.4,0.4,0.4,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.890552,-101.751525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87.30692690394183 -1324,Sharon Spring,4,1951.0,0.6,0.6,0.6,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.890552,-101.751525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87.29591836734694 -1325,Stafford,4,1973.0,1.4,1.4,1.4,0.9,DFO,Petroleum Liquids,OP,IC,7.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.956117,-98.599286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1325,Stafford,5,1983.0,1.1,1.1,1.1,0.9,DFO,Petroleum Liquids,OP,IC,5.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.956117,-98.599286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1326,Sterling,1,1962.0,1.5,1.3,1.3,0.9,DFO,Petroleum Liquids,OP,IC,8.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43484102104792 -1326,Sterling,2,1950.0,0.5,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.434841021047916 -1326,Sterling,3,1972.0,3.0,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7333333333333334,0.7333333333333334,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43484102104792 -1326,Sterling,4,1955.0,1.1,0.8,0.8,0.6,DFO,Petroleum Liquids,OP,IC,7.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7272727272727273,0.7272727272727273,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.433950742926928 -1326,Sterling,5,2002.0,1.4,1.2,1.2,0.9,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43554062699936 -1326,Sterling,6,2002.0,1.4,1.2,1.2,0.9,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43554062699936 -1326,Sterling,7,2002.0,1.4,1.2,1.2,0.9,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,KS,38.2143,-98.2071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43554062699936 -1327,Stockton,1,1967.0,1.1,0.9,0.9,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,39.43619,-99.27793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.183631055470335 -1327,Stockton,2,1962.0,1.1,0.9,0.9,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,KS,39.43619,-99.27793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.183631055470335 -1327,Stockton,3,1971.0,2.0,1.7,1.7,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.85,0.85,MRO,SWPP,KS,39.43619,-99.27793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.183567385151317 -1327,Stockton,5,1955.0,1.3,1.0,1.0,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,MRO,SWPP,KS,39.43619,-99.27793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.183511974543627 -1327,Stockton,6,2022.0,3.1,2.8,2.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9032258064516128,0.9032258064516128,MRO,SWPP,KS,39.43619,-99.27793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.183572419363334 -1328,Wamego,1,1963.0,1.3,1.3,1.3,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,10,2016.0,3.2,3.2,3.2,1.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,3,1972.0,1.3,1.3,1.3,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,4,1956.0,1.1,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,5,1967.0,2.0,2.0,2.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,6,1979.0,2.4,2.4,2.4,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,7,1996.0,1.3,1.3,1.3,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,8,1996.0,1.3,1.3,1.3,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1328,Wamego,9,1996.0,1.3,1.3,1.3,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.1992,-96.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1329,Washington,1,1963.0,1.2,1.0,1.0,0.8,DFO,Petroleum Liquids,OP,IC,8.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,SWPP,KS,39.7306,-96.9795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1329,Washington,2,1958.0,1.0,0.8,0.8,0.4,DFO,Petroleum Liquids,OP,IC,4.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,KS,39.7306,-96.9795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1329,Washington,3,1978.0,0.9,0.7,0.8,0.4,DFO,Petroleum Liquids,OP,IC,6.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777777,0.888888888888889,MRO,SWPP,KS,39.7306,-96.9795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1329,Washington,6,1967.0,1.5,1.3,1.4,0.7,DFO,Petroleum Liquids,OP,IC,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,0.9333333333333332,MRO,SWPP,KS,39.7306,-96.9795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1329,Washington,IC4,1986.0,2.6,2.3,2.4,1.8,DFO,Petroleum Liquids,OP,IC,12.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8846153846153845,0.923076923076923,MRO,SWPP,KS,39.7306,-96.9795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1330,Wellington 1,4,1972.0,20.0,19.5,19.5,4,NG,Natural Gas Steam Turbine,OP,ST,8.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.975,0.975,MRO,SWPP,KS,37.261372,-97.4057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.828168812589412 -1330,Wellington 1,7,2004.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.261372,-97.4057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.0 -1330,Wellington 1,8,2004.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.261372,-97.4057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.0 -1332,West 14th Street,GT1,1962.0,11.0,11.1,11.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,KS,37.2354,-97.011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.45378151260504 -1336,Garden City,S2,1973.0,97.9,97.6,97.6,23,NG,Natural Gas Steam Turbine,OP,ST,4.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9969356486210418,0.9969356486210418,MRO,SWPP,KS,37.9703,-100.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1336,Garden City,S3,1968.0,16.0,12.8,12.8,10,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.8,MRO,SWPP,KS,37.9703,-100.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1336,Garden City,S4,1976.0,71.2,57.1,57.1,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8019662921348314,0.8019662921348314,MRO,SWPP,KS,37.9703,-100.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1336,Garden City,S5,1979.0,71.2,53.8,53.8,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7556179775280898,0.7556179775280898,MRO,SWPP,KS,37.9703,-100.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1353,Big Sandy,1,1963.0,280.5,260.0,260.0,100,NG,Natural Gas Steam Turbine,OP,ST,1.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9269162210338681,0.9269162210338681,RFC,PJM,KY,38.1707,-82.6176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1354,Dix Dam,1,1925.0,9.4,10.5,10.5,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,LGEE,KY,37.7864,-84.7028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1354,Dix Dam,2,1925.0,9.4,10.5,10.5,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,LGEE,KY,37.7864,-84.7028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1354,Dix Dam,3,1925.0,9.4,10.5,10.5,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,LGEE,KY,37.7864,-84.7028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1355,E W Brown,10,1995.0,126.0,121.0,138.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9603174603174603,1.0,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.3231479792560785 -1355,E W Brown,11,1996.0,126.0,121.0,128.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9603174603174603,1.0,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.624931737566239 -1355,E W Brown,3,1971.0,464.0,412.0,416.0,155,BIT,Conventional Steam Coal,OP,ST,7.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8879310344827587,0.896551724137931,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.18442511810441 -1355,E W Brown,5,2001.0,123.0,130.0,130.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.182969619337593 -1355,E W Brown,6,1999.0,176.8,146.0,171.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8257918552036199,0.9671945701357465,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.822577775987256 -1355,E W Brown,7,1999.0,176.8,146.0,171.0,105,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8257918552036199,0.9671945701357465,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.49516627456072 -1355,E W Brown,8,1995.0,126.0,121.0,128.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9603174603174603,1.0,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.140980781647372 -1355,E W Brown,9,1994.0,126.0,121.0,138.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9603174603174603,1.0,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.200392668291134 -1355,E W Brown,SOLAR,2016.0,13.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,SERC,LGEE,KY,37.78831,-84.71257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1356,Ghent,1,1974.0,556.9,474.0,476.0,218,BIT,Conventional Steam Coal,OP,ST,2.0,1974.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8511402406177052,0.8547315496498474,SERC,LGEE,KY,38.7497,-85.035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.487969967021447 -1356,Ghent,2,1977.0,556.3,495.0,477.0,225,BIT,Conventional Steam Coal,OP,ST,4.0,1977.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8898076577386304,0.8574510156390438,SERC,LGEE,KY,38.7497,-85.035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.28866729753973 -1356,Ghent,3,1981.0,556.5,485.0,478.0,210,BIT,Conventional Steam Coal,OP,ST,5.0,1981.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87151841868823,0.8589398023360287,SERC,LGEE,KY,38.7497,-85.035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.474973655679788 -1356,Ghent,4,1984.0,556.2,465.0,487.0,215,BIT,Conventional Steam Coal,OP,ST,8.0,1984.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8360302049622437,0.8755843221862638,SERC,LGEE,KY,38.7497,-85.035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.733819466223117 -1358,Haefling,1,1970.0,20.7,12.0,14.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5797101449275363,0.6763285024154589,SERC,LGEE,KY,38.0794,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1358,Haefling,2,1970.0,20.7,12.0,14.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5797101449275363,0.6763285024154589,SERC,LGEE,KY,38.0794,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1359,Mother Ann Lee,1,2008.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.8297,-84.7247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1359,Mother Ann Lee,2,2007.0,0.7,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,2007.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.8297,-84.7247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1359,Mother Ann Lee,3,2007.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,2007.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.8297,-84.7247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1363,Cane Run,7A,2015.0,260.0,213.0,226.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8192307692307692,0.8692307692307693,SERC,LGEE,KY,38.1831,-85.8892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.710393296610132 -1363,Cane Run,7B,2015.0,260.0,213.0,226.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8192307692307692,0.8692307692307693,SERC,LGEE,KY,38.1831,-85.8892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.592906289425397 -1363,Cane Run,7S,2015.0,287.0,237.0,231.0,38,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8257839721254355,0.8048780487804879,SERC,LGEE,KY,38.1831,-85.8892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1364,Mill Creek (KY),1,1972.0,355.5,300.0,300.0,115,BIT,Conventional Steam Coal,OP,ST,8.0,1972.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8438818565400844,0.8438818565400844,SERC,LGEE,KY,38.0525,-85.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272508602993835 -1364,Mill Creek (KY),2,1974.0,355.5,297.0,297.0,115,BIT,Conventional Steam Coal,OP,ST,7.0,1974.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8354430379746836,0.8354430379746836,SERC,LGEE,KY,38.0525,-85.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.056218913465322 -1364,Mill Creek (KY),3,1978.0,462.6,391.0,394.0,170,BIT,Conventional Steam Coal,OP,ST,8.0,1978.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.845222654561176,0.8517077388672719,SERC,LGEE,KY,38.0525,-85.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.322739947954354 -1364,Mill Creek (KY),4,1982.0,543.6,477.0,486.0,175,BIT,Conventional Steam Coal,OP,ST,9.0,1982.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8774834437086092,0.8940397350993377,SERC,LGEE,KY,38.0525,-85.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.49802728317361 -1365,Ohio Falls,1,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,2,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,3,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,4,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,5,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,6,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,7,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1365,Ohio Falls,8,1928.0,13.7,12.6,12.6,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9197080291970803,0.9197080291970803,SERC,LGEE,KY,38.2832,-85.7792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1366,Paddys Run,12,1968.0,32.6,23.0,28.0,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.705521472392638,0.8588957055214723,SERC,LGEE,KY,38.223592,-85.841704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1366,Paddys Run,13,2001.0,178.0,147.0,175.0,81,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8258426966292135,0.9831460674157303,SERC,LGEE,KY,38.223592,-85.841704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.924233102779858 -1371,Barkley,1,1966.0,32.5,37.0,37.0,32.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,37.0217,-88.2211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1371,Barkley,2,1966.0,32.5,37.0,37.0,32.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,37.0217,-88.2211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1371,Barkley,3,1966.0,32.5,37.0,37.0,32.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,37.0217,-88.2211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1371,Barkley,4,1966.0,32.5,37.0,37.0,32.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,37.0217,-88.2211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1376,Paris (KY),1,1952.0,1.3,1.4,1.4,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.517552657973921 -1376,Paris (KY),2,1954.0,1.3,1.4,1.4,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.517552657973921 -1376,Paris (KY),3,1934.0,0.7,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1934.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.518628912071534 -1376,Paris (KY),4,1947.0,0.9,1.1,1.1,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.518110692552884 -1376,Paris (KY),5,1949.0,1.1,1.2,1.2,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.51778093883357 -1376,Paris (KY),6,1974.0,3.1,3.0,3.0,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.967741935483871,0.967741935483871,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.516823687752357 -1376,Paris (KY),7,1974.0,3.1,3.0,3.0,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.967741935483871,0.967741935483871,SERC,LGEE,KY,38.2049,-84.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.516823687752357 -1377,Kentucky Dam,1,1945.0,44.6,44.0,37.0,18.9,WAT,Conventional Hydroelectric,OP,HY,4.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9865470852017937,0.8295964125560538,SERC,TVA,KY,37.0131,-88.2692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1377,Kentucky Dam,2,1944.0,42.4,45.4,37.0,18.9,WAT,Conventional Hydroelectric,OP,HY,11.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8726415094339623,SERC,TVA,KY,37.0131,-88.2692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1377,Kentucky Dam,3,1944.0,42.4,44.9,37.2,18.9,WAT,Conventional Hydroelectric,OP,HY,9.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8773584905660379,SERC,TVA,KY,37.0131,-88.2692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1377,Kentucky Dam,4,1945.0,44.6,43.1,35.4,18.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9663677130044843,0.7937219730941704,SERC,TVA,KY,37.0131,-88.2692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1377,Kentucky Dam,5,1948.0,44.6,45.1,36.5,18.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8183856502242153,SERC,TVA,KY,37.0131,-88.2692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1378,Paradise,CTG1,2017.0,231.0,211.0,231.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9134199134199135,1.0,SERC,TVA,KY,37.2608,-86.9783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1378,Paradise,CTG2,2017.0,231.0,211.0,231.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9134199134199135,1.0,SERC,TVA,KY,37.2608,-86.9783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1378,Paradise,CTG3,2017.0,231.0,211.0,231.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9134199134199135,1.0,SERC,TVA,KY,37.2608,-86.9783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1378,Paradise,STG1,2017.0,467.0,467.0,467.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,TVA,KY,37.2608,-86.9783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1379,Shawnee,1,1953.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,4.0,1953.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.00569798936312 -1379,Shawnee,2,1953.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,6.0,1953.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.042903584005286 -1379,Shawnee,3,1953.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,10.0,1953.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.80645443773208 -1379,Shawnee,4,1954.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,1.0,1954.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.006051837591626 -1379,Shawnee,5,1954.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,10.0,1954.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001263955594588 -1379,Shawnee,6,1954.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,11.0,1954.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11850301002031 -1379,Shawnee,7,1954.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,12.0,1954.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.646998378475883 -1379,Shawnee,8,1955.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,3.0,1955.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.811826601630235 -1379,Shawnee,9,1955.0,175.0,134.0,138.0,51,SUB,Conventional Steam Coal,OP,ST,7.0,1955.0,12,2033,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7657142857142857,0.7885714285714286,SERC,TVA,KY,37.1517,-88.775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.038597118803658 -1380,Wolf Creek,1,1952.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,8.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,36.8691,-85.147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1380,Wolf Creek,2,1952.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,7.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,36.8691,-85.147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1380,Wolf Creek,3,1952.0,45.0,40.0,40.0,40,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8888888888888888,0.8888888888888888,SERC,TVA,KY,36.8691,-85.147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1380,Wolf Creek,4,1951.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,12.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,36.8691,-85.147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1380,Wolf Creek,5,1951.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,10.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,36.8691,-85.147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1380,Wolf Creek,6,1951.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,10.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,KY,36.8691,-85.147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1383,Robert A Reid,GEN2,1976.0,98.8,58.0,65.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5870445344129556,0.6578947368421053,SERC,MISO,KY,37.6461,-87.5019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1384,Cooper,1,1965.0,113.6,116.0,116.0,30,BIT,Conventional Steam Coal,OP,ST,2.0,1965.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,KY,36.9981,-84.5919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.970850675875138 -1384,Cooper,2,1969.0,230.4,225.0,225.0,100,BIT,Conventional Steam Coal,OP,ST,10.0,1969.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9765625,0.9765625,SERC,PJM,KY,36.9981,-84.5919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.813520760915615 -1391,Louisiana 1,1A,1951.0,23.0,18.0,18.0,2,OG,Other Gases,OP,ST,10.0,1951.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.782608695652174,0.782608695652174,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1391,Louisiana 1,2A,1954.0,62.5,55.0,55.0,20,OG,Other Gases,OP,ST,12.0,1954.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.88,0.88,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.095707707559686 -1391,Louisiana 1,3A,1954.0,63.0,55.0,55.0,20,OG,Other Gases,OP,ST,9.0,1954.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.873015873015873,0.873015873015873,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.673228112421003 -1391,Louisiana 1,4A,1987.0,129.1,100.0,100.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.774593338497289,0.774593338497289,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.849194492502118 -1391,Louisiana 1,5A,1999.0,173.3,154.4,164.4,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8909405654933641,0.9486439699942296,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.179631014285107 -1392,Louisiana 2,10,1950.0,50.0,40.0,40.0,5,NG,Natural Gas Steam Turbine,OS,ST,1.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1392,Louisiana 2,11,1950.0,50.0,40.0,40.0,5,NG,Natural Gas Steam Turbine,OS,ST,11.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1392,Louisiana 2,12,1953.0,75.0,58.0,58.0,10,NG,Natural Gas Steam Turbine,OS,ST,5.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7733333333333333,0.7733333333333333,SERC,MISO,LA,30.4922,-91.1864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1393,R S Nelson,1,1959.0,113.6,97.2,109.0,80,PC,Petroleum Coke,OP,ST,2.0,1959.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8556338028169015,0.9595070422535211,SERC,MISO,LA,30.2844,-93.2911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1393,R S Nelson,2,1959.0,113.6,93.2,108.0,80,PC,Petroleum Coke,OP,ST,5.0,1959.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8204225352112677,0.9507042253521127,SERC,MISO,LA,30.2844,-93.2911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1393,R S Nelson,4,1970.0,591.8,424.7,434.3,163,NG,Natural Gas Steam Turbine,OP,ST,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7176410949645151,0.7338627914836093,SERC,MISO,LA,30.2844,-93.2911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1393,R S Nelson,6,1982.0,614.6,517.5,536.9,150,SUB,Conventional Steam Coal,OP,ST,5.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8420110641067361,0.8735763097949886,SERC,MISO,LA,30.2844,-93.2911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1396,Coughlin Power Station,6,1961.0,113.6,104.4,,50,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1961.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9190140845070424,,SERC,MISO,LA,30.8439,-92.261111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1396,Coughlin Power Station,7,1966.0,243.1,184.0,,50,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1966.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7568901686548746,,SERC,MISO,LA,30.8439,-92.261111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1396,Coughlin Power Station,U6CT,2000.0,188.7,150.2,,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7959724430312666,,SERC,MISO,LA,30.8439,-92.261111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1396,Coughlin Power Station,U72,2000.0,188.7,150.0,,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.794912559618442,,SERC,MISO,LA,30.8439,-92.261111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1396,Coughlin Power Station,U7CT,2000.0,188.7,150.6,,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7980922098569158,,SERC,MISO,LA,30.8439,-92.261111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1400,Teche,3,1971.0,348.5,260.0,328.0,65,NG,Natural Gas Steam Turbine,OP,ST,3.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7460545193687231,0.9411764705882353,SERC,MISO,LA,29.822222,-91.5425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.037943518772861 -1400,Teche,4,2011.0,42.2,34.0,34.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8056872037914691,0.8056872037914691,SERC,MISO,LA,29.822222,-91.5425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.01170828510005 -1402,Little Gypsy,2,1966.0,420.7,365.9,373.9,24,NG,Natural Gas Steam Turbine,OP,ST,4.0,1966.0,6,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8697409080104588,0.8887568338483479,SERC,MISO,LA,30.005067,-90.461694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275409371714986 -1402,Little Gypsy,3,1969.0,582.2,501.1,514.0,150,NG,Natural Gas Steam Turbine,OP,ST,3.0,1969.0,6,2029,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8607007901064926,0.8828581243558914,SERC,MISO,LA,30.005067,-90.461694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.484586245569961 -1403,Nine Mile Point,5,1973.0,895.1,740.9,745.8,190,NG,Natural Gas Steam Turbine,OP,ST,6.0,1973.0,6,2033,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8277287453915763,0.8332029940788738,SERC,MISO,LA,29.9472,-90.1458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.821481818116307 -1403,Nine Mile Point,6(4),1971.0,895.1,741.0,752.2,190,NG,Natural Gas Steam Turbine,OP,ST,5.0,1971.0,6,2031,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8278404647525416,0.8403530331806502,SERC,MISO,LA,29.9472,-90.1458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1403,Nine Mile Point,6A,2014.0,194.7,168.0,180.0,17,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8628659476117104,0.9244992295839753,SERC,MISO,LA,29.9472,-90.1458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.266929274188778 -1403,Nine Mile Point,6B,2014.0,194.7,168.0,180.0,17,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8628659476117104,0.9244992295839753,SERC,MISO,LA,29.9472,-90.1458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.36131505355563 -1403,Nine Mile Point,6C,2014.0,260.1,554.9,597.3,50,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,29.9472,-90.1458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1404,Sterlington,7A,1973.0,59.3,45.5,50.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7672849915682969,0.8431703204047218,SERC,MISO,LA,32.7047,-92.0792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1416,Arsenal Hill,5,1960.0,125.0,110.0,110.0,35,NG,Natural Gas Steam Turbine,OP,ST,3.0,1960.0,12,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.88,0.88,MRO,SWPP,LA,32.5181,-93.7611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1417,Lieberman,3,1957.0,114.0,100.0,100.0,35,NG,Natural Gas Steam Turbine,OP,ST,6.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8771929824561404,0.8771929824561404,MRO,SWPP,LA,32.7047,-93.9597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.788680945110869 -1417,Lieberman,4,1959.0,114.0,108.0,108.0,35,NG,Natural Gas Steam Turbine,OP,ST,5.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9473684210526316,0.9473684210526316,MRO,SWPP,LA,32.7047,-93.9597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.903206915377616 -1439,Houma,14,1967.0,12.6,10.0,10.0,3.9,NG,Natural Gas Steam Turbine,OP,ST,8.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7936507936507937,0.7936507936507937,SERC,MISO,LA,29.5806,-90.7225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1439,Houma,15,1972.0,25.5,23.5,23.5,8,NG,Natural Gas Steam Turbine,OP,ST,8.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9215686274509804,0.9215686274509804,SERC,MISO,LA,29.5806,-90.7225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1439,Houma,16,1977.0,40.8,34.0,34.0,9,NG,Natural Gas Steam Turbine,OP,ST,1.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,SERC,MISO,LA,29.5806,-90.7225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1453,New Roads,1,1965.0,2.3,1.8,1.8,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7826086956521741,0.7826086956521741,SERC,MISO,LA,30.726111,-91.368333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1453,New Roads,2,1953.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,LA,30.726111,-91.368333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1453,New Roads,3,1957.0,1.1,0.7,0.7,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6363636363636362,0.6363636363636362,SERC,MISO,LA,30.726111,-91.368333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1453,New Roads,4,1957.0,1.7,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7058823529411764,0.7058823529411764,SERC,MISO,LA,30.726111,-91.368333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1453,New Roads,5,1951.0,1.7,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7058823529411764,0.7058823529411764,SERC,MISO,LA,30.726111,-91.368333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1453,New Roads,6,1971.0,2.0,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,SERC,MISO,LA,30.726111,-91.368333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1456,Rayne,8,1969.0,4.1,3.4,3.4,0.2,DFO,Petroleum Liquids,OS,IC,1.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8292682926829269,0.8292682926829269,SERC,MISO,LA,30.234627,-92.272174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1456,Rayne,9,1969.0,4.1,3.6,3.6,0.2,DFO,Petroleum Liquids,OS,IC,6.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.878048780487805,0.878048780487805,SERC,MISO,LA,30.234627,-92.272174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1464,Big Cajun 1,1,1972.0,113.6,85.6,85.6,35,NG,Natural Gas Steam Turbine,OP,ST,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7535211267605634,0.7535211267605634,SERC,MISO,LA,30.6739,-91.3556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1464,Big Cajun 1,2,1972.0,113.6,89.6,89.6,35,NG,Natural Gas Steam Turbine,OP,ST,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7887323943661971,0.7887323943661971,SERC,MISO,LA,30.6739,-91.3556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1464,Big Cajun 1,3,2001.0,132.8,97.1,97.1,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7311746987951806,0.7311746987951806,SERC,MISO,LA,30.6739,-91.3556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1464,Big Cajun 1,4,2001.0,132.8,97.7,97.7,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7356927710843373,0.7356927710843373,SERC,MISO,LA,30.6739,-91.3556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1469,Ellsworth Hydro Station,EL01,1924.0,2.5,2.6,2.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5442,-68.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1469,Ellsworth Hydro Station,EL02,1938.0,2.0,2.1,2.0,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5442,-68.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1469,Ellsworth Hydro Station,EL03,1938.0,2.0,2.1,2.0,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5442,-68.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1469,Ellsworth Hydro Station,EL04,1924.0,2.4,2.5,2.4,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5442,-68.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1475,Milford Hydro Station,MF01,2011.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.942064,-68.64504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1475,Milford Hydro Station,MF02,2011.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.942064,-68.64504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1475,Milford Hydro Station,MF03,1956.0,1.6,1.6,1.6,1.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.942064,-68.64504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1475,Milford Hydro Station,MF04,1946.0,1.6,1.6,1.6,0.8,WAT,Conventional Hydroelectric,OP,HY,7.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.942064,-68.64504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1475,Milford Hydro Station,MF05,1941.0,1.6,1.6,1.6,0.7,WAT,Conventional Hydroelectric,OP,HY,7.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.942064,-68.64504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1475,Milford Hydro Station,MF06,1942.0,1.6,1.6,1.6,0.7,WAT,Conventional Hydroelectric,OP,HY,7.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.942064,-68.64504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1478,Stillwater Hydro Station,SW01,1913.0,0.4,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9094,-68.6833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1478,Stillwater Hydro Station,SW02,1913.0,0.4,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9094,-68.6833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1478,Stillwater Hydro Station,SW03,1916.0,0.4,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9094,-68.6833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1478,Stillwater Hydro Station,SW04,1929.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9094,-68.6833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1482,Bonny Eagle,1,1910.0,1.2,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.687688,-70.611553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1482,Bonny Eagle,2,1910.0,1.2,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.687688,-70.611553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1482,Bonny Eagle,3,1910.0,1.2,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.687688,-70.611553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1482,Bonny Eagle,4,1910.0,1.2,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.687688,-70.611553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1482,Bonny Eagle,5,1910.0,1.2,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.687688,-70.611553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1482,Bonny Eagle,6,1910.0,1.2,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.687688,-70.611553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1483,Brunswick Hydro,B1,1982.0,12.6,13.0,13.0,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.920486,-69.967819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1483,Brunswick Hydro,B2,1983.0,3.5,3.5,3.5,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.920486,-69.967819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1483,Brunswick Hydro,B3,1983.0,3.5,3.5,3.5,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.920486,-69.967819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1484,Cape Gas Turbine,GT4,1970.0,17.5,16.0,20.0,2,DFO,Petroleum Liquids,OP,GT,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9142857142857143,1.0,NPCC,ISNE,ME,43.6436,-70.2544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.729537366548044 -1484,Cape Gas Turbine,GT5,1970.0,17.5,16.0,20.0,2,DFO,Petroleum Liquids,OP,GT,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9142857142857143,1.0,NPCC,ISNE,ME,43.6436,-70.2544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.729537366548044 -1486,Cataract Hydro,1,1937.0,6.6,8.0,8.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.4956,-70.4472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR1,1903.0,0.6,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR2,1903.0,0.6,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR3,1906.0,0.9,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR4,1911.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR5,1913.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR6,1919.0,1.8,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1488,Deer Rips,DR7,1924.0,1.0,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,ISNE,ME,44.134572,-70.203715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1491,Gulf Island,GI1,1926.0,6.4,7.2,7.2,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.152854,-70.209378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1491,Gulf Island,GI2,1926.0,6.4,8.1,8.1,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.152854,-70.209378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1491,Gulf Island,GI3,1926.0,6.4,7.9,7.9,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.152854,-70.209378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1492,Harris Hydro,HA1,1954.0,15.0,16.8,16.8,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.4592,-69.8658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1492,Harris Hydro,HA2,1954.0,30.0,35.0,34.9,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.4592,-69.8658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1492,Harris Hydro,HA3,1955.0,30.0,34.2,34.2,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.4592,-69.8658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1492,Harris Hydro,HA4,1955.0,1.4,1.4,1.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.4592,-69.8658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1493,Hiram,1,1917.0,2.4,3.1,3.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.8525,-70.7969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1493,Hiram,2,1985.0,8.1,8.5,8.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.8525,-70.7969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1497,Messalonskee 2 (Oakland),1,1924.0,2.8,2.8,2.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.548544,-69.710404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1498,Messalonskee 3,1,1918.0,1.6,1.6,1.6,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.569872,-69.681841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1500,Messalonskee 5,1,1935.0,1.8,1.8,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.534397,-69.652232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1501,North Gorham,1,1925.0,1.1,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,NPCC,ISNE,ME,43.802517,-70.44992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1501,North Gorham,2,1925.0,1.1,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,NPCC,ISNE,ME,43.802517,-70.44992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH1,1913.0,0.7,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH2,1913.0,0.7,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH3,1913.0,0.7,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH4,1913.0,0.7,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH5,1913.0,0.7,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH6,1921.0,0.9,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH7,1982.0,2.2,1.9,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8636363636363635,0.8636363636363635,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1504,Shawmut,SH8,1982.0,2.2,1.9,1.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8636363636363635,0.8636363636363635,NPCC,ISNE,ME,44.629517,-69.583527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1505,Skelton,1,1948.0,8.4,10.8,10.8,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.5708,-70.5583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1505,Skelton,2,1948.0,8.4,10.8,10.8,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.5708,-70.5583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1507,William F Wyman Hybrid,1,1957.0,50.0,50.1,49.5,10,RFO,Petroleum Liquids,OP,ST,1.0,1957.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.99,NPCC,ISNE,ME,43.7508,-70.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1507,William F Wyman Hybrid,2,1958.0,50.0,47.8,52.8,10,RFO,Petroleum Liquids,OP,ST,1.0,1958.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.956,1.0,NPCC,ISNE,ME,43.7508,-70.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1507,William F Wyman Hybrid,3,1965.0,113.6,110.9,113.8,30,RFO,Petroleum Liquids,OP,ST,1.0,1965.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9762323943661972,1.0,NPCC,ISNE,ME,43.7508,-70.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.189518663150421 -1507,William F Wyman Hybrid,4,1978.0,632.4,602.1,605.8,60,RFO,Petroleum Liquids,OP,ST,1.0,1978.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9520872865275143,0.9579380139152435,NPCC,ISNE,ME,43.7508,-70.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.75784237064475 -1507,William F Wyman Hybrid,BESS,2016.0,16.7,16.2,16.2,0,MWH,Batteries,OP,BA,12.0,2016.0, , ,10.9,16.7,16.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9700598802395209,0.9700598802395209,NPCC,ISNE,ME,43.7508,-70.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1508,West Buxton,WB1,1982.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.66687,-70.602125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1508,West Buxton,WB2,1982.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.66687,-70.602125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1508,West Buxton,WB3,1920.0,1.1,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.66687,-70.602125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1508,West Buxton,WB4,1907.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.66687,-70.602125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1508,West Buxton,WB5,1904.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.66687,-70.602125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1508,West Buxton,WB6,1927.0,4.0,4.0,4.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.66687,-70.602125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1509,Weston Hydro,WE1,1921.0,3.0,3.3,3.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.763875,-69.71828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1509,Weston Hydro,WE2,1920.0,3.0,3.3,3.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.763875,-69.71828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1509,Weston Hydro,WE3,1921.0,3.0,3.3,3.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.763875,-69.71828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1509,Weston Hydro,WE4,1923.0,3.0,3.3,3.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.763875,-69.71828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1510,Williams Hydro,WI1,1939.0,7.0,8.2,8.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9589,-69.8703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1510,Williams Hydro,WI2,1950.0,6.0,6.7,6.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9589,-69.8703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1511,Wyman Hydro,WY1,1930.0,24.0,29.4,29.4,8,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.0703,-69.9064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1511,Wyman Hydro,WY2,1931.0,24.0,29.9,29.9,23,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.0703,-69.9064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1511,Wyman Hydro,WY3,1940.0,24.0,29.2,29.2,8,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.0703,-69.9064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1516,Squa Pan Hydro Station,SP1,1941.0,1.5,1.4,1.4,1,WAT,Conventional Hydroelectric,SB,HY,12.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,NPCC,NBSO,ME,46.556477,-68.325538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1554,Herbert A Wagner,1,1956.0,132.8,126.0,126.0,40,DFO,Petroleum Liquids,OP,ST,2.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9487951807228915,0.9487951807228915,RFC,PJM,MD,39.1781,-76.5268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.896913872989916 -1554,Herbert A Wagner,3,1966.0,359.0,305.0,305.0,105,BIT,Conventional Steam Coal,OP,ST,8.0,1966.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8495821727019499,0.8495821727019499,RFC,PJM,MD,39.1781,-76.5268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.719019910722887 -1554,Herbert A Wagner,4,1972.0,414.7,397.0,397.0,60,DFO,Petroleum Liquids,OP,ST,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9573185435254401,0.9573185435254401,RFC,PJM,MD,39.1781,-76.5268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.031927491141648 -1554,Herbert A Wagner,GT1,1967.0,16.0,12.9,12.9,2,DFO,Petroleum Liquids,OP,GT,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.80625,0.80625,RFC,PJM,MD,39.1781,-76.5268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1556,Perryman,GT1,1972.0,53.1,52.0,52.0,5,DFO,Petroleum Liquids,OP,GT,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9792843691148776,0.9792843691148776,RFC,PJM,MD,39.442836,-76.221761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1556,Perryman,GT3,1972.0,53.1,51.0,51.0,5,DFO,Petroleum Liquids,OP,GT,4.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.96045197740113,0.96045197740113,RFC,PJM,MD,39.442836,-76.221761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1556,Perryman,GT4,1972.0,53.1,52.0,52.0,5,DFO,Petroleum Liquids,OP,GT,4.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9792843691148776,0.9792843691148776,RFC,PJM,MD,39.442836,-76.221761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1556,Perryman,GT5,1995.0,192.0,139.0,149.0,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7239583333333333,0.7760416666666666,RFC,PJM,MD,39.442836,-76.221761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1556,Perryman,GT6,2015.0,141.0,109.8,120.0,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7787234042553192,0.851063829787234,RFC,PJM,MD,39.442836,-76.221761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1557,Philadelphia,GT1,1970.0,20.7,15.3,16.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7391304347826088,0.7729468599033816,RFC,PJM,MD,39.2986,-76.5636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.418964865885908 -1557,Philadelphia,GT2,1970.0,20.7,16.0,16.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7729468599033816,0.7729468599033816,RFC,PJM,MD,39.2986,-76.5636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.418964865885908 -1557,Philadelphia,GT3,1970.0,20.7,14.8,16.0,3,DFO,Petroleum Liquids,OP,GT,9.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7149758454106281,0.7729468599033816,RFC,PJM,MD,39.2986,-76.5636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.418964865885908 -1557,Philadelphia,GT4,1970.0,20.7,14.8,16.0,3,DFO,Petroleum Liquids,OP,GT,9.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7149758454106281,0.7729468599033816,RFC,PJM,MD,39.2986,-76.5636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.418964865885908 -1563,Crisfield,CRIS,1968.0,2.9,2.6,2.6,2,DFO,Petroleum Liquids,SB,IC,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.896551724137931,0.896551724137931,RFC,PJM,MD,37.994134,-75.837679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.268243785084202 -1563,Crisfield,CRS2,1968.0,2.9,2.6,2.6,2,DFO,Petroleum Liquids,SB,IC,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.896551724137931,0.896551724137931,RFC,PJM,MD,37.994134,-75.837679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.268243785084202 -1563,Crisfield,CRS3,1968.0,2.9,2.6,2.6,2,DFO,Petroleum Liquids,SB,IC,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.896551724137931,0.896551724137931,RFC,PJM,MD,37.994134,-75.837679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.268243785084202 -1563,Crisfield,CRS4,1968.0,2.9,2.6,2.6,2,DFO,Petroleum Liquids,SB,IC,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.896551724137931,0.896551724137931,RFC,PJM,MD,37.994134,-75.837679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.268243785084202 -1564,Vienna Operations,10,1968.0,18.6,14.3,14.3,14,DFO,Petroleum Liquids,OP,GT,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7688172043010753,0.7688172043010753,RFC,PJM,MD,38.4878,-75.8208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1564,Vienna Operations,8,1972.0,162.0,153.0,153.0,55,RFO,Petroleum Liquids,OP,ST,1.0,1972.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9444444444444444,RFC,PJM,MD,38.4878,-75.8208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.98859076433121 -1567,Deep Creek,1,1925.0,10.0,9.0,9.0,5,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,RFC,PJM,MD,39.523,-79.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1567,Deep Creek,2,1925.0,10.0,9.0,9.0,5,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,RFC,PJM,MD,39.523,-79.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1571,Chalk Point Power,3,1975.0,659.0,595.0,614.0,582,NG,Natural Gas Steam Turbine,OP,ST,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9028831562974203,0.9317147192716236,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.551017425096235 -1571,Chalk Point Power,4,1981.0,659.0,585.3,598.2,582,NG,Natural Gas Steam Turbine,OP,ST,12.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8881638846737481,0.9077389984825494,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.09903143545092 -1571,Chalk Point Power,GT2,1974.0,35.0,24.0,26.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6857142857142857,0.7428571428571429,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.9487945829594584 -1571,Chalk Point Power,GT3,1991.0,103.0,86.0,100.0,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8349514563106796,0.970873786407767,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1571,Chalk Point Power,GT4,1991.0,103.0,86.0,100.0,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8349514563106796,0.970873786407767,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1571,Chalk Point Power,GT5,1991.0,125.0,109.0,123.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.872,0.984,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1571,Chalk Point Power,GT6,1991.0,125.0,109.0,126.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.872,1.0,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1572,Dickerson Power,GT2,1992.0,163.0,147.0,167.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.901840490797546,1.0,RFC,PJM,MD,39.2097,-77.4644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.293513632409788 -1572,Dickerson Power,GT3,1992.0,163.0,147.0,167.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.901840490797546,1.0,RFC,PJM,MD,39.2097,-77.4644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.919453390260475 -1573,Morgantown Generating Plant,3,1973.0,65.0,54.0,59.0,20,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8307692307692307,0.9076923076923077,RFC,PJM,MD,38.3592,-76.9767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1573,Morgantown Generating Plant,4,1973.0,65.0,54.0,59.0,20,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8307692307692307,0.9076923076923077,RFC,PJM,MD,38.3592,-76.9767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1573,Morgantown Generating Plant,5,1973.0,65.0,54.0,59.0,20,DFO,Petroleum Liquids,OP,GT,5.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8307692307692307,0.9076923076923077,RFC,PJM,MD,38.3592,-76.9767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1573,Morgantown Generating Plant,6,1973.0,65.0,54.0,59.0,20,DFO,Petroleum Liquids,OP,GT,5.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8307692307692307,0.9076923076923077,RFC,PJM,MD,38.3592,-76.9767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,1,1928.0,45.0,48.0,48.0,5,WAT,Conventional Hydroelectric,OP,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,10,1964.0,55.6,65.0,65.0,30,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,11,1964.0,55.6,65.0,65.0,30,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,2,1928.0,36.0,36.0,36.0,5,WAT,Conventional Hydroelectric,OP,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,3,1928.0,48.0,48.0,48.0,5,WAT,Conventional Hydroelectric,OP,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,4,1928.0,47.7,48.0,48.0,5,WAT,Conventional Hydroelectric,OP,HY,4.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,5,1928.0,36.0,36.0,36.0,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,6,1928.0,47.7,48.0,48.0,5,WAT,Conventional Hydroelectric,OP,HY,7.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,7,1928.0,48.0,48.0,48.0,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,8,1964.0,55.6,65.0,65.0,30,WAT,Conventional Hydroelectric,OP,HY,3.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1574,Conowingo,9,1964.0,55.6,65.0,65.0,30,WAT,Conventional Hydroelectric,OP,HY,3.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MD,39.6572,-76.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1580,Easton,10,1966.0,3.5,3.5,3.5,0,DFO,Petroleum Liquids,OP,IC,5.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269721004599022 -1580,Easton,101,1995.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,OP,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269722501676727 -1580,Easton,102,1995.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,OP,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269722501676727 -1580,Easton,11,1968.0,3.8,3.6,3.6,0,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269712212657348 -1580,Easton,12,1970.0,4.1,4.1,4.1,0,DFO,Petroleum Liquids,OP,IC,7.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.26970279036599 -1580,Easton,13,1973.0,5.6,5.6,5.6,0,DFO,Petroleum Liquids,OP,IC,7.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269708070175438 -1580,Easton,14,1973.0,5.6,5.6,5.6,0,DFO,Petroleum Liquids,OP,IC,7.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269708070175438 -1580,Easton,7,1954.0,2.5,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,11.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269721453722335 -1580,Easton,8,1957.0,2.5,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,5.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269721453722335 -1580,Easton,9,1961.0,3.0,2.5,2.5,0,DFO,Petroleum Liquids,OP,IC,12.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,PJM,MD,38.7786,-76.0769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.269722501676727 -1586,Exelon Framingham LLC,GT1,1970.0,14.2,10.1,14.2,5,DFO,Petroleum Liquids,OP,GT,3.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7112676056338028,1.0,NPCC,ISNE,MA,42.2672,-71.3983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1586,Exelon Framingham LLC,GT2,1969.0,14.2,9.8,14.7,5,DFO,Petroleum Liquids,OP,GT,9.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6901408450704226,1.0,NPCC,ISNE,MA,42.2672,-71.3983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1586,Exelon Framingham LLC,GT3,1969.0,14.2,10.7,15.3,5,DFO,Petroleum Liquids,OP,GT,9.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7535211267605634,1.0,NPCC,ISNE,MA,42.2672,-71.3983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1588,Mystic Generating Station,GT81,2003.0,278.6,228.8,268.1,140,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0,6,2024,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8212491026561378,0.9623115577889447,NPCC,ISNE,MA,42.3908,-71.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1588,Mystic Generating Station,GT82,2003.0,278.6,230.0,270.6,140,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0,6,2024,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8255563531945441,0.9712849964106246,NPCC,ISNE,MA,42.3908,-71.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1588,Mystic Generating Station,GT93,2003.0,278.6,231.1,275.8,140,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0,6,2024,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8295046661880832,0.9899497487437185,NPCC,ISNE,MA,42.3908,-71.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1588,Mystic Generating Station,GT94,2003.0,278.6,232.2,275.4,140,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0,6,2024,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8334529791816223,0.9885139985642497,NPCC,ISNE,MA,42.3908,-71.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1588,Mystic Generating Station,ST85,2003.0,315.0,244.6,300.8,75,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0,6,2024,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7765079365079365,0.954920634920635,NPCC,ISNE,MA,42.3908,-71.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1588,Mystic Generating Station,ST96,2003.0,315.0,246.7,300.8,75,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0,6,2024,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7831746031746032,0.954920634920635,NPCC,ISNE,MA,42.3908,-71.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1592,Exelon Medway LLC,GT1,1970.0,45.0,42.0,64.0,20,DFO,Petroleum Liquids,OP,GT,7.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9333333333333333,1.0,NPCC,ISNE,MA,42.140028,-71.446441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1592,Exelon Medway LLC,GT2,1971.0,45.0,39.8,61.6,20,DFO,Petroleum Liquids,OP,GT,3.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8844444444444444,1.0,NPCC,ISNE,MA,42.140028,-71.446441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1592,Exelon Medway LLC,GT3,1970.0,45.0,42.0,62.4,20,DFO,Petroleum Liquids,OP,GT,7.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9333333333333333,1.0,NPCC,ISNE,MA,42.140028,-71.446441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1595,Kendall Square Station,3,1958.0,27.2,22.9,22.9,14,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1958.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8419117647058824,0.8419117647058824,NPCC,ISNE,MA,42.3633,-71.0792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1595,Kendall Square Station,GEN4,2002.0,186.2,183.1,187.4,90,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9833512352309345,1.0,NPCC,ISNE,MA,42.3633,-71.0792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1595,Kendall Square Station,JET1,1970.0,21.3,18.0,23.0,14,DFO,Petroleum Liquids,OP,GT,9.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8450704225352113,1.0,NPCC,ISNE,MA,42.3633,-71.0792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1597,Oak Bluffs Diesel Generating Facility,UN1,1969.0,2.7,2.8,2.8,2,DFO,Petroleum Liquids,OP,IC,1.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.425786,-70.608273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.490939044481054 -1597,Oak Bluffs Diesel Generating Facility,UN2,1969.0,2.7,2.8,2.8,2,DFO,Petroleum Liquids,OP,IC,1.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.425786,-70.608273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.490939044481054 -1597,Oak Bluffs Diesel Generating Facility,UN3,1972.0,2.7,2.8,2.8,2,DFO,Petroleum Liquids,OP,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.425786,-70.608273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.490939044481054 -1599,Canal,1,1968.0,585.0,560.0,567.0,200,RFO,Petroleum Liquids,OP,ST,6.0,1968.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9572649572649573,0.9692307692307692,NPCC,ISNE,MA,41.7694,-70.5097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.324786034973005 -1599,Canal,2,1976.0,580.0,558.8,562.0,170,RFO,Petroleum Liquids,OP,ST,1.0,1976.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9634482758620689,0.9689655172413794,NPCC,ISNE,MA,41.7694,-70.5097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.325072229268475 -1599,Canal,3,2019.0,330.0,330.0,367.7,103,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,MA,41.7694,-70.5097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.164385488585548 -1603,Boatlock,1,1921.0,0.7,0.7,0.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.2086,-72.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1603,Boatlock,2,1924.0,1.2,1.5,1.5,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.2086,-72.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1603,Boatlock,3,1924.0,1.2,1.2,1.2,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.2086,-72.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1604,Chemical,1,1935.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.1919,-72.6097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1604,Chemical,2,1935.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.1919,-72.6097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1605,Hadley Falls,1,1952.0,17.6,18.1,18.1,5,WAT,Conventional Hydroelectric,OP,HY,1.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.2119,-72.6036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1605,Hadley Falls,2,1983.0,15.8,15.0,15.0,10,WAT,Conventional Hydroelectric,OP,HY,11.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9493670886075949,0.9493670886075949,NPCC,ISNE,MA,42.2119,-72.6036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1607,Riverside Holyoke,4,1906.0,0.8,0.8,0.8,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.200592,-72.594432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1607,Riverside Holyoke,5,1906.0,0.6,0.6,0.6,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.200592,-72.594432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1607,Riverside Holyoke,7,1922.0,1.5,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.200592,-72.594432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1607,Riverside Holyoke,8,1931.0,4.0,4.0,4.0,2.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.200592,-72.594432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1615,Nantucket Hybrid,18,2019.0,15.4,13.5,15.4,7.3,DFO,Petroleum Liquids,OP,GT,8.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8766233766233766,1.0,NPCC,ISNE,MA,41.2583,-70.0517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1615,Nantucket Hybrid,19,2019.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.2583,-70.0517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1615,Nantucket Hybrid,20,2019.0,6.0,6.0,6.0,0.1,MWH,Batteries,OP,BA,7.0,2019.0, , ,48.0,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.2583,-70.0517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1620,Deerfield 5,GEN1,1974.0,17.5,13.9,13.9,6.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7942857142857143,0.7942857142857143,NPCC,ISNE,MA,42.69118,-72.9561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1629,Cabot,1,1915.0,10.3,10.3,10.3,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5875,-72.5793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1629,Cabot,2,1915.0,10.3,10.3,10.3,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5875,-72.5793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1629,Cabot,3,1916.0,10.3,10.3,10.3,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5875,-72.5793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1629,Cabot,4,1916.0,10.3,10.3,10.3,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5875,-72.5793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1629,Cabot,5,1917.0,10.3,10.3,10.3,9,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5875,-72.5793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1629,Cabot,6,1917.0,10.3,10.3,10.3,9,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5875,-72.5793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1630,Cobble Mountain,1,1930.0,13.0,12.9,13.0,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9923076923076923,1.0,NPCC,ISNE,MA,42.117112,-72.864663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1630,Cobble Mountain,2,1930.0,7.0,6.8,6.9,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9714285714285714,0.9857142857142858,NPCC,ISNE,MA,42.117112,-72.864663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1630,Cobble Mountain,3,1930.0,13.0,12.9,13.0,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9923076923076923,1.0,NPCC,ISNE,MA,42.117112,-72.864663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1634,Gardners Falls,GF2,1964.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OA,HY,1.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5914,-72.7308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1634,Gardners Falls,GF3,1914.0,0.9,0.9,0.9,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5914,-72.7308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1634,Gardners Falls,GF4,1914.0,0.9,0.9,0.9,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5914,-72.7308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1634,Gardners Falls,GF5,1925.0,1.3,1.3,1.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5914,-72.7308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1637,Putts Bridge,PB2,1918.0,1.6,1.6,1.6,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.157896,-72.48643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1637,Putts Bridge,PB3,1918.0,1.6,1.6,1.6,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.157896,-72.48643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1638,Redbridge,RB3,1934.0,1.8,1.8,1.8,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1934.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.176047,-72.409521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1638,Redbridge,RB4,1926.0,1.8,1.8,1.8,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.176047,-72.409521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1660,Potter Station 2,CC2,1977.0,76.0,62.6,77.6,37,NG,Natural Gas Fired Combined Cycle,OS,CT,4.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8236842105263158,1.0,NPCC,ISNE,MA,42.235,-70.9672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1660,Potter Station 2,CC3,1977.0,25.0,15.5,18.5,8,NG,Natural Gas Fired Combined Cycle,OS,CA,4.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.62,0.74,NPCC,ISNE,MA,42.235,-70.9672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1660,Potter Station 2,WAT1,2009.0,58.0,52.6,57.4,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.906896551724138,0.9896551724137931,NPCC,ISNE,MA,42.235,-70.9672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1660,Potter Station 2,WAT2,2009.0,58.0,52.6,57.4,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.906896551724138,0.9896551724137931,NPCC,ISNE,MA,42.235,-70.9672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1670,High Street Station,1,1986.0,1.2,1.2,1.3,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201995926680244 -1670,High Street Station,10,1984.0,1.2,1.2,1.3,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201995926680244 -1670,High Street Station,11,1982.0,1.2,1.2,1.1,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.9166666666666667,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201995926680244 -1670,High Street Station,12,1983.0,1.2,1.2,1.3,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201995926680244 -1670,High Street Station,2,1954.0,1.3,1.3,1.3,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201947661302452 -1670,High Street Station,6,1951.0,1.1,1.2,1.2,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.20159964452344 -1670,High Street Station,7,1956.0,1.3,1.3,1.4,0.7,DFO,Petroleum Liquids,OP,IC,9.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201947661302452 -1670,High Street Station,8,1960.0,1.1,1.1,1.1,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.20159964452344 -1670,High Street Station,9,1961.0,1.3,1.3,1.3,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.6986,-70.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201947661302452 -1678,Waters River,1,1971.0,21.3,16.0,22.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1971.0,6,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7511737089201878,1.0,NPCC,ISNE,MA,42.542949,-70.928314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.473608063466036 -1678,Waters River,2,1990.0,43.6,30.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6880733944954128,1.0,NPCC,ISNE,MA,42.542949,-70.928314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.085511668178444 -1682,Cleary Flood Hybrid,9A,1976.0,23.0,18.0,21.4,3,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.782608695652174,0.9304347826086956,NPCC,ISNE,MA,41.8653,-71.1061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1682,Cleary Flood Hybrid,BS1,2020.0,3.0,2.9,3.0,0.1,MWH,Batteries,OP,BA,3.0,2020.0, , ,6.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9666666666666667,1.0,NPCC,ISNE,MA,41.8653,-71.1061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1682,Cleary Flood Hybrid,CA9,1975.0,95.0,85.0,87.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1975.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8947368421052632,0.9157894736842105,NPCC,ISNE,MA,41.8653,-71.1061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1693,Alcona,1,1924.0,4.0,1.4,1.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.35,0.375,RFC,MISO,MI,44.561961,-83.804505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1693,Alcona,2,1924.0,4.0,1.4,1.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.35,0.375,RFC,MISO,MI,44.561961,-83.804505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1694,Allegan Dam,1,1935.0,0.5,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,RFC,MISO,MI,42.563803,-85.953976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1694,Allegan Dam,2,1935.0,0.9,0.5,0.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.6666666666666666,RFC,MISO,MI,42.563803,-85.953976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1694,Allegan Dam,3,1945.0,1.2,0.6,0.7,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5833333333333333,RFC,MISO,MI,42.563803,-85.953976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1698,C W Tippy,1,1918.0,6.7,2.1,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.31343283582089554,0.32835820895522394,RFC,MISO,MI,44.259135,-85.939565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1698,C W Tippy,2,1918.0,6.7,2.1,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.31343283582089554,0.32835820895522394,RFC,MISO,MI,44.259135,-85.939565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1698,C W Tippy,3,1918.0,6.7,2.1,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.31343283582089554,0.32835820895522394,RFC,MISO,MI,44.259135,-85.939565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1700,Cooke,1,1911.0,3.0,1.6,1.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5333333333333334,0.5,RFC,MISO,MI,44.472624,-83.571947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1700,Cooke,2,1911.0,3.0,2.9,3.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,1.0,RFC,MISO,MI,44.472624,-83.571947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1700,Cooke,3,1911.0,3.0,2.8,2.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9666666666666667,RFC,MISO,MI,44.472624,-83.571947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1701,Croton,1,1907.0,3.0,1.2,1.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.5,RFC,MISO,MI,43.437322,-85.664462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1701,Croton,2,1907.0,3.0,1.2,1.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.5,RFC,MISO,MI,43.437322,-85.664462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1701,Croton,3,1915.0,1.4,0.5,0.7,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3571428571428572,0.5,RFC,MISO,MI,43.437322,-85.664462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1701,Croton,4,1912.0,1.5,0.6,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.5333333333333334,RFC,MISO,MI,43.437322,-85.664462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1702,Dan E Karn,1A,1959.0,136.0,127.5,127.5,70,SUB,Conventional Steam Coal,OP,ST,11.0,1959.0,5,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9375,0.9375,RFC,MISO,MI,43.644996,-83.840074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1702,Dan E Karn,1B,1959.0,136.0,127.5,127.5,70,SUB,Conventional Steam Coal,OP,ST,11.0,1959.0,5,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9375,0.9375,RFC,MISO,MI,43.644996,-83.840074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1702,Dan E Karn,2A,1961.0,136.0,117.1,117.1,65,SUB,Conventional Steam Coal,OP,ST,3.0,1961.0,5,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8610294117647058,0.8610294117647058,RFC,MISO,MI,43.644996,-83.840074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1702,Dan E Karn,2B,1961.0,136.0,117.1,117.1,65,SUB,Conventional Steam Coal,OP,ST,3.0,1961.0,5,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8610294117647058,0.8610294117647058,RFC,MISO,MI,43.644996,-83.840074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1702,Dan E Karn,3,1975.0,692.5,593.5,617.3,60,NG,Natural Gas Steam Turbine,OP,ST,1.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8570397111913357,0.891407942238267,RFC,MISO,MI,43.644996,-83.840074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.361554652629863 -1702,Dan E Karn,4,1977.0,709.8,606.3,629.5,60,NG,Natural Gas Steam Turbine,OP,ST,9.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8541842772612003,0.8868695407156946,RFC,MISO,MI,43.644996,-83.840074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.093462792111524 -1704,Five Channels,1,1912.0,3.0,3.0,3.1,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,44.455518,-83.676274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1704,Five Channels,2,1912.0,3.0,2.9,3.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,1.0,RFC,MISO,MI,44.455518,-83.676274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1705,Foote,1,1918.0,3.0,1.0,1.1,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.3666666666666667,RFC,MISO,MI,44.435381,-83.440722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1705,Foote,2,1918.0,3.0,1.0,1.1,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.3666666666666667,RFC,MISO,MI,44.435381,-83.440722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1705,Foote,3,1918.0,3.0,1.0,1.1,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.3666666666666667,RFC,MISO,MI,44.435381,-83.440722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1707,Hardy,1,1931.0,10.0,10.6,10.4,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,43.486618,-85.629866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1707,Hardy,2,1931.0,10.0,10.7,10.4,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,43.486618,-85.629866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1707,Hardy,3,1931.0,11.5,12.1,11.9,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,43.486618,-85.629866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1708,Hodenpyl,1,1925.0,8.5,2.1,2.4,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.24705882352941178,0.2823529411764706,RFC,MISO,MI,44.36286,-85.819968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1708,Hodenpyl,2,1925.0,8.5,2.1,2.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.24705882352941178,0.2823529411764706,RFC,MISO,MI,44.36286,-85.819968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1710,J H Campbell,1,1962.0,265.2,260.0,260.0,100,SUB,Conventional Steam Coal,OP,ST,10.0,1962.0,5,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9803921568627452,0.9803921568627452,RFC,MISO,MI,42.910296,-86.20074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.876727635629937 -1710,J H Campbell,2,1967.0,378.8,355.5,359.9,100,SUB,Conventional Steam Coal,OP,ST,7.0,1967.0,5,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9384899683210137,0.950105596620908,RFC,MISO,MI,42.910296,-86.20074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.6679260795219 -1710,J H Campbell,3,1980.0,916.8,784.6,785.3,350,SUB,Conventional Steam Coal,OP,ST,9.0,1980.0,5,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.855802792321117,0.856566317626527,RFC,MISO,MI,42.910296,-86.20074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.490872228836079 -1712,Loud,1,1913.0,2.0,2.4,2.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,44.4631,-83.7208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1712,Loud,2,1913.0,2.0,2.4,2.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,44.4631,-83.7208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1713,Ludington,1,1973.0,329.8,362.9,346.2,240,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,MISO,MI,43.8942,-86.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1713,Ludington,2,1973.0,329.8,363.3,346.1,240,WAT,Hydroelectric Pumped Storage,OP,PS,3.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,MISO,MI,43.8942,-86.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1713,Ludington,3,1973.0,329.8,363.7,348.0,240,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,MISO,MI,43.8942,-86.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1713,Ludington,4,1973.0,329.8,369.2,345.6,240,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,MISO,MI,43.8942,-86.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1713,Ludington,5,1973.0,329.8,363.0,346.2,240,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,MISO,MI,43.8942,-86.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1713,Ludington,6,1973.0,329.8,363.5,346.2,240,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,MISO,MI,43.8942,-86.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1714,Mio,1,1916.0,2.5,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.32000000000000006,0.32000000000000006,RFC,MISO,MI,44.661114,-84.131691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1714,Mio,2,1916.0,2.5,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.32000000000000006,0.32000000000000006,RFC,MISO,MI,44.661114,-84.131691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1716,Rogers,1,1922.0,1.7,0.6,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3529411764705882,0.47058823529411764,RFC,MISO,MI,43.613001,-85.479469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1716,Rogers,2,1922.0,1.7,0.6,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3529411764705882,0.47058823529411764,RFC,MISO,MI,43.613001,-85.479469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1716,Rogers,3,1922.0,1.7,0.6,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3529411764705882,0.47058823529411764,RFC,MISO,MI,43.613001,-85.479469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1716,Rogers,4,1922.0,1.7,0.6,0.8,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3529411764705882,0.47058823529411764,RFC,MISO,MI,43.613001,-85.479469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1722,Webber,1,1907.0,3.3,0.9,1.3,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2727272727272727,0.3939393939393939,RFC,MISO,MI,42.9528,-84.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1722,Webber,2,1949.0,1.0,0.3,0.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.30000000000000004,0.4,RFC,MISO,MI,42.9528,-84.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1725,Colfax,1,1969.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.658653,-84.095181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1725,Colfax,2,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.658653,-84.095181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1725,Colfax,3,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.658653,-84.095181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1725,Colfax,4,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.658653,-84.095181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1725,Colfax,5,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.658653,-84.095181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1728,Delray,11-1,2000.0,71.1,64.0,80.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9001406469760901,1.0,RFC,MISO,MI,42.2947,-83.1019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1728,Delray,12-1,2000.0,71.1,63.0,79.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8860759493670887,1.0,RFC,MISO,MI,42.2947,-83.1019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1729,Fermi,2,1988.0,1217.0,1141.0,1161.0,690,NUC,Nuclear,OP,ST,1.0,1988.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9375513557929335,0.9539852095316351,RFC,MISO,MI,41.9631,-83.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1729,Fermi,3,1966.0,16.0,13.0,19.0,4,DFO,Petroleum Liquids,OP,GT,4.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8125,1.0,RFC,MISO,MI,41.9631,-83.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.470842332613394 -1729,Fermi,4,1966.0,16.0,12.0,18.0,4,DFO,Petroleum Liquids,OP,GT,4.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,RFC,MISO,MI,41.9631,-83.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.470842332613394 -1729,Fermi,GT1,1966.0,16.0,13.0,19.0,4,DFO,Petroleum Liquids,OP,GT,4.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8125,1.0,RFC,MISO,MI,41.9631,-83.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.470842332613394 -1729,Fermi,GT2,1966.0,16.0,13.0,19.0,4,DFO,Petroleum Liquids,OP,GT,4.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8125,1.0,RFC,MISO,MI,41.9631,-83.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.470842332613394 -1730,Hancock,1,1967.0,19.0,11.0,18.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5789473684210527,0.9473684210526316,RFC,MISO,MI,42.5497,-83.4425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1730,Hancock,3,1967.0,19.0,17.0,22.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8947368421052632,1.0,RFC,MISO,MI,42.5497,-83.4425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1730,Hancock,5,1970.0,41.8,32.0,42.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7655502392344498,1.0,RFC,MISO,MI,42.5497,-83.4425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1730,Hancock,6,1966.0,41.8,33.0,42.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7894736842105263,1.0,RFC,MISO,MI,42.5497,-83.4425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1733,Monroe (MI),1,1971.0,817.2,758.0,758.0,280,SUB,Conventional Steam Coal,OP,ST,6.0,1971.0,12,2032,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9275575134605971,0.9275575134605971,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.491123423607764 -1733,Monroe (MI),2,1973.0,822.6,773.0,783.0,280,SUB,Conventional Steam Coal,OP,ST,3.0,1973.0,12,2032,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9397033795283248,0.9518599562363238,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.907144350285105 -1733,Monroe (MI),3,1973.0,822.6,773.0,783.0,280,SUB,Conventional Steam Coal,OP,ST,5.0,1973.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9397033795283248,0.9518599562363238,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.217519055285228 -1733,Monroe (MI),4,1974.0,817.2,762.0,762.0,280,SUB,Conventional Steam Coal,OP,ST,5.0,1974.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9324522760646108,0.9324522760646108,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.742436076012286 -1733,Monroe (MI),IC1,1969.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1733,Monroe (MI),IC2,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1733,Monroe (MI),IC3,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1733,Monroe (MI),IC4,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1733,Monroe (MI),IC5,1969.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.8906,-83.3464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1734,Northeast (MI),1,1967.0,16.0,15.0,20.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578060549456 -1734,Northeast (MI),2,1966.0,16.0,15.0,20.0,6.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578060549456 -1734,Northeast (MI),3,1966.0,16.0,14.0,20.0,6.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.875,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578060549456 -1734,Northeast (MI),4,1966.0,16.0,15.0,20.0,6.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578060549456 -1734,Northeast (MI),5,1971.0,23.4,18.0,24.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7692307692307693,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578368199194 -1734,Northeast (MI),6,1971.0,21.2,19.0,23.0,8,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8962264150943396,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578299170188 -1734,Northeast (MI),7,1971.0,21.2,20.0,23.0,8,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9433962264150944,1.0,RFC,MISO,MI,42.45,-83.0381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.440578299170188 -1735,Oliver,1,1970.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,43.8264,-83.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1735,Oliver,2,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.8264,-83.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1735,Oliver,3,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.8264,-83.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1735,Oliver,4,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.8264,-83.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1735,Oliver,5,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.8264,-83.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1737,Placid 12,1,1970.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.7106,-83.4569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.0 -1737,Placid 12,2,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7106,-83.4569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.0 -1737,Placid 12,3,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7106,-83.4569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.0 -1737,Placid 12,4,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7106,-83.4569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.0 -1737,Placid 12,5,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7106,-83.4569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.0 -1739,Putnam (MI),1,1971.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.7108,-83.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1739,Putnam (MI),2,1971.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7108,-83.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1739,Putnam (MI),3,1971.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7108,-83.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1739,Putnam (MI),4,1971.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7108,-83.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1739,Putnam (MI),5,1971.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7108,-83.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1740,River Rouge,IC1,1967.0,2.7,2.0,2.0,0.8,DFO,Petroleum Liquids,OP,IC,11.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.2739,-83.1119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1740,River Rouge,IC2,1967.0,2.7,3.0,3.0,0.8,DFO,Petroleum Liquids,OP,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2739,-83.1119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1740,River Rouge,IC3,1967.0,2.7,3.0,3.0,0.8,DFO,Petroleum Liquids,OP,IC,11.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2739,-83.1119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1740,River Rouge,IC4,1967.0,2.7,3.0,3.0,0.8,DFO,Petroleum Liquids,OP,IC,11.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2739,-83.1119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1741,Slocum,1,1968.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.1225,-83.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.410041841004185 -1741,Slocum,2,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.1225,-83.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.410041841004185 -1741,Slocum,3,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.1225,-83.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.410041841004185 -1741,Slocum,4,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.1225,-83.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.410041841004185 -1741,Slocum,5,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.1225,-83.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.410041841004185 -1743,St Clair,11,1968.0,18.5,19.0,23.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,MI,42.7642,-82.4719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1743,St Clair,12A,1970.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.7642,-82.4719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1743,St Clair,12B,1970.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7642,-82.4719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1744,Superior,1,1966.0,16.0,13.0,19.0,5,DFO,Petroleum Liquids,OP,GT,10.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8125,1.0,RFC,MISO,MI,42.2639,-83.6422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.43617021276596 -1744,Superior,2,1966.0,16.0,13.0,19.0,5,DFO,Petroleum Liquids,OP,GT,10.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8125,1.0,RFC,MISO,MI,42.2639,-83.6422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.43617021276596 -1744,Superior,3,1966.0,16.0,12.0,18.0,5,DFO,Petroleum Liquids,OP,GT,10.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,RFC,MISO,MI,42.2639,-83.6422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.43617021276596 -1744,Superior,4,1966.0,16.0,14.0,20.0,5,DFO,Petroleum Liquids,OP,GT,10.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.875,1.0,RFC,MISO,MI,42.2639,-83.6422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.43617021276596 -1746,Wilmot,1,1968.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,43.4566,-83.1889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.0261780104712 -1746,Wilmot,2,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4566,-83.1889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.0261780104712 -1746,Wilmot,3,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4566,-83.1889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.0261780104712 -1746,Wilmot,4,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4566,-83.1889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.0261780104712 -1746,Wilmot,5,1968.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4566,-83.1889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.0261780104712 -1750,Manistique,1,1960.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,45.955014,-86.256291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.626606802721088 -1750,Manistique,2,1972.0,2.8,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,45.955014,-86.256291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.62660576611597 -1751,Edison Sault,10,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,11,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,12,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,13,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,14,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,15,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,16,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,17,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,18,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,19,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,20,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,21,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,22,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,23,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,24,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,25,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,26,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,27,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,28,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,29,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,30,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,31,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,32,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,33,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,34,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,35,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,36,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,37,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,38,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,39,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,40,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,41,1901.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1901.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,42,1901.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1901.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,45,1916.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,46,1963.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,47,1963.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,48,1963.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,49,1963.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,50,1963.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,51,1963.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,52,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,53,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,54,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,55,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,56,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,57,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,58,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,59,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,6,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,60,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,61,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,62,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,63,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,64,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,65,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,66,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,67,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,68,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,69,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,7,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,70,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,71,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,72,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,73,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,74,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,75,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,76,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,77,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,78,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,79,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,8,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,80,1916.0,0.5,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.6,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1751,Edison Sault,9,1963.0,0.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.5,RFC,MISO,MI,46.4974,-84.332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,10,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,11,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,12,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,1A,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,2A,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,3A,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,4A,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,5,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,6,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,7,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,8,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1753,Berrien Springs,9,1996.0,0.6,0.4,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.33333333333333337,RFC,PJM,MI,41.9439,-86.3289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),1,1919.0,0.4,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),10,1927.0,0.5,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),2,1919.0,0.4,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),3,1919.0,0.4,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),4,1919.0,0.4,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),5,1919.0,0.4,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),6,1919.0,0.4,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),7,1927.0,0.5,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),8,1927.0,0.5,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1754,Buchanan (MI),9,1927.0,0.5,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,RFC,PJM,MI,41.839566,-86.35105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1756,Saxon Falls,1,1913.0,0.8,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0,12,2064,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,MRO,MISO,WI,46.5392,-90.3742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1756,Saxon Falls,2,1913.0,0.8,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0,12,2064,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.75,MRO,MISO,WI,46.5392,-90.3742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1757,Superior Falls,1,1917.0,0.7,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0,12,2064,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.8571428571428572,RFC,MISO,MI,46.564601,-90.416147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1757,Superior Falls,2,1917.0,0.7,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0,12,2064,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.8571428571428572,RFC,MISO,MI,46.564601,-90.416147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1760,Constantine,1,1923.0,0.3,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.6666666666666667,RFC,PJM,MI,41.8436,-85.6694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1760,Constantine,2,1923.0,0.3,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.6666666666666667,RFC,PJM,MI,41.8436,-85.6694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1760,Constantine,3,1929.0,0.3,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.6666666666666667,RFC,PJM,MI,41.8436,-85.6694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1760,Constantine,4,1923.0,0.3,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.6666666666666667,RFC,PJM,MI,41.8436,-85.6694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1761,Mottville,1,1923.0,0.4,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2499999999999999,0.5,RFC,PJM,MI,41.8056,-85.7505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1761,Mottville,2,1923.0,0.4,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2499999999999999,0.5,RFC,PJM,MI,41.8056,-85.7505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1761,Mottville,3,1923.0,0.4,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2499999999999999,0.5,RFC,PJM,MI,41.8056,-85.7505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1761,Mottville,4,1923.0,0.4,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2499999999999999,0.5,RFC,PJM,MI,41.8056,-85.7505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1772,John H Warden,1,1959.0,22.0,17.7,17.7,6,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1959.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8045454545454545,0.8045454545454545,RFC,MISO,MI,46.7553,-88.4558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.920603670640187 -1773,Prickett,1,1931.0,1.1,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.36363636363636365,0.36363636363636365,RFC,MISO,MI,46.7261,-88.6625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1773,Prickett,2,1931.0,1.1,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.36363636363636365,0.36363636363636365,RFC,MISO,MI,46.7261,-88.6625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1774,Victoria Dam,1,1931.0,6.0,5.9,5.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833333333333334,0.9833333333333334,RFC,MISO,MI,46.6964,-89.2089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1774,Victoria Dam,2,1931.0,6.0,5.9,5.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9833333333333334,0.9833333333333334,RFC,MISO,MI,46.6964,-89.2089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1775,Brule,1,1919.0,1.3,1.3,1.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.9472,-88.2189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1775,Brule,2,1919.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.9472,-88.2189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1775,Brule,3,1921.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.9472,-88.2189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1776,Chalk Hill,1,1927.0,2.6,2.6,2.6,0.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.5136,-87.8011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1776,Chalk Hill,2,1927.0,2.6,2.6,2.6,0.7,WAT,Conventional Hydroelectric,OP,HY,5.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.5136,-87.8011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1776,Chalk Hill,3,1927.0,2.6,2.6,2.6,1.7,WAT,Conventional Hydroelectric,OP,HY,5.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.5136,-87.8011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1777,Hemlock Falls,1,1953.0,2.8,2.8,2.8,0.4,WAT,Conventional Hydroelectric,OP,HY,8.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.1311,-88.225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1778,Kingsford,1,1924.0,2.4,2.4,2.4,0.9,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.807956,-88.125121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1778,Kingsford,2,1924.0,2.4,2.4,2.4,0.9,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.807956,-88.125121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1778,Kingsford,3,1924.0,2.4,2.4,2.4,0.9,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.807956,-88.125121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1780,Michigamme Falls,1,1953.0,4.8,4.8,4.8,0.6,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.9553,-88.1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1780,Michigamme Falls,2,1953.0,4.8,4.8,4.8,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.9553,-88.1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1781,Peavy Falls,1,1943.0,6.0,6.0,6.0,5.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.990781,-88.210514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1781,Peavy Falls,2,1943.0,6.0,6.0,6.0,5.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.990781,-88.210514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1785,Way Dam,1,1949.0,1.8,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.1592,-88.2353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1786,White Rapids,1,1927.0,3.0,2.6,2.6,1.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8666666666666667,0.8666666666666667,RFC,MISO,MI,45.482084,-87.802178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1786,White Rapids,2,1927.0,3.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,RFC,MISO,MI,45.482084,-87.802178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1786,White Rapids,3,1927.0,3.0,2.6,2.6,1.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8666666666666667,0.8666666666666667,RFC,MISO,MI,45.482084,-87.802178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1787,Grand Rapids,1,1940.0,1.1,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.3547,-87.6494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1787,Grand Rapids,2,1941.0,1.1,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.3547,-87.6494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1787,Grand Rapids,3,1945.0,1.5,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.3547,-87.6494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1787,Grand Rapids,4,1918.0,1.9,1.9,1.9,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.3547,-87.6494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1787,Grand Rapids,5,1923.0,1.9,1.9,1.9,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.3547,-87.6494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1821,Crystal Falls,1,1914.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.106278,-88.334531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1821,Crystal Falls,2,1924.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.106278,-88.334531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1821,Crystal Falls,3,1954.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.106278,-88.334531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1827,Hart,4,1964.0,1.4,1.4,1.4,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.704076,-86.366256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1827,Hart,IC1,1985.0,1.7,1.7,1.7,0.4,DFO,Petroleum Liquids,OP,IC,3.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.704076,-86.366256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1827,Hart,IC3,1985.0,2.0,2.0,2.0,0.4,DFO,Petroleum Liquids,OP,IC,4.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.704076,-86.366256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1829,Hillsdale,5,1973.0,5.6,5.6,5.6,4.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.9061,-84.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.240367972230636 -1829,Hillsdale,6,1976.0,6.0,6.0,6.0,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.9061,-84.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.240357995383675 -1840,Plant Four,CT1,1979.0,24.0,20.0,22.0,5,DFO,Petroleum Liquids,SB,GT,5.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333334,0.9166666666666666,RFC,MISO,MI,46.575965,-87.403579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.65853658536585 -1842,James R Smith,1,1919.0,1.6,1.6,1.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.571639,-87.410455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1842,James R Smith,2,1922.0,1.6,1.6,1.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.571639,-87.410455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1844,Marshall (MI),1,1928.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,42.2717,-84.9411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1844,Marshall (MI),3,1929.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,42.2717,-84.9411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1844,Marshall (MI),IC3,1973.0,2.1,1.9,1.9,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9047619047619047,0.9047619047619047,RFC,MISO,MI,42.2717,-84.9411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.311743260863782 -1844,Marshall (MI),IC5,1948.0,1.7,1.4,1.4,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8235294117647058,0.8235294117647058,RFC,MISO,MI,42.2717,-84.9411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.311791196870583 -1844,Marshall (MI),IC6,1978.0,5.7,5.6,5.6,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9824561403508771,0.9824561403508771,RFC,MISO,MI,42.2717,-84.9411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.311764705882354 -1846,Newberry,1,1974.0,3.0,2.5,2.5,2.5,DFO,Petroleum Liquids,OS,IC,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,MISO,MI,46.351975,-85.506408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1846,Newberry,2,1948.0,0.7,0.5,0.5,0.5,DFO,Petroleum Liquids,OS,IC,9.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7142857142857144,0.7142857142857144,RFC,MISO,MI,46.351975,-85.506408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1846,Newberry,4,1988.0,1.8,1.5,1.5,1.5,DFO,Petroleum Liquids,OS,IC,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333333,0.8333333333333333,RFC,MISO,MI,46.351975,-85.506408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1848,Norway (MI),1,1905.0,2.7,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.74123,-87.86278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1848,Norway (MI),2,1905.0,1.2,1.2,1.2,0.8,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.74123,-87.86278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1848,Norway (MI),3,1988.0,1.2,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,RFC,MISO,MI,45.74123,-87.86278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1848,Norway (MI),4,1986.0,1.2,0.9,0.9,0.8,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,RFC,MISO,MI,45.74123,-87.86278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1851,Frank Jenkins,4,1950.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,5.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.868611,-84.895555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.618188099145003 -1851,Frank Jenkins,5,1995.0,2.0,1.7,1.7,0.2,DFO,Petroleum Liquids,SB,IC,8.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.85,0.85,RFC,MISO,MI,42.868611,-84.895555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.618233322969565 -1851,Frank Jenkins,6,2002.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.868611,-84.895555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.618073787481 -1852,St Louis,1,1958.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.502577319587626 -1852,St Louis,2,1945.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50837988826816 -1852,St Louis,3,1951.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.51024208566108 -1852,St Louis,5,1919.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1852,St Louis,6,1919.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1852,St Louis,7,1996.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.493150684931507 -1852,St Louis,8,2003.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.491071428571427 -1852,St Louis,9,2003.0,1.3,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,5.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,RFC,MISO,MI,43.4019,-84.6014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.502577319587626 -1853,Main Street (MI),1,1961.0,1.0,0.9,1.0,0.1,DFO,Petroleum Liquids,SB,IC,3.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,RFC,MISO,MI,43.732508,-83.453306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.04175 -1853,Main Street (MI),2,1947.0,0.9,0.8,0.9,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,1.0,RFC,MISO,MI,43.732508,-83.453306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.041666666666668 -1853,Main Street (MI),3,1966.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.732508,-83.453306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.04159090909091 -1853,Main Street (MI),4,1966.0,1.3,1.2,1.3,0.1,DFO,Petroleum Liquids,SB,IC,10.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,1.0,RFC,MISO,MI,43.732508,-83.453306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.04173076923077 -1853,Main Street (MI),5,1979.0,1.1,1.0,1.1,0.1,DFO,Petroleum Liquids,SB,IC,9.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,1.0,RFC,MISO,MI,43.732508,-83.453306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.04159090909091 -1853,Main Street (MI),6,1967.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.732508,-83.453306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.041666666666668 -1855,Sturgis City Diesel Plant,6,1981.0,6.0,6.0,6.0,3,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MI,41.7992,-85.4256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.312602291325696 -1856,Hydro Plant,1,1911.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.9711,-85.5381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1856,Hydro Plant,2,1911.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.9711,-85.5381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1856,Hydro Plant,3,1983.0,0.7,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.9711,-85.5381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1856,Hydro Plant,4,1983.0,0.7,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.9711,-85.5381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1865,Saint Marys Falls,1,1951.0,6.2,5.1,5.1,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8225806451612903,0.8225806451612903,RFC,MISO,MI,46.50625,-84.349267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1865,Saint Marys Falls,10,1932.0,2.6,2.6,2.6,1.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.50625,-84.349267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1865,Saint Marys Falls,2,1951.0,6.2,5.2,5.2,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8387096774193549,0.8387096774193549,RFC,MISO,MI,46.50625,-84.349267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1865,Saint Marys Falls,3,1952.0,6.2,5.2,5.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8387096774193549,0.8387096774193549,RFC,MISO,MI,46.50625,-84.349267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1865,Saint Marys Falls,3A,1954.0,2.5,2.5,2.5,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,46.50625,-84.349267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1866,Wyandotte,4,1948.0,11.5,10.5,11.5,5,NG,Natural Gas Steam Turbine,SB,ST,1.0,1948.0,10,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9130434782608696,1.0,RFC,MISO,MI,42.2081,-83.1453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1866,Wyandotte,7,1986.0,32.0,32.0,35.0,5,NG,Natural Gas Steam Turbine,OP,ST,7.0,1986.0,10,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.2081,-83.1453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.817418897637795 -1866,Wyandotte,DG1,2007.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2081,-83.1453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1866,Wyandotte,DG2,2007.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2081,-83.1453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1866,Wyandotte,DG3,2007.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2081,-83.1453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1867,Zeeland,1,1966.0,1.4,1.5,1.5,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.3516541221775 -1867,Zeeland,10,1974.0,5.6,6.0,6.2,2.8,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.35169788202346 -1867,Zeeland,11,1980.0,6.0,6.4,6.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.3524750857703 -1867,Zeeland,2,1967.0,1.1,1.2,1.2,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.34862998440633 -1867,Zeeland,7,1957.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.35522607523588 -1867,Zeeland,8,1963.0,1.7,1.6,1.6,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.35375522560184 -1867,Zeeland,9,1971.0,4.5,5.0,5.0,2.3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8067,-86.0558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.35244785710397 -1868,Dafter,1C,2021.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,46.37437,-84.41723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.418988101131644 -1868,Dafter,2C,2021.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,46.37437,-84.41723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.418988101131644 -1868,Dafter,3C,2021.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,46.37437,-84.41723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.418988101131644 -1868,Dafter,4,1960.0,3.0,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,6.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,MISO,MI,46.37437,-84.41723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.418995490761498 -1868,Dafter,4C,2021.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,46.37437,-84.41723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.418988101131644 -1871,Kleber,K1,1949.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.391984,-84.333257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1871,Kleber,K2,1949.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.391984,-84.333257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1871,Kleber,T1,1925.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.391984,-84.333257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1871,Kleber,T2,1925.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.391984,-84.333257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1873,Tower,GT4,1971.0,21.3,19.3,24.7,5,DFO,Petroleum Liquids,OP,GT,3.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9061032863849765,1.0,RFC,MISO,MI,45.36282,-84.29497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.509803921568627 -1874,Caro,1,1949.0,1.3,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,RFC,MISO,MI,43.4659,-83.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1874,Caro,2,1949.0,1.3,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,RFC,MISO,MI,43.4659,-83.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1874,Caro,3,1952.0,1.3,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,RFC,MISO,MI,43.4659,-83.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1874,Caro,4,1984.0,1.5,1.5,1.5,0.8,DFO,Petroleum Liquids,OP,IC,8.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4659,-83.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1874,Caro,5,1999.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,5.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4659,-83.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1874,Caro,6,2000.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.4659,-83.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1875,Ubly,1,1938.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1938.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.801687763713081 -1875,Ubly,2,1938.0,0.7,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1938.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.801084990958408 -1875,Ubly,3,1938.0,0.7,0.7,0.7,0.4,DFO,Petroleum Liquids,OP,IC,6.0,1938.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.801084990958408 -1875,Ubly,4,1947.0,0.9,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.80168776371308 -1875,Ubly,5,1987.0,1.5,1.5,1.5,0.8,DFO,Petroleum Liquids,OP,IC,10.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.801687763713078 -1875,Ubly,6,1993.0,1.5,1.5,1.5,0.8,DFO,Petroleum Liquids,OP,IC,11.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.801687763713078 -1875,Ubly,7,2000.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.794534412955466 -1875,Ubly,8,2001.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,OP,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.794534412955466 -1875,Ubly,9,2002.0,1.5,1.5,1.5,0.8,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.7217,-82.9388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.801687763713078 -1877,George Johnson,10,2000.0,25.0,24.3,30.4,19,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.972,1.0,RFC,MISO,MI,43.8393,-85.426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.976326210888203 -1877,George Johnson,11,1993.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,SB,IC,9.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.8393,-85.426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1877,George Johnson,9,2000.0,25.0,24.4,29.7,19,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.976,1.0,RFC,MISO,MI,43.8393,-85.426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.976326210888203 -1880,Claude Vandyke,8,2001.0,24.8,20.2,27.3,17.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.814516129032258,1.0,RFC,MISO,MI,42.731,-85.8551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.64085953547164 -1881,Vestaburg,8,1972.0,23.7,18.5,25.5,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7805907172995781,1.0,RFC,MISO,MI,43.4016,-84.9141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.866421004145554 -1891,Syl Laskin,1,1953.0,58.0,49.0,49.0,17,NG,Natural Gas Steam Turbine,OP,ST,6.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8448275862068966,0.8448275862068966,MRO,MISO,MN,47.5306,-92.1619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.117150087436105 -1891,Syl Laskin,2,1953.0,58.0,49.0,49.0,17,NG,Natural Gas Steam Turbine,OP,ST,9.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8448275862068966,0.8448275862068966,MRO,MISO,MN,47.5306,-92.1619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.380877563367724 -1892,Blanchard,1,1925.0,6.0,5.4,5.4,0.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,MRO,MISO,MN,45.8614,-94.3592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1892,Blanchard,2,1925.0,6.0,5.4,5.4,0.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,MRO,MISO,MN,45.8614,-94.3592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1892,Blanchard,3,1988.0,6.0,5.4,5.4,0.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,MRO,MISO,MN,45.8614,-94.3592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1893,Clay Boswell,3,1973.0,364.5,352.0,352.0,75,SUB,Conventional Steam Coal,OP,ST,5.0,1973.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9657064471879286,0.9657064471879286,MRO,MISO,MN,47.2611,-93.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72486434137615 -1893,Clay Boswell,4,1980.0,558.0,585.0,585.0,185,SUB,Conventional Steam Coal,OP,ST,5.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.2611,-93.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.50760489574587 -1893,Clay Boswell,D4,1980.0,0.8,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,4.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,47.2611,-93.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1894,Fond Du Lac,1,1924.0,12.0,13.1,13.1,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.666768,-92.293897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1895,Knife Falls,1,1922.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.726627,-92.448619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1895,Knife Falls,2,1922.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.726627,-92.448619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1895,Knife Falls,3,1922.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,MRO,MISO,MN,46.726627,-92.448619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1896,Little Falls (MN),1,1919.0,0.8,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.975013,-94.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1896,Little Falls (MN),2,1919.0,0.8,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.975013,-94.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1896,Little Falls (MN),3,1920.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.975013,-94.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1896,Little Falls (MN),4,1979.0,1.2,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.975013,-94.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1896,Little Falls (MN),5,1906.0,0.4,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.975013,-94.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1896,Little Falls (MN),6,1906.0,0.4,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.975013,-94.369094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1897,M L Hibbard,3,1949.0,35.3,30.0,30.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1949.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.84985835694051,0.84985835694051,MRO,MISO,MN,46.735331,-92.151711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.552440826690667 -1897,M L Hibbard,4,1951.0,37.5,30.0,30.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1951.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,MRO,MISO,MN,46.735331,-92.151711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.74274096041658 -1898,Pillager,1,1917.0,0.8,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.316033,-94.484944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1898,Pillager,2,1917.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OS,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.316033,-94.484944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1899,Scanlon,1,1923.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.709126,-92.421733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1899,Scanlon,2,1923.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.709126,-92.421733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1899,Scanlon,3,1923.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.709126,-92.421733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1899,Scanlon,4,1923.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.709126,-92.421733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1900,Sylvan,1,1913.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.305,-94.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1900,Sylvan,2,1913.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.305,-94.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1900,Sylvan,3,1915.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.305,-94.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1901,Thomson,1,1907.0,13.0,12.5,12.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9615384615384616,0.9615384615384616,MRO,MISO,MN,46.655,-92.3333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1901,Thomson,2,1907.0,13.0,12.5,12.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9615384615384616,0.9615384615384616,MRO,MISO,MN,46.655,-92.3333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1901,Thomson,3,1907.0,13.0,12.5,12.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9615384615384616,0.9615384615384616,MRO,MISO,MN,46.655,-92.3333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1901,Thomson,4,1914.0,10.8,12.1,12.1,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.655,-92.3333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1901,Thomson,5,1919.0,10.8,11.9,11.9,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.655,-92.3333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1901,Thomson,6,1949.0,12.0,14.7,14.7,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.655,-92.3333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1902,Winton,2,1923.0,2.0,2.1,2.1,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,47.9344,-91.7639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1902,Winton,3,1923.0,2.0,2.0,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,47.9344,-91.7639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1904,Black Dog,2,1954.0,136.9,117.0,117.0,66,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1954.0,12,2031,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8546384222059897,0.8546384222059897,MRO,MISO,MN,44.8108,-93.2501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1904,Black Dog,5,2002.0,187.9,165.0,181.0,94,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0,12,2031,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8781266631186802,0.9632783395423097,MRO,MISO,MN,44.8108,-93.2501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.156872954221502 -1904,Black Dog,6-1,2018.0,238.0,212.0,228.0,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2018.0,12,2058,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8907563025210083,0.957983193277311,MRO,MISO,MN,44.8108,-93.2501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1911,Hennepin Island,1,1954.0,2.8,1.2,1.4,0.6,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4285714285714286,0.5,MRO,MISO,MN,44.982359,-93.254163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1911,Hennepin Island,2,1955.0,2.8,1.2,1.4,0.6,WAT,Conventional Hydroelectric,OP,HY,3.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4285714285714286,0.5,MRO,MISO,MN,44.982359,-93.254163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1911,Hennepin Island,3,1955.0,2.8,1.2,1.4,0.6,WAT,Conventional Hydroelectric,OP,HY,10.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4285714285714286,0.5,MRO,MISO,MN,44.982359,-93.254163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1911,Hennepin Island,4,1954.0,2.8,1.2,1.4,0.6,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4285714285714286,0.5,MRO,MISO,MN,44.982359,-93.254163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1911,Hennepin Island,5,1955.0,2.5,1.3,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.52,0.6,MRO,MISO,MN,44.982359,-93.254163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1912,High Bridge,7,2008.0,197.0,152.0,185.0,88,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7715736040609137,0.9390862944162437,MRO,MISO,MN,44.9314,-93.1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.259481101098508 -1912,High Bridge,8,2008.0,197.0,152.0,185.0,88,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7715736040609137,0.9390862944162437,MRO,MISO,MN,44.9314,-93.1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.122091067810574 -1912,High Bridge,9,2008.0,250.0,226.0,236.0,162,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.904,0.944,MRO,MISO,MN,44.9314,-93.1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1913,Inver Hills,1,1972.0,46.8,47.0,62.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.816730936596173 -1913,Inver Hills,2,1972.0,46.8,47.0,62.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.958229296500624 -1913,Inver Hills,3,1972.0,46.8,47.0,62.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.551990159056505 -1913,Inver Hills,4,1972.0,46.8,47.0,62.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.152167032469116 -1913,Inver Hills,5,1972.0,46.8,47.0,61.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.76179726782773 -1913,Inver Hills,6,1972.0,46.8,47.0,62.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.893545008878835 -1913,Inver Hills,7,1997.0,1.8,1.8,1.8,0.8,DFO,Petroleum Liquids,SB,GT,6.0,1997.0,12,2026,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1913,Inver Hills,8,1997.0,1.8,1.8,1.8,0.8,DFO,Petroleum Liquids,SB,GT,6.0,1997.0,12,2026,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MN,44.781,-93.042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1915,Allen S King,1,1958.0,598.4,511.0,511.0,345,SUB,Conventional Steam Coal,OP,ST,3.0,1958.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8539438502673797,0.8539438502673797,MRO,MISO,MN,45.03,-92.7786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.265780300578667 -1922,Monticello Nuclear Facility,1,1971.0,685.0,617.0,646.0,500,NUC,Nuclear,OP,ST,6.0,1971.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9007299270072993,0.9430656934306569,MRO,MISO,MN,45.3338,-93.8493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1925,Prairie Island,1,1974.0,593.1,521.0,546.0,500,NUC,Nuclear,OP,ST,2.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8784353397403473,0.9205867475973697,MRO,MISO,MN,44.622,-92.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1925,Prairie Island,2,1974.0,593.1,519.0,546.0,500,NUC,Nuclear,OP,ST,10.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8750632271117855,0.9205867475973697,MRO,MISO,MN,44.622,-92.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1926,Red Wing,1,1949.0,11.5,9.0,9.0,6,MSW,Municipal Solid Waste,OP,ST,10.0,1949.0,12,2027,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.782608695652174,0.782608695652174,MRO,MISO,MN,44.5692,-92.516912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.88539964439689 -1926,Red Wing,2,1949.0,11.5,9.0,9.0,6,MSW,Municipal Solid Waste,OP,ST,11.0,1949.0,12,2027,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.782608695652174,0.782608695652174,MRO,MISO,MN,44.5692,-92.516912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.837039521154477 -1927,Riverside (MN),10,2009.0,210.6,147.0,171.0,79,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.698005698005698,0.811965811965812,MRO,MISO,MN,45.0203,-93.2753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.303300299417893 -1927,Riverside (MN),9,2009.0,210.6,147.0,171.0,79,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.698005698005698,0.811965811965812,MRO,MISO,MN,45.0203,-93.2753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.172081893275855 -1927,Riverside (MN),ST7,1987.0,164.7,160.0,158.0,76,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9714632665452339,0.9593199757134184,MRO,MISO,MN,45.0203,-93.2753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1929,St James,1,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.988158,-94.61564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.93135294117647 -1929,St James,2,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.988158,-94.61564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.93135294117647 -1929,St James,3,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.988158,-94.61564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.93135294117647 -1929,St James,4,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.988158,-94.61564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.93135294117647 -1929,St James,5,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.988158,-94.61564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.93135294117647 -1929,St James,6,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.988158,-94.61564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.93135294117647 -1934,Wilmarth,1,1948.0,12.5,9.0,9.0,1,MSW,Municipal Solid Waste,OP,ST,9.0,1948.0,12,2027,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.72,MRO,MISO,MN,44.1967,-94.0009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.247963205144803 -1934,Wilmarth,2,1951.0,12.5,9.0,9.0,1,MSW,Municipal Solid Waste,OP,ST,3.0,1951.0,12,2027,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.72,MRO,MISO,MN,44.1967,-94.0009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.16680258280521 -1943,Hoot Lake,H1,1914.0,1.0,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,MRO,MISO,MN,46.290641,-96.043252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1956,Adrian,5,2005.0,2.0,2.0,2.0,0.8,DFO,Petroleum Liquids,OP,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MN,43.63711,-95.932794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.80952380952381 -1958,Alexandria,IC1,1948.0,1.2,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,MISO,MN,45.889167,-95.379722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.226811773435568 -1958,Alexandria,IC2,1967.0,4.0,3.6,3.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,45.889167,-95.379722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.225997922540436 -1958,Alexandria,IC3,1967.0,4.0,3.6,3.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,45.889167,-95.379722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.225997922540436 -1964,Benson City of,10,2002.0,1.8,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.314444,-95.602777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.47058823529412 -1964,Benson City of,11,2002.0,1.8,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.314444,-95.602777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.47058823529412 -1964,Benson City of,7,2002.0,1.8,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.314444,-95.602777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.47058823529412 -1964,Benson City of,8,2002.0,1.8,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.314444,-95.602777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.47058823529412 -1964,Benson City of,9,2002.0,1.8,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.314444,-95.602777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.47058823529412 -1966,Blooming Prairie,4,1974.0,1.2,1.3,1.3,0.8,DFO,Petroleum Liquids,SB,IC,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.866,-93.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076302534235795 -1966,Blooming Prairie,5,2003.0,2.3,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,4.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,MISO,MN,43.866,-93.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076356095758221 -1966,Blooming Prairie,6,2009.0,2.0,1.9,1.9,1,DFO,Petroleum Liquids,SB,IC,4.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,MN,43.866,-93.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076381838358557 -1966,Blooming Prairie,7,2012.0,1.3,1.3,1.3,1.3,DFO,Petroleum Liquids,SB,IC,10.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.866,-93.0504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.076537469577536 -1967,Blue Earth,IC1,1960.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.943503408386697 -1967,Blue Earth,IC3,1993.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.94393337852232 -1967,Blue Earth,IC4,1993.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.94393337852232 -1967,Blue Earth,IC5,1993.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.94393337852232 -1967,Blue Earth,IC6,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,2.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.943794112583921 -1967,Blue Earth,IC7,2015.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,OP,IC,9.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.943661971830986 -1967,Blue Earth,IC8,2015.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,9.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6375,-94.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.943794112583921 -1969,Delano,10,2022.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.851766228962457 -1969,Delano,11,2022.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.851766228962457 -1969,Delano,2,1972.0,1.1,1.1,1.1,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.851042367182245 -1969,Delano,3,1973.0,1.3,1.3,1.3,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.852041542182388 -1969,Delano,5,1946.0,0.8,0.8,0.8,0.3,DFO,Petroleum Liquids,OP,IC,10.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.850439204808138 -1969,Delano,6,1989.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.852651048088779 -1969,Delano,7,1994.0,3.0,3.0,3.0,0.9,DFO,Petroleum Liquids,OP,IC,8.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.851797053202638 -1969,Delano,8,1999.0,3.1,3.1,3.1,0.9,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.041378,-93.790522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.852335779488097 -1970,Detroit Lakes,1,1968.0,12.5,9.6,10.6,5,DFO,Petroleum Liquids,OA,GT,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.768,0.848,MRO,MISO,MN,46.8175,-95.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.4375 -1971,Elk River City of,1,1948.0,0.5,0.5,0.5,0.4,DFO,Petroleum Liquids,SB,IC,3.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.3158,-93.5781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.56375705076274 -1971,Elk River City of,2,1948.0,0.5,0.5,0.5,0.4,DFO,Petroleum Liquids,SB,IC,3.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.3158,-93.5781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.56375705076274 -1971,Elk River City of,3,1962.0,3.0,3.0,3.0,2.8,DFO,Petroleum Liquids,SB,IC,3.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.3158,-93.5781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.563754399920224 -1971,Elk River City of,4,1972.0,5.0,5.0,5.0,4.3,DFO,Petroleum Liquids,SB,IC,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.3158,-93.5781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.563753869751869 -1972,Fairfax,2A,2001.0,2.0,1.9,1.9,1.5,DFO,Petroleum Liquids,SB,IC,8.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,MN,44.525887,-94.718812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.0 -1973,Fairmont (MN),10,2014.0,6.5,6.5,6.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6579,-94.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535409063094324 -1973,Fairmont (MN),11,2014.0,6.5,6.5,6.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6579,-94.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535409063094324 -1973,Fairmont (MN),12,2014.0,6.5,6.5,6.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6579,-94.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535409063094324 -1973,Fairmont (MN),6,1975.0,6.5,6.0,6.0,3.5,DFO,Petroleum Liquids,OP,IC,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9230769230769231,0.9230769230769231,MRO,MISO,MN,43.6579,-94.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535409063094324 -1973,Fairmont (MN),7,1975.0,6.5,6.0,6.0,3.5,DFO,Petroleum Liquids,OP,IC,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9230769230769231,0.9230769230769231,MRO,MISO,MN,43.6579,-94.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535409063094324 -1973,Fairmont (MN),9,2014.0,6.5,6.5,6.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6579,-94.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535409063094324 -1975,Glencoe,10,1985.0,7.0,5.6,5.6,3,DFO,Petroleum Liquids,OP,IC,10.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536164973838105 -1975,Glencoe,11,1998.0,4.8,4.8,4.8,2,DFO,Petroleum Liquids,OP,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536470412209171 -1975,Glencoe,12,1998.0,4.8,4.8,4.8,2,DFO,Petroleum Liquids,OP,IC,7.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536470412209171 -1975,Glencoe,14,2006.0,4.8,4.8,4.8,2,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536470412209171 -1975,Glencoe,5,1957.0,1.3,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.537016574585635 -1975,Glencoe,7,1966.0,4.1,3.2,3.2,2,DFO,Petroleum Liquids,OP,IC,11.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7804878048780489,0.7804878048780489,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536083377123841 -1975,Glencoe,8,1969.0,5.6,5.4,5.4,2,DFO,Petroleum Liquids,OP,IC,7.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9642857142857144,0.9642857142857144,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536325745431228 -1975,Glencoe,9,1973.0,7.1,6.1,6.1,3,DFO,Petroleum Liquids,OP,IC,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8591549295774648,0.8591549295774648,MRO,MISO,MN,44.7709,-94.1582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536465709083553 -1976,Grand Marais,7,2004.0,2.7,2.5,2.5,1.8,DFO,Petroleum Liquids,OP,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,MRO,MISO,MN,47.750278,-90.357222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.759564920411216 -1976,Grand Marais,8,2004.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,47.750278,-90.357222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.759548043701559 -1976,Grand Marais,9,2004.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,47.750278,-90.357222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.759548043701559 -1977,Granite Falls,1,1940.0,0.3,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,MRO,MISO,MN,44.811685,-95.53455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1977,Granite Falls,2,1932.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.811685,-95.53455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1977,Granite Falls,HC3,1986.0,0.8,0.7,0.7,0.7,WAT,Conventional Hydroelectric,OS,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,MRO,MISO,MN,44.811685,-95.53455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1979,Hibbing,3,1965.0,10.0,10.0,10.0,4,NG,Natural Gas Steam Turbine,OP,ST,4.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.4294,-92.935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.1592200980611 -1979,Hibbing,5,1985.0,19.5,19.5,19.5,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.4294,-92.935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1979,Hibbing,6,1996.0,6.4,1.0,6.4,1,NG,Natural Gas Steam Turbine,OP,ST,2.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.15625,1.0,MRO,MISO,MN,47.4294,-92.935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1980,Hutchinson Plant #1,10,2013.0,8.8,9.3,9.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.895741,-94.368433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.607698274387124 -1980,Hutchinson Plant #1,11,2019.0,9.8,9.8,9.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.895741,-94.368433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.607698620331082 -1980,Hutchinson Plant #1,12,2019.0,9.8,9.8,9.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.895741,-94.368433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.607698620331082 -1982,Janesville,1,1965.0,1.1,0.9,1.0,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.9090909090909091,MRO,MISO,MN,44.1172,-93.7073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.017132090267491 -1982,Janesville,2,1972.0,1.3,1.1,1.2,0.6,DFO,Petroleum Liquids,OP,IC,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.923076923076923,MRO,MISO,MN,44.1172,-93.7073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.017122845820662 -1982,Janesville,3,1955.0,0.7,0.5,0.6,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7142857142857144,0.8571428571428572,MRO,MISO,MN,44.1172,-93.7073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.0170805593113 -1982,Janesville,4,1998.0,1.8,1.8,1.8,0.9,DFO,Petroleum Liquids,OP,IC,12.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.1172,-93.7073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.017112050317815 -1983,Kenyon Municipal,5,1997.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,SB,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.2718,-92.9848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.125820363772736 -1983,Kenyon Municipal,6,1997.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,SB,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.2718,-92.9848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.125820363772736 -1983,Kenyon Municipal,7,1997.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,SB,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.2718,-92.9848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.125820363772736 -1985,Lake Crystal,1,1952.0,0.6,0.6,0.6,0.6,DFO,Petroleum Liquids,OP,IC,5.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.106888,-94.219697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1985,Lake Crystal,3,1971.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.106888,-94.219697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1985,Lake Crystal,4,1955.0,1.2,1.2,1.2,1.2,DFO,Petroleum Liquids,OP,IC,5.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.106888,-94.219697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1985,Lake Crystal,5,1999.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,11.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.106888,-94.219697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1987,Lanesboro,2,1923.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,MRO,MISO,MN,43.720026,-91.977738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1987,Lanesboro,4,2004.0,2.3,2.1,2.1,1,DFO,Petroleum Liquids,OP,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9130434782608696,0.9130434782608696,MRO,MISO,MN,43.720026,-91.977738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.390022675736962 -1989,Litchfield,5,1963.0,2.1,2.1,2.1,1,DFO,Petroleum Liquids,SB,IC,9.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.379 -1989,Litchfield,6,1963.0,2.1,2.1,2.1,1,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.379 -1989,Litchfield,QS 1,2010.0,2.3,2.3,2.3,1,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.378999999999998 -1989,Litchfield,QS 2,2010.0,2.3,2.3,2.3,1,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.378999999999998 -1989,Litchfield,QS 3,2010.0,2.3,2.3,2.3,1,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.378999999999998 -1989,Litchfield,QS 4,2010.0,2.3,2.3,2.3,1,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.378999999999998 -1989,Litchfield,QS 5,2010.0,2.3,2.3,2.3,1,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.378999999999998 -1989,Litchfield,QS6,2021.0,3.1,3.1,3.1,1,DFO,Petroleum Liquids,SB,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.379 -1989,Litchfield,QS7,2021.0,3.1,3.1,3.1,1,DFO,Petroleum Liquids,SB,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.128164,-94.53515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.379 -1990,Luverne,4C,1967.0,3.5,3.5,3.5,2.5,DFO,Petroleum Liquids,OP,IC,5.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MN,43.654444,-96.201944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.499904434250764 -1990,Luverne,5A,2022.0,3.1,3.1,3.1,1,DFO,Petroleum Liquids,OP,IC,10.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MN,43.654444,-96.201944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.500053949072075 -1990,Luverne,5B,2022.0,3.1,3.1,3.1,1,DFO,Petroleum Liquids,OP,IC,10.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MN,43.654444,-96.201944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.500053949072075 -1993,Marshall (MN),6,1969.0,18.0,15.7,20.5,4,DFO,Petroleum Liquids,OP,GT,7.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8722222222222222,1.0,MRO,MISO,MN,44.446585,-95.792118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.60858189429618 -1994,Melrose,1,1945.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,7.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,MN,45.675,-94.815277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.27859663691094 -1994,Melrose,2,1948.0,1.1,1.1,1.1,0.8,DFO,Petroleum Liquids,OP,IC,7.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.675,-94.815277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.278071334214003 -1994,Melrose,3,1969.0,3.1,3.1,3.1,2.5,DFO,Petroleum Liquids,OP,IC,7.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.675,-94.815277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.278443715261501 -1994,Melrose,4,1969.0,3.0,3.1,3.1,2.5,DFO,Petroleum Liquids,OP,IC,1.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.675,-94.815277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.278631236592622 -1996,Moose Lake,1,1973.0,1.3,1.3,1.3,1.3,DFO,Petroleum Liquids,SB,IC,7.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,46.454097,-92.760557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.24061135371179 -1996,Moose Lake,5,2005.0,2.1,2.3,2.3,2.1,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,46.454097,-92.760557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.241236370190142 -1996,Moose Lake,6,2005.0,2.1,2.3,2.3,2.1,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,46.454097,-92.760557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.241236370190142 -1996,Moose Lake,7,2005.0,2.1,2.3,2.3,2.1,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,46.454097,-92.760557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.241236370190142 -1996,Moose Lake,8NG,2019.0,2.6,2.0,2.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,MRO,MISO,MN,46.454097,-92.760557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.241356721741028 -1997,Mora,2,1957.0,1.1,1.2,1.2,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.877088,-93.295137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.07104149654814 -1997,Mora,5,1972.0,5.7,5.7,5.7,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.877088,-93.295137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.071084751590167 -1997,Mora,6,1975.0,7.0,6.3,6.3,0.5,DFO,Petroleum Liquids,OP,IC,7.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,45.877088,-93.295137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.070936132983377 -1998,Mountain Lake,2,1954.0,1.1,0.9,1.1,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,1.0,MRO,MISO,MN,43.9405,-94.9434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88.42728330424664 -1998,Mountain Lake,4,1968.0,2.0,1.8,1.9,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.95,MRO,MISO,MN,43.9405,-94.9434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88.44 -1998,Mountain Lake,5,1959.0,1.3,1.2,1.3,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,1.0,MRO,MISO,MN,43.9405,-94.9434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88.45100935499754 -1998,Mountain Lake,6,1998.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.9405,-94.9434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1998,Mountain Lake,7,1998.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.9405,-94.9434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -1998,Mountain Lake,8,2007.0,1.2,1.2,1.2,1.2,WND,Onshore Wind Turbine,OP,WT,7.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9405,-94.9434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1999,New Prague,2,1974.0,4.4,4.4,4.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.5431,-93.5731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.941948540040475 -1999,New Prague,3,1962.0,2.4,2.4,2.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.5431,-93.5731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.94178932703374 -1999,New Prague,4,1968.0,3.5,3.5,3.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.5431,-93.5731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.941891134140516 -1999,New Prague,5,1944.0,0.6,0.6,0.6,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1944.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.5431,-93.5731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.94178932703374 -1999,New Prague,6,1982.0,6.0,5.9,5.9,4.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9833333333333334,0.9833333333333334,MRO,MISO,MN,44.5431,-93.5731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.94191012120735 -2001,New Ulm,3,1957.0,6.0,4.7,4.7,1,NG,Natural Gas Steam Turbine,OS,ST,1.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7833333333333333,0.7833333333333333,MRO,MISO,MN,44.3159,-94.4581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2001,New Ulm,4,1965.0,15.0,13.2,13.2,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8799999999999999,0.8799999999999999,MRO,MISO,MN,44.3159,-94.4581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2001,New Ulm,5,1975.0,24.0,23.0,25.0,2.5,DFO,Petroleum Liquids,OP,GT,5.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9583333333333334,1.0,MRO,MISO,MN,44.3159,-94.4581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2001,New Ulm,6,1997.0,6.0,4.7,4.7,1,NG,Natural Gas Steam Turbine,OP,ST,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7833333333333333,0.7833333333333333,MRO,MISO,MN,44.3159,-94.4581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2001,New Ulm,7,2001.0,27.5,25.0,25.0,8,DFO,Petroleum Liquids,OP,GT,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,44.3159,-94.4581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.701310746042143 -2002,North Branch (MN),3,2003.0,2.2,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,10.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,45.510601,-92.979042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.011494252873563 -2002,North Branch (MN),4,2003.0,2.2,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,10.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,45.510601,-92.979042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.011494252873563 -2002,North Branch (MN),5,2011.0,2.2,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,45.510601,-92.979042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.011494252873563 -2002,North Branch (MN),6,2011.0,2.2,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,45.510601,-92.979042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.011494252873563 -2002,North Branch (MN),7,2011.0,2.2,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,45.510601,-92.979042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.011494252873563 -2003,Owatonna,7,1982.0,19.0,16.6,16.6,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8736842105263158,0.8736842105263158,MRO,MISO,MN,44.0833,-93.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2004,Preston (MN),4,1949.0,0.6,0.8,0.8,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6661,-92.0831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.750936634631048 -2004,Preston (MN),5,1954.0,1.1,1.1,1.1,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6661,-92.0831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.750913891145409 -2004,Preston (MN),6,1974.0,2.0,2.2,2.2,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.6661,-92.0831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.750961652576391 -2005,Princeton (MN),3,1978.0,2.4,2.6,2.6,2,DFO,Petroleum Liquids,OP,IC,12.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.569468,-93.587244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.3800612216502 -2005,Princeton (MN),4,1967.0,1.2,1.3,1.3,1,DFO,Petroleum Liquids,OP,IC,9.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.569468,-93.587244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.38008441166922 -2005,Princeton (MN),5,1953.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,9.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.569468,-93.587244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.380642288640285 -2005,Princeton (MN),6,1963.0,2.7,2.9,2.9,2,DFO,Petroleum Liquids,OP,IC,9.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.569468,-93.587244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.38017397757256 -2005,Princeton (MN),7,2003.0,5.0,5.0,5.0,4,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.569468,-93.587244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.38017743246101 -2007,Rochester Hydro,1,1984.0,1.3,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.212981,-92.480177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2007,Rochester Hydro,2,1984.0,1.3,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.212981,-92.480177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2009,Redwood Falls,6,1970.0,2.2,2.1,2.1,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,MRO,MISO,MN,44.5431,-95.1178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.893470790378007 -2009,Redwood Falls,7,1974.0,5.8,6.0,6.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.5431,-95.1178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.893470790378007 -2009,Redwood Falls,8,2013.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.5431,-95.1178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2011,Sleepy Eye,1A,1999.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,4.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.298116,-94.725191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.188159706287289 -2011,Sleepy Eye,5,1996.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.298116,-94.725191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.188159706287289 -2011,Sleepy Eye,6,2009.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,9.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.298116,-94.725191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.188599752168525 -2011,Sleepy Eye,7,2009.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,9.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.298116,-94.725191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.188599752168525 -2011,Sleepy Eye,IC4,1995.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,7.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.298116,-94.725191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.188159706287289 -2011,Sleepy Eye,NEW,2001.0,2.0,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,44.298116,-94.725191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.188599752168525 -2012,Springfield (MN),5,1994.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.239539,-94.976262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.933333333333334 -2012,Springfield (MN),6,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.239539,-94.976262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.933333333333334 -2012,Springfield (MN),7,1998.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.239539,-94.976262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.933333333333334 -2012,Springfield (MN),8,1998.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,4.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.239539,-94.976262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.933333333333334 -2012,Springfield (MN),9,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OS,IC,3.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.239539,-94.976262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.933333333333334 -2013,Spring Valley,2,1952.0,1.1,1.1,1.1,1,DFO,Petroleum Liquids,OP,IC,1.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.687322,-92.389392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.194793715963847 -2013,Spring Valley,3,1960.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,5.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.687322,-92.389392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.194812526462701 -2013,Spring Valley,4,2009.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.687322,-92.389392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.194812526462701 -2013,Spring Valley,5,2009.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.687322,-92.389392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.194812526462701 -2014,Thief River Falls,HY1,1927.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.114262,-96.179176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2014,Thief River Falls,HY2,1927.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.114262,-96.179176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2014,Thief River Falls,IC1,1956.0,2.2,1.9,1.9,0.2,DFO,Petroleum Liquids,OP,IC,11.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8636363636363635,0.8636363636363635,MRO,MISO,MN,48.114262,-96.179176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.712504869497469 -2014,Thief River Falls,IC2,1952.0,1.2,1.0,1.0,0.2,DFO,Petroleum Liquids,OP,IC,2.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,MISO,MN,48.114262,-96.179176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.714285714285715 -2014,Thief River Falls,IC3A,2001.0,1.2,1.2,1.2,0,DFO,Petroleum Liquids,OP,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,48.114262,-96.179176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.714285714285715 -2014,Thief River Falls,IC4,1948.0,1.4,1.2,1.2,0.2,DFO,Petroleum Liquids,OP,IC,10.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,MISO,MN,48.114262,-96.179176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.717085119412124 -2015,Truman,3,1975.0,2.2,2.0,2.0,0,DFO,Petroleum Liquids,SB,IC,8.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,43.828415,-94.436908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.250117426021605 -2015,Truman,6,1997.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,SB,IC,7.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.828415,-94.436908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.249425947187142 -2015,Truman,7,2005.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.828415,-94.436908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.250117426021605 -2018,Virginia,5,1954.0,7.5,8.0,8.0,2,NG,Natural Gas Steam Turbine,OP,ST,8.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.522428,-92.540951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2018,Virginia,6,1971.0,18.7,17.0,18.7,6,NG,Natural Gas Steam Turbine,OP,ST,8.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909092,1.0,MRO,MISO,MN,47.522428,-92.540951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2020,Wells IC,1,1953.0,1.3,1.3,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.74453,-93.724129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.92315644383184 -2020,Wells IC,2,1957.0,1.3,1.3,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.74453,-93.724129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.92315644383184 -2020,Wells IC,4,1966.0,2.3,2.1,2.1,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9130434782608696,0.9130434782608696,MRO,MISO,MN,43.74453,-93.724129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.92303197705301 -2020,Wells IC,5,1975.0,2.3,2.3,2.3,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.74453,-93.724129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.92303197705301 -2020,Wells IC,6,2022.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,5.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.74453,-93.724129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.923076923076922 -2021,Westbrook,5,2003.0,2.3,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,10.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,MISO,MN,44.0399,-95.4429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.6 -2022,Willmar,WTG3,2009.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,45.121705,-95.053236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2022,Willmar,WTG4,2009.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,45.121705,-95.053236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2023,Windom,CAT2,2001.0,1.8,1.7,1.8,0.5,DFO,Petroleum Liquids,SB,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,MN,43.86811,-95.114444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000360014400576 -2023,Windom,CAT3,2001.0,1.8,1.7,1.8,0.5,DFO,Petroleum Liquids,SB,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,MN,43.86811,-95.114444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000360014400576 -2023,Windom,CAT4,2001.0,1.8,1.7,1.8,0.5,DFO,Petroleum Liquids,SB,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,MN,43.86811,-95.114444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000360014400576 -2024,Worthington,1,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,10,2002.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2024,Worthington,11,2002.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2024,Worthington,12,2003.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2024,Worthington,13,2003.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2024,Worthington,2,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,3,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,4,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,5,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,6,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,7,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.547511746092626 -2024,Worthington,8,2002.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2024,Worthington,9,2002.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.63349,-95.609234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2038,Cambridge CT Hybrid,GT1,1978.0,25.1,20.5,29.2,15,DFO,Petroleum Liquids,OP,GT,5.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8167330677290836,1.0,MRO,MISO,MN,45.601,-93.2081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2038,Cambridge CT Hybrid,GT2,2007.0,169.2,152.9,190.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9036643026004729,1.0,MRO,MISO,MN,45.601,-93.2081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2039,Elk River,CT,2009.0,191.3,188.6,200.0,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9858860428646105,1.0,MRO,MISO,MN,45.296797,-93.558447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2042,Maple Lake,5A,1978.0,25.0,18.6,29.4,15,DFO,Petroleum Liquids,OP,GT,5.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.744,1.0,MRO,MISO,MN,45.229073,-94.009673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2047,Chevron Oil,1,1967.0,16.6,17.0,18.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,MS,30.34,-88.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2047,Chevron Oil,2,1967.0,16.6,18.0,19.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,MS,30.34,-88.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2047,Chevron Oil,3,1971.0,18.0,16.0,18.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8888888888888888,1.0,SERC,SOCO,MS,30.34,-88.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2047,Chevron Oil,4,1971.0,18.0,16.0,18.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8888888888888888,1.0,SERC,SOCO,MS,30.34,-88.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2047,Chevron Oil,5,1994.0,101.3,70.0,80.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6910167818361304,0.7897334649555775,SERC,SOCO,MS,30.34,-88.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.835604477877295 -2048,Sweatt,A,1971.0,41.9,32.0,41.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7637231503579953,0.9785202863961814,SERC,SOCO,MS,32.2925,-88.7461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2049,Jack Watson,4,1968.0,299.2,236.0,236.0,67.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1968.0,12,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7887700534759359,0.7887700534759359,SERC,SOCO,MS,30.4392,-89.0286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.335023355750126 -2049,Jack Watson,5,1973.0,578.0,485.0,485.0,156.3,NG,Natural Gas Steam Turbine,OP,ST,5.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8391003460207612,0.8391003460207612,SERC,SOCO,MS,30.4392,-89.0286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.220516405324947 -2049,Jack Watson,A,1970.0,41.9,33.0,41.2,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7875894988066826,0.983293556085919,SERC,SOCO,MS,30.4392,-89.0286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2050,Baxter Wilson,1,1967.0,544.6,494.3,505.6,190,NG,Natural Gas Steam Turbine,SB,ST,3.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9076386338597136,0.9283878075651855,SERC,MISO,MS,32.2831,-90.9306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028595458828635 -2059,L L Wilkins,6,1996.0,6.0,6.8,6.8,5,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,34.1845,-90.562662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2059,L L Wilkins,7,1961.0,7.5,7.5,7.5,5,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1961.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,MS,34.1845,-90.562662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2059,L L Wilkins,8,1965.0,16.2,13.2,15.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1965.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8148148148148148,0.9259259259259259,SERC,MISO,MS,34.1845,-90.562662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.0 -2059,L L Wilkins,9,1971.0,25.5,22.0,23.0,11,NG,Natural Gas Fired Combined Cycle,OP,CS,10.0,1971.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8627450980392157,0.9019607843137255,SERC,MISO,MS,34.1845,-90.562662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.942028985507246 -2067,Yazoo,2,1945.0,5.0,5.6,5.6,3,NG,Natural Gas Fired Combined Cycle,SB,CA,6.0,1945.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,32.8458,-90.4211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2067,Yazoo,3,1954.0,12.6,13.0,13.0,4,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1954.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,32.8458,-90.4211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2067,Yazoo,GT1,1968.0,16.5,14.7,16.7,2,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1968.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8909090909090909,1.0,SERC,MISO,MS,32.8458,-90.4211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2068,Benndale,BENU1,2020.0,14.2,11.3,11.3,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.795774647887324,0.795774647887324,SERC,MISO,MS,30.8889,-88.8054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.38037185563252 -2068,Benndale,BENU2,2020.0,14.2,11.3,11.3,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.795774647887324,0.795774647887324,SERC,MISO,MS,30.8889,-88.8054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.38037185563252 -2070,Moselle,1,1970.0,59.0,59.0,59.0,36,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1970.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2070,Moselle,2,1970.0,59.0,59.0,59.0,36,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1970.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2070,Moselle,3,1970.0,59.0,59.0,59.0,36,NG,Natural Gas Steam Turbine,OP,ST,8.0,1970.0,1,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.724921630550966 -2070,Moselle,4,1997.0,83.0,75.0,83.0,53,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9036144578313253,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2070,Moselle,5,2006.0,83.5,75.0,83.5,53,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8982035928143712,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.25200668840579 -2070,Moselle,GTG1,2012.0,83.5,75.0,83.5,53,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8982035928143712,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2070,Moselle,GTG2,2012.0,83.5,75.0,83.5,53,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8982035928143712,1.0,SERC,MISO,MS,31.528,-89.3004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2079,Hawthorn,5,1969.0,569.0,561.6,561.6,285,SUB,Conventional Steam Coal,OP,ST,5.0,1969.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9869947275922671,0.9869947275922671,MRO,SWPP,MO,39.1306,-94.4778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2079,Hawthorn,6,1997.0,170.0,125.3,,68,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7370588235294118,,MRO,SWPP,MO,39.1306,-94.4778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2079,Hawthorn,7,2000.0,82.2,76.2,76.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.927007299270073,0.927007299270073,MRO,SWPP,MO,39.1306,-94.4778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82961925201983 -2079,Hawthorn,8,2000.0,82.2,77.2,,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9391727493917275,,MRO,SWPP,MO,39.1306,-94.4778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.877903172308592 -2079,Hawthorn,9,2000.0,142.8,109.4,,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7661064425770308,,MRO,SWPP,MO,39.1306,-94.4778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.528210733101216 -2081,Northeast (MO),11,1972.0,50.0,46.6,46.6,3,DFO,Petroleum Liquids,OP,GT,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.932,0.932,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.58992115145441 -2081,Northeast (MO),12,1972.0,50.0,46.0,46.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.92,0.92,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.39098554644578 -2081,Northeast (MO),13,1975.0,64.7,48.2,48.2,3,DFO,Petroleum Liquids,OP,GT,5.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7449768160741885,0.7449768160741885,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.31523238365071 -2081,Northeast (MO),14,1975.0,64.7,47.5,47.5,3,DFO,Petroleum Liquids,OP,GT,5.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7341576506955177,0.7341576506955177,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.173969741806314 -2081,Northeast (MO),15,1976.0,64.7,47.5,47.5,3,DFO,Petroleum Liquids,OP,GT,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7341576506955177,0.7341576506955177,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.20566263647885 -2081,Northeast (MO),16,1976.0,64.7,46.0,46.0,3,DFO,Petroleum Liquids,OP,GT,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7109737248840804,0.7109737248840804,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.32570511762507 -2081,Northeast (MO),17,1977.0,64.7,53.2,53.2,3,DFO,Petroleum Liquids,OP,GT,5.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8222565687789799,0.8222565687789799,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.36607037150007 -2081,Northeast (MO),18,1977.0,64.7,47.0,47.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7264296754250386,0.7264296754250386,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.63880527899976 -2081,Northeast (MO),19,1985.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MO,39.1228,-94.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2082,Fairgrounds,1,1974.0,68.3,55.0,68.0,5,DFO,Petroleum Liquids,OP,GT,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8052708638360175,0.9956076134699854,SERC,MISO,MO,38.5935,-92.2206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2090,Nevada,1,1974.0,22.0,16.0,16.0,3,DFO,Petroleum Liquids,OP,GT,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7272727272727273,0.7272727272727273,MRO,SWPP,MO,37.8503,-94.3444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.927478753541077 -2092,Ralph Green,3,1981.0,85.0,69.4,10.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8164705882352942,0.11764705882352944,MRO,SWPP,MO,38.78758,-94.277689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.13058077792124 -2098,Lake Road (MO),1,1950.0,23.0,18.4,18.4,6,NG,Natural Gas Steam Turbine,OP,ST,7.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7999999999999999,0.7999999999999999,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2098,Lake Road (MO),2,1958.0,25.0,22.9,22.9,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9159999999999999,0.9159999999999999,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2098,Lake Road (MO),3,1962.0,12.5,7.3,7.3,3,NG,Natural Gas Steam Turbine,OP,ST,6.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.584,0.584,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2098,Lake Road (MO),4,1966.0,90.0,94.6,94.6,20,NG,Natural Gas Steam Turbine,OP,ST,8.0,1966.0,12,2024,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2098,Lake Road (MO),5,1974.0,85.0,47.2,47.2,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5552941176470589,0.5552941176470589,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2098,Lake Road (MO),6,1989.0,24.0,20.0,20.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333334,0.8333333333333334,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77.811374530416 -2098,Lake Road (MO),7,1990.0,18.9,21.1,21.1,5,DFO,Petroleum Liquids,OP,GT,12.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,MO,39.7246,-94.8773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2099,Niangua,1,1930.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,AECI,MO,37.9385,-92.847701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2099,Niangua,2,1930.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,AECI,MO,37.9385,-92.847701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2103,Labadie,1,1970.0,573.7,593.0,616.0,290,SUB,Conventional Steam Coal,OP,ST,6.0,1970.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.562244,-90.837686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.049761645114199 -2103,Labadie,2,1971.0,573.7,593.0,616.0,289,SUB,Conventional Steam Coal,OP,ST,6.0,1971.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.562244,-90.837686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.848237012975293 -2103,Labadie,3,1972.0,621.0,593.0,616.0,280,SUB,Conventional Steam Coal,OP,ST,8.0,1972.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9549114331723028,0.9919484702093397,SERC,MISO,MO,38.562244,-90.837686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.309010063984791 -2103,Labadie,4,1973.0,621.0,593.0,616.0,287,SUB,Conventional Steam Coal,OP,ST,8.0,1973.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9549114331723028,0.9919484702093397,SERC,MISO,MO,38.562244,-90.837686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.994278187868263 -2106,Osage Dam,1,1931.0,27.5,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,2,1931.0,27.5,24.0,24.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8727272727272728,0.8727272727272728,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,3,1931.0,27.5,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,4,1931.0,27.5,24.0,24.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8727272727272728,0.8727272727272728,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,5,1931.0,27.5,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,6,1931.0,27.5,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,7,1953.0,21.5,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2106,Osage Dam,8,1953.0,21.5,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,MO,38.2044,-92.6239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2107,Sioux,1,1967.0,549.7,487.0,497.0,253,SUB,Conventional Steam Coal,OP,ST,5.0,1967.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8859377842459523,0.9041295251955611,SERC,MISO,MO,38.915479,-90.290247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.555111686973161 -2107,Sioux,2,1968.0,549.7,487.0,497.0,252,SUB,Conventional Steam Coal,OP,ST,5.0,1968.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8859377842459523,0.9041295251955611,SERC,MISO,MO,38.915479,-90.290247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.27583949812864 -2108,Taum Sauk,1,1963.0,204.0,220.0,220.0,165,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1963.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,MISO,MO,37.520833,-90.834722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2108,Taum Sauk,2,1963.0,204.0,220.0,220.0,165,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1963.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,MISO,MO,37.520833,-90.834722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2115,Butler Municipal Power Plant,5,1959.0,1.4,1.0,1.0,0.6,DFO,Petroleum Liquids,SB,IC,4.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7142857142857144,0.7142857142857144,SERC,SWPP,MO,38.264408,-94.344385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.764598122280741 -2115,Butler Municipal Power Plant,IC6,1965.0,1.5,1.1,1.1,0.7,DFO,Petroleum Liquids,SB,IC,9.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7333333333333334,0.7333333333333334,SERC,SWPP,MO,38.264408,-94.344385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.76447958965591 -2115,Butler Municipal Power Plant,NG1,2000.0,2.0,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,38.264408,-94.344385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.764767171595736 -2115,Butler Municipal Power Plant,NG2,2000.0,2.0,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,38.264408,-94.344385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.764767171595736 -2115,Butler Municipal Power Plant,SG1,2000.0,2.0,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,38.264408,-94.344385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.764767171595736 -2115,Butler Municipal Power Plant,SG2,2000.0,2.0,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,38.264408,-94.344385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.764767171595736 -2120,Carrollton,10,1972.0,6.1,6.0,6.0,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,SERC,SWPP,MO,39.3515,-93.5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2120,Carrollton,11,2001.0,2.0,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,39.3515,-93.5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2120,Carrollton,3,1947.0,1.8,1.8,1.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.3515,-93.5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2120,Carrollton,7,1959.0,2.5,2.5,2.5,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.3515,-93.5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2120,Carrollton,8,1966.0,4.1,3.7,3.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.902439024390244,0.902439024390244,SERC,SWPP,MO,39.3515,-93.5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2120,Carrollton,9,1970.0,4.1,3.7,3.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.902439024390244,0.902439024390244,SERC,SWPP,MO,39.3515,-93.5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2121,Carthage,10,1965.0,7.0,6.0,6.0,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933843938626824 -2121,Carthage,11,1970.0,4.5,4.0,4.0,3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933860616317842 -2121,Carthage,12,1971.0,4.5,4.0,4.0,3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933860616317842 -2121,Carthage,13,1976.0,6.0,5.5,5.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9166666666666666,0.9166666666666666,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933860616317844 -2121,Carthage,14,1976.0,6.0,5.5,5.5,3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9166666666666666,0.9166666666666666,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933860616317844 -2121,Carthage,6,1946.0,2.5,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1946.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933813918883594 -2121,Carthage,7,1949.0,3.0,2.2,2.2,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7333333333333334,0.7333333333333334,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933860616317844 -2121,Carthage,8,1952.0,3.3,2.5,2.5,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7575757575757576,0.7575757575757576,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933901545445545 -2121,Carthage,9,1957.0,5.0,4.0,4.0,3,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,MO,37.176646,-94.299431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.933883965152345 -2122,Chillicothe,D1,2003.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2122,Chillicothe,D2,2003.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2122,Chillicothe,D3,2003.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2122,Chillicothe,D4,2003.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2122,Chillicothe,D5,2003.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2122,Chillicothe,GT1,1986.0,40.0,40.0,42.0,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2122,Chillicothe,GT2,1986.0,40.0,40.0,42.0,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SWPP,MO,39.783388,-93.564112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2123,Columbia (MO),6,1963.0,12.5,12.5,12.5,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2123,Columbia (MO),8,1970.0,35.0,35.0,35.0,12,NG,Natural Gas Steam Turbine,OP,ST,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.151652192242832 -2123,Columbia (MO),DAN1,2004.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142925999666 -2123,Columbia (MO),LF1,2008.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,6.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142880355948 -2123,Columbia (MO),LF2,2008.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,6.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142880355948 -2123,Columbia (MO),LF3,2013.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,8.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142880355948 -2123,Columbia (MO),SF1,2008.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,11.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142880355948 -2123,Columbia (MO),SF2,2008.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,11.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142880355948 -2123,Columbia (MO),SH1,2002.0,1.3,1.3,1.3,1.3,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.631422945717707 -2123,Columbia (MO),SH2,2002.0,1.3,1.3,1.3,1.3,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.631422945717707 -2123,Columbia (MO),WTP1,2004.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142925999666 -2123,Columbia (MO),WTP2,2004.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.964646,-92.316768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.63142925999666 -2124,Stockton Hydro,1,1973.0,52.0,52.0,52.0,5,WAT,Conventional Hydroelectric,OP,HY,3.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,MO,37.6936,-93.7691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2125,Fayette,GT1,1985.0,3.5,3.0,3.0,3,DFO,Petroleum Liquids,OS,IC,7.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,SERC,AECI,MO,39.1406,-92.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2125,Fayette,GT2,1985.0,3.5,2.8,2.8,2.8,DFO,Petroleum Liquids,OS,IC,7.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,SERC,AECI,MO,39.1406,-92.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2125,Fayette,GT3,1977.0,2.8,2.4,2.4,2.4,DFO,Petroleum Liquids,OS,IC,7.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,SERC,AECI,MO,39.1406,-92.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2125,Fayette,GT4,1969.0,1.1,1.0,1.0,1,DFO,Petroleum Liquids,OS,IC,7.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,AECI,MO,39.1406,-92.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2126,Fulton (MO),GT4,1972.0,21.2,15.0,19.6,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7075471698113207,0.9245283018867926,SERC,AECI,MO,38.868095,-91.94778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.31687242798354 -2126,Fulton (MO),IC1,1966.0,5.0,4.1,4.5,1,DFO,Petroleum Liquids,OP,IC,9.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.82,0.9,SERC,AECI,MO,38.868095,-91.94778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2126,Fulton (MO),IC3,1975.0,7.0,6.2,6.8,1,DFO,Petroleum Liquids,OP,IC,5.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8857142857142858,0.9714285714285714,SERC,AECI,MO,38.868095,-91.94778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2127,Gallatin (MO),2A,1993.0,1.1,1.0,1.0,0.7,DFO,Petroleum Liquids,SB,IC,4.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,AECI,MO,39.917222,-93.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2127,Gallatin (MO),3A,1993.0,1.1,1.0,1.0,0.7,DFO,Petroleum Liquids,SB,IC,4.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,AECI,MO,39.917222,-93.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2127,Gallatin (MO),IC4,1983.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,SB,IC,9.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.917222,-93.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2127,Gallatin (MO),IC6,1977.0,2.5,2.5,2.5,1.8,DFO,Petroleum Liquids,SB,IC,12.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.917222,-93.953889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2131,Higginsville,1,1945.0,0.8,0.6,0.6,0.1,DFO,Petroleum Liquids,OS,IC,1.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,SERC,SWPP,MO,39.073315,-93.714748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2131,Higginsville,2,1947.0,1.7,1.0,1.0,0.4,DFO,Petroleum Liquids,OS,IC,1.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5882352941176471,0.5882352941176471,SERC,SWPP,MO,39.073315,-93.714748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2131,Higginsville,3,1981.0,2.4,2.4,2.4,1,DFO,Petroleum Liquids,OS,IC,5.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.073315,-93.714748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2131,Higginsville,4,1996.0,40.0,37.5,40.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,SERC,SWPP,MO,39.073315,-93.714748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2131,Higginsville,5,2004.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,10.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.073315,-93.714748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2131,Higginsville,6,2004.0,5.5,4.5,5.4,1,DFO,Petroleum Liquids,OP,IC,10.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.9818181818181819,SERC,SWPP,MO,39.073315,-93.714748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2134,Jackson Square,1,1969.0,18.0,15.0,15.0,2,DFO,Petroleum Liquids,OP,GT,6.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333334,0.8333333333333334,MRO,SWPP,MO,39.094574,-94.411522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.743303571428573 -2134,Jackson Square,2,1969.0,18.0,15.0,15.0,2,DFO,Petroleum Liquids,OP,GT,6.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333334,0.8333333333333334,MRO,SWPP,MO,39.094574,-94.411522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.743303571428573 -2135,Station H,1,1972.0,19.0,19.0,19.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,MO,39.1067,-94.3804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.650860337388416 -2135,Station H,2,1974.0,24.0,20.0,20.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,0.8333333333333334,MRO,SWPP,MO,39.1067,-94.3804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.650856463554476 -2136,Station I,1,1972.0,19.0,19.0,19.0,2,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,MO,39.055954,-94.392957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.569938176197837 -2136,Station I,2,1972.0,19.0,19.0,19.0,2,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,MO,39.055954,-94.392957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.569938176197837 -2137,Jackson (MO),10,2006.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15817944413356 -2137,Jackson (MO),11,2006.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15817944413356 -2137,Jackson (MO),12,2006.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15817944413356 -2137,Jackson (MO),3,1963.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,OP,IC,4.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15817944413356 -2137,Jackson (MO),4,1963.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,OP,IC,7.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15817944413356 -2137,Jackson (MO),5,1936.0,0.7,0.6,0.6,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1936.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15401012523315 -2137,Jackson (MO),6,1946.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,6.0,1946.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15817944413356 -2137,Jackson (MO),7,1973.0,6.8,6.5,6.8,2.5,DFO,Petroleum Liquids,OP,IC,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9558823529411765,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15643515470704 -2137,Jackson (MO),8,1973.0,6.8,6.5,6.8,2.5,DFO,Petroleum Liquids,OP,IC,7.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9558823529411765,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15643515470704 -2137,Jackson (MO),9,1983.0,3.0,2.7,3.0,0.5,DFO,Petroleum Liquids,OP,IC,7.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,SERC,MISO,MO,37.3847,-89.6606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.15487440935091 -2138,Kahoka,10,1999.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,11,1999.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,12,1999.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,OP,IC,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,3,1941.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1941.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,6,1952.0,0.7,0.7,0.7,0.4,DFO,Petroleum Liquids,OP,IC,1.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,7,1956.0,0.8,0.7,0.8,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,8,1969.0,1.5,1.4,1.5,0.7,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9333333333333332,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2138,Kahoka,9,1982.0,0.9,0.8,0.9,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,1.0,SERC,MISO,MO,40.4225,-91.7206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2139,Kennett,10,1971.0,6.2,5.6,5.6,5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9032258064516128,0.9032258064516128,SERC,SWPP,MO,36.2338,-90.0521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736236792363865 -2139,Kennett,11,1975.0,6.2,5.6,5.6,5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9032258064516128,0.9032258064516128,SERC,SWPP,MO,36.2338,-90.0521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736236792363865 -2139,Kennett,12,2001.0,6.4,5.7,5.7,5.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.890625,0.890625,SERC,SWPP,MO,36.2338,-90.0521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.73623354885554 -2139,Kennett,13,2001.0,6.4,5.7,5.7,5.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.890625,0.890625,SERC,SWPP,MO,36.2338,-90.0521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.73623354885554 -2139,Kennett,9,1965.0,6.2,5.6,5.6,5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9032258064516128,0.9032258064516128,SERC,SWPP,MO,36.2338,-90.0521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736236792363865 -2140,La Plata,1,2013.0,1.8,1.7,1.7,0.2,DFO,Petroleum Liquids,OP,IC,3.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,SWPP,MO,40.0244,-92.4896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.0 -2140,La Plata,2,2013.0,1.8,1.7,1.7,0.2,DFO,Petroleum Liquids,OP,IC,3.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,SWPP,MO,40.0244,-92.4896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.0 -2141,Macon,4,1985.0,1.0,0.7,0.7,0.4,DFO,Petroleum Liquids,SB,IC,9.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7,0.7,SERC,AECI,MO,39.7378,-92.4689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2142,Malden,2A,1996.0,1.8,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,2.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.472150656361183 -2142,Malden,3A,1996.0,1.8,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,2.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.472150656361183 -2142,Malden,4A,1996.0,1.8,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,2.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.472150656361183 -2142,Malden,5,1957.0,1.4,1.2,1.2,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.47243473460052 -2142,Malden,6,1963.0,2.0,1.8,1.8,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.472367912548998 -2142,Malden,7,1973.0,2.8,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8928571428571429,0.8928571428571429,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.47243473460052 -2142,Malden,8,1973.0,4.3,3.8,3.8,1.5,DFO,Petroleum Liquids,SB,IC,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8837209302325582,0.8837209302325582,MRO,SWPP,MO,36.5531,-89.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.472331356084535 -2144,Marshall (MO),10,1990.0,6.3,6.3,6.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.1228,-93.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.749340359028013 -2144,Marshall (MO),11,1994.0,6.3,6.3,6.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,39.1228,-93.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.749340359028013 -2144,Marshall (MO),7,1988.0,1.0,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,39.1228,-93.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.7493359072085 -2144,Marshall (MO),8,1988.0,1.0,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,39.1228,-93.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.7493359072085 -2144,Marshall (MO),9,1988.0,1.0,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,39.1228,-93.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.7493359072085 -2144,Marshall (MO),GT1,1972.0,15.2,14.0,17.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9210526315789475,1.0,SERC,SWPP,MO,39.1228,-93.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.888664710198093 -2145,Memphis,1,1972.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.510091743119265 -2145,Memphis,10,1989.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,OP,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.501650165016502 -2145,Memphis,11,1989.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,OP,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.501650165016502 -2145,Memphis,12,1989.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,OP,IC,11.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.48901098901099 -2145,Memphis,13,1990.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,OP,IC,9.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.501650165016502 -2145,Memphis,3,1945.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,OP,IC,12.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.48901098901099 -2145,Memphis,6,1957.0,0.9,0.9,0.9,0,DFO,Petroleum Liquids,OP,IC,12.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.502444987775062 -2145,Memphis,7,1960.0,1.1,1.1,1.1,0,DFO,Petroleum Liquids,OP,IC,12.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.5 -2145,Memphis,8,1966.0,1.3,1.3,1.3,0,DFO,Petroleum Liquids,OP,IC,12.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.498307952622673 -2145,Memphis,9,1972.0,1.3,1.3,1.3,0,DFO,Petroleum Liquids,OP,IC,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.4578,-92.181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.498307952622673 -2161,James River Power Station,GT1,1989.0,96.0,75.0,75.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,0.78125,MRO,SWPP,MO,37.108611,-93.261944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2161,James River Power Station,GT2,1992.0,101.5,80.0,80.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7881773399014779,0.7881773399014779,MRO,SWPP,MO,37.108611,-93.261944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2164,Unionville City of,1,1970.0,0.8,0.6,0.6,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.98913043478261 -2164,Unionville City of,2,1975.0,1.7,1.7,1.7,0.2,DFO,Petroleum Liquids,OP,IC,10.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.025641025641026 -2164,Unionville City of,3,1935.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1935.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.000000000000002 -2164,Unionville City of,4,1970.0,1.0,0.9,0.9,0.2,DFO,Petroleum Liquids,OP,IC,7.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.991304347826086 -2164,Unionville City of,5,1955.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.176470588235293 -2164,Unionville City of,6,1955.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.176470588235293 -2164,Unionville City of,7,1962.0,1.1,0.9,0.9,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.03968253968254 -2164,Unionville City of,8,1967.0,1.3,1.1,1.1,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.033557046979865 -2164,Unionville City of,9,1994.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.476742,-93.010018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.995652173913042 -2166,Table Rock,1,1959.0,50.0,53.0,53.0,15,WAT,Conventional Hydroelectric,OP,HY,5.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,MO,36.597,-93.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2166,Table Rock,2,1959.0,50.0,53.0,53.0,15,WAT,Conventional Hydroelectric,OP,HY,5.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,MO,36.597,-93.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2166,Table Rock,3,1961.0,50.0,57.5,57.5,15,WAT,Conventional Hydroelectric,OP,HY,5.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,MO,36.597,-93.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2166,Table Rock,4,1961.0,50.0,53.0,53.0,15,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,MO,36.597,-93.3086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2167,New Madrid,1,1972.0,650.0,575.0,599.0,175,RC,Conventional Steam Coal,OP,ST,10.0,1972.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8846153846153846,0.9215384615384615,SERC,AECI,MO,36.5147,-89.5617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.454995618610207 -2167,New Madrid,2,1977.0,650.0,566.0,586.0,175,RC,Conventional Steam Coal,OP,ST,6.0,1977.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8707692307692307,0.9015384615384615,SERC,AECI,MO,36.5147,-89.5617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.032887939547747 -2168,Thomas Hill,1,1966.0,171.7,165.0,166.0,100,RC,Conventional Steam Coal,OP,ST,12.0,1966.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9609784507862552,0.9668025626092022,SERC,AECI,MO,39.5522,-92.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2168,Thomas Hill,2,1969.0,272.0,268.0,276.0,150,RC,Conventional Steam Coal,OP,ST,3.0,1969.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9852941176470589,1.0,SERC,AECI,MO,39.5522,-92.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2168,Thomas Hill,3,1982.0,738.0,698.0,716.0,175,RC,Conventional Steam Coal,OP,ST,5.0,1982.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.94579945799458,0.9701897018970189,SERC,AECI,MO,39.5522,-92.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2176,Glendive GT,GT-2,2003.0,43.0,40.1,43.2,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9325581395348838,1.0,MRO,MISO,MT,47.0539,-104.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.59720387355611 -2176,Glendive GT,GT1,1979.0,40.7,34.8,40.9,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8550368550368549,1.0,MRO,MISO,MT,47.0539,-104.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2177,Miles City GT,1,1972.0,23.3,23.6,27.5,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,MT,46.4112,-105.7953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.63362068965517 -2181,Black Eagle,BLA1,1927.0,7.8,8.5,8.5,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.521331,-111.261442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2181,Black Eagle,BLA2,1927.0,7.8,7.0,7.0,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8974358974358975,0.8974358974358975,WECC,NWMT,MT,47.521331,-111.261442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2181,Black Eagle,BLA3,1927.0,8.4,7.0,7.0,1,WAT,Conventional Hydroelectric,OA,HY,9.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.8333333333333333,WECC,NWMT,MT,47.521331,-111.261442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2182,Cochrane,COC1,1958.0,28.4,31.0,31.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.5375,-111.194969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2182,Cochrane,COC2,1958.0,32.0,32.0,32.0,1,WAT,Conventional Hydroelectric,OA,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.5375,-111.194969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2185,Hauser,HAU1,1911.0,2.8,2.8,2.8,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1911.0,9,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.765941,-111.887341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2185,Hauser,HAU11,2021.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,5.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.765941,-111.887341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2185,Hauser,HAU3,1911.0,2.8,2.8,2.8,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1911.0,6,2026,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.765941,-111.887341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2185,Hauser,HAU6,1915.0,3.0,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.765941,-111.887341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2185,Hauser,HAU7,2019.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,5.0,2019.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.765941,-111.887341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2185,Hauser,HAU8,2022.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,11.0,2022.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.765941,-111.887341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2186,Holter,HOL1,1918.0,9.6,13.3,13.3,1,WAT,Conventional Hydroelectric,OA,HY,7.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.9915,-112.0047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2186,Holter,HOL2,1918.0,9.6,13.3,13.3,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.9915,-112.0047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2186,Holter,HOL3,1918.0,12.0,12.0,12.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.9915,-112.0047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2186,Holter,HOL4,1918.0,9.6,13.3,13.3,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.9915,-112.0047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2188,Selis Ksanka Qlispe,KER1,1938.0,70.6,70.6,70.6,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.6777,-114.2339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2188,Selis Ksanka Qlispe,KER2,1949.0,70.6,70.6,70.6,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.6777,-114.2339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2188,Selis Ksanka Qlispe,KER3,1954.0,86.6,86.6,86.6,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.6777,-114.2339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2191,Morony,MOR1,1930.0,31.5,24.5,24.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777778,0.7777777777777778,WECC,NWMT,MT,47.581737,-111.060898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2191,Morony,MOR2,1930.0,31.5,24.5,24.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777778,0.7777777777777778,WECC,NWMT,MT,47.581737,-111.060898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2192,Mystic,MYS1,1925.0,6.0,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,45.225741,-109.762489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2192,Mystic,MYS2,1925.0,6.0,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,45.225741,-109.762489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2193,Rainbow (MT),RAI9,2013.0,59.0,64.0,64.0,1,WAT,Conventional Hydroelectric,OP,HY,3.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.5344,-111.2045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2194,Ryan,RYA1,1915.0,9.2,12.0,12.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.569939,-111.122546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2194,Ryan,RYA2,1915.0,9.2,12.0,12.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.569939,-111.122546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2194,Ryan,RYA3,1915.0,9.2,12.0,12.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.569939,-111.122546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2194,Ryan,RYA4,1915.0,9.2,12.0,12.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.569939,-111.122546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2194,Ryan,RYA5,1916.0,9.2,11.5,11.5,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.569939,-111.122546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2194,Ryan,RYA6,1916.0,9.2,12.0,12.0,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.569939,-111.122546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF1,1917.0,7.0,7.5,7.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF2,1917.0,7.0,6.5,6.5,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF3,1916.0,7.0,7.5,7.5,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF4,1916.0,6.0,6.5,6.5,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF5,1915.0,7.0,6.0,6.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.9285714285714286,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF6,1915.0,7.0,6.5,6.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2195,Thompson Falls,TF7,1915.0,57.1,53.0,53.0,10,WAT,Conventional Hydroelectric,OP,HY,7.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9281961471103327,0.9281961471103327,WECC,NWMT,MT,47.593155,-115.358237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2196,Old Faithful,1,1979.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,NWMT,WY,44.4533,-110.8347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.913333333333334 -2196,Old Faithful,2,1979.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,NWMT,WY,44.4533,-110.8347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.913333333333334 -2199,Noxon Rapids,1,1959.0,99.0,113.9,120.3,30,WAT,Conventional Hydroelectric,OP,HY,9.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,MT,47.96048,-115.73361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2199,Noxon Rapids,2,1959.0,76.8,105.0,120.0,30,WAT,Conventional Hydroelectric,OP,HY,10.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,MT,47.96048,-115.73361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2199,Noxon Rapids,3,1959.0,99.0,113.9,120.0,30,WAT,Conventional Hydroelectric,OP,HY,12.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,MT,47.96048,-115.73361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2199,Noxon Rapids,4,1960.0,99.0,113.9,120.0,30,WAT,Conventional Hydroelectric,OP,HY,4.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,MT,47.96048,-115.73361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2199,Noxon Rapids,5,1977.0,114.0,134.0,142.2,40,WAT,Conventional Hydroelectric,OP,HY,12.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,MT,47.96048,-115.73361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2203,Hungry Horse,1,1952.0,107.0,107.0,107.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.341521,-114.01443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2203,Hungry Horse,2,1952.0,107.0,107.0,107.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.341521,-114.01443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2203,Hungry Horse,3,1953.0,107.0,107.0,107.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.341521,-114.01443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2203,Hungry Horse,4,1953.0,107.0,107.0,107.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.341521,-114.01443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2204,Yellowtail,1,1966.0,71.9,71.9,71.9,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,45.307406,-107.957515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2204,Yellowtail,2,1966.0,62.5,71.9,71.9,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,45.307406,-107.957515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2204,Yellowtail,3,1966.0,71.9,71.9,71.9,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,45.307406,-107.957515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2204,Yellowtail,4,1966.0,71.9,71.8,71.8,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9986091794158553,0.9986091794158553,WECC,WAUW,MT,45.307406,-107.957515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2214,Ansley,2,1976.0,0.9,0.8,0.8,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,NE,41.289185,-99.386336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.769230769230768 -2214,Ansley,3,1969.0,0.6,0.5,0.5,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,SWPP,NE,41.289185,-99.386336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.76923076923077 -2215,Auburn,1,1982.0,2.4,2.2,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9166666666666667,1.0,MRO,SWPP,NE,40.3883,-95.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.068013734812467 -2215,Auburn,2,1949.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,MRO,SWPP,NE,40.3883,-95.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.068145800316959 -2215,Auburn,4A,1993.0,3.7,3.7,3.7,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.3883,-95.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.06758608874422 -2215,Auburn,5,1973.0,3.3,3.0,3.3,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909092,1.0,MRO,SWPP,NE,40.3883,-95.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.067518248175181 -2215,Auburn,6,1967.0,2.7,2.5,2.7,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9259259259259258,1.0,MRO,SWPP,NE,40.3883,-95.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.067378800328678 -2215,Auburn,7,1987.0,5.6,5.2,5.6,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,1.0,MRO,SWPP,NE,40.3883,-95.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.068089200815033 -2217,Beaver City,1,1957.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,40.130304,-99.827772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2217,Beaver City,2,1963.0,0.3,0.3,0.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.130304,-99.827772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2217,Beaver City,3,1947.0,0.3,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,SWPP,NE,40.130304,-99.827772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2217,Beaver City,4,1967.0,0.9,0.8,0.9,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,1.0,MRO,SWPP,NE,40.130304,-99.827772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2221,Broken Bow,1,1936.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1936.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.4031,-99.6392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.553498704183636 -2221,Broken Bow,2,1970.0,3.5,3.5,3.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.4031,-99.6392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.5532049925957265 -2221,Broken Bow,3,1945.0,0.8,0.7,0.7,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,NE,41.4031,-99.6392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.552984729291994 -2221,Broken Bow,4,1951.0,0.8,0.7,0.7,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,NE,41.4031,-99.6392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.552984729291994 -2221,Broken Bow,5,1951.0,1.0,1.0,1.0,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.4031,-99.6392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.553498704183636 -2221,Broken Bow,6,1961.0,2.1,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,0.9523809523809523,MRO,SWPP,NE,41.4031,-99.6392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.553107095636844 -2222,Burwell,1,1972.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.780313,-99.136071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2222,Burwell,2,1968.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.780313,-99.136071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2222,Burwell,3,1960.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,7.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.780313,-99.136071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2222,Burwell,4,1955.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,3.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.780313,-99.136071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2223,Cambridge,CAT1,2005.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.286178,-100.176836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.297297297297296 -2223,Cambridge,CAT2,2005.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.286178,-100.176836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.297297297297296 -2225,Campbell Village,IC4,1983.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,9.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.2992,-98.7331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2226,Canaday,1,1958.0,108.8,99.3,99.3,0,NG,Natural Gas Steam Turbine,OP,ST,1.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9126838235294118,0.9126838235294118,MRO,SWPP,NE,40.6942,-99.7011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.424230436957213 -2227,Jeffrey,1,1941.0,10.8,10.5,10.5,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9722222222222222,0.9722222222222222,MRO,SWPP,NE,40.959405,-100.397905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2227,Jeffrey,2,1941.0,10.8,10.5,10.5,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9722222222222222,0.9722222222222222,MRO,SWPP,NE,40.959405,-100.397905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2228,Johnson 1,1,1941.0,10.8,10.0,10.0,2,WAT,Conventional Hydroelectric,OP,HY,4.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9259259259259258,0.9259259259259258,MRO,SWPP,NE,40.6936,-99.8178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2228,Johnson 1,2,1941.0,10.8,10.0,10.0,2,WAT,Conventional Hydroelectric,OP,HY,4.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9259259259259258,0.9259259259259258,MRO,SWPP,NE,40.6936,-99.8178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2229,Johnson 2,1,1941.0,22.5,22.5,22.5,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,NE,40.6839,-99.7447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2230,Chappell,5,1982.0,1.1,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,NE,41.092589,-102.471547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.2 -2231,Crete,7,1973.0,6.0,6.0,6.1,6,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.6253,-96.9601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.109756097560975 -2232,Curtis,2,1955.0,0.9,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,NE,40.631453,-100.515161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.386451446724479 -2232,Curtis,3,1969.0,1.1,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,NE,40.631453,-100.515161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.386582367404285 -2232,Curtis,4,1975.0,1.4,1.2,1.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,NE,40.631453,-100.515161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.386190528755934 -2233,David City,1,1960.0,1.5,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.319389485585077 -2233,David City,2,1949.0,1.0,0.8,0.8,0,DFO,Petroleum Liquids,OP,IC,1.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.321882951653944 -2233,David City,3,1955.0,1.0,0.9,0.9,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.321882951653944 -2233,David City,4,1966.0,2.3,1.8,1.8,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7826086956521741,0.7826086956521741,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.31926267281106 -2233,David City,5,1996.0,1.6,1.3,1.3,0,DFO,Petroleum Liquids,OP,IC,12.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8125,0.8125,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.319024907260202 -2233,David City,6,1996.0,1.6,1.3,1.3,0,DFO,Petroleum Liquids,OP,IC,12.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8125,0.8125,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.319024907260202 -2233,David City,7,1996.0,1.6,1.3,1.3,0,DFO,Petroleum Liquids,OP,IC,12.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8125,0.8125,MRO,SWPP,NE,41.254652,-97.119202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.319024907260202 -2234,Deshler,4,1956.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.1408,-97.7239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2234,Deshler,5,1999.0,1.1,1.1,1.1,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.1408,-97.7239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2235,Emerson,2,1968.0,1.1,1.1,1.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.276,-96.7292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.499636363636363 -2235,Emerson,3,1947.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.276,-96.7292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.504 -2235,Emerson,4,1960.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.276,-96.7292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.5 -2237,Falls City,1,1930.0,0.6,0.6,0.6,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1930.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.6743961352657 -2237,Falls City,2,1937.0,0.9,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,8.0,1937.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.67325032202662 -2237,Falls City,3,1965.0,2.7,2.3,2.3,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8518518518518517,0.8518518518518517,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.673178760555317 -2237,Falls City,4,1946.0,1.1,0.8,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1946.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7272727272727273,0.7272727272727273,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.673458633409451 -2237,Falls City,5,1950.0,2.0,1.4,1.4,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7,0.7,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.673268283257656 -2237,Falls City,6,1958.0,2.5,2.0,2.0,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.673081381868768 -2237,Falls City,7,1972.0,6.2,5.9,5.9,4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9516129032258065,0.9516129032258065,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.673003209822681 -2237,Falls City,8,1982.0,6.0,6.0,6.0,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.67295678495524 -2237,Falls City,9,2018.0,9.3,9.3,9.3,3.9,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.055,-95.6083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.672871566875804 -2238,Franklin (NE),1,1963.0,0.6,0.6,0.6,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.0892,-98.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.4615 -2238,Franklin (NE),2,1974.0,1.3,1.3,1.3,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.0892,-98.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.46272790214632 -2238,Franklin (NE),3,1969.0,1.1,1.1,1.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.0892,-98.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.460321788928281 -2238,Franklin (NE),4,1955.0,0.9,0.9,0.9,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.0892,-98.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.461666666666666 -2240,Lon Wright,5OT,2003.0,40.0,38.0,40.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.95,1.0,MRO,SWPP,NE,41.4281,-96.4623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2240,Lon Wright,6,1957.0,16.5,15.5,15.5,6,SUB,Conventional Steam Coal,OP,ST,8.0,1957.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9393939393939394,0.9393939393939394,MRO,SWPP,NE,41.4281,-96.4623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2240,Lon Wright,7,1963.0,22.0,21.0,21.0,6,SUB,Conventional Steam Coal,OP,ST,8.0,1963.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9545454545454546,0.9545454545454546,MRO,SWPP,NE,41.4281,-96.4623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2240,Lon Wright,8,1976.0,91.5,82.0,82.0,30,SUB,Conventional Steam Coal,OP,ST,1.0,1976.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8961748633879781,0.8961748633879781,MRO,SWPP,NE,41.4281,-96.4623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.674498579424624 -2240,Lon Wright,SLR1,2018.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,41.4281,-96.4623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2240,Lon Wright,SLR2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,41.4281,-96.4623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2241,C W Burdick,GT1,1968.0,16.0,13.6,14.8,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.925,MRO,SWPP,NE,40.9228,-98.3269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2241,C W Burdick,GT2,2003.0,63.4,34.0,40.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5362776025236593,0.6309148264984228,MRO,SWPP,NE,40.9228,-98.3269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2241,C W Burdick,GT3,2003.0,63.4,34.0,40.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5362776025236593,0.6309148264984228,MRO,SWPP,NE,40.9228,-98.3269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2243,Don Henry,1,1972.0,22.0,18.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8181818181818181,0.8181818181818181,MRO,SWPP,NE,40.583155,-98.420055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.514622435617635 -2244,North Denver,4,1957.0,17.0,15.0,15.0,6,NG,Natural Gas Steam Turbine,SB,ST,12.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8823529411764706,0.8823529411764706,MRO,SWPP,NE,40.598839,-98.38863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,130.19941176470587 -2244,North Denver,5,1967.0,22.0,24.0,24.0,7,NG,Natural Gas Steam Turbine,SB,ST,10.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,NE,40.598839,-98.38863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,90.250875 -2248,Kimball,1,1956.0,1.0,0.7,0.8,0.5,DFO,Petroleum Liquids,OP,IC,9.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7,0.8,MRO,SWPP,NE,41.2382,-103.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872971876690103 -2248,Kimball,2,1955.0,1.0,0.7,0.8,0.5,DFO,Petroleum Liquids,OP,IC,9.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7,0.8,MRO,SWPP,NE,41.2382,-103.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872971876690103 -2248,Kimball,3,1959.0,1.3,1.0,1.1,0.7,DFO,Petroleum Liquids,OP,IC,9.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.8461538461538463,MRO,SWPP,NE,41.2382,-103.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.87331634510375 -2248,Kimball,4,1960.0,1.3,1.0,1.1,0.7,DFO,Petroleum Liquids,OP,IC,9.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.8461538461538463,MRO,SWPP,NE,41.2382,-103.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.87331634510375 -2248,Kimball,5,1944.0,1.1,0.6,0.6,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1944.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5454545454545454,0.5454545454545454,MRO,SWPP,NE,41.2382,-103.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.873148546493761 -2248,Kimball,6,1974.0,3.9,3.6,3.7,2,DFO,Petroleum Liquids,OP,IC,9.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9230769230769231,0.9487179487179488,MRO,SWPP,NE,41.2382,-103.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.873145194841214 -2249,Laurel,1,1974.0,1.3,1.1,1.2,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8461538461538463,0.923076923076923,MRO,SWPP,NE,42.430539,-97.090814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.665769403319874 -2249,Laurel,2,1970.0,0.9,0.7,0.8,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7777777777777777,0.888888888888889,MRO,SWPP,NE,42.430539,-97.090814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.6662346079066754 -2249,Laurel,7,1992.0,1.3,1.1,1.2,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8461538461538463,0.923076923076923,MRO,SWPP,NE,42.430539,-97.090814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.665769403319874 -2250,J Street,1,1972.0,27.0,29.3,31.7,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,NE,40.80788,-96.710667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.371933784800603 -2253,Lyons,2,1953.0,0.5,0.2,0.2,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.4,0.4,MRO,SWPP,NE,41.9374,-96.4668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2253,Lyons,3,1960.0,0.8,0.3,0.3,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.375,0.375,MRO,SWPP,NE,41.9374,-96.4668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2253,Lyons,4A,1967.0,1.2,0.6,0.6,0.4,DFO,Petroleum Liquids,OP,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.5,MRO,SWPP,NE,41.9374,-96.4668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,10,1979.0,6.5,5.8,5.8,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8923076923076922,0.8923076923076922,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,2,1953.0,1.5,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,5.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,3,1955.0,2.5,2.0,2.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,4,1957.0,3.1,2.7,2.7,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8709677419354839,0.8709677419354839,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,5,1964.0,2.0,1.7,1.7,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.85,0.85,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,8,1971.0,4.1,3.6,3.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.878048780487805,0.878048780487805,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2255,Nebraska City # 1,9,1974.0,6.4,5.8,5.8,4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9062499999999999,0.9062499999999999,MRO,SWPP,NE,40.6806,-95.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2256,Syracuse # 2,6,1969.0,2.0,1.6,1.6,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,40.6756,-96.177778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2256,Syracuse # 2,7,1970.0,2.0,1.6,1.6,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,40.6756,-96.177778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2260,Columbus,1,1936.0,15.2,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.986842105263158,0.986842105263158,MRO,SWPP,NE,41.4639,-97.3283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2260,Columbus,2,1936.0,15.2,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.986842105263158,0.986842105263158,MRO,SWPP,NE,41.4639,-97.3283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2260,Columbus,3,1936.0,15.2,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.986842105263158,0.986842105263158,MRO,SWPP,NE,41.4639,-97.3283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2265,Hallam,1,1973.0,56.7,41.9,41.9,0,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7389770723104057,0.7389770723104057,MRO,SWPP,NE,40.558652,-96.786177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2266,Hebron,1,1973.0,56.7,41.9,41.9,0,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7389770723104057,0.7389770723104057,MRO,SWPP,NE,40.187928,-97.577857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2268,Kearney,1,1921.0,1.5,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,MRO,SWPP,NE,40.703511,-99.100753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2271,McCook,1,1973.0,56.7,39.7,39.7,0,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7001763668430335,0.7001763668430335,MRO,SWPP,NE,40.2214,-100.6508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2273,Monroe (NE),1,1936.0,2.8,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3571428571428572,0.3571428571428572,MRO,SWPP,NE,41.4872,-97.6078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2273,Monroe (NE),2,1936.0,2.8,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3571428571428572,0.3571428571428572,MRO,SWPP,NE,41.4872,-97.6078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2273,Monroe (NE),3,1936.0,2.8,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3571428571428572,0.3571428571428572,MRO,SWPP,NE,41.4872,-97.6078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2274,North Platte,1,1935.0,13.1,12.0,12.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.916030534351145,0.916030534351145,MRO,SWPP,NE,41.0864,-100.7594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2274,North Platte,2,1935.0,13.1,12.0,12.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.916030534351145,0.916030534351145,MRO,SWPP,NE,41.0864,-100.7594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2277,Sheldon,1,1961.0,108.8,104.0,104.0,0,SUB,Conventional Steam Coal,OP,ST,1.0,1961.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9558823529411765,0.9558823529411765,MRO,SWPP,NE,40.5589,-96.7847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.748764653594998 -2277,Sheldon,2,1965.0,119.9,113.0,113.0,0,SUB,Conventional Steam Coal,OP,ST,1.0,1965.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9424520433694745,0.9424520433694745,MRO,SWPP,NE,40.5589,-96.7847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.67289606933223 -2290,Jones Street,1,1973.0,65.0,61.2,61.2,23,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9415384615384615,0.9415384615384615,MRO,SWPP,NE,41.251488,-95.922682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.213519525457244 -2290,Jones Street,2,1973.0,65.0,62.2,62.2,23,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.956923076923077,0.956923076923077,MRO,SWPP,NE,41.251488,-95.922682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.503732081067724 -2291,North Omaha,1,1954.0,73.5,63.0,,38,NG,Natural Gas Steam Turbine,OP,ST,7.0,1954.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,,MRO,SWPP,NE,41.32909,-95.94466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.672576982025918 -2291,North Omaha,2,1957.0,108.8,83.4,,55,NG,Natural Gas Steam Turbine,OP,ST,4.0,1957.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7665441176470589,,MRO,SWPP,NE,41.32909,-95.94466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.593281870073387 -2291,North Omaha,3,1959.0,108.8,92.5,42.6,55,NG,Natural Gas Steam Turbine,OP,ST,4.0,1959.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8501838235294118,0.3915441176470589,MRO,SWPP,NE,41.32909,-95.94466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.275049508762423 -2291,North Omaha,4,1963.0,136.0,117.7,101.8,61,SUB,Conventional Steam Coal,OP,ST,3.0,1963.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8654411764705883,0.7485294117647059,MRO,SWPP,NE,41.32909,-95.94466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771279645868788 -2291,North Omaha,5,1968.0,217.6,216.2,174.9,75,SUB,Conventional Steam Coal,OP,ST,5.0,1968.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9935661764705882,0.8037683823529412,MRO,SWPP,NE,41.32909,-95.94466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.111196685134578 -2292,Sarpy County,1,1972.0,55.4,55.4,55.4,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,NE,41.170594,-95.970603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.72740424865692 -2292,Sarpy County,2,1972.0,55.4,55.9,55.9,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,NE,41.170594,-95.970603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.046230488477118 -2292,Sarpy County,3,1996.0,106.3,107.8,107.8,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,NE,41.170594,-95.970603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2292,Sarpy County,4,2000.0,58.9,48.7,48.7,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8268251273344652,0.8268251273344652,MRO,SWPP,NE,41.170594,-95.970603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2292,Sarpy County,5,2000.0,58.9,47.9,47.9,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8132427843803056,0.8132427843803056,MRO,SWPP,NE,41.170594,-95.970603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2292,Sarpy County,BSD,1996.0,3.5,3.4,3.4,3.4,DFO,Petroleum Liquids,SB,IC,5.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,MRO,SWPP,NE,41.170594,-95.970603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2294,Ord,1,1973.0,5.0,5.0,5.0,0,DFO,Petroleum Liquids,OP,IC,1.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.604164,-98.926144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.98805771621895 -2294,Ord,2,1966.0,1.5,1.0,1.0,0,DFO,Petroleum Liquids,OP,IC,1.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,SWPP,NE,41.604164,-98.926144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987951807228916 -2294,Ord,3,1963.0,2.5,2.0,2.0,0,DFO,Petroleum Liquids,OP,IC,1.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,41.604164,-98.926144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987739995373582 -2294,Ord,4A,1997.0,1.5,1.4,1.4,0,DFO,Petroleum Liquids,OP,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,SWPP,NE,41.604164,-98.926144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987951807228916 -2294,Ord,5A,1997.0,1.5,1.4,1.4,0,DFO,Petroleum Liquids,OP,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,SWPP,NE,41.604164,-98.926144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987951807228916 -2295,Oxford (NE),2,1953.0,0.6,0.5,0.6,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,1.0,MRO,SWPP,NE,40.2581,-99.6108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.321797207043108 -2295,Oxford (NE),3,1956.0,0.9,0.8,0.9,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,1.0,MRO,SWPP,NE,40.2581,-99.6108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.321100917431192 -2295,Oxford (NE),4,1956.0,0.6,0.5,0.6,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,1.0,MRO,SWPP,NE,40.2581,-99.6108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.321797207043108 -2295,Oxford (NE),5,1972.0,1.3,1.2,1.3,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,1.0,MRO,SWPP,NE,40.2581,-99.6108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.321315150382963 -2296,Pender,1,1968.0,1.5,1.2,1.2,1.1,DFO,Petroleum Liquids,OP,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,NE,42.114742,-96.705431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.520756771471348 -2296,Pender,2,1973.0,2.0,2.0,2.0,1.8,DFO,Petroleum Liquids,OP,IC,1.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.114742,-96.705431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.520722743977135 -2296,Pender,3,1953.0,0.5,0.5,0.5,0.5,DFO,Petroleum Liquids,OS,IC,1.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.114742,-96.705431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.52082482645978 -2296,Pender,4,1961.0,0.9,0.8,0.8,0.8,DFO,Petroleum Liquids,OP,IC,1.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,NE,42.114742,-96.705431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.521324863883848 -2297,Plainview Muncipal Power,1,1949.0,1.1,1.1,1.1,1.1,DFO,Petroleum Liquids,OS,IC,1.0,1949.0,1,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.35,-97.790556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2297,Plainview Muncipal Power,3,1958.0,0.9,0.9,0.9,0.9,DFO,Petroleum Liquids,OS,IC,1.0,1958.0,1,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.35,-97.790556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2297,Plainview Muncipal Power,4,1963.0,1.2,1.2,1.2,1.2,DFO,Petroleum Liquids,OS,IC,1.0,1963.0,1,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.35,-97.790556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2297,Plainview Muncipal Power,5,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OS,IC,6.0,1999.0,1,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.35,-97.790556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2299,Red Cloud,2,1953.0,0.9,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.6666666666666666,MRO,SWPP,NE,40.097954,-98.519032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.899683343888537 -2299,Red Cloud,3,1960.0,1.3,1.2,1.2,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,NE,40.097954,-98.519032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.899508944230094 -2299,Red Cloud,4,1968.0,1.3,1.2,1.2,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,NE,40.097954,-98.519032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.899508944230094 -2299,Red Cloud,5,1973.0,2.2,2.2,2.2,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.097954,-98.519032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.900145092755727 -2300,Sargent,1,1968.0,1.1,1.1,1.1,0.6,DFO,Petroleum Liquids,OP,IC,3.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.641588,-99.3698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.004364429896345 -2300,Sargent,3,1964.0,0.9,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.641588,-99.3698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.0 -2300,Sargent,4,1954.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.641588,-99.3698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.988005997001498 -2302,Sidney (NE),1,1949.0,1.2,1.0,1.1,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,0.9166666666666667,MRO,SWPP,NE,41.145634,-102.977836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.995753715498938 -2302,Sidney (NE),3,1931.0,0.8,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1931.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,SWPP,NE,41.145634,-102.977836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.993630573248407 -2302,Sidney (NE),5,1955.0,3.1,2.5,2.5,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8064516129032258,0.8064516129032258,MRO,SWPP,NE,41.145634,-102.977836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.998355263157895 -2303,Spalding,1,1919.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,NE,41.68138,-98.36756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2303,Spalding,2,1956.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,NE,41.68138,-98.36756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2303,Spalding,4,1947.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.68138,-98.36756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.002375296912113 -2303,Spalding,5,1959.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.68138,-98.36756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.002375296912113 -2303,Spalding,6,1975.0,1.3,1.3,1.3,0.3,DFO,Petroleum Liquids,SB,IC,7.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.68138,-98.36756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.998903909389842 -2305,Stuart (NE),1,1952.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.599377,-99.143707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.750678610206297 -2305,Stuart (NE),2,1960.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.599377,-99.143707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.751543942992873 -2305,Stuart (NE),3,1952.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.599377,-99.143707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.751543942992873 -2305,Stuart (NE),5,1997.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,42.599377,-99.143707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.750029687685549 -2308,Tecumseh,1,1948.0,0.7,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,SWPP,NE,40.3664,-96.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.48979591836734 -2308,Tecumseh,2,1968.0,1.5,1.4,1.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,SWPP,NE,40.3664,-96.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.48980952380952 -2308,Tecumseh,3,1953.0,1.1,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1953.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,NE,40.3664,-96.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.48974025974026 -2308,Tecumseh,4,1960.0,1.3,1.2,1.2,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,NE,40.3664,-96.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.48978021978022 -2308,Tecumseh,5A,1993.0,2.4,2.4,2.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.3664,-96.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.48982142857143 -2310,Wahoo,1,1960.0,2.5,2.1,2.1,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8400000000000001,0.8400000000000001,MRO,SWPP,NE,41.211798,-96.61155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.166614073840329 -2310,Wahoo,2,1936.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1936.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,NE,41.211798,-96.61155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.162460567823343 -2310,Wahoo,3,1973.0,4.4,4.4,4.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.211798,-96.61155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.167652859960551 -2310,Wahoo,4,1947.0,1.2,1.1,1.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,MRO,SWPP,NE,41.211798,-96.61155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.167652859960553 -2310,Wahoo,5,1952.0,2.1,2.2,2.2,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.211798,-96.61155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.1664162283997 -2310,Wahoo,6,1969.0,3.5,3.4,3.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,MRO,SWPP,NE,41.211798,-96.61155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.165652467883705 -2311,Wakefield,2,1915.0,0.6,0.5,0.5,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1915.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,SWPP,NE,42.2691,-96.8621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.55656795747912 -2311,Wakefield,5,1966.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,1.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,MRO,SWPP,NE,42.2691,-96.8621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.553608969866854 -2311,Wakefield,6,1971.0,1.3,1.1,1.1,1.1,DFO,Petroleum Liquids,OP,IC,1.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,MRO,SWPP,NE,42.2691,-96.8621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.553608969866854 -2311,Wakefield,IC4,1961.0,0.9,0.6,0.6,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.6666666666666666,MRO,SWPP,NE,42.2691,-96.8621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.552125506072876 -2312,Wayne IC,1,1951.0,1.3,0.8,0.8,0,DFO,Petroleum Liquids,OP,IC,1.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6153846153846154,0.6153846153846154,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415293908509124 -2312,Wayne IC,2,1947.0,1.0,0.9,0.9,0,DFO,Petroleum Liquids,SB,IC,1.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415321804105842 -2312,Wayne IC,3,1956.0,1.9,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,1.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415264544901683 -2312,Wayne IC,4,1960.0,2.0,1.9,1.9,0,DFO,Petroleum Liquids,OP,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415101970073371 -2312,Wayne IC,5,1966.0,3.5,3.3,3.3,0,DFO,Petroleum Liquids,OP,IC,1.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9428571428571428,0.9428571428571428,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415144378906595 -2312,Wayne IC,6,1968.0,5.1,4.9,4.9,0,DFO,Petroleum Liquids,OP,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9607843137254903,0.9607843137254903,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415178267994834 -2312,Wayne IC,7,1998.0,3.5,3.3,3.3,0,DFO,Petroleum Liquids,OP,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9428571428571428,0.9428571428571428,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415144378906595 -2312,Wayne IC,8,1998.0,3.5,3.3,3.3,0,DFO,Petroleum Liquids,OP,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9428571428571428,0.9428571428571428,MRO,SWPP,NE,42.2278,-97.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415144378906595 -2313,West Point Municipal,2,1947.0,0.9,0.9,0.9,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.844936,-96.71345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.621894820295983 -2313,West Point Municipal,3,1959.0,1.2,1.2,1.2,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.844936,-96.71345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.621543950054505 -2313,West Point Municipal,4,1965.0,2.3,2.3,2.3,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.844936,-96.71345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.621581097151129 -2315,Wilber,4,1960.0,1.1,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,NE,40.4797,-96.9604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.333454545454545 -2315,Wilber,5,1960.0,0.9,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.6666666666666666,MRO,SWPP,NE,40.4797,-96.9604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.333333333333334 -2315,Wilber,6,1997.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.4797,-96.9604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.33325 -2316,Wisner,3,1969.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.988069,-96.915994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.999525015832807 -2316,Wisner,4,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.988069,-96.915994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.000084445195068 -2316,Wisner,5,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.988069,-96.915994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.000084445195068 -2322,Clark (NVE),10,1994.0,104.4,85.0,88.0,32,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.814176245210728,0.842911877394636,WECC,NEVP,NV,36.0875,-115.0507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2322,Clark (NVE),11,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 11,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-5.122348591654737,748.8181031315132,-0.007255981536361402,-4.411457647172824,731.4175933113518,10.095028057318746,#TRUE#,#2008-08-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),12,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 12,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-10.677308591615793,1008.9720231291953,-0.007546407650122926,-9.934440527988468,990.7054850072083,9.826879595107547,#TRUE#,#2008-07-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),13,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 13,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-4.715668624197898,733.8587447306435,-0.006135373793390478,-4.113862572213925,719.114585374806,10.197706037829713,#TRUE#,#2008-11-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),14,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 14,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-11.974308600296487,1069.0320235569354,-0.00462184274398571,-11.524538404824982,1058.1047190553693,9.750410506051152,#TRUE#,#2008-07-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),15,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 15,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-10.232748591636476,989.4949031304874,-0.008507231101609232,-9.394640723042935,968.8705752002046,9.875628289486608,#TRUE#,#2008-07-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),16,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 16,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-10.575028591622111,1004.4334631295899,-0.003303165106473112,-10.25354654350258,996.6192474915938,9.836927614238139,#TRUE#,#2008-07-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),17,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 17,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-8.97982859164495,927.9310631310176,-0.0092494262381236,-8.069164770581219,905.5350091662243,9.877456552631411,#TRUE#,#2008-07-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),18,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 18,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-6.002532766682692,761.2036877076649,-0.00020912528963849396,-5.982013219328345,760.701307033258,9.834125164974784,#TRUE#,#2008-07-01#,#2050-12-31#,Existing,NEVP,SW_NVE,45.0,52.0,0.0,NV,NG,Areo,#FALSE#,45,52, -2322,Clark (NVE),19,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 19,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-9.371568591643035,947.0535431308975,-0.0036920755460517034,-9.01167768330883,938.2912824925166,9.874320913830946,#TRUE#,#2008-11-01#,#2050-12-31#,Existing,NEVP,SW_NVE,47.0,52.0,0.0,NV,NG,Areo,#FALSE#,47,52, -2322,Clark (NVE),20,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 20,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-36.21945827535147,2302.4277891506167,-0.08120590868072582,-28.053497476848374,2097.1992414849346,9.522398472188245,#TRUE#,#2008-08-01#,#2050-12-31#,Existing,NEVP,SW_NVE,49.0,52.0,0.0,NV,NG,Areo,#FALSE#,49,52, -2322,Clark (NVE),21,2008.0,58.9,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8828522920203735,0.967741935483871,WECC,NEVP,NV,36.0875,-115.0507,Clark 21,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-7.0744894681176875,822.9774321069932,-0.004041296285882715,-6.680150350236127,813.3697637557804,9.845640329038194,#TRUE#,#2008-11-01#,#2050-12-31#,Existing,NEVP,SW_NVE,46.0,52.0,0.0,NV,NG,Areo,#FALSE#,46,52, -2322,Clark (NVE),22,2008.0,60.5,52.0,57.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859504132231405,0.9421487603305785,WECC,NEVP,NV,36.0875,-115.0507,Clark 22,GT Aero_FT8,False,1.0,1.0,-1.0,51.3,51.3,1707.608,258.21,1.0,0.45,52.0,-29.64822494083743,1975.2836557637027,-0.07104420617261344,-22.524637195033154,1796.77090053614,9.594326961748758,#TRUE#,#2008-09-01#,#2050-12-31#,Existing,NEVP,SW_NVE,49.0,52.0,0.0,NV,NG,Areo,#FALSE#,49,52, -2322,Clark (NVE),9,1993.0,104.4,85.0,88.0,32,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.814176245210728,0.842911877394636,WECC,NEVP,NV,36.0875,-115.0507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2322,Clark (NVE),GT4,1973.0,72.4,55.0,59.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7596685082872927,0.8149171270718232,WECC,NEVP,NV,36.0875,-115.0507,Clark 4,GT_MS-7000,False,1.0,1.0,-1.0,65.16,65.16,2168.962,15.928,1.0,0.45,72.4,-1.3415637305326291,669.5236102072639,-6.19710120720277e-06,-1.3409143813976916,669.5072708951496,11.952204909460558,#TRUE#,#1973-06-01#,#2030-12-31#,Existing,NEVP,SW_NVE,36.2,72.4,45.7,NV,NG,Industrial,#FALSE#,36.2,72.4, -2322,Clark (NVE),GT5,1979.0,92.5,73.0,81.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1979.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7891891891891891,0.8756756756756756,WECC,NEVP,NV,36.0875,-115.0507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2322,Clark (NVE),GT6,1979.0,92.5,73.0,81.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1979.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7891891891891891,0.8756756756756756,WECC,NEVP,NV,36.0875,-115.0507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2322,Clark (NVE),GT7,1980.0,92.5,73.0,81.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1980.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7891891891891891,0.8756756756756756,WECC,NEVP,NV,36.0875,-115.0507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2322,Clark (NVE),GT8,1982.0,92.5,73.0,81.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1982.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7891891891891891,0.8756756756756756,WECC,NEVP,NV,36.0875,-115.0507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2330,Fort Churchill,1,1968.0,115.0,113.0,113.0,18,NG,Natural Gas Steam Turbine,OP,ST,9.0,1968.0,9,2028,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9826086956521739,0.9826086956521739,WECC,NEVP,NV,39.1281,-119.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.822743494889737 -2330,Fort Churchill,2,1971.0,115.0,113.0,113.0,18,NG,Natural Gas Steam Turbine,OP,ST,9.0,1971.0,9,2028,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9826086956521739,0.9826086956521739,WECC,NEVP,NV,39.1281,-119.1322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.780159779563414 -2336,Tracy,10,2008.0,312.0,285.0,301.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9134615384615384,0.9647435897435898,WECC,NEVP,NV,39.5625,-119.525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2336,Tracy,3,1974.0,119.8,108.0,108.0,32,NG,Natural Gas Steam Turbine,OP,ST,10.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9015025041736228,0.9015025041736228,WECC,NEVP,NV,39.5625,-119.525,Tracy 3,ST-NG,False,1.0,1.0,-1.0,11.3,11.3,6670.349,1007.96,1.0,0.56,112.0,9.205408940531221,56.558600264541184,0.028766698282684657,5.594239440673777,150.0651591356445,10.43114854045691,#TRUE#,#1974-10-01#,#2024-12-31#,Existing,SPPC,SW_NVE,22.0,112.0,0.0,NV,NG,,#FALSE#,22,112,13.607024602341381 -2336,Tracy,4,1994.0,69.7,64.0,68.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9182209469153515,0.975609756097561,WECC,NEVP,NV,39.5625,-119.525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.471482651193071 -2336,Tracy,5,1996.0,50.2,40.0,40.0,17,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.796812749003984,0.796812749003984,WECC,NEVP,NV,39.5625,-119.525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.253174112726088 -2336,Tracy,8,2008.0,155.6,162.0,167.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,NEVP,NV,39.5625,-119.525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012821590430589 -2336,Tracy,9,2008.0,155.6,162.0,167.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,NEVP,NV,39.5625,-119.525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.149345664713994 -2336,Tracy,GT3,1994.0,85.0,66.3,72.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78,0.8470588235294118,WECC,NEVP,NV,39.5625,-119.525,Clark Mountain 3,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,75.0,3.193303643165517,342.6462932250993,0.43984548115665406,-44.01571653538399,1552.476669916557,10.1864689553068,#TRUE#,#1994-07-01#,#2034-12-31#,Existing,SPPC,SW_NVE,36.0,75.0,63.8096,NV,NG,Industrial,#FALSE#,36,75, -2336,Tracy,GT4,1994.0,85.0,66.3,72.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78,0.8470588235294118,WECC,NEVP,NV,39.5625,-119.525,Clark Mountain 4,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,75.0,3.377738715800514,351.10256231561453,0.46489738251836127,-47.53734930581582,1690.9980518740183,10.332299974858325,#TRUE#,#1994-07-01#,#2034-12-31#,Existing,SPPC,SW_NVE,38.0,75.0,62.344,NV,NG,Industrial,#FALSE#,38,75, -2349,Comerford,GEN1,1930.0,22.0,22.5,22.5,12,WAT,Conventional Hydroelectric,OP,HY,9.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.325053,-72.000975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2349,Comerford,GEN2,1930.0,48.6,47.8,48.5,12,WAT,Conventional Hydroelectric,OP,HY,9.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9835390946502057,0.9979423868312757,NPCC,ISNE,NH,44.325053,-72.000975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2349,Comerford,GEN3,1930.0,48.6,47.8,48.5,12,WAT,Conventional Hydroelectric,OP,HY,9.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9835390946502057,0.9979423868312757,NPCC,ISNE,NH,44.325053,-72.000975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2349,Comerford,GEN4,1930.0,48.6,47.8,48.5,12,WAT,Conventional Hydroelectric,OP,HY,9.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9835390946502057,0.9979423868312757,NPCC,ISNE,NH,44.325053,-72.000975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2351,S C Moore,GEN1,1957.0,47.7,47.2,47.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.989517819706499,1.0,NPCC,ISNE,NH,44.3356,-71.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2351,S C Moore,GEN2,1957.0,47.7,47.2,47.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.989517819706499,1.0,NPCC,ISNE,NH,44.3356,-71.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2351,S C Moore,GEN3,1957.0,47.7,47.2,47.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.989517819706499,1.0,NPCC,ISNE,NH,44.3356,-71.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2351,S C Moore,GEN4,1957.0,47.7,47.2,47.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.989517819706499,1.0,NPCC,ISNE,NH,44.3356,-71.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,1,1909.0,2.0,2.4,2.4,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,10,1921.0,4.2,4.0,4.0,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9523809523809523,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,2,1909.0,2.0,2.4,2.4,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,3,1909.0,2.0,2.4,2.4,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,4,1909.0,2.5,2.4,2.4,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.96,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,5,2008.0,4.5,3.6,3.6,3,WAT,Conventional Hydroelectric,OP,HY,4.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,6A,2008.0,5.0,4.5,4.5,3,WAT,Conventional Hydroelectric,OP,HY,3.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,7A,2008.0,5.0,4.5,4.5,3,WAT,Conventional Hydroelectric,OP,HY,3.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,8,2008.0,4.5,3.6,3.6,3,WAT,Conventional Hydroelectric,OP,HY,3.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2352,Vernon Dam,9,1921.0,4.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9523809523809523,NPCC,ISNE,VT,42.77165,-72.5146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2353,Wilder,GEN1,1950.0,16.2,18.1,19.0,3,WAT,Conventional Hydroelectric,OP,HY,11.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.667927,-72.303642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2353,Wilder,GEN2,1950.0,16.2,18.1,19.0,3,WAT,Conventional Hydroelectric,OP,HY,11.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.667927,-72.303642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2353,Wilder,GEN3,1987.0,3.2,2.8,2.8,2.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,VT,43.667927,-72.303642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2354,Amoskeag,1,1924.0,6.0,6.2,6.5,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.00223,-71.47208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2354,Amoskeag,2,1922.0,5.0,5.3,5.5,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.00223,-71.47208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2354,Amoskeag,3,1922.0,5.0,5.3,5.5,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.00223,-71.47208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2355,Ayers Island,1,1925.0,2.8,2.8,3.0,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.597849,-71.717683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2355,Ayers Island,2,1925.0,2.8,2.8,3.0,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.597849,-71.717683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2355,Ayers Island,3,1925.0,2.8,2.8,3.0,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.597849,-71.717683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2356,Eastman Falls,1,1937.0,1.8,1.8,1.8,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.447219,-71.6579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2356,Eastman Falls,2,1983.0,4.6,3.8,4.7,0.9,WAT,Conventional Hydroelectric,OP,HY,11.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8260869565217391,1.0,NPCC,ISNE,NH,43.447219,-71.6579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2357,Garvins Falls,1,1981.0,3.4,3.4,3.4,1.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.165524,-71.509441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2357,Garvins Falls,2,1981.0,3.4,3.3,3.4,1.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9705882352941176,1.0,NPCC,ISNE,NH,43.165524,-71.509441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2357,Garvins Falls,3,1925.0,2.4,2.4,2.4,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.165524,-71.509441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2357,Garvins Falls,4,1925.0,3.2,3.2,3.2,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.165524,-71.509441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2358,Gorham,1,1917.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.408278,-71.195354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2358,Gorham,2,1917.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.408278,-71.195354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2358,Gorham,3,1923.0,0.7,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,NPCC,ISNE,NH,44.408278,-71.195354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2358,Gorham,4,1923.0,0.7,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,NPCC,ISNE,NH,44.408278,-71.195354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2359,Hooksett,1,1927.0,1.6,1.6,1.6,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.101699,-71.465662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2360,Jackman,1,1926.0,3.2,3.6,3.4,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.11055,-71.94889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2362,Lost Nation,GT1,1969.0,18.0,14.0,18.1,4,DFO,Petroleum Liquids,OP,GT,9.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7777777777777778,1.0,NPCC,ISNE,NH,44.595117,-71.494398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2364,Merrimack,1,1960.0,113.6,108.0,108.0,80,BIT,Conventional Steam Coal,OP,ST,12.0,1960.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9507042253521127,0.9507042253521127,NPCC,ISNE,NH,43.1411,-71.4692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.126251580789486 -2364,Merrimack,2,1968.0,345.6,330.5,330.0,120,BIT,Conventional Steam Coal,OP,ST,5.0,1968.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9563078703703703,0.954861111111111,NPCC,ISNE,NH,43.1411,-71.4692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.215400579844978 -2364,Merrimack,GT1,1968.0,18.6,16.8,21.7,4,JF,Petroleum Liquids,OP,GT,8.0,1968.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.9032258064516129,1.0,NPCC,ISNE,NH,43.1411,-71.4692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2364,Merrimack,GT2,1969.0,18.6,16.8,21.3,4,JF,Petroleum Liquids,OP,GT,8.0,1969.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.9032258064516129,1.0,NPCC,ISNE,NH,43.1411,-71.4692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2367,Schiller,4,1952.0,50.0,47.5,48.0,13,BIT,Conventional Steam Coal,OS,ST,10.0,1952.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.95,0.96,NPCC,ISNE,NH,43.0978,-70.7842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2367,Schiller,5,1955.0,50.0,43.1,42.6,35,WDS,Wood/Wood Waste Biomass,OS,ST,5.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.862,0.8520000000000001,NPCC,ISNE,NH,43.0978,-70.7842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2367,Schiller,6,1957.0,50.0,47.9,48.6,13,BIT,Conventional Steam Coal,OS,ST,7.0,1957.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.958,0.972,NPCC,ISNE,NH,43.0978,-70.7842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2367,Schiller,GT1,1970.0,21.2,17.0,18.0,5,JF,Petroleum Liquids,OP,GT,11.0,1970.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.8018867924528302,0.8490566037735849,NPCC,ISNE,NH,43.0978,-70.7842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2368,Smith (NH),1,1948.0,15.0,11.7,15.2,3,WAT,Conventional Hydroelectric,OP,HY,8.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7799999999999999,1.0,NPCC,ISNE,NH,44.469463,-71.178062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2369,White Lake,GT1,1968.0,18.6,17.5,22.4,4,JF,Petroleum Liquids,OP,GT,7.0,1968.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.9408602150537634,1.0,NPCC,ISNE,NH,43.8478,-71.2069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2379,Carlls Corner,CA1,1973.0,41.9,37.6,49.8,33.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1973.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8973747016706445,1.0,RFC,PJM,NJ,39.4547,-75.2014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2379,Carlls Corner,CA2,1973.0,41.9,39.2,49.8,35.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1973.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9355608591885443,1.0,RFC,PJM,NJ,39.4547,-75.2014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2390,Sayreville,GT1,1972.0,53.0,57.1,70.0,50,DFO,Petroleum Liquids,OP,GT,3.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,NJ,40.476525,-74.352336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2390,Sayreville,GT2,1972.0,53.0,56.7,70.0,50,DFO,Petroleum Liquids,OP,GT,3.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,NJ,40.476525,-74.352336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2390,Sayreville,GT3,1972.0,53.0,54.6,70.0,50,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,NJ,40.476525,-74.352336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2390,Sayreville,GT4,1973.0,53.0,48.5,70.0,45,DFO,Petroleum Liquids,OP,GT,10.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9150943396226415,1.0,RFC,PJM,NJ,40.476525,-74.352336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2393,Gilbert,4,1974.0,54.0,49.0,56.0,42,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9074074074074074,1.0,RFC,PJM,NJ,40.565833,-75.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2393,Gilbert,5,1974.0,54.0,53.0,56.0,42,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9814814814814815,1.0,RFC,PJM,NJ,40.565833,-75.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2393,Gilbert,6,1974.0,54.0,55.0,56.0,42,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.565833,-75.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2393,Gilbert,7,1974.0,54.0,55.5,56.0,42,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.565833,-75.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2393,Gilbert,8,1977.0,135.0,90.0,104.0,37,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6666666666666667,0.7703703703703704,RFC,PJM,NJ,40.565833,-75.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2393,Gilbert,9,1996.0,161.0,152.7,167.0,150,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9484472049689441,1.0,RFC,PJM,NJ,40.565833,-75.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.489413581822822 -2398,Bergen Generating Station,1101,1995.0,112.5,110.0,110.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9777777777777777,0.9777777777777777,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.341422345652637 -2398,Bergen Generating Station,1201,1995.0,112.5,110.0,110.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9777777777777777,0.9777777777777777,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.011801178676667 -2398,Bergen Generating Station,1301,1995.0,112.5,115.0,115.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.675727714890703 -2398,Bergen Generating Station,1401,1995.0,112.5,115.0,115.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.318388040892044 -2398,Bergen Generating Station,1501,1959.0,325.2,204.0,204.0,92,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6273062730627306,0.6273062730627306,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2398,Bergen Generating Station,2101,2002.0,183.6,178.5,178.5,127,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9722222222222222,0.9722222222222222,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.744494044208723 -2398,Bergen Generating Station,2201,2002.0,183.6,174.0,174.0,127,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9477124183006537,0.9477124183006537,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.020025127206623 -2398,Bergen Generating Station,2301,2002.0,258.4,238.5,238.5,127,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9229876160990713,0.9229876160990713,RFC,PJM,NJ,40.8375,-74.0244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2399,PSEG Burlington Generating Station,121,2000.0,60.5,42.0,42.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,RFC,PJM,NJ,40.076611,-74.879172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.968978243042834 -2399,PSEG Burlington Generating Station,122,2000.0,60.5,42.0,42.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,RFC,PJM,NJ,40.076611,-74.879172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.857810765070226 -2399,PSEG Burlington Generating Station,123,2000.0,60.5,42.0,42.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,RFC,PJM,NJ,40.076611,-74.879172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.121129058710634 -2399,PSEG Burlington Generating Station,124,2000.0,60.5,42.0,42.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,RFC,PJM,NJ,40.076611,-74.879172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.253644107127279 -2404,PSEG Kearny Generating Station,131,2012.0,60.5,46.9,46.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.775206611570248,0.775206611570248,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.665025959386519 -2404,PSEG Kearny Generating Station,132,2012.0,60.5,46.9,46.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.775206611570248,0.775206611570248,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.90126238316219 -2404,PSEG Kearny Generating Station,133,2012.0,60.5,46.9,46.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.775206611570248,0.775206611570248,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.080084707411794 -2404,PSEG Kearny Generating Station,134,2012.0,60.5,46.9,46.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.775206611570248,0.775206611570248,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.20629562434176 -2404,PSEG Kearny Generating Station,141,2012.0,60.5,46.9,46.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.775206611570248,0.775206611570248,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.360205165547656 -2404,PSEG Kearny Generating Station,142,2012.0,60.5,46.9,46.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.775206611570248,0.775206611570248,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.457446312203792 -2404,PSEG Kearny Generating Station,N121,2001.0,60.5,43.8,43.8,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7239669421487602,0.7239669421487602,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2404,PSEG Kearny Generating Station,N122,2001.0,60.5,43.7,43.7,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7223140495867769,0.7223140495867769,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2404,PSEG Kearny Generating Station,N123,2001.0,60.5,43.8,43.8,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7239669421487602,0.7239669421487602,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2404,PSEG Kearny Generating Station,N124,2001.0,60.5,43.7,43.7,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7223140495867769,0.7223140495867769,RFC,PJM,NJ,40.737283,-74.096464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2406,PSEG Linden Generating Station,1001,2006.0,315.0,252.0,252.0,155,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8,0.8,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2406,PSEG Linden Generating Station,1101,2006.0,181.4,199.0,199.0,155,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.348155015933042 -2406,PSEG Linden Generating Station,1201,2006.0,181.4,199.0,199.0,155,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.359103256601895 -2406,PSEG Linden Generating Station,2001,2006.0,315.0,252.0,252.0,155,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8,0.8,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2406,PSEG Linden Generating Station,2101,2006.0,181.4,199.0,199.0,155,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.262070102353414 -2406,PSEG Linden Generating Station,2201,2006.0,181.4,199.0,199.0,155,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.18854064073925 -2406,PSEG Linden Generating Station,5,2000.0,96.1,86.0,86.0,56.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.894901144640999,0.894901144640999,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.241771856233212 -2406,PSEG Linden Generating Station,6,2000.0,96.1,86.0,86.0,56.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.894901144640999,0.894901144640999,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.849102694872801 -2406,PSEG Linden Generating Station,7,1995.0,96.1,84.0,84.0,55.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8740894901144641,0.8740894901144641,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.589701904215831 -2406,PSEG Linden Generating Station,8,1995.0,96.1,80.2,80.2,53.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8345473465140479,0.8345473465140479,RFC,PJM,NJ,40.6217,-74.2072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.269421673657845 -2410,PSEG Salem Generating Station,1,1977.0,1170.0,1145.8,1145.8,1145.8,NUC,Nuclear,OP,ST,6.0,1977.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9793162393162392,0.9793162393162392,RFC,PJM,NJ,39.4625,-75.5358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2410,PSEG Salem Generating Station,2,1981.0,1170.0,1138.9,1138.9,1138.9,NUC,Nuclear,OP,ST,10.0,1981.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9734188034188035,0.9734188034188035,RFC,PJM,NJ,39.4625,-75.5358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2410,PSEG Salem Generating Station,3,1971.0,41.8,38.4,38.4,38,DFO,Petroleum Liquids,SB,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9186602870813397,0.9186602870813397,RFC,PJM,NJ,39.4625,-75.5358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2411,PSEG Sewaren Generating Station,701,2018.0,365.5,338.0,338.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9247606019151847,0.9247606019151847,RFC,PJM,NJ,40.5558,-74.2469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2411,PSEG Sewaren Generating Station,702,2018.0,244.0,200.0,200.0,85,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.819672131147541,0.819672131147541,RFC,PJM,NJ,40.5558,-74.2469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2434,Howard Down,11,2012.0,68.2,55.0,60.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8064516129032258,0.8797653958944281,RFC,PJM,NJ,39.4889,-75.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2442,Four Corners,4,1969.0,818.1,770.0,770.0,364,SUB,Conventional Steam Coal,OP,ST,7.0,1969.0,12,2031,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9412052316342745,0.9412052316342745,WECC,AZPS,NM,36.69,-108.4814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.832289259192246 -2442,Four Corners,5,1970.0,818.1,770.0,770.0,364,SUB,Conventional Steam Coal,OP,ST,7.0,1970.0,12,2031,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9412052316342745,0.9412052316342745,WECC,AZPS,NM,36.69,-108.4814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.450095586314612 -2444,Rio Grande,6,1957.0,50.0,45.0,47.0,18,NG,Natural Gas Steam Turbine,OP,ST,6.0,1957.0,12,2024,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.94,WECC,EPE,NM,31.8047,-106.5472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.767336965952133 -2444,Rio Grande,7,1958.0,50.0,47.0,48.0,18,NG,Natural Gas Steam Turbine,OP,ST,6.0,1958.0,12,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.94,0.96,WECC,EPE,NM,31.8047,-106.5472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.836393365167632 -2444,Rio Grande,8,1972.0,166.5,139.0,147.0,44,NG,Natural Gas Steam Turbine,OP,ST,7.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8348348348348349,0.8828828828828829,WECC,EPE,NM,31.8047,-106.5472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.219948401265762 -2444,Rio Grande,9,2013.0,131.8,83.0,93.0,17.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.629742033383915,0.7056145675265553,WECC,EPE,NM,31.8047,-106.5472,RioGrande9,GT LMS_LMS100PA,False,1.0,1.0,-1.0,79.11,79.11,2633.312,453.0,1.0,0.45,95.0,4.191813822986971,216.53999527545375,0.3243799748669896,-41.46997995817684,1767.567196535798,7.506984466251039,#TRUE#,#2013-05-01#,#2058-12-31#,Existing,EPE,SW_EPE,50.0,95.0,50.0,NM,NG,Areo,#FALSE#,50,95,9.509531177224266 -2446,Maddox,1,1967.0,113.6,112.0,112.0,35,NG,Natural Gas Steam Turbine,OP,ST,1.0,1967.0,12,2028,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9859154929577465,0.9859154929577465,MRO,SWPP,NM,32.714224,-103.301469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2446,Maddox,2,1976.0,86.9,61.0,63.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1976.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7019562715765246,0.7249712313003451,MRO,SWPP,NM,32.714224,-103.301469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2446,Maddox,3,1963.0,11.5,10.0,10.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1963.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913043,0.8695652173913043,MRO,SWPP,NM,32.714224,-103.301469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2450,Reeves,1,1960.0,44.0,42.0,42.0,10,NG,Natural Gas Steam Turbine,OP,ST,8.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9545454545454546,0.9545454545454546,WECC,PNM,NM,35.171,-106.6019,Reeves 1,ST-NG,False,4.0,2.0,-1.0,4.4,4.4,3023.018,392.48,1.0,0.29,44.0,9.03725360670489,33.10691799414207,0.29475824340172063,-5.9368223101405935,194.2930967352941,10.738319170417522,#TRUE#,#1960-08-01#,#2050-12-31#,Existing,PNM,SW_PNM,10.0,44.0,44.0,NM,NG,,#FALSE#,10,44,13.535202318983043 -2450,Reeves,2,1960.0,44.0,41.0,41.0,10,NG,Natural Gas Steam Turbine,OP,ST,3.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9318181818181819,0.9318181818181819,WECC,PNM,NM,35.171,-106.6019,Reeves 2,ST-NG,False,4.0,2.0,-1.0,4.4,4.4,3023.018,392.48,1.0,0.29,44.0,9.178268618250442,34.73083571229271,0.18680012360597148,-0.31140404475881345,136.88098378168593,10.96277264969171,#TRUE#,#1958-12-01#,#2050-12-31#,Existing,PNM,SW_PNM,10.0,44.0,43.0,NM,NG,,#FALSE#,10,44,14.82536539671782 -2450,Reeves,3,1962.0,66.0,63.0,63.0,15,NG,Natural Gas Steam Turbine,OP,ST,7.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9545454545454546,0.9545454545454546,WECC,PNM,NM,35.171,-106.6019,Reeves 3,ST-NG,False,4.0,2.0,-1.0,6.6,6.6,4534.527,14.52,1.0,0.29,66.0,9.75008610453633,21.493935606751357,0.11677448979296383,0.8516405449479946,165.17341015540612,10.48633316982121,#TRUE#,#1962-07-01#,#2050-12-31#,Existing,PNM,SW_PNM,15.0,66.0,66.0,NM,NG,,#FALSE#,15,66,12.754642163023275 -2454,Cunningham,1,1957.0,75.0,71.0,71.0,31,NG,Natural Gas Steam Turbine,OP,ST,1.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9466666666666667,0.9466666666666667,MRO,SWPP,NM,32.7131,-103.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2454,Cunningham,2,1965.0,190.4,183.0,183.0,59,NG,Natural Gas Steam Turbine,OP,ST,1.0,1965.0,12,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9611344537815125,0.9611344537815125,MRO,SWPP,NM,32.7131,-103.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2454,Cunningham,3,1998.0,126.9,106.0,98.0,87,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1998.0,12,2040,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8353033884948778,0.7722616233254531,MRO,SWPP,NM,32.7131,-103.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2454,Cunningham,4,1998.0,126.9,103.0,98.0,87,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1998.0,12,2040,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8116627265563435,0.7722616233254531,MRO,SWPP,NM,32.7131,-103.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2475,Algodones,1,1954.0,15.0,15.0,15.0,15,NG,Natural Gas Steam Turbine,OS,ST,10.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PNM,NM,35.384444,-106.464167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2475,Algodones,2,1954.0,15.0,15.0,15.0,15,NG,Natural Gas Steam Turbine,OS,ST,10.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PNM,NM,35.384444,-106.464167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2475,Algodones,3,1959.0,15.0,15.0,15.0,15,NG,Natural Gas Steam Turbine,OS,ST,3.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PNM,NM,35.384444,-106.464167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2480,Danskammer Generating Station,1,1951.0,72.0,68.0,68.0,20,NG,Natural Gas Steam Turbine,OP,ST,12.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9444444444444444,NPCC,NYIS,NY,41.573361,-73.96457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.211381818181819 -2480,Danskammer Generating Station,2,1954.0,73.5,65.7,65.5,20,NG,Natural Gas Steam Turbine,OP,ST,9.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8938775510204082,0.891156462585034,NPCC,NYIS,NY,41.573361,-73.96457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.99804872006606 -2480,Danskammer Generating Station,3,1959.0,147.1,137.7,137.1,40,NG,Natural Gas Steam Turbine,OP,ST,10.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9360978925900747,0.9320190346702923,NPCC,NYIS,NY,41.573361,-73.96457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.668843268337975 -2480,Danskammer Generating Station,4,1967.0,239.4,225.9,229.5,60,NG,Natural Gas Steam Turbine,OP,ST,9.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.943609022556391,0.9586466165413534,NPCC,NYIS,NY,41.573361,-73.96457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.134349947943779 -2480,Danskammer Generating Station,5,1967.0,2.7,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,NPCC,NYIS,NY,41.573361,-73.96457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2480,Danskammer Generating Station,6,1967.0,2.7,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,NPCC,NYIS,NY,41.573361,-73.96457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2481,Dashville,1,1920.0,2.4,2.4,2.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.8217,-74.0497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2481,Dashville,2,1920.0,2.4,2.4,2.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.8217,-74.0497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2483,Neversink,H1,1953.0,25.0,25.0,25.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.8194,-74.6358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2485,South Cairo,GT1,1970.0,21.3,18.1,22.9,2,KER,Petroleum Liquids,OP,GT,6.0,1970.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8497652582159625,1.0,NPCC,NYIS,NY,42.291275,-73.986452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.677894736842106 -2486,Sturgeon,H1,1924.0,4.8,4.8,4.8,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.848191,-74.046678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2486,Sturgeon,H2,1924.0,4.8,4.8,4.8,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.848191,-74.046678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2486,Sturgeon,H3,1924.0,4.8,4.8,4.8,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.848191,-74.046678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2487,West Coxsackie,GT1,1969.0,21.3,20.2,24.8,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.948356807511737,1.0,NPCC,NYIS,NY,42.350889,-73.815798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2490,Arthur Kill Generating Station,2,1959.0,342.0,346.3,362.1,90,NG,Natural Gas Steam Turbine,OP,ST,9.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.591564,-74.200035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2490,Arthur Kill Generating Station,3,1969.0,535.5,519.0,523.4,150,NG,Natural Gas Steam Turbine,OP,ST,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.969187675070028,0.9774042950513538,NPCC,NYIS,NY,40.591564,-74.200035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2490,Arthur Kill Generating Station,GT1,1970.0,18.0,12.3,15.8,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6833333333333333,0.8777777777777778,NPCC,NYIS,NY,40.591564,-74.200035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2493,East River,1,2005.0,180.0,155.1,201.6,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8616666666666666,1.0,NPCC,NYIS,NY,40.7281,-73.9742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.728431449905745 -2493,East River,2,2005.0,180.0,155.8,198.5,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8655555555555556,1.0,NPCC,NYIS,NY,40.7281,-73.9742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.083690594975673 -2493,East River,6,1951.0,156.2,141.4,146.6,45,NG,Natural Gas Steam Turbine,OP,ST,11.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9052496798975673,0.9385403329065302,NPCC,NYIS,NY,40.7281,-73.9742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2493,East River,7,1955.0,200.0,184.2,188.1,65,NG,Natural Gas Steam Turbine,OP,ST,6.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9209999999999999,0.9405,NPCC,NYIS,NY,40.7281,-73.9742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT11,1971.0,20.0,19.1,24.9,16,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9550000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT12,1971.0,20.0,17.1,22.3,16,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8550000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT13,1971.0,20.0,17.2,22.5,16,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.86,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT14,1971.0,20.0,17.1,22.3,15.6,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8550000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT15,1971.0,20.0,16.5,21.6,15.9,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.825,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT16,1971.0,20.0,18.0,23.5,15.6,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT17,1971.0,20.0,17.6,23.0,16,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8800000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT18,1971.0,20.0,17.9,23.4,14.6,DFO,Petroleum Liquids,OS,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8949999999999999,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT21,1971.0,20.0,17.9,23.4,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8949999999999999,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT22,1971.0,20.0,18.8,24.6,15.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9400000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT23,1971.0,20.0,20.6,26.9,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT24,1971.0,20.0,19.3,25.2,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9650000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT25,1971.0,20.0,18.6,24.3,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.93,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT26,1971.0,20.0,20.3,26.5,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT27,1971.0,20.0,19.6,25.6,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9800000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT28,1971.0,20.0,17.7,23.1,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.885,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT31,1971.0,20.0,17.7,23.1,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.885,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT32,1971.0,20.0,17.7,23.1,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.885,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT33,1971.0,20.0,19.8,25.9,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.99,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT34,1971.0,20.0,17.9,23.4,15.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8949999999999999,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT35,1971.0,20.0,19.0,24.8,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.95,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT36,1971.0,20.0,17.6,23.0,15.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8800000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT37,1971.0,20.0,18.1,23.6,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.905,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT38,1971.0,20.0,19.0,24.8,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.95,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT41,1971.0,20.0,16.8,21.9,16,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8400000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT42,1971.0,20.0,17.3,22.6,16,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.865,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT43,1971.0,20.0,17.6,23.0,16,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8800000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT44,1971.0,20.0,17.1,22.3,15.8,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8550000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT45,1971.0,20.0,17.1,22.3,15.7,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8550000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT46,1971.0,20.0,18.6,24.3,16,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.93,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT47,1971.0,20.0,16.6,21.7,14,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8300000000000001,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2494,Gowanus Gas Turbines Generating,GT48,1971.0,20.0,19.0,24.8,16,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.95,1.0,NPCC,NYIS,NY,40.6635,-74.0051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT11,1972.0,22.0,21.0,27.4,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9545454545454546,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT12,1972.0,22.0,19.5,25.5,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8863636363636364,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT13,1972.0,22.0,20.4,26.6,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9272727272727272,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT14,1972.0,22.0,20.1,26.3,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9136363636363637,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT15,1972.0,22.0,19.8,25.9,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT16,1972.0,22.0,18.9,24.7,15.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.859090909090909,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT17,1972.0,22.0,18.4,24.0,15.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8363636363636363,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT18,1972.0,22.0,19.9,26.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9045454545454545,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT21,1972.0,22.0,19.4,25.3,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8818181818181817,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT22,1972.0,22.0,18.7,24.4,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT23,1972.0,22.0,18.4,24.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8363636363636363,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT24,1972.0,22.0,18.4,24.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8363636363636363,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT25,1972.0,22.0,19.9,26.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9045454545454545,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT26,1972.0,22.0,18.1,23.6,15.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8227272727272728,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT27,1972.0,22.0,20.7,27.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9409090909090909,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2499,Narrows Gas Turbines Generating,NT28,1972.0,22.0,17.5,22.9,15.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7954545454545454,1.0,NPCC,NYIS,NY,40.648611,-74.020833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,1,1963.0,400.0,368.5,375.8,75,NG,Natural Gas Steam Turbine,OP,ST,2.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.92125,0.9395,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,2,1963.0,400.0,373.0,374.3,75,NG,Natural Gas Steam Turbine,OP,ST,5.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9325,0.9357500000000001,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,3,1965.0,1027.0,988.7,968.3,150,NG,Natural Gas Steam Turbine,OP,ST,6.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9627069133398247,0.9428432327166504,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,4,2003.0,181.0,161.8,185.8,115,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8939226519337017,1.0,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,4S,2003.0,87.5,78.3,89.8,0,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8948571428571428,1.0,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,GT1,1967.0,16.0,8.1,11.1,7,NG,Natural Gas Fired Combustion Turbine,OS,GT,7.0,1967.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.50625,0.69375,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,GT10,1969.0,25.0,16.0,20.3,10,NG,Natural Gas Fired Combustion Turbine,OS,GT,7.0,1969.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.64,0.812,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2500,Ravenswood,GT11,1969.0,25.0,16.4,22.4,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1969.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6559999999999999,0.8959999999999999,NPCC,NYIS,NY,40.759167,-73.946111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2503,59th Street,GT1,1969.0,17.1,13.1,16.1,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1969.0,4,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7660818713450291,0.9415204678362573,NPCC,NYIS,NY,40.771285,-73.99115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2504,74th Street,GT1,1968.0,18.5,18.5,21.7,8,KER,Petroleum Liquids,OP,GT,10.0,1968.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.768,-73.9515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2504,74th Street,GT2,1968.0,18.5,19.3,21.9,8,KER,Petroleum Liquids,OP,GT,10.0,1968.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.768,-73.9515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,10,1971.0,41.8,40.6,50.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9712918660287082,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -2511,E F Barrett,11,1971.0,41.8,40.1,50.5,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9593301435406699,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,12,1971.0,41.8,40.9,48.7,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9784688995215312,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,3,1970.0,18.0,17.7,20.2,10.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9833333333333333,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,4,1970.0,18.0,16.8,20.5,11.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333333,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,5,1970.0,18.0,17.6,20.1,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9777777777777779,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,6,1970.0,18.0,16.4,19.9,11.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.911111111111111,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,8,1970.0,18.0,15.1,15.2,11.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8388888888888889,0.8444444444444444,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,9,1971.0,41.8,41.2,49.2,29.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9856459330143542,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,GT1,1970.0,18.0,17.4,20.5,10.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9666666666666666,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,GT2,1970.0,18.0,17.6,20.4,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9777777777777779,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,ST1,1956.0,188.0,194.2,199.5,15,NG,Natural Gas Steam Turbine,OP,ST,11.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2511,E F Barrett,ST2,1963.0,188.0,178.0,190.5,15,NG,Natural Gas Steam Turbine,OP,ST,10.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9468085106382979,1.0,NPCC,NYIS,NY,40.616689,-73.647881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2512,East Hampton,1,1970.0,21.3,19.2,24.0,15.4,DFO,Petroleum Liquids,OP,GT,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9014084507042253,1.0,NPCC,NYIS,NY,40.961706,-72.210277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2512,East Hampton,2,1962.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.961706,-72.210277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2512,East Hampton,3,1962.0,2.0,2.0,2.1,2,DFO,Petroleum Liquids,OP,IC,12.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.961706,-72.210277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2512,East Hampton,4,1962.0,2.0,2.0,2.1,1.9,DFO,Petroleum Liquids,OP,IC,12.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.961706,-72.210277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2514,Glenwood,GT2,1972.0,55.0,49.0,55.1,40,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8909090909090909,1.0,NPCC,NYIS,NY,40.827149,-73.647473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2514,Glenwood,GT3,1972.0,55.0,55.1,68.6,44.1,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.827149,-73.647473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2516,Northport,2,1968.0,387.0,398.0,399.0,40,NG,Natural Gas Steam Turbine,OP,ST,6.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.923565,-73.342323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.168966131412665 -2516,Northport,3,1972.0,387.0,398.5,394.2,30,NG,Natural Gas Steam Turbine,OP,ST,7.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.923565,-73.342323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.576552368485935 -2516,Northport,4,1977.0,387.0,398.0,396.5,40,NG,Natural Gas Steam Turbine,OP,ST,12.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.923565,-73.342323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.22852101217461 -2516,Northport,GT1,1967.0,16.0,11.8,15.8,10.6,DFO,Petroleum Liquids,OP,GT,3.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7375,0.9875,NPCC,NYIS,NY,40.923565,-73.342323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2516,Northport,ST1,1967.0,387.0,397.7,396.2,40,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.923565,-73.342323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2517,Port Jefferson,3,1958.0,188.0,192.0,189.2,15,NG,Natural Gas Steam Turbine,OP,ST,11.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.949696,-73.078507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.955619445506262 -2517,Port Jefferson,4,1960.0,188.0,193.0,194.7,15,NG,Natural Gas Steam Turbine,OP,ST,11.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,40.949696,-73.078507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.678805869971008 -2517,Port Jefferson,GT1,1966.0,16.0,12.9,16.6,10.6,DFO,Petroleum Liquids,OP,GT,12.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.80625,1.0,NPCC,NYIS,NY,40.949696,-73.078507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2517,Port Jefferson,GT2,2002.0,53.0,42.6,46.7,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8037735849056604,0.8811320754716981,NPCC,NYIS,NY,40.949696,-73.078507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2517,Port Jefferson,GT3,2002.0,53.0,40.1,47.1,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7566037735849057,0.8886792452830189,NPCC,NYIS,NY,40.949696,-73.078507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2518,Shoreham,GT1,1971.0,52.9,49.8,65.0,39.4,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.941398865784499,1.0,NPCC,NYIS,NY,40.96159,-72.864976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2518,Shoreham,GT2,1966.0,18.6,15.9,19.7,12,DFO,Petroleum Liquids,OP,GT,4.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8548387096774193,1.0,NPCC,NYIS,NY,40.96159,-72.864976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2519,South Hampton,1,1963.0,11.5,8.5,10.4,6.6,DFO,Petroleum Liquids,OP,GT,3.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7391304347826086,0.9043478260869565,NPCC,NYIS,NY,40.899997,-72.381977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.334883720930236 -2520,Southold,1,1964.0,14.0,10.0,9.0,7.3,DFO,Petroleum Liquids,OP,GT,8.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7142857142857143,0.6428571428571428,NPCC,NYIS,NY,41.1059,-72.3761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.936450839328536 -2521,West Babylon,4,1971.0,52.4,49.7,66.5,41.5,DFO,Petroleum Liquids,SB,GT,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9484732824427482,1.0,NPCC,NYIS,NY,40.695485,-73.348573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2522,Cadyville,1,1921.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.695,-73.6219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2522,Cadyville,2,1921.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.695,-73.6219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2522,Cadyville,3,1986.0,3.1,3.1,3.1,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.695,-73.6219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2527,Greenidge Generation LLC,4,1953.0,112.0,104.5,106.3,32,NG,Natural Gas Steam Turbine,OP,ST,12.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9330357142857143,0.9491071428571428,NPCC,NYIS,NY,42.6789,-76.9483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2528,Harris Lake,1,1967.0,1.7,1.7,1.7,1.7,DFO,Petroleum Liquids,OP,IC,9.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.9719,-74.1861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -2528,Harris Lake,2,2017.0,2.5,2.3,2.3,2.3,DFO,Petroleum Liquids,OP,IC,8.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,NPCC,NYIS,NY,43.9719,-74.1861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -2530,High Falls - Saranac NY,1,1948.0,4.0,4.0,4.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6389,-73.7492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2530,High Falls - Saranac NY,2,1949.0,4.0,4.0,4.0,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6389,-73.7492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2530,High Falls - Saranac NY,3,1956.0,7.0,7.0,7.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6389,-73.7492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2532,Kent Falls,1,1928.0,3.2,3.8,3.8,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.7053,-73.5967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2532,Kent Falls,2,1928.0,3.2,3.8,3.8,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.7053,-73.5967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2532,Kent Falls,3,1985.0,6.0,6.0,6.0,0,WAT,Conventional Hydroelectric,OS,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.7053,-73.5967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2539,Bethlehem Energy Center,5,2005.0,194.3,178.4,205.8,170,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9181677817807514,1.0,NPCC,NYIS,NY,42.594196,-73.763752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2539,Bethlehem Energy Center,6,2005.0,194.3,179.7,205.8,170,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9248584662892433,1.0,NPCC,NYIS,NY,42.594196,-73.763752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2539,Bethlehem Energy Center,7,2005.0,194.3,177.9,205.8,170,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9155944415851776,1.0,NPCC,NYIS,NY,42.594196,-73.763752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2539,Bethlehem Energy Center,8,2005.0,310.2,279.5,307.3,170,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9010315925209542,0.9906511927788524,NPCC,NYIS,NY,42.594196,-73.763752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2540,Allens Falls,1,1927.0,4.0,3.5,5.0,3.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.875,1.0,NPCC,NYIS,NY,44.660338,-74.860265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2543,Beardslee,1,1924.0,10.0,8.5,8.9,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.85,0.89,NPCC,NYIS,NY,43.019113,-74.741349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2543,Beardslee,2,1924.0,10.0,8.1,7.8,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8099999999999999,0.78,NPCC,NYIS,NY,43.019113,-74.741349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2544,Belfort,1,1903.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.9275,-75.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2544,Belfort,2,1915.0,0.6,0.5,0.5,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,NPCC,NYIS,NY,43.9275,-75.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2544,Belfort,3,1918.0,1.0,0.9,0.9,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.9275,-75.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2545,Bennetts Bridge,1,1932.0,9.0,8.4,7.0,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,0.7777777777777778,NPCC,NYIS,NY,43.5317,-75.9531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2545,Bennetts Bridge,2,1932.0,9.0,8.4,7.5,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,0.8333333333333334,NPCC,NYIS,NY,43.5317,-75.9531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2545,Bennetts Bridge,3,1966.0,9.0,6.3,7.3,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.8111111111111111,NPCC,NYIS,NY,43.5317,-75.9531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2545,Bennetts Bridge,4,1966.0,9.0,7.2,7.3,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8111111111111111,NPCC,NYIS,NY,43.5317,-75.9531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2546,Black River,1,1920.0,2.0,1.5,2.3,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,44.000122,-75.813151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2546,Black River,2,1920.0,2.0,1.5,2.3,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,44.000122,-75.813151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2546,Black River,3,1920.0,2.0,1.5,2.3,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,44.000122,-75.813151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2547,Blake,1,1957.0,15.0,14.2,14.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9466666666666667,0.9666666666666667,NPCC,NYIS,NY,44.506474,-74.753442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2548,Browns Falls,1,1923.0,8.0,7.9,7.6,7,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9875,0.95,NPCC,NYIS,NY,44.211407,-75.059441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2548,Browns Falls,2,1923.0,8.0,7.9,7.6,7,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9875,0.95,NPCC,NYIS,NY,44.211407,-75.059441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2550,Chasm,1,1913.0,1.0,0.5,0.6,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.6,NPCC,NYIS,NY,44.7533,-74.2169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2550,Chasm,2,1913.0,1.0,0.5,0.6,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.6,NPCC,NYIS,NY,44.7533,-74.2169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2550,Chasm,3,1926.0,1.0,0.6,0.7,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.7,NPCC,NYIS,NY,44.7533,-74.2169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2551,Colton,1,1918.0,10.0,9.9,9.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.99,0.97,NPCC,NYIS,NY,44.5839,-74.9583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2551,Colton,2,1918.0,10.0,10.3,9.9,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.99,NPCC,NYIS,NY,44.5839,-74.9583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2551,Colton,3,1928.0,10.0,9.5,11.1,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,1.0,NPCC,NYIS,NY,44.5839,-74.9583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2552,Deferiet,1,1925.0,4.0,3.6,3.6,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,44.0381,-75.6806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2552,Deferiet,2,1925.0,4.0,3.6,3.6,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,44.0381,-75.6806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2552,Deferiet,3,1925.0,4.0,3.6,3.6,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,44.0381,-75.6806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2555,Eagle,1,1914.0,2.0,1.4,1.1,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.55,NPCC,NYIS,NY,43.909714,-75.200831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2555,Eagle,2,1915.0,1.0,1.2,1.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.909714,-75.200831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2555,Eagle,3,1919.0,1.0,1.2,1.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.909714,-75.200831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2555,Eagle,4,1925.0,2.0,2.0,1.8,1.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,NYIS,NY,43.909714,-75.200831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2556,Eel Weir,1,1928.0,0.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,44.638365,-75.49052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2556,Eel Weir,2,1928.0,1.0,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,44.638365,-75.49052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2556,Eel Weir,3,1928.0,1.0,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,44.638365,-75.49052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2557,Effley,1,1902.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1902.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.922831,-75.277923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2557,Effley,2,1907.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.922831,-75.277923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2557,Effley,3,1910.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,43.922831,-75.277923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2557,Effley,4,1923.0,1.6,1.7,1.4,1.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NYIS,NY,43.922831,-75.277923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2559,Elmer,1,1916.0,1.0,1.0,1.0,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.927536,-75.288322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2559,Elmer,2,1916.0,1.0,1.0,1.0,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.927536,-75.288322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2560,Ephratah,1,1920.0,1.0,0.9,0.9,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.0092,-74.5372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2560,Ephratah,2,1911.0,1.0,0.9,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.0092,-74.5372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2560,Ephratah,3,1911.0,1.0,0.9,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.0092,-74.5372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2560,Ephratah,4,1911.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.0092,-74.5372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2561,East Norfolk,1,1928.0,4.0,4.1,4.0,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.7989,-74.9856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2562,Five Falls,1,1955.0,24.0,22.4,23.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9791666666666666,NPCC,NYIS,NY,44.527491,-74.849177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2563,Flat Rock,1,1924.0,2.0,2.4,2.4,1.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.2217,-75.0742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2563,Flat Rock,2,1924.0,3.0,2.8,2.8,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,NPCC,NYIS,NY,44.2217,-75.0742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2564,Franklin (NY),1,1911.0,1.0,0.9,0.9,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,44.4372,-73.9725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2564,Franklin (NY),2,1926.0,1.0,1.1,1.1,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.4372,-73.9725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2566,Fulton Hydro,1,1924.0,0.8,0.1,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.125,0.8749999999999999,NPCC,NYIS,NY,43.32411,-76.418984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2566,Fulton Hydro,2,1928.0,0.5,0.1,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.19999999999999996,0.6,NPCC,NYIS,NY,43.32411,-76.418984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2568,Glenwood Hydro,1,1950.0,0.5,0.5,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8,NPCC,NYIS,NY,43.2358,-78.3906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2568,Glenwood Hydro,2,1950.0,0.5,0.5,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8,NPCC,NYIS,NY,43.2358,-78.3906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2568,Glenwood Hydro,3,1950.0,0.5,0.5,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8,NPCC,NYIS,NY,43.2358,-78.3906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2569,Granby,1,1983.0,5.0,5.1,5.2,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.323441,-76.420841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2569,Granby,2,1983.0,5.0,5.1,5.2,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.323441,-76.420841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2571,Hannawa,1,1914.0,3.6,3.6,3.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6192,-74.9733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2571,Hannawa,2,1920.0,3.6,3.6,3.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6192,-74.9733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2572,Herrings,1,1924.0,1.8,1.5,1.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.8333333333333333,NPCC,NYIS,NY,44.0217,-75.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2572,Herrings,2,1924.0,1.8,1.5,1.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.8333333333333333,NPCC,NYIS,NY,44.0217,-75.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2572,Herrings,3,1924.0,1.8,1.5,1.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.8333333333333333,NPCC,NYIS,NY,44.0217,-75.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2573,Heuvelton,1,1924.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,44.6172,-75.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2573,Heuvelton,2,1924.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,44.6172,-75.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2574,High Dam,1,1928.0,2.8,2.2,2.2,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7857142857142858,0.7857142857142858,NPCC,NYIS,NY,43.4436,-76.4961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2574,High Dam,2,1928.0,2.8,2.2,2.2,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7857142857142858,0.7857142857142858,NPCC,NYIS,NY,43.4436,-76.4961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2574,High Dam,3,1928.0,2.8,2.2,2.2,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7857142857142858,0.7857142857142858,NPCC,NYIS,NY,43.4436,-76.4961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2574,High Dam,4,1949.0,3.5,2.2,2.2,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6285714285714286,0.6285714285714286,NPCC,NYIS,NY,43.4436,-76.4961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2575,High Falls - Croghan NY,1,1925.0,2.0,1.8,1.8,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.9247,-75.3731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2575,High Falls - Croghan NY,2,1925.0,2.0,1.8,1.8,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.9247,-75.3731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2575,High Falls - Croghan NY,3,1925.0,2.0,1.8,1.8,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.9247,-75.3731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2576,Higley,1N,2003.0,1.5,1.5,1.6,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2003.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.5306,-74.9331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2576,Higley,2N,2003.0,1.5,1.6,1.6,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2003.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.5306,-74.9331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2576,Higley,3N,2003.0,1.5,1.6,1.6,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2003.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.5306,-74.9331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2576,Higley,4N,2003.0,1.5,1.6,1.6,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2003.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.5306,-74.9331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2578,Hydraulic Race,1,1942.0,3.0,2.8,2.4,1.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.7999999999999999,NPCC,NYIS,NY,43.170948,-78.691551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2579,Inghams,1,1912.0,3.0,2.8,2.9,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9666666666666667,NPCC,NYIS,NY,43.061017,-74.764347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2579,Inghams,2,1912.0,3.0,3.4,3.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.061017,-74.764347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2580,Johnsonville Dam,1,1909.0,2.0,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.55,0.55,NPCC,NYIS,NY,42.920374,-73.508886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2580,Johnsonville Dam,2,1909.0,2.0,1.4,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.6,NPCC,NYIS,NY,42.920374,-73.508886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2581,Kamargo,1,1921.0,2.0,1.3,1.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.65,0.85,NPCC,NYIS,NY,44.0117,-75.7967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2581,Kamargo,2,1921.0,2.0,1.3,1.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.65,0.85,NPCC,NYIS,NY,44.0117,-75.7967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2581,Kamargo,3,1921.0,2.0,1.3,1.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.65,0.85,NPCC,NYIS,NY,44.0117,-75.7967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2582,Lighthouse Hill,1,1930.0,4.0,4.0,4.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.524103,-75.970318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2582,Lighthouse Hill,2,1930.0,4.0,3.6,4.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.524103,-75.970318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2583,Macomb,1,1940.0,1.0,0.8,0.8,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,44.877326,-74.306288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2586,Minetto,1,1915.0,2.0,1.4,1.4,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4003,-76.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2586,Minetto,2,1915.0,2.0,1.4,1.4,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4003,-76.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2586,Minetto,3,1915.0,2.0,1.4,1.4,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4003,-76.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2586,Minetto,4,1915.0,2.0,1.4,1.4,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4003,-76.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2586,Minetto,5,1915.0,2.0,1.4,1.4,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4003,-76.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2588,Moshier,1,1929.0,4.0,4.0,4.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.8719,-75.1364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2588,Moshier,2,1929.0,4.0,4.0,4.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.8719,-75.1364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2589,Nine Mile Point Nuclear Station,1,1969.0,641.8,620.9,626.5,105,NUC,Nuclear,OP,ST,12.0,1969.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9674353381115612,0.9761607977563105,NPCC,NYIS,NY,43.5211,-76.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2589,Nine Mile Point Nuclear Station,2,1987.0,1259.3,1272.1,1293.9,75,NUC,Nuclear,OP,ST,7.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.5211,-76.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2590,Norfolk,1,1928.0,5.0,5.1,5.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.8053,-74.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2591,Norwood,1,1928.0,2.0,2.2,2.1,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.7439,-75.0042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2594,Oswego Harbor Power,ST5,1975.0,901.8,797.0,822.0,150,RFO,Petroleum Liquids,OP,ST,6.0,1975.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8837879795963629,0.9115103127079176,NPCC,NYIS,NY,43.4586,-76.5319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2594,Oswego Harbor Power,ST6,1979.0,901.8,816.0,818.5,150,RFO,Petroleum Liquids,OP,ST,12.0,1979.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9048569527611444,0.9076291860722999,NPCC,NYIS,NY,43.4586,-76.5319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2595,Oswego Falls East,1,1914.0,2.0,1.4,1.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.75,NPCC,NYIS,NY,43.3161,-76.4153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2595,Oswego Falls East,2,1914.0,2.0,1.4,1.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.75,NPCC,NYIS,NY,43.3161,-76.4153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2595,Oswego Falls East,3,1914.0,2.0,1.4,1.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.75,NPCC,NYIS,NY,43.3161,-76.4153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2596,Oswego Falls West,4,1914.0,1.0,0.9,0.9,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.3156,-76.4172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2596,Oswego Falls West,5,1914.0,1.0,0.9,0.9,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.3156,-76.4172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2596,Oswego Falls West,6,2008.0,0.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,10.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,43.3156,-76.4172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2596,Oswego Falls West,7,2008.0,0.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,10.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,NYIS,NY,43.3156,-76.4172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2597,Parishville,1,1925.0,3.0,2.3,2.4,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7666666666666666,0.7999999999999999,NPCC,NYIS,NY,44.63,-74.8258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2598,Piercefield,1,1957.0,1.5,1.6,1.6,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.233419,-74.566217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2598,Piercefield,2,1924.0,0.6,0.6,0.6,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.233419,-74.566217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2598,Piercefield,3,1924.0,0.6,0.6,0.6,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.233419,-74.566217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2599,Prospect,1,1959.0,19.0,18.3,18.1,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9631578947368421,0.9526315789473685,NPCC,NYIS,NY,43.291861,-75.147734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2600,Rainbow Falls Hydro,1,1956.0,25.0,24.0,23.8,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.9520000000000001,NPCC,NYIS,NY,44.5178,-74.8228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2601,Raymondville,1,1928.0,2.0,2.3,2.1,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.835,-74.9803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2604,South Edwards,1,1912.0,1.0,1.2,1.1,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.2678,-75.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2604,South Edwards,2,1912.0,1.0,1.2,1.1,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.2678,-75.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2604,South Edwards,3,1921.0,1.0,0.8,0.7,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.7,NPCC,NYIS,NY,44.2678,-75.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2604,South Edwards,4,1994.0,1.0,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.19999999999999996,0.19999999999999996,NPCC,NYIS,NY,44.2678,-75.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2605,School Street,1,1915.0,7.2,7.5,7.1,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.986111111111111,NPCC,NYIS,NY,42.78498,-73.707983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2605,School Street,2,1915.0,7.2,5.9,6.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8194444444444444,0.875,NPCC,NYIS,NY,42.78498,-73.707983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2605,School Street,3,1915.0,7.2,6.1,6.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8472222222222221,0.888888888888889,NPCC,NYIS,NY,42.78498,-73.707983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2605,School Street,4,1922.0,7.2,6.6,6.6,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666666,0.9166666666666666,NPCC,NYIS,NY,42.78498,-73.707983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2605,School Street,5,1924.0,10.0,10.8,9.7,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.97,NPCC,NYIS,NY,42.78498,-73.707983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2606,Schaghticoke,1,1908.0,4.0,4.0,4.3,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.8992,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2606,Schaghticoke,2,1908.0,4.0,4.1,4.1,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.8992,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2606,Schaghticoke,3,1908.0,4.0,3.8,3.9,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.975,NPCC,NYIS,NY,42.8992,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2606,Schaghticoke,4,1908.0,4.0,4.0,3.9,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.975,NPCC,NYIS,NY,42.8992,-73.5989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2607,Schuylerville,1,1919.0,2.0,1.5,1.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.8,NPCC,NYIS,NY,43.096823,-73.582107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2608,Sewalls,1,1925.0,1.0,1.1,1.1,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.9775,-75.8942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2608,Sewalls,2,1925.0,1.0,1.1,1.1,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.9775,-75.8942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2609,Sherman Island,1,2009.0,7.0,6.7,6.7,1,WAT,Conventional Hydroelectric,OP,HY,4.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9571428571428572,0.9571428571428572,NPCC,NYIS,NY,43.2797,-73.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2609,Sherman Island,2,1923.0,7.0,7.0,8.1,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2797,-73.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2609,Sherman Island,3,1923.0,7.0,7.0,8.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2797,-73.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2609,Sherman Island,4,1923.0,7.0,7.2,7.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2797,-73.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2609,Sherman Island,5,1923.0,7.0,7.7,8.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2797,-73.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2609,Sherman Island,6,2009.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2797,-73.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2610,Soft Maple,1,1925.0,8.0,7.2,8.1,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.9206,-75.2433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2610,Soft Maple,2,1925.0,8.0,7.2,8.1,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.9206,-75.2433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2611,South Colton,1,1954.0,21.0,19.8,20.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9428571428571428,0.9523809523809523,NPCC,NYIS,NY,44.5133,-74.8831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2612,Spier Falls,8,1924.0,9.0,8.5,8.6,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9555555555555555,NPCC,NYIS,NY,43.2339,-73.7556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2612,Spier Falls,9,1930.0,47.0,46.0,46.3,8,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9787234042553191,0.9851063829787233,NPCC,NYIS,NY,43.2339,-73.7556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2613,Stark,1,1957.0,26.0,23.3,24.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8961538461538462,0.9423076923076923,NPCC,NYIS,NY,44.4553,-74.7614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2614,Stewarts Bridge,1,1952.0,36.0,37.5,37.5,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2978,-73.8853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2614,Stewarts Bridge,2,2013.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2978,-73.8853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2616,Sugar Island,1,1924.0,2.0,2.1,2.1,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.642181,-74.976473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2616,Sugar Island,2,1924.0,2.0,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.642181,-74.976473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2617,Taylorville,1,1913.0,1.0,1.1,1.1,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.927002,-75.321877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2617,Taylorville,2,1913.0,1.0,0.9,0.9,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.927002,-75.321877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2617,Taylorville,3,1913.0,1.0,1.1,1.1,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.927002,-75.321877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2617,Taylorville,4,1927.0,1.0,1.3,1.3,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.927002,-75.321877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2619,Trenton Falls,5,1919.0,6.8,8.1,6.8,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2758,-75.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2619,Trenton Falls,6,1919.0,6.4,8.1,6.4,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2758,-75.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2619,Trenton Falls,7,1919.0,8.7,9.7,8.7,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2758,-75.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2621,Varick,2,1926.0,2.0,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4486,-76.5056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2621,Varick,3,1926.0,2.0,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4486,-76.5056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2621,Varick,4,1926.0,2.0,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4486,-76.5056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2621,Varick,5,1926.0,2.0,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,43.4486,-76.5056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2623,Waterport,1,1921.0,2.0,1.8,1.8,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,NYIS,NY,43.3272,-78.2394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2623,Waterport,2,1921.0,2.0,2.0,2.0,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.3272,-78.2394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2624,Yaleville,1,1940.0,1.0,0.4,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,NPCC,NYIS,NY,44.7661,-74.9997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2624,Yaleville,2,1940.0,1.0,0.2,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.19999999999999996,0.09999999999999998,NPCC,NYIS,NY,44.7661,-74.9997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2625,Bowline Point,1,1972.0,621.0,586.0,593.2,80,NG,Natural Gas Steam Turbine,OP,ST,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9436392914653784,0.9552334943639292,NPCC,NYIS,NY,41.2044,-73.9689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.021398243679961 -2625,Bowline Point,2,1974.0,621.0,573.6,568.8,100,NG,Natural Gas Steam Turbine,OP,ST,5.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9236714975845411,0.9159420289855071,NPCC,NYIS,NY,41.2044,-73.9689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.941095267415397 -2627,Grahamsville,GRHM,1956.0,18.0,18.0,18.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.8592,-74.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2628,Hillburn,GEN1,1972.0,46.5,33.1,43.8,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7118279569892474,0.9419354838709677,NPCC,NYIS,NY,41.1269,-74.1653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2630,Mongaup Falls,GEN1,1923.0,4.0,4.3,4.3,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.537722,-74.771383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2630,Mongaup Falls,GEN2,1923.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.537722,-74.771383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2630,Mongaup Falls,GEN3,1923.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.537722,-74.771383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2630,Mongaup Falls,GEN4,1923.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.537722,-74.771383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2631,Rio,RIO,1927.0,10.0,10.1,10.1,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.4625,-74.7578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2631,Rio,RIO2,2013.0,0.8,0.8,0.8,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.4625,-74.7578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2632,Shoemaker,SHOE,1972.0,41.9,33.0,40.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7875894988066826,0.9546539379474941,NPCC,NYIS,NY,41.4278,-74.4186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2634,Swinging Bridge 2,SWI2,1939.0,6.8,7.4,7.4,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.5717,-74.7828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2634,Swinging Bridge 2,SWI3,2019.0,1.2,1.2,1.2,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,2019.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.5717,-74.7828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2638,Rochester 26,1,1952.0,3.0,3.0,3.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1522,-77.6098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2639,Rochester 2,1,1960.0,8.5,8.5,8.5,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1611,-77.615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2641,Rochester 5,2,1918.0,12.8,12.9,12.9,0,WAT,Conventional Hydroelectric,OS,HY,7.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1803,-77.6278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2641,Rochester 5,HY1,1918.0,12.8,12.9,12.9,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1803,-77.6278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2641,Rochester 5,HY3,1927.0,18.0,18.0,18.0,0,WAT,Conventional Hydroelectric,OS,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1803,-77.6278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2646,Wiscoy 170,1,1922.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OS,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.5042,-78.0828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2646,Wiscoy 170,2,1922.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OS,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.5042,-78.0828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2678,Plant No 1 Freeport,2,1949.0,2.9,2.2,2.2,2.2,DFO,Petroleum Liquids,OP,IC,1.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7586206896551725,0.7586206896551725,NPCC,NYIS,NY,40.6561,-73.5922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.533310344827587 -2678,Plant No 1 Freeport,3,1954.0,3.1,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,1.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6451612903225806,0.6451612903225806,NPCC,NYIS,NY,40.6561,-73.5922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.533354838709677 -2679,Plant No 2 Freeport,3,1973.0,18.1,16.8,18.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9281767955801105,0.9944751381215469,NPCC,NYIS,NY,40.6447,-73.5683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2679,Plant No 2 Freeport,CT5,2004.0,60.5,49.0,49.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8099173553719008,0.8099173553719008,NPCC,NYIS,NY,40.6447,-73.5683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2681,Greenport,2,1997.0,1.7,1.5,1.6, ,DFO,Petroleum Liquids,OS,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.9411764705882354,NPCC,NYIS,NY,41.1055,-72.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.331881188118814 -2681,Greenport,4,1957.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.1055,-72.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335016835016836 -2681,Greenport,5,1965.0,1.8,1.6,1.6,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,NPCC,NYIS,NY,41.1055,-72.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.334829779274223 -2681,Greenport,6,1971.0,3.8,2.6,2.6,0.4,DFO,Petroleum Liquids,OP,IC,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6842105263157896,0.6842105263157896,NPCC,NYIS,NY,41.1055,-72.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.332211197732105 -2681,Greenport,7,1997.0,1.6,1.6,1.6, ,DFO,Petroleum Liquids,OS,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.1055,-72.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.334595959595958 -2682,S A Carlson,5,1951.0,24.5,22.5,22.5,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9183673469387755,0.9183673469387755,NPCC,NYIS,NY,42.0933,-79.2478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2682,S A Carlson,6,1968.0,24.5,22.5,22.5,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9183673469387755,0.9183673469387755,NPCC,NYIS,NY,42.0933,-79.2478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2682,S A Carlson,7,2001.0,47.3,42.0,47.0,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8879492600422834,0.9936575052854123,NPCC,NYIS,NY,42.0933,-79.2478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2685,Crescent,1,1924.0,2.8,2.8,2.8,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.8056,-73.72264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2685,Crescent,2,1924.0,2.8,2.8,2.8,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.8056,-73.72264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2685,Crescent,3,1991.0,3.0,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.8056,-73.72264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2685,Crescent,4,1991.0,3.0,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.8056,-73.72264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2686,Vischer Ferry,1,1924.0,2.8,2.8,2.9,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.80746,-73.84269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2686,Vischer Ferry,2,1924.0,2.8,2.8,2.9,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.80746,-73.84269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2686,Vischer Ferry,3,1991.0,3.0,3.0,2.9,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9666666666666667,NPCC,NYIS,NY,42.80746,-73.84269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2686,Vischer Ferry,4,1991.0,3.0,3.0,2.9,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9666666666666667,NPCC,NYIS,NY,42.80746,-73.84269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2691,Blenheim Gilboa,1,1973.0,250.0,292.2,291.7,1,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,42.4423,-74.4479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2691,Blenheim Gilboa,2,1973.0,250.0,291.1,293.5,1,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,42.4423,-74.4479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2691,Blenheim Gilboa,3,1973.0,250.0,292.6,293.3,1,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,42.4423,-74.4479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2691,Blenheim Gilboa,4,1973.0,250.0,292.9,292.4,1,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,42.4423,-74.4479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,1,1961.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1961.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,10,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,11,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,12,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,2,1961.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1961.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,3,1961.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1961.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,4,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,5,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OA,PS,2.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,6,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,7,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,8,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2692,Lewiston Niagara,9,1962.0,20.0,20.0,20.0,1,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1962.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,NYIS,NY,43.142973,-79.021958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,1,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,10,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,11,1962.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,12,1962.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,13,1962.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,2,1962.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,3,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,4,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,5,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,6,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,7,1961.0,193.5,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9679586563307494,0.9679586563307494,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,8,1961.0,150.3,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2693,Robert Moses Niagara,9,1961.0,150.3,187.3,187.3,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1427,-79.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,17,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,18,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,19,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,20,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,21,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,22,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,23,1959.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,24,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,25,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,26,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,27,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,28,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,29,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,30,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,31,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2694,Robert Moses Power Dam,32,1958.0,57.0,53.5,50.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9385964912280702,0.887719298245614,NPCC,NYIS,NY,45.0038,-74.7994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2695,Charles P Keller,10,1954.0,3.5,3.2,3.2,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9142857142857144,NPCC,NYIS,NY,40.658333,-73.640556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.96220188990551 -2695,Charles P Keller,11,1962.0,5.2,5.2,5.2,2.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.658333,-73.640556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.96325088339223 -2695,Charles P Keller,12,1967.0,5.5,5.5,5.5,2.7,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.658333,-73.640556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.96506300114547 -2695,Charles P Keller,13,1974.0,5.5,5.5,5.5,2.7,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.658333,-73.640556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.96506300114547 -2695,Charles P Keller,14,1994.0,6.2,6.2,6.2,3.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.658333,-73.640556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.96265876375953 -2695,Charles P Keller,9,1954.0,3.5,3.2,3.2,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9142857142857144,NPCC,NYIS,NY,40.658333,-73.640556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.96220188990551 -2700,Watertown,1,1924.0,2.7,2.1,2.1,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777778,0.7777777777777778,NPCC,NYIS,NY,43.975801,-75.874669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2700,Watertown,2,1924.0,2.7,2.1,2.1,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777778,0.7777777777777778,NPCC,NYIS,NY,43.975801,-75.874669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2700,Watertown,3,1924.0,2.7,2.1,2.1,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777778,0.7777777777777778,NPCC,NYIS,NY,43.975801,-75.874669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2706,Asheville,CT5,2019.0,191.2,163.0,190.0,158,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.852510460251046,0.993723849372385,SERC,CPLE,NC,35.4731,-82.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.323922354351954 -2706,Asheville,CT7,2020.0,191.2,161.0,190.0,158,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8420502092050209,0.993723849372385,SERC,CPLE,NC,35.4731,-82.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.184089510456419 -2706,Asheville,GT1,1999.0,211.7,160.0,185.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7557864903164856,0.8738781294284366,SERC,CPLE,NC,35.4731,-82.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2706,Asheville,GT2,2000.0,211.8,160.0,185.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7554296506137865,0.8734655335221907,SERC,CPLE,NC,35.4731,-82.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2706,Asheville,ST6,2019.0,102.8,85.0,90.0,85,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8268482490272374,0.8754863813229572,SERC,CPLE,NC,35.4731,-82.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2706,Asheville,ST8,2020.0,102.8,85.0,90.0,85,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8268482490272374,0.8754863813229572,SERC,CPLE,NC,35.4731,-82.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,1,1912.0,3.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,1,1912.0,3.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,2,1912.0,3.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,2,1912.0,3.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,3,1912.0,3.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,3,1912.0,3.2,4.0,4.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,4,1912.0,5.0,5.0,5.0,4,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,4,1912.0,5.0,5.0,5.0,4,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,5,1912.0,5.0,5.0,5.0,4,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,6,1912.0,5.0,5.0,5.0,4,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,GT1,1971.0,17.5,13.0,17.0,9,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7428571428571429,0.9714285714285714,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,GT2,1971.0,17.5,13.0,17.0,9,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7428571428571429,0.9714285714285714,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,GT3,1971.0,17.5,13.0,17.0,9,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7428571428571429,0.9714285714285714,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2707,Blewett,GT4,1971.0,17.5,13.0,17.0,9,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7428571428571429,0.9714285714285714,SERC,CPLE,NC,34.9833,-79.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2710,Marshall Dam,HC1,1985.0,2.5,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,SERC,CPLE,NC,35.702527,-82.710571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2710,Marshall Dam,HC2,1985.0,2.5,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,SERC,CPLE,NC,35.702527,-82.710571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2712,Roxboro,1,1966.0,410.8,379.0,380.0,70,BIT,Conventional Steam Coal,OP,ST,5.0,1966.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9225900681596884,0.9250243427458618,SERC,CPLE,NC,36.4833,-79.0731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.77577918956228 -2712,Roxboro,2,1968.0,657.0,668.0,673.0,85,BIT,Conventional Steam Coal,OP,ST,5.0,1968.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,36.4833,-79.0731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.645018149031634 -2712,Roxboro,3,1973.0,745.2,694.0,698.0,68,BIT,Conventional Steam Coal,OP,ST,7.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9312936124530327,0.9366612989801395,SERC,CPLE,NC,36.4833,-79.0731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2712,Roxboro,4,1980.0,745.2,698.0,711.0,125,BIT,Conventional Steam Coal,OP,ST,9.0,1980.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9366612989801395,0.9541062801932366,SERC,CPLE,NC,36.4833,-79.0731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2714,Tillery,1,1928.0,22.0,21.0,21.0,21,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454546,0.9545454545454546,SERC,CPLE,NC,35.206741,-80.06483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2714,Tillery,2,1928.0,18.0,18.0,18.0,18,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.206741,-80.06483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2714,Tillery,3,1928.0,22.0,21.0,21.0,21,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454546,0.9545454545454546,SERC,CPLE,NC,35.206741,-80.06483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2714,Tillery,4,1960.0,22.0,25.0,25.0,22,WAT,Conventional Hydroelectric,OP,HY,6.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.206741,-80.06483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2715,Walters,1,1930.0,36.0,36.0,36.0,36,WAT,Conventional Hydroelectric,OP,HY,7.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6946,-83.0503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2715,Walters,2,1930.0,36.0,40.0,40.0,36,WAT,Conventional Hydroelectric,OP,HY,7.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6946,-83.0503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2715,Walters,3,1930.0,36.0,36.0,36.0,36,WAT,Conventional Hydroelectric,OP,HY,11.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6946,-83.0503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2716,W H Weatherspoon,GT1,1970.0,39.7,31.0,41.0,12,DFO,Petroleum Liquids,OP,GT,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7808564231738034,1.0,SERC,CPLE,NC,34.587538,-78.97552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2716,W H Weatherspoon,GT2,1970.0,39.7,31.0,41.0,12,DFO,Petroleum Liquids,OP,GT,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7808564231738034,1.0,SERC,CPLE,NC,34.587538,-78.97552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2716,W H Weatherspoon,GT3,1971.0,41.8,32.0,41.0,12,DFO,Petroleum Liquids,OP,GT,4.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7655502392344498,0.9808612440191389,SERC,CPLE,NC,34.587538,-78.97552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2716,W H Weatherspoon,GT4,1971.0,41.8,30.0,41.0,12,DFO,Petroleum Liquids,OP,GT,4.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7177033492822966,0.9808612440191389,SERC,CPLE,NC,34.587538,-78.97552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2718,G G Allen,1,1957.0,163.2,162.0,167.0,85,BIT,Conventional Steam Coal,OP,ST,6.0,1957.0,12,2024,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9926470588235294,1.0,SERC,DUK,NC,35.1897,-81.0122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.123515687683764 -2718,G G Allen,5,1961.0,272.0,259.0,259.0,140,BIT,Conventional Steam Coal,OP,ST,7.0,1961.0,12,2024,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9522058823529411,0.9522058823529411,SERC,DUK,NC,35.1897,-81.0122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.51266748761007 -2719,Bridgewater,1,1919.0,13.0,15.0,15.0,13,WAT,Conventional Hydroelectric,OP,HY,5.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.7428,-81.8372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2719,Bridgewater,2,1919.0,13.0,15.0,15.0,13,WAT,Conventional Hydroelectric,OP,HY,5.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.7428,-81.8372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2719,Bridgewater,3,2011.0,1.7,1.5,1.5,1.5,WAT,Conventional Hydroelectric,OP,HY,11.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8823529411764706,0.8823529411764706,SERC,DUK,NC,35.7428,-81.8372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2720,Buck,CT11,2011.0,185.3,182.0,206.0,182,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9821910415542363,1.0,SERC,DUK,NC,35.7133,-80.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2720,Buck,CT12,2011.0,185.3,182.0,206.0,182,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9821910415542363,1.0,SERC,DUK,NC,35.7133,-80.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2720,Buck,ST10,2011.0,327.3,304.0,306.0,255,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9288114879315612,0.9349220898258478,SERC,DUK,NC,35.7133,-80.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2721,James E. Rogers Energy Complex,5,1972.0,621.0,544.0,546.0,127,NG,Natural Gas Steam Turbine,OP,ST,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8760064412238325,0.8792270531400966,SERC,DUK,NC,35.22,-81.7594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.510283434004158 -2721,James E. Rogers Energy Complex,6,2012.0,909.5,844.0,849.0,310,NG,Natural Gas Steam Turbine,OP,ST,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9279824079164376,0.9334799340296867,SERC,DUK,NC,35.22,-81.7594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.167785785862492 -2722,Cowans Ford,1,1963.0,87.5,81.0,81.0,81,WAT,Conventional Hydroelectric,OP,HY,9.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9257142857142857,0.9257142857142857,SERC,DUK,NC,35.4346,-80.9588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2722,Cowans Ford,2,1963.0,87.5,81.0,81.0,81,WAT,Conventional Hydroelectric,OP,HY,9.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9257142857142857,0.9257142857142857,SERC,DUK,NC,35.4346,-80.9588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2722,Cowans Ford,3,1963.0,87.5,81.0,81.0,81,WAT,Conventional Hydroelectric,OP,HY,9.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9257142857142857,0.9257142857142857,SERC,DUK,NC,35.4346,-80.9588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2722,Cowans Ford,4,1967.0,87.5,81.0,81.0,81,WAT,Conventional Hydroelectric,OP,HY,4.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9257142857142857,0.9257142857142857,SERC,DUK,NC,35.4346,-80.9588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2723,Dan River,CT8,2012.0,185.3,177.0,206.0,177,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9552077711818672,1.0,SERC,DUK,NC,36.4862,-79.7208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2723,Dan River,CT9,2012.0,185.3,177.0,206.0,177,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9552077711818672,1.0,SERC,DUK,NC,36.4862,-79.7208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2723,Dan River,ST7,2012.0,327.3,308.0,306.0,300,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9410326917201344,0.9349220898258478,SERC,DUK,NC,36.4862,-79.7208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2726,Lookout Shoals,1,1915.0,8.6,9.0,9.0,8.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.7575,-81.0894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2726,Lookout Shoals,2,1915.0,8.6,9.0,9.0,8.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.7575,-81.0894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2726,Lookout Shoals,3,1915.0,8.6,9.0,9.0,8.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.7575,-81.0894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2727,Marshall (NC),1,1965.0,348.5,370.0,380.0,140,NG,Natural Gas Steam Turbine,OP,ST,3.0,1965.0,12,2034,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,DUK,NC,35.5975,-80.9658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.624844019377903 -2727,Marshall (NC),2,1966.0,348.5,370.0,380.0,140,BIT,Conventional Steam Coal,OP,ST,4.0,1966.0,12,2034,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,DUK,NC,35.5975,-80.9658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.665581021776164 -2727,Marshall (NC),3,1969.0,711.0,658.0,658.0,270,NG,Natural Gas Steam Turbine,OP,ST,5.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9254571026722925,0.9254571026722925,SERC,DUK,NC,35.5975,-80.9658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.191667173034693 -2727,Marshall (NC),4,1970.0,711.0,660.0,660.0,270,BIT,Conventional Steam Coal,OP,ST,5.0,1970.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9282700421940928,0.9282700421940928,SERC,DUK,NC,35.5975,-80.9658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.851524114455179 -2728,Mountain Island,1,1923.0,15.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,12.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,0.9333333333333333,SERC,DUK,NC,35.3339,-80.9867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2728,Mountain Island,2,1923.0,15.0,17.0,17.0,15,WAT,Conventional Hydroelectric,OP,HY,12.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.3339,-80.9867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2728,Mountain Island,3,1923.0,15.0,17.0,17.0,15,WAT,Conventional Hydroelectric,OP,HY,12.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.3339,-80.9867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2728,Mountain Island,4,1923.0,15.0,17.0,17.0,15,WAT,Conventional Hydroelectric,OP,HY,12.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.3339,-80.9867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2729,Oxford Dam,1,1928.0,18.0,20.0,20.0,18,WAT,Conventional Hydroelectric,OP,HY,4.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.8214,-81.1922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2729,Oxford Dam,2,1928.0,18.0,20.0,20.0,18,WAT,Conventional Hydroelectric,OP,HY,4.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.8214,-81.1922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2730,Rhodhiss,1,1925.0,8.5,9.5,9.5,8.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.774234,-81.437773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2730,Rhodhiss,2,1925.0,8.5,11.5,11.5,8.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.774234,-81.437773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2730,Rhodhiss,3,1925.0,8.5,12.4,12.4,8.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.774234,-81.437773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2735,Turner Shoals,1,1996.0,2.7,2.7,2.7,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.334767,-82.186369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2735,Turner Shoals,2,1996.0,2.7,2.7,2.7,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.334767,-82.186369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2736,Tuxedo,1,1920.0,2.5,3.2,3.2,2.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.245006,-82.389371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2736,Tuxedo,2,1920.0,2.5,3.2,3.2,2.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.245006,-82.389371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2741,Bear Creek Dam,1,1954.0,9.0,9.5,9.5,9,WAT,Conventional Hydroelectric,OP,HY,3.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.242677,-83.072007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2743,Cedar Cliff,1,1952.0,6.4,6.4,6.4,6.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.2531,-83.0983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2745,Franklin (NC),1,1925.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.2194,-83.3708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2745,Franklin (NC),2,1925.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.2194,-83.3708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2746,Mission,1,1924.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.0647,-83.9258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2746,Mission,2,1924.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.0647,-83.9258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2746,Mission,3,1943.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.0647,-83.9258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2747,Nantahala,1,1942.0,43.2,45.0,45.0,43.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.2715,-83.6762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2749,Tennessee Creek,1,1955.0,10.8,11.5,11.5,10.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.2139,-83.0028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2750,Thorpe,1,1941.0,21.6,19.7,19.7,19.7,WAT,Conventional Hydroelectric,OP,HY,10.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.912037037037037,0.912037037037037,SERC,DUK,NC,35.233988,-83.125398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2751,Tuckasegee,1,1950.0,3.0,2.5,2.5,2.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,SERC,DUK,NC,35.247011,-83.128111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2756,Gaston,1,1963.0,44.4,55.0,55.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,NC,36.499147,-77.811543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2756,Gaston,2,1963.0,44.4,55.0,55.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,NC,36.499147,-77.811543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2756,Gaston,3,1963.0,44.4,55.0,55.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,NC,36.499147,-77.811543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2756,Gaston,4,1963.0,44.4,55.0,55.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,NC,36.499147,-77.811543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2758,Roanoke Rapids,1,1955.0,25.0,24.0,24.0,10,WAT,Conventional Hydroelectric,OP,HY,12.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.96,SERC,PJM,NC,36.4789,-77.6722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2758,Roanoke Rapids,2,1955.0,25.0,24.0,24.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.96,SERC,PJM,NC,36.4789,-77.6722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2758,Roanoke Rapids,3,1955.0,25.0,24.0,24.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.96,SERC,PJM,NC,36.4789,-77.6722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2758,Roanoke Rapids,4,1955.0,25.0,23.0,23.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.92,0.92,SERC,PJM,NC,36.4789,-77.6722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2773,Lake Lure,1,1927.0,1.2,1.2,1.2,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.42591,-82.184005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2773,Lake Lure,2,1927.0,2.4,2.4,2.4,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.42591,-82.184005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2778,Chatuge,1,1954.0,13.2,13.9,13.1,7.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9924242424242424,SERC,TVA,NC,35.019131,-83.791438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2779,Fontana Dam,1,1945.0,81.0,101.4,101.4,56,WAT,Conventional Hydroelectric,OP,HY,1.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4507,-83.805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2779,Fontana Dam,2,1945.0,92.7,101.4,101.4,56,WAT,Conventional Hydroelectric,OP,HY,3.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4507,-83.805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2779,Fontana Dam,3,1954.0,81.0,101.4,101.4,56,WAT,Conventional Hydroelectric,OP,HY,2.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4507,-83.805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2780,Hiwassee Dam,1,1940.0,70.6,87.7,73.8,33.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.150864,-84.177533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2780,Hiwassee Dam,2,1956.0,95.0,86.0,67.5,56.7,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1956.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9052631578947369,0.7105263157894737,SERC,TVA,NC,35.150864,-84.177533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2783,Buxton,1A,1991.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,35.267222,-75.534722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.365358592692827 -2783,Buxton,2A,1991.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,35.267222,-75.534722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.365358592692827 -2783,Buxton,3A,1991.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,35.267222,-75.534722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.365358592692827 -2783,Buxton,4A,1991.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,35.267222,-75.534722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.365358592692827 -2783,Buxton,5A,1991.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,35.267222,-75.534722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.365358592692827 -2790,R M Heskett,3,2014.0,88.0,88.0,101.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,ND,46.8669,-100.8836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2801,Jamestown,1,1976.0,24.1,20.9,25.7,6,DFO,Petroleum Liquids,SB,GT,5.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.867219917012448,1.0,MRO,MISO,ND,46.905665,-98.662183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.420875420875422 -2801,Jamestown,2,1978.0,24.1,21.6,26.6,6,DFO,Petroleum Liquids,SB,GT,12.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8962655601659751,1.0,MRO,MISO,ND,46.905665,-98.662183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.420875420875422 -2811,Grafton,1,1937.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1937.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,48.430028,-97.403328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2811,Grafton,2,1949.0,0.8,0.8,0.8,0.4,DFO,Petroleum Liquids,SB,IC,8.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,48.430028,-97.403328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2811,Grafton,3,1956.0,1.3,1.3,1.3,0.7,DFO,Petroleum Liquids,SB,IC,9.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,48.430028,-97.403328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2811,Grafton,4,1956.0,1.3,1.3,1.3,0.7,DFO,Petroleum Liquids,SB,IC,9.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,48.430028,-97.403328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2815,Garrison,1,1956.0,121.6,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8388157894736843,0.8388157894736843,MRO,SWPP,ND,47.4945,-101.4115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2815,Garrison,2,1956.0,121.6,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8388157894736843,0.8388157894736843,MRO,SWPP,ND,47.4945,-101.4115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2815,Garrison,3,1956.0,121.6,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8388157894736843,0.8388157894736843,MRO,SWPP,ND,47.4945,-101.4115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2815,Garrison,4,1960.0,109.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9332113449222325,0.9332113449222325,MRO,SWPP,ND,47.4945,-101.4115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2815,Garrison,5,1960.0,109.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9332113449222325,0.9332113449222325,MRO,SWPP,ND,47.4945,-101.4115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2817,Leland Olds,1,1966.0,216.0,221.0,221.0,110,LIG,Conventional Steam Coal,OP,ST,1.0,1966.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,ND,47.280769,-101.321213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.358191571510787 -2817,Leland Olds,2,1975.0,440.0,445.0,445.0,220,LIG,Conventional Steam Coal,OP,ST,12.0,1975.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,ND,47.280769,-101.321213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.668302349902747 -2823,Milton R Young,1,1970.0,257.0,237.0,237.0,150,LIG,Conventional Steam Coal,OP,ST,10.0,1970.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9221789883268483,0.9221789883268483,MRO,MISO,ND,47.065854,-101.213093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2823,Milton R Young,2,1977.0,477.0,447.0,455.0,270,LIG,Conventional Steam Coal,OP,ST,4.0,1977.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9371069182389937,0.9538784067085954,MRO,MISO,ND,47.065854,-101.213093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2828,Cardinal,1,1967.0,615.2,585.0,595.0,340,BIT,Conventional Steam Coal,OP,ST,2.0,1967.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9509102730819246,0.9671651495448634,RFC,PJM,OH,40.2522,-80.6486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.740855146012978 -2828,Cardinal,2,1967.0,615.2,585.0,595.0,340,BIT,Conventional Steam Coal,OP,ST,7.0,1967.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9509102730819246,0.9671651495448634,RFC,PJM,OH,40.2522,-80.6486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.941350031839985 -2828,Cardinal,3,1977.0,650.0,620.0,620.0,400,BIT,Conventional Steam Coal,OP,ST,9.0,1977.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9538461538461538,0.9538461538461538,RFC,PJM,OH,40.2522,-80.6486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43781833180725 -2830,Walter C Beckjord,BECK1,2015.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,1.0,2015.0, , ,1.0,2.0,2.0,OTH,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,OH,38.9917,-84.2981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2830,Walter C Beckjord,BECK2,2015.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,11.0,2015.0, , ,0.8,2.0,2.0,OTH,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,OH,38.9917,-84.2981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2831,Dicks Creek,1,1965.0,100.0,92.0,110.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.92,1.0,RFC,PJM,OH,39.465,-84.3778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.203524507113402 -2831,Dicks Creek,3,1969.0,16.5,14.2,19.5,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8606060606060606,1.0,RFC,PJM,OH,39.465,-84.3778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2831,Dicks Creek,4,1969.0,21.3,15.0,21.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.704225352112676,1.0,RFC,PJM,OH,39.465,-84.3778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2831,Dicks Creek,5,1969.0,21.3,15.0,21.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.704225352112676,1.0,RFC,PJM,OH,39.465,-84.3778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2832,Miami Fort,7,1975.0,557.1,510.0,510.0,200,BIT,Conventional Steam Coal,OP,ST,5.0,1975.0,12,2027,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9154550350026924,0.9154550350026924,RFC,PJM,OH,39.1128,-84.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.461511193871521 -2832,Miami Fort,8,1978.0,557.7,510.0,510.0,200,BIT,Conventional Steam Coal,OP,ST,2.0,1978.0,12,2027,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.914470145239376,0.914470145239376,RFC,PJM,OH,39.1128,-84.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.065429618866487 -2832,Miami Fort,GT3,1971.0,16.5,14.0,20.0,3,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8484848484848485,1.0,RFC,PJM,OH,39.1128,-84.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2832,Miami Fort,GT4,1971.0,16.5,14.0,20.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8484848484848485,1.0,RFC,PJM,OH,39.1128,-84.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2832,Miami Fort,GT5,1971.0,16.5,14.0,20.0,3,DFO,Petroleum Liquids,OP,GT,9.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8484848484848485,1.0,RFC,PJM,OH,39.1128,-84.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2832,Miami Fort,GT6,1971.0,16.5,14.0,20.0,3,DFO,Petroleum Liquids,OP,GT,10.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8484848484848485,1.0,RFC,PJM,OH,39.1128,-84.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT1,1995.0,103.5,91.0,111.9,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8792270531400966,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT2,1996.0,106.1,91.1,114.9,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8586239396795476,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT3,1998.0,84.2,81.0,98.9,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9619952494061758,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT4,2002.0,94.0,85.0,108.9,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9042553191489362,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT5,2002.0,94.0,88.0,108.1,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9361702127659575,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT6,2002.0,94.0,81.0,104.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8617021276595744,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,GT7,2002.0,94.0,80.0,104.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,1.0,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,IC1,1967.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,5.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,IC2,1967.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,5.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,IC3,1967.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,5.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2847,Tait Electric Generating Station,IC4,1967.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,5.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.727249,-84.211084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2848,O H Hutchings,7,1968.0,32.6,25.2,29.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7730061349693251,0.9171779141104294,RFC,PJM,OH,39.6088,-84.2921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2851,Monument,1,1968.0,2.7,2.5,2.5,2.4,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.7667,-84.1739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.485964912280702 -2851,Monument,2,1968.0,2.7,2.5,2.5,2.4,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.7667,-84.1739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.485964912280702 -2851,Monument,3,1968.0,2.7,2.5,2.5,2.4,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.7667,-84.1739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.485964912280702 -2851,Monument,4,1968.0,2.7,2.5,2.5,2.4,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.7667,-84.1739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.485964912280702 -2851,Monument,5,1968.0,2.7,2.5,2.5,2.4,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,RFC,PJM,OH,39.7667,-84.1739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.485964912280702 -2852,Sidney (OH),1,1968.0,2.7,2.7,2.7,2.4,DFO,Petroleum Liquids,OP,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.27917,-84.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.227188081936685 -2852,Sidney (OH),2,1968.0,2.7,2.7,2.7,2.4,DFO,Petroleum Liquids,OP,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.27917,-84.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.227188081936685 -2852,Sidney (OH),3,1968.0,2.7,2.7,2.7,2.4,DFO,Petroleum Liquids,OP,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.27917,-84.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.227188081936685 -2852,Sidney (OH),4,1968.0,2.7,2.7,2.7,2.4,DFO,Petroleum Liquids,OP,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.27917,-84.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.227188081936685 -2852,Sidney (OH),5,1968.0,2.7,2.7,2.7,2.4,DFO,Petroleum Liquids,OP,IC,7.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.27917,-84.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.227188081936685 -2854,Yankee Street,1,1969.0,18.5,20.0,21.8,19.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259980388970407 -2854,Yankee Street,2,1969.0,18.5,20.4,21.8,18.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259980388970407 -2854,Yankee Street,3,1969.0,18.5,19.7,21.8,18.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259980388970407 -2854,Yankee Street,4,1970.0,17.5,16.5,20.2,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9428571428571428,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259979392831314 -2854,Yankee Street,5,1970.0,17.5,16.4,18.6,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.937142857142857,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259979392831314 -2854,Yankee Street,6,1970.0,17.5,17.1,18.1,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9771428571428572,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259979392831314 -2854,Yankee Street,7,1970.0,17.5,16.6,18.1,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9485714285714286,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.259979392831314 -2854,Yankee Street,YS1,2010.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,39.603,-84.2047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2861,Niles Power Plant,GT1,1972.0,27.0,26.1,30.0,5,DFO,Petroleum Liquids,OP,GT,7.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,PJM,OH,41.166928,-80.74769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2866,W H Sammis,5,1967.0,334.0,290.0,290.0,135,BIT,Conventional Steam Coal,OP,ST,12.0,1967.0,6,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8682634730538922,0.8682634730538922,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.41517406098962 -2866,W H Sammis,6,1969.0,680.0,600.0,600.0,400,BIT,Conventional Steam Coal,OP,ST,4.0,1969.0,6,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8823529411764706,0.8823529411764706,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.364889292597402 -2866,W H Sammis,7,1971.0,680.0,600.0,600.0,400,BIT,Conventional Steam Coal,OP,ST,9.0,1971.0,6,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8823529411764706,0.8823529411764706,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.949571682512143 -2866,W H Sammis,A1,1972.0,2.5,3.0,3.0,2,DFO,Petroleum Liquids,OP,IC,3.0,1972.0,6,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2866,W H Sammis,B1,1972.0,2.5,3.0,3.0,2,DFO,Petroleum Liquids,OP,IC,3.0,1972.0,6,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2866,W H Sammis,B2,1972.0,2.5,3.0,3.0,2,DFO,Petroleum Liquids,OP,IC,3.0,1972.0,6,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2866,W H Sammis,B3,1972.0,2.5,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,3.0,1972.0,6,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2866,W H Sammis,B4,1972.0,2.5,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,3.0,1972.0,6,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,RFC,PJM,OH,40.5317,-80.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2869,West Lorain,1A,1973.0,65.3,49.6,52.1,20,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7595712098009189,0.7978560490045943,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2869,West Lorain,1B,1973.0,65.3,51.3,56.1,20,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7856049004594181,0.8591117917304748,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2869,West Lorain,2,2001.0,85.0,79.0,85.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9294117647058824,1.0,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.653827184088748 -2869,West Lorain,3,2001.0,85.0,80.4,85.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9458823529411765,1.0,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.967229025474406 -2869,West Lorain,4,2001.0,85.0,79.1,85.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9305882352941176,1.0,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.92215094506452 -2869,West Lorain,5,2001.0,85.0,81.5,85.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9588235294117647,1.0,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.977774274428112 -2869,West Lorain,6,2001.0,85.0,79.6,85.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.936470588235294,1.0,RFC,PJM,OH,41.429444,-82.264444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.087015258387568 -2876,Kyger Creek,1,1955.0,217.3,194.0,198.7,80,BIT,Conventional Steam Coal,OP,ST,2.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8927749654855038,0.9144040497008743,RFC,PJM,OH,38.9144,-82.1289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.100164156895701 -2876,Kyger Creek,2,1955.0,217.3,192.2,198.0,80,BIT,Conventional Steam Coal,OP,ST,6.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8844914864242981,0.9111826967326276,RFC,PJM,OH,38.9144,-82.1289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.002655395038076 -2876,Kyger Creek,3,1955.0,217.3,192.2,198.0,80,BIT,Conventional Steam Coal,OP,ST,9.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8844914864242981,0.9111826967326276,RFC,PJM,OH,38.9144,-82.1289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.543503649770784 -2876,Kyger Creek,4,1955.0,217.3,192.2,198.0,80,BIT,Conventional Steam Coal,OP,ST,11.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8844914864242981,0.9111826967326276,RFC,PJM,OH,38.9144,-82.1289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.563534487730916 -2876,Kyger Creek,5,1955.0,217.3,192.2,198.0,80,BIT,Conventional Steam Coal,OP,ST,12.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8844914864242981,0.9111826967326276,RFC,PJM,OH,38.9144,-82.1289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.573577180238209 -2878,FirstEnergy Bay Shore,1,1955.0,171.0,138.3,136.9,90,PC,Petroleum Coke,OP,ST,8.0,1955.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8087719298245615,0.8005847953216374,RFC,PJM,OH,41.6917,-83.4378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.506655923711687 -2878,FirstEnergy Bay Shore,CT,1967.0,16.0,14.5,16.2,5,DFO,Petroleum Liquids,OP,GT,8.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.90625,1.0,RFC,PJM,OH,41.6917,-83.4378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2880,Richland,1,1965.0,15.0,11.0,14.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7333333333333334,0.9333333333333333,RFC,PJM,OH,41.305203,-84.334622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2880,Richland,2,1966.0,15.0,11.0,14.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7333333333333334,0.9333333333333333,RFC,PJM,OH,41.305203,-84.334622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2880,Richland,3,1966.0,15.0,11.0,14.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7333333333333334,0.9333333333333333,RFC,PJM,OH,41.305203,-84.334622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2880,Richland,4,2001.0,135.0,112.0,130.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8296296296296296,0.962962962962963,RFC,PJM,OH,41.305203,-84.334622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2880,Richland,5,2001.0,135.0,112.0,130.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8296296296296296,0.962962962962963,RFC,PJM,OH,41.305203,-84.334622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2880,Richland,6,2001.0,135.0,112.0,130.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8296296296296296,0.962962962962963,RFC,PJM,OH,41.305203,-84.334622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2881,Stryker,1,1968.0,19.0,17.0,18.0,3,DFO,Petroleum Liquids,OP,GT,2.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8947368421052632,0.9473684210526316,RFC,PJM,OH,41.5014,-84.4283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.186363636363637 -2903,Bryan (OH),1,1970.0,15.8,12.5,19.5,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7911392405063291,1.0,RFC,PJM,OH,41.471822,-84.543148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.730483714116342 -2903,Bryan (OH),2,1988.0,16.0,12.5,19.5,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,OH,41.471822,-84.543148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.730481841414136 -2903,Bryan (OH),5,1948.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.471822,-84.543148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.916129032258064 -2903,Bryan (OH),6,1963.0,5.0,4.0,6.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,RFC,PJM,OH,41.471822,-84.543148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.730475923677904 -2906,Collinwood,3,1971.0,16.0,16.0,18.0,5,DFO,Petroleum Liquids,OS,GT,2.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,41.556867,-81.58796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2909,West 41st Street,1,1970.0,16.0,16.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,41.474,-81.7145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2909,West 41st Street,2,1970.0,16.0,16.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,41.474,-81.7145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2914,Dover,3,1954.0,8.0,8.0,8.0,4,BIT,Conventional Steam Coal,SB,ST,1.0,1954.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,40.520066,-81.46815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2914,Dover,4,1968.0,19.5,15.2,15.2,7,BIT,Conventional Steam Coal,OP,ST,6.0,1968.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7794871794871794,0.7794871794871794,RFC,PJM,OH,40.520066,-81.46815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.774907818570068 -2914,Dover,5,1966.0,2.6,2.4,2.4,1.2,DFO,Petroleum Liquids,OP,IC,6.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,RFC,PJM,OH,40.520066,-81.46815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2914,Dover,6,1992.0,19.5,15.3,15.3,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7846153846153847,0.7846153846153847,RFC,PJM,OH,40.520066,-81.46815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.35958904109589 -2917,Hamilton (OH),GT2,1971.0,16.3,12.0,16.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7361963190184049,0.9815950920245399,RFC,PJM,OH,39.4098,-84.5543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.716643741403026 -2933,Oberlin (OH),1,1948.0,1.1,1.0,1.0,0.9,DFO,Petroleum Liquids,OP,IC,1.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.38158447954832 -2933,Oberlin (OH),10,1990.0,0.5,0.5,0.5,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.38068181818182 -2933,Oberlin (OH),2A,2001.0,3.1,3.1,3.1,2.4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.382105330463137 -2933,Oberlin (OH),3A,2001.0,3.1,3.1,3.1,2.4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.382105330463137 -2933,Oberlin (OH),6,1958.0,2.5,2.5,2.5,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.382023362757018 -2933,Oberlin (OH),7,1961.0,2.7,2.7,2.7,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.38206289000367 -2933,Oberlin (OH),8,1966.0,3.0,3.0,3.0,2.3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.382380795066624 -2933,Oberlin (OH),9,1990.0,0.4,0.4,0.4,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.382391807069705 -2933,Oberlin (OH),IC4,1996.0,2.1,2.1,2.1,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.2836,-82.2194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.381953183991946 -2935,Orrville,10,1971.0,25.0,23.0,23.0,7,BIT,Conventional Steam Coal,OP,ST,1.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.92,0.92,RFC,PJM,OH,40.850964,-81.765764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.9194478780387305 -2935,Orrville,11,1971.0,25.0,23.0,23.0,7,NG,Natural Gas Steam Turbine,OP,ST,1.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.92,0.92,RFC,PJM,OH,40.850964,-81.765764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.657494393599612 -2935,Orrville,7,1949.0,5.0,5.0,5.0,1,BIT,Conventional Steam Coal,OS,ST,1.0,1949.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,40.850964,-81.765764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2935,Orrville,8,1955.0,7.5,7.5,7.5,2,BIT,Conventional Steam Coal,OS,ST,1.0,1955.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,40.850964,-81.765764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2935,Orrville,9,1961.0,22.0,20.0,20.0,7,BIT,Conventional Steam Coal,OP,ST,1.0,1961.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.9090909090909091,RFC,PJM,OH,40.850964,-81.765764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2936,Painesville,3,1953.0,7.5,7.0,7.0,2.5,BIT,Conventional Steam Coal,SB,ST,1.0,1953.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9333333333333333,RFC,PJM,OH,41.7265,-81.254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2936,Painesville,5,1965.0,16.5,15.5,15.5,5.5,BIT,Conventional Steam Coal,OP,ST,1.0,1965.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9393939393939394,0.9393939393939394,RFC,PJM,OH,41.7265,-81.254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.167097181136342 -2936,Painesville,7,1990.0,22.0,17.5,17.5,6,BIT,Conventional Steam Coal,OP,ST,2.0,1990.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7954545454545454,0.7954545454545454,RFC,PJM,OH,41.7265,-81.254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2936,Painesville,ST2,1949.0,7.5,7.0,7.0,2.5,BIT,Conventional Steam Coal,SB,ST,1.0,1949.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9333333333333333,RFC,PJM,OH,41.7265,-81.254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2936,Painesville,WPCP1,2010.0,2.0,1.8,1.8,1.4,DFO,Petroleum Liquids,OP,IC,2.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,PJM,OH,41.7265,-81.254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.22222222222222 -2937,Piqua Power Plant,11,1989.0,16.3,16.5,16.5,13,DFO,Petroleum Liquids,OP,GT,12.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,40.133848,-84.237258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2937,Piqua Power Plant,8,1972.0,20.0,20.0,20.0,14,DFO,Petroleum Liquids,OP,GT,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,40.133848,-84.237258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2942,St Marys,7,1992.0,14.0,12.0,12.0,1,DFO,Petroleum Liquids,SB,GT,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8571428571428572,0.8571428571428572,RFC,PJM,OH,40.5458,-84.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -2942,St Marys,GT1,1999.0,11.0,10.4,10.4,1,NG,Natural Gas Fired Combustion Turbine,SB,GT,12.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9454545454545454,0.9454545454545454,RFC,PJM,OH,40.5458,-84.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -2945,Anadarko,10,1983.0,1.2,1.2,1.2,1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.756982,-81.115503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.946720835751595 -2945,Anadarko,11,1983.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.756982,-81.115503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.946720835751595 -2945,Anadarko,6,1949.0,0.6,0.6,0.6,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.756982,-81.115503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.945914577530177 -2945,Anadarko,7,1957.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1957.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.756982,-81.115503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.946720835751595 -2945,Anadarko,8,1965.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.756982,-81.115503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.946605998699972 -2945,Anadarko,9,1971.0,2.1,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,1.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.756982,-81.115503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.946408436691649 -2951,Horseshoe Lake,10,2001.0,60.5,43.1,43.1,43.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7123966942148761,0.7123966942148761,MRO,SWPP,OK,35.50866,-97.17969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.248128181692286 -2951,Horseshoe Lake,6,1958.0,163.0,168.0,168.0,60,NG,Natural Gas Steam Turbine,OP,ST,4.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,35.50866,-97.17969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.460620631933043 -2951,Horseshoe Lake,8,1969.0,443.0,377.0,377.0,80,NG,Natural Gas Steam Turbine,OP,ST,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8510158013544018,0.8510158013544018,MRO,SWPP,OK,35.50866,-97.17969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.872359788142973 -2951,Horseshoe Lake,9,2001.0,60.5,44.9,44.9,44.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7421487603305785,0.7421487603305785,MRO,SWPP,OK,35.50866,-97.17969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.615609882287771 -2951,Horseshoe Lake,ST7,1963.0,220.0,211.0,211.0,75,NG,Natural Gas Steam Turbine,OP,ST,6.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9590909090909091,0.9590909090909091,MRO,SWPP,OK,35.50866,-97.17969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2952,Muskogee,4,1977.0,572.0,487.0,487.0,200,NG,Natural Gas Steam Turbine,OP,ST,12.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8513986013986015,0.8513986013986015,MRO,SWPP,OK,35.76135,-95.28732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.78988443356469 -2952,Muskogee,5,1978.0,572.0,488.0,488.0,200,NG,Natural Gas Steam Turbine,OP,ST,10.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8531468531468531,0.8531468531468531,MRO,SWPP,OK,35.76135,-95.28732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.539145328804052 -2952,Muskogee,6,1984.0,572.0,503.0,503.0,200,SUB,Conventional Steam Coal,OP,ST,6.0,1984.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8793706293706294,0.8793706293706294,MRO,SWPP,OK,35.76135,-95.28732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.251823993489925 -2953,Mustang,GT1,2017.0,66.0,57.0,57.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8636363636363636,0.8636363636363636,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,GT2,2017.0,66.0,57.0,57.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8636363636363636,0.8636363636363636,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,GT3,2017.0,66.0,58.0,58.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8787878787878788,0.8787878787878788,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,GT4,2017.0,66.0,58.0,58.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8787878787878788,0.8787878787878788,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,GT5,2017.0,66.0,57.0,57.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8636363636363636,0.8636363636363636,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,GT6,2017.0,66.0,57.0,57.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8636363636363636,0.8636363636363636,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,GT7,2017.0,66.0,57.0,57.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8636363636363636,0.8636363636363636,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2953,Mustang,SLR1,2015.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,35.46988,-97.67498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2956,Seminole,1,1971.0,567.0,500.0,500.0,70,NG,Natural Gas Steam Turbine,OP,ST,3.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8818342151675485,0.8818342151675485,MRO,SWPP,OK,34.96645,-96.7258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.700900518130291 -2956,Seminole,2,1973.0,567.0,510.0,510.0,70,NG,Natural Gas Steam Turbine,OP,ST,2.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8994708994708995,0.8994708994708995,MRO,SWPP,OK,34.96645,-96.7258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.238092730014774 -2956,Seminole,3,1975.0,567.0,498.0,498.0,70,NG,Natural Gas Steam Turbine,OP,ST,6.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8783068783068784,0.8783068783068784,MRO,SWPP,OK,34.96645,-96.7258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.407330406179664 -2963,Northeastern,1,1961.0,170.0,146.0,161.0,140,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1961.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8588235294117648,0.9470588235294117,MRO,SWPP,OK,36.4317,-95.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2963,Northeastern,1A,2001.0,178.5,149.0,165.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.834733893557423,0.9243697478991597,MRO,SWPP,OK,36.4317,-95.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2963,Northeastern,1B,2001.0,178.5,149.0,165.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.834733893557423,0.9243697478991597,MRO,SWPP,OK,36.4317,-95.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2963,Northeastern,2,1970.0,473.0,434.0,434.0,150,NG,Natural Gas Steam Turbine,OP,ST,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9175475687103594,0.9175475687103594,MRO,SWPP,OK,36.4317,-95.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2963,Northeastern,3,1979.0,473.0,460.0,460.0,250,SUB,Conventional Steam Coal,OP,ST,12.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9725158562367865,0.9725158562367865,MRO,SWPP,OK,36.4317,-95.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2963,Northeastern,IC1,1980.0,4.5,4.0,4.0,2.5,DFO,Petroleum Liquids,OP,IC,12.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,MRO,SWPP,OK,36.4317,-95.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2964,Southwestern,1,1952.0,84.0,56.0,56.0,20,NG,Natural Gas Steam Turbine,OP,ST,7.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,0.6666666666666667,MRO,SWPP,OK,35.1009,-98.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2964,Southwestern,2,1954.0,84.0,78.0,78.0,10,NG,Natural Gas Steam Turbine,OP,ST,3.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9285714285714286,0.9285714285714286,MRO,SWPP,OK,35.1009,-98.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2964,Southwestern,3,1967.0,315.0,295.0,295.0,25,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9365079365079365,0.9365079365079365,MRO,SWPP,OK,35.1009,-98.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2964,Southwestern,4,2008.0,86.5,76.0,85.0,51,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8786127167630058,0.9826589595375722,MRO,SWPP,OK,35.1009,-98.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2964,Southwestern,5,2008.0,86.5,76.0,85.0,51,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8786127167630058,0.9826589595375722,MRO,SWPP,OK,35.1009,-98.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2964,Southwestern,IC1,1966.0,2.0,2.0,2.0,1.8,DFO,Petroleum Liquids,OS,IC,5.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,35.1009,-98.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2965,Tulsa,2,1956.0,170.0,164.0,164.0,13,NG,Natural Gas Steam Turbine,OP,ST,11.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9647058823529412,0.9647058823529412,MRO,SWPP,OK,36.116492,-95.990974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2965,Tulsa,4,1958.0,170.0,158.0,158.0,13,NG,Natural Gas Steam Turbine,OP,ST,4.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9294117647058824,0.9294117647058824,MRO,SWPP,OK,36.116492,-95.990974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2965,Tulsa,IC1,1967.0,8.2,8.3,8.3,8.3,DFO,Petroleum Liquids,OP,IC,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,36.116492,-95.990974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2966,Weleetka,4,1975.0,53.0,55.0,66.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1975.0,1,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.3233,-96.1352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.03040841702535 -2966,Weleetka,5,1976.0,53.0,53.0,66.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1976.0,1,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.3233,-96.1352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.91703299856528 -2966,Weleetka,IC1,1963.0,4.0,4.0,4.0,4,DFO,Petroleum Liquids,OP,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,35.3233,-96.1352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2975,Cushing,1,1956.0,2.5,1.8,1.8,1.6,DFO,Petroleum Liquids,OP,IC,6.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.72,0.72,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082504032380779 -2975,Cushing,10,1972.0,4.5,4.0,4.0,2,DFO,Petroleum Liquids,OA,IC,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082473413398407 -2975,Cushing,11,1988.0,6.3,6.3,6.3,3.5,DFO,Petroleum Liquids,OP,IC,6.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082458788720489 -2975,Cushing,2,1949.0,1.0,0.8,0.8,0.6,DFO,Petroleum Liquids,OP,IC,6.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082447820242956 -2975,Cushing,3,1936.0,0.5,0.4,0.4,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1936.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082728886634543 -2975,Cushing,4,1936.0,0.5,0.4,0.4,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1936.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082728886634543 -2975,Cushing,5,1936.0,0.5,0.4,0.4,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1936.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082728886634543 -2975,Cushing,6,1939.0,0.8,0.6,0.6,0.6,DFO,Petroleum Liquids,OP,IC,7.0,1939.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082358535425582 -2975,Cushing,7,1956.0,2.5,1.9,1.9,1.9,DFO,Petroleum Liquids,OA,IC,6.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.76,0.76,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082504032380779 -2975,Cushing,8,1956.0,2.5,1.9,1.9,1.9,DFO,Petroleum Liquids,OA,IC,6.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.76,0.76,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082504032380779 -2975,Cushing,9,1965.0,3.0,2.7,2.7,2.2,DFO,Petroleum Liquids,OP,IC,2.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,OK,35.982597,-96.775683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.082447820242956 -2980,Markham,1,1964.0,32.1,32.0,32.0,18,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9968847352024922,0.9968847352024922,MRO,SWPP,OK,36.2317,-95.1822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2980,Markham,2,1964.0,32.1,32.0,32.0,18,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9968847352024922,0.9968847352024922,MRO,SWPP,OK,36.2317,-95.1822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2980,Markham,3,1964.0,32.1,32.0,32.0,18,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9968847352024922,0.9968847352024922,MRO,SWPP,OK,36.2317,-95.1822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2980,Markham,4,1964.0,32.1,32.0,32.0,18,WAT,Conventional Hydroelectric,OP,HY,5.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9968847352024922,0.9968847352024922,MRO,SWPP,OK,36.2317,-95.1822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,1,1940.0,21.6,19.0,21.0,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8796296296296295,0.9722222222222222,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,2,1940.0,21.6,18.9,21.0,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.9722222222222222,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,3,1940.0,21.6,19.0,21.0,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8796296296296295,0.9722222222222222,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,4,1940.0,21.6,18.9,21.0,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.9722222222222222,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,5,1946.0,21.6,18.8,21.0,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8703703703703703,0.9722222222222222,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,6,1946.0,21.6,18.7,21.0,5,WAT,Conventional Hydroelectric,OP,HY,8.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8657407407407407,0.9722222222222222,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2981,Pensacola,A,1940.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OS,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,OK,36.4675,-95.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2982,Salina,1,1968.0,43.2,43.0,43.0,14,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9953703703703703,0.9953703703703703,MRO,SWPP,OK,36.264685,-95.103558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2982,Salina,2,1968.0,43.2,43.0,43.0,14,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9953703703703703,0.9953703703703703,MRO,SWPP,OK,36.264685,-95.103558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2982,Salina,3,1968.0,43.2,43.0,43.0,14,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9953703703703703,0.9953703703703703,MRO,SWPP,OK,36.264685,-95.103558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2982,Salina,4,1971.0,43.2,43.0,43.0,14,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1971.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9953703703703703,0.9953703703703703,MRO,SWPP,OK,36.264685,-95.103558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2982,Salina,5,1971.0,43.2,43.0,43.0,14,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1971.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9953703703703703,0.9953703703703703,MRO,SWPP,OK,36.264685,-95.103558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2982,Salina,6,1971.0,43.2,43.0,43.0,14,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1971.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9953703703703703,0.9953703703703703,MRO,SWPP,OK,36.264685,-95.103558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2984,Keystone Dam,1,1968.0,35.0,40.0,40.0,25,WAT,Conventional Hydroelectric,OA,HY,5.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,OK,36.1508,-96.2517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2984,Keystone Dam,2,1968.0,35.0,40.0,40.0,25,WAT,Conventional Hydroelectric,OP,HY,5.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,OK,36.1508,-96.2517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2985,Robert S Kerr,1,1971.0,27.5,28.0,28.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.34447,-94.7755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2985,Robert S Kerr,2,1971.0,27.5,26.0,26.0,10,WAT,Conventional Hydroelectric,OP,HY,7.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9454545454545454,0.9454545454545454,MRO,SPA,OK,35.34447,-94.7755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2985,Robert S Kerr,3,1971.0,27.5,31.6,31.6,10,WAT,Conventional Hydroelectric,OS,HY,9.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.34447,-94.7755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2985,Robert S Kerr,4,1971.0,27.5,20.0,20.0,10,WAT,Conventional Hydroelectric,OP,HY,11.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7272727272727273,0.7272727272727273,MRO,SPA,OK,35.34447,-94.7755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2986,Kingfisher,3,1965.0,2.8,2.9,2.9,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,35.8575,-97.9277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.97566453522169 -2986,Kingfisher,4,1959.0,1.3,1.2,1.2,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,SWPP,OK,35.8575,-97.9277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.975926242103466 -2986,Kingfisher,5,1970.0,3.1,3.0,3.0,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.967741935483871,0.967741935483871,MRO,SWPP,OK,35.8575,-97.9277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.975633039784253 -2986,Kingfisher,IC1,1954.0,1.1,1.0,1.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,SWPP,OK,35.8575,-97.9277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.975719666397632 -2986,Kingfisher,IC2,1954.0,0.8,0.6,0.6,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.75,0.75,MRO,SWPP,OK,35.8575,-97.9277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.975862387866457 -2987,Webbers Falls,1,1973.0,25.0,25.0,25.0,7,WAT,Conventional Hydroelectric,OS,HY,8.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.5531,-95.1708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2987,Webbers Falls,2,1973.0,25.0,25.0,25.0,7,WAT,Conventional Hydroelectric,OP,HY,9.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.5531,-95.1708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2987,Webbers Falls,3,1973.0,25.0,25.0,25.0,7,WAT,Conventional Hydroelectric,OP,HY,11.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.5531,-95.1708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2991,Mangum,1,1946.0,1.1,0.9,0.9,0.5,NG,Natural Gas Internal Combustion Engine,OS,IC,1.0,1946.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,OK,34.8836,-99.5022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2991,Mangum,4,1956.0,1.5,1.2,1.2,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,OK,34.8836,-99.5022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2991,Mangum,5,1963.0,2.0,1.7,1.7,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.85,0.85,MRO,SWPP,OK,34.8836,-99.5022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2991,Mangum,6,1969.0,2.1,1.6,1.6,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7619047619047619,0.7619047619047619,MRO,SWPP,OK,34.8836,-99.5022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2995,Pawhuska,1,1949.0,1.4,1.1,1.1,0.3,DFO,Petroleum Liquids,OS,IC,9.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7857142857142858,0.7857142857142858,MRO,SWPP,OK,36.669425,-96.347408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.704075522209306 -2995,Pawhuska,2,1954.0,2.0,1.2,1.2,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6,0.6,MRO,SWPP,OK,36.669425,-96.347408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.704121512495222 -2995,Pawhuska,3,1966.0,3.1,2.5,2.5,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8064516129032258,0.8064516129032258,MRO,SWPP,OK,36.669425,-96.347408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.704124974149314 -2995,Pawhuska,5,1960.0,2.5,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,9.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,SWPP,OK,36.669425,-96.347408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.704100050301316 -3003,Fort Gibson,1,1953.0,11.2,12.9,12.9,4,WAT,Conventional Hydroelectric,OP,HY,3.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.8693,-95.2269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3003,Fort Gibson,2,1953.0,11.2,12.9,12.9,4,WAT,Conventional Hydroelectric,OP,HY,3.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.8693,-95.2269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3003,Fort Gibson,3,1953.0,11.2,12.9,12.9,4,WAT,Conventional Hydroelectric,OP,HY,5.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.8693,-95.2269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3003,Fort Gibson,4,1953.0,11.2,12.5,12.5,4,WAT,Conventional Hydroelectric,OP,HY,9.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.8693,-95.2269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3004,Tenkiller Ferry,1,1953.0,19.5,21.0,21.0,8,WAT,Conventional Hydroelectric,OP,HY,11.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.595,-95.0511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3004,Tenkiller Ferry,2,1953.0,19.5,21.0,21.0,8,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.595,-95.0511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3006,Anadarko Plant,1,1953.0,17.3,12.0,12.0,6,NG,Natural Gas Steam Turbine,SB,ST,8.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6936416184971098,0.6936416184971098,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3006,Anadarko Plant,10,2009.0,45.0,45.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.57916212504629 -3006,Anadarko Plant,11,2009.0,45.0,45.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.535774487717566 -3006,Anadarko Plant,2,1953.0,17.3,12.0,12.0,6,NG,Natural Gas Steam Turbine,SB,ST,8.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6936416184971098,0.6936416184971098,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3006,Anadarko Plant,3,1959.0,50.0,44.0,44.0,15,NG,Natural Gas Steam Turbine,SB,ST,8.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.88,0.88,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3006,Anadarko Plant,4,1977.0,105.1,94.0,94.0,80,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8943862987630828,0.8943862987630828,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.64349357967231 -3006,Anadarko Plant,5,1977.0,105.1,94.0,94.0,80,NG,Natural Gas Fired Combined Cycle,OP,CS,11.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8943862987630828,0.8943862987630828,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.043699240619416 -3006,Anadarko Plant,6,1977.0,105.1,94.0,94.0,80,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8943862987630828,0.8943862987630828,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.778322009635662 -3006,Anadarko Plant,9,2009.0,45.0,45.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.0847,-98.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.661225620293791 -3008,Mooreland,1,1964.0,45.0,50.0,50.0,20,NG,Natural Gas Steam Turbine,OP,ST,3.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,36.43725,-99.22543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.808312429022083 -3008,Mooreland,2,1968.0,125.0,132.0,132.0,30,NG,Natural Gas Steam Turbine,OP,ST,7.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,36.43725,-99.22543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.19476449704142 -3008,Mooreland,3,1975.0,135.0,140.0,140.0,30,NG,Natural Gas Steam Turbine,OP,ST,7.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,36.43725,-99.22543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.956491010711263 -3013,Hells Canyon,1,1967.0,130.5,141.4,130.5,0,WAT,Conventional Hydroelectric,OA,HY,12.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,45.2439,-116.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3013,Hells Canyon,2,1967.0,130.5,151.1,130.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,45.2439,-116.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3013,Hells Canyon,3,1967.0,130.5,150.9,130.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,45.2439,-116.7008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3014,Oxbow (OR),1,1961.0,47.5,57.0,47.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,44.971643,-116.835042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3014,Oxbow (OR),2,1961.0,47.5,57.0,47.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,44.971643,-116.835042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3014,Oxbow (OR),3,1961.0,47.5,53.3,47.5,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,44.971643,-116.835042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3014,Oxbow (OR),4,1961.0,47.5,57.0,47.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,44.971643,-116.835042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3020,Clearwater 1,1,1953.0,15.0,17.9,17.9,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.251244,-122.337924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3021,Clearwater 2,1,1953.0,26.0,31.0,31.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.266894,-122.409807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3024,Eagle Point,1,1957.0,2.8,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.514575,-122.757062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3025,East Side,1,1924.0,3.2,3.0,3.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,WECC,PACW,OR,42.224847,-121.795496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3026,Fish Creek,1,1952.0,11.0,10.4,10.4,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9454545454545454,0.9454545454545454,WECC,PACW,OR,43.274221,-122.448978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3028,John C Boyle,1,1958.0,50.3,50.4,50.4,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.093611,-122.0703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3028,John C Boyle,2,1958.0,48.4,47.6,47.6,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9834710743801653,0.9834710743801653,WECC,PACW,OR,42.093611,-122.0703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3029,Lemolo 1,1,1955.0,32.0,32.0,32.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.3558,-122.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3032,Prospect 1,1,1912.0,3.8,4.6,4.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.730717,-122.515122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3033,Prospect 2,1,1928.0,16.0,18.0,18.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.731237,-122.513974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3033,Prospect 2,2,1928.0,16.0,18.0,18.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.731237,-122.513974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3034,Prospect 3,1,1932.0,7.2,7.7,7.7,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.730606,-122.41846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3035,Prospect 4,1,1944.0,1.0,0.9,0.9,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,PACW,OR,42.733073,-122.515079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3036,Slide Creek,1,1951.0,18.0,18.0,18.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.2939,-122.4728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3037,Soda Springs,1,1952.0,11.0,11.6,11.6,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.3061,-122.5014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3040,Toketee Falls,1,1950.0,14.2,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.272729,-122.447498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3040,Toketee Falls,2,1949.0,14.2,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.272729,-122.447498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3040,Toketee Falls,3,1950.0,14.2,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.272729,-122.447498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3041,Wallowa Falls,1,1921.0,1.1,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,45.266702,-117.212732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3045,Faraday,6,1958.0,19.2,23.9,23.9,5,WAT,Conventional Hydroelectric,OA,HY,9.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.268045,-122.32009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3047,North Fork,1,1958.0,19.2,27.0,27.0,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.243287,-122.27995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3047,North Fork,2,1958.0,21.6,31.0,31.0,4,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.243287,-122.27995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3048,Pelton,1,1957.0,45.0,38.0,38.0,10,WAT,Conventional Hydroelectric,OP,HY,12.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8444444444444444,0.8444444444444444,WECC,PGE,OR,44.694374,-121.231379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3048,Pelton,2,1958.0,32.4,36.0,36.0,10,WAT,Conventional Hydroelectric,OP,HY,3.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,44.694374,-121.231379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3048,Pelton,3,1958.0,32.4,36.0,36.0,10,WAT,Conventional Hydroelectric,OP,HY,4.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,44.694374,-121.231379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3049,River Mill,1,1911.0,3.3,4.3,4.3,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.299991,-122.350023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3049,River Mill,2,1911.0,3.3,4.3,4.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.299991,-122.350023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3049,River Mill,3,1912.0,3.3,4.3,4.3,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.299991,-122.350023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3049,River Mill,4,1927.0,3.9,5.2,5.2,3,WAT,Conventional Hydroelectric,OP,HY,12.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.299991,-122.350023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3049,River Mill,5,1952.0,5.0,6.6,6.6,2.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.299991,-122.350023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3050,Round Butte,1,1964.0,112.5,110.0,110.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9777777777777777,0.9777777777777777,WECC,PGE,OR,44.605837,-121.277334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3050,Round Butte,2,1964.0,130.0,121.5,121.5,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9346153846153846,0.9346153846153846,WECC,PGE,OR,44.605837,-121.277334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3050,Round Butte,3,1964.0,130.0,121.5,121.5,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9346153846153846,0.9346153846153846,WECC,PGE,OR,44.605837,-121.277334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,1,1952.0,1.2,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,10,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,11,1952.0,1.2,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,12,1952.0,1.2,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,13,1952.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,2,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,3,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,4,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,5,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,6,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,7,1952.0,1.2,1.5,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,8,1952.0,1.2,1.4,1.4,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3053,Sullivan,9,1924.0,1.0,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.354004,-122.618954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3067,Carmen Smith,1,1963.0,52.2,50.0,50.0,12,WAT,Conventional Hydroelectric,OP,HY,8.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9578544061302682,0.9578544061302682,WECC,BPAT,OR,44.285977,-122.041352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3067,Carmen Smith,2,1963.0,52.2,50.0,50.0,12,WAT,Conventional Hydroelectric,OA,HY,8.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9578544061302682,0.9578544061302682,WECC,BPAT,OR,44.285977,-122.041352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3067,Carmen Smith,3,1963.0,9.9,3.8,6.5,2,WAT,Conventional Hydroelectric,OA,HY,1.0,1963.0,10,2030,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.38383838383838376,0.6565656565656566,WECC,BPAT,OR,44.285977,-122.041352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3068,Leaburg,1,1930.0,8.4,4.0,8.0,2,WAT,Conventional Hydroelectric,OS,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.47619047619047616,0.9523809523809523,WECC,BPAT,OR,44.1011,-122.6892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3068,Leaburg,2,1950.0,7.5,4.0,7.5,2,WAT,Conventional Hydroelectric,OS,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5333333333333333,1.0,WECC,BPAT,OR,44.1011,-122.6892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3071,Walterville,1,1949.0,8.0,7.5,7.5,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,WECC,BPAT,OR,44.069636,-122.835046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3074,Big Cliff,1,1954.0,18.0,21.0,21.0,18,WAT,Conventional Hydroelectric,OP,HY,12.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.7514,-122.2832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,1,1938.0,53.5,53.5,53.5,13.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,10,1944.0,62.1,54.0,54.0,13.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913043,0.8695652173913043,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,11,1982.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OA,HY,10.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,12,1982.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,13,1982.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OA,HY,10.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,14,1982.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,15,1982.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,16,1981.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,17,1981.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,18,1981.0,66.5,66.5,66.5,23.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,2,1938.0,53.5,53.5,53.5,13.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,3,1941.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,4,1941.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,5,1941.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,6,1942.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,7,1943.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,4.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,8,1943.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,9,1943.0,62.1,62.1,62.1,13.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,F1,1982.0,13.1,13.1,13.1,13.1,WAT,Conventional Hydroelectric,OA,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3075,Bonneville,F2,1981.0,13.1,13.1,13.1,13.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.6441,-121.941009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3076,Cougar,1,1964.0,13.0,13.0,13.0,12.5,WAT,Conventional Hydroelectric,OA,HY,4.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.1307,-122.2439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3076,Cougar,2,1964.0,13.0,13.0,13.0,12.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.1307,-122.2439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3077,Detroit,1,1953.0,50.0,50.0,50.0,50,WAT,Conventional Hydroelectric,OA,HY,11.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.7224,-122.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3077,Detroit,2,1953.0,50.0,50.0,50.0,50,WAT,Conventional Hydroelectric,OP,HY,7.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.7224,-122.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3078,Dexter,1,1955.0,15.0,15.0,15.0,15,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,43.9242,-122.8055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3080,Green Peter,1,1967.0,40.0,40.0,40.0,40,WAT,Conventional Hydroelectric,OP,HY,7.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.4494,-122.5494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3080,Green Peter,2,1967.0,40.0,40.0,40.0,40,WAT,Conventional Hydroelectric,OP,HY,7.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.4494,-122.5494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3081,Hills Creek,1,1962.0,15.0,15.0,15.0,15,WAT,Conventional Hydroelectric,OP,HY,2.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,43.7107,-122.4238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3081,Hills Creek,2,1962.0,15.0,15.0,15.0,15,WAT,Conventional Hydroelectric,OP,HY,2.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,43.7107,-122.4238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,1,1968.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OP,HY,8.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,10,1969.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OA,HY,9.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,11,1970.0,135.0,118.0,118.0,52,WAT,Conventional Hydroelectric,OP,HY,3.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8740740740740741,0.8740740740740741,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,12,1970.0,135.0,118.0,118.0,52,WAT,Conventional Hydroelectric,OP,HY,5.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8740740740740741,0.8740740740740741,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,13,1970.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OA,HY,12.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,14,1971.0,135.0,118.0,118.0,52,WAT,Conventional Hydroelectric,OP,HY,1.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8740740740740741,0.8740740740740741,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,15,1971.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OP,HY,10.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,16,1971.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OP,HY,12.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,2,1968.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OP,HY,9.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,3,1968.0,135.0,129.0,129.0,52,WAT,Conventional Hydroelectric,OP,HY,11.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9555555555555556,0.9555555555555556,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,4,1968.0,135.0,118.0,118.0,52,WAT,Conventional Hydroelectric,OP,HY,12.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8740740740740741,0.8740740740740741,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,5,1969.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OA,HY,2.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,6,1969.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OP,HY,3.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,7,1969.0,135.0,135.0,135.0,52,WAT,Conventional Hydroelectric,OS,HY,4.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,8,1969.0,135.0,118.0,118.0,52,WAT,Conventional Hydroelectric,OA,HY,6.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8740740740740741,0.8740740740740741,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3082,John Day,9,1969.0,135.0,118.0,118.0,52,WAT,Conventional Hydroelectric,OP,HY,8.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8740740740740741,0.8740740740740741,WECC,BPAT,OR,45.71644,-120.69408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3083,Lookout Point,1,1955.0,40.0,40.0,40.0,40,WAT,Conventional Hydroelectric,OP,HY,5.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,43.9153,-122.7531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3083,Lookout Point,2,1955.0,40.0,40.0,40.0,40,WAT,Conventional Hydroelectric,OA,HY,3.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,43.9153,-122.7531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3083,Lookout Point,3,1955.0,40.0,40.0,40.0,40,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,43.9153,-122.7531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,1,1953.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,10,1955.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,11,1956.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,12,1956.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,13,1957.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,3.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,14,1957.0,80.5,80.5,80.5,23.8,WAT,Conventional Hydroelectric,OP,HY,3.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,2,1954.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,3,1954.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,4,1954.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,7.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,5,1954.0,70.0,58.0,58.0,23.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8285714285714285,0.8285714285714285,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,6,1955.0,70.0,58.0,58.0,23.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8285714285714285,0.8285714285714285,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,7,1955.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,3.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,8,1955.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3084,McNary,9,1956.0,70.0,70.0,70.0,23.8,WAT,Conventional Hydroelectric,OA,HY,9.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.9402,-119.2988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3096,Brunot Island,1A,1972.0,25.5,18.1,15.0,15,DFO,Petroleum Liquids,OP,GT,3.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7098039215686275,0.5882352941176471,RFC,PJM,PA,40.464851,-80.043761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.73831775700935 -3096,Brunot Island,2A,1973.0,65.3,47.4,54.0,30,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1973.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7258805513016846,0.8269525267993875,RFC,PJM,PA,40.464851,-80.043761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.2650774883885 -3096,Brunot Island,2B,1973.0,65.3,47.0,56.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1973.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7197549770290965,0.8683001531393569,RFC,PJM,PA,40.464851,-80.043761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.825084340924263 -3096,Brunot Island,3,1973.0,65.3,47.5,57.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1973.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7274119448698315,0.883614088820827,RFC,PJM,PA,40.464851,-80.043761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.53369260567392 -3096,Brunot Island,ST4,1974.0,144.0,101.6,101.0,32,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7055555555555555,0.7013888888888888,RFC,PJM,PA,40.464851,-80.043761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3109,Hamilton (PA),1,1971.0,19.6,20.4,24.0,18,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.908732,-76.988454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.74059003051882 -3110,Hunterstown,1,1971.0,20.0,21.0,20.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.8662,-77.1648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.912838898576386 -3110,Hunterstown,2,1971.0,20.0,21.5,20.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.8662,-77.1648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.912838898576386 -3110,Hunterstown,3,1971.0,20.0,21.5,20.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.8662,-77.1648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.912838898576386 -3111,Mountain,1,1972.0,27.0,19.5,25.0,18,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7222222222222222,0.9259259259259259,RFC,PJM,PA,40.12282,-77.1716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3111,Mountain,2,1972.0,27.0,20.6,25.0,18,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7629629629629631,0.9259259259259259,RFC,PJM,PA,40.12282,-77.1716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3112,Orrtanna,1,1971.0,27.0,20.2,26.0,18,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7481481481481481,0.962962962962963,RFC,PJM,PA,39.8442,-77.3508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.88029020556227 -3113,Portland (PA),3,1967.0,18.0,16.0,15.0,13,DFO,Petroleum Liquids,OP,GT,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8888888888888888,0.8333333333333334,RFC,PJM,PA,40.910205,-75.079398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3113,Portland (PA),4,1971.0,20.0,21.0,20.0,17,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,40.910205,-75.079398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3113,Portland (PA),5,1997.0,156.0,140.5,155.0,90,DFO,Petroleum Liquids,OP,GT,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9006410256410257,0.9935897435897436,RFC,PJM,PA,40.910205,-75.079398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.364505293211355 -3114,Shawnee (PA),1,1972.0,20.0,20.6,24.0,17,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,41.061194,-75.058242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -3115,Titus,4,1967.0,18.0,15.0,17.0,13,DFO,Petroleum Liquids,OP,GT,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333334,0.9444444444444444,RFC,PJM,PA,40.3056,-75.9081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.25233644859813 -3115,Titus,5,1970.0,18.0,16.1,18.0,13,DFO,Petroleum Liquids,OP,GT,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8944444444444445,1.0,RFC,PJM,PA,40.3056,-75.9081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.25233644859813 -3116,Tolna,1,1972.0,27.0,21.0,25.0,18,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7777777777777778,0.9259259259259259,RFC,PJM,PA,39.760634,-76.635341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3116,Tolna,2,1972.0,27.0,20.2,25.0,18,DFO,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7481481481481481,0.9259259259259259,RFC,PJM,PA,39.760634,-76.635341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3117,York Haven,1,1905.0,19.6,19.0,19.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9693877551020408,0.9693877551020408,RFC,PJM,PA,40.113625,-76.71195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3118,Conemaugh,1,1970.0,975.5,850.0,850.0,325,BIT,Conventional Steam Coal,OP,ST,5.0,1970.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8713480266529985,0.8713480266529985,RFC,PJM,PA,40.3842,-79.0611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.23438502448481 -3118,Conemaugh,2,1971.0,975.5,850.0,850.0,325,BIT,Conventional Steam Coal,OP,ST,5.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8713480266529985,0.8713480266529985,RFC,PJM,PA,40.3842,-79.0611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.131123368421052 -3118,Conemaugh,A,1970.0,3.0,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,2.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,RFC,PJM,PA,40.3842,-79.0611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3118,Conemaugh,B,1970.0,3.0,2.8,2.8,2.8,DFO,Petroleum Liquids,SB,IC,2.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,RFC,PJM,PA,40.3842,-79.0611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3118,Conemaugh,C,1970.0,3.0,2.8,2.8,2.8,DFO,Petroleum Liquids,SB,IC,2.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,RFC,PJM,PA,40.3842,-79.0611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3118,Conemaugh,D,1970.0,3.0,2.8,2.8,2.8,DFO,Petroleum Liquids,SB,IC,2.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,RFC,PJM,PA,40.3842,-79.0611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3120,Blossburg,1,1971.0,24.0,20.9,19.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8708333333333332,0.7916666666666666,RFC,PJM,PA,41.706475,-77.08184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.758202567760343 -3122,Homer City Generating Station,1,1969.0,660.0,626.1,631.2,285,BIT,Conventional Steam Coal,OP,ST,6.0,1969.0,11,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9486363636363637,0.9563636363636364,RFC,PJM,PA,40.512825,-79.196107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.976622251281247 -3122,Homer City Generating Station,2,1969.0,660.0,613.3,618.5,290,BIT,Conventional Steam Coal,OP,ST,8.0,1969.0,8,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9292424242424242,0.9371212121212121,RFC,PJM,PA,40.512825,-79.196107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.600442028394921 -3122,Homer City Generating Station,3,1977.0,692.0,648.9,665.4,300,BIT,Conventional Steam Coal,OP,ST,11.0,1977.0,7,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9377167630057803,0.9615606936416184,RFC,PJM,PA,40.512825,-79.196107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.05243188008404 -3124,Piney,1,1924.0,10.0,11.8,11.8,4,WAT,Conventional Hydroelectric,OP,HY,6.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,41.192088,-79.433501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3124,Piney,2,1924.0,10.0,11.8,11.8,4,WAT,Conventional Hydroelectric,OP,HY,7.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,41.192088,-79.433501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3124,Piney,3,1928.0,10.0,9.6,9.6,3,WAT,Conventional Hydroelectric,OP,HY,2.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.96,RFC,PJM,PA,41.192088,-79.433501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3130,Seward (PA),FB1,2004.0,585.0,521.0,521.0,200,WC,Conventional Steam Coal,OP,ST,11.0,2004.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8905982905982905,0.8905982905982905,RFC,PJM,PA,40.40625,-79.03366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3131,Shawville,1,1954.0,125.0,122.3,122.0,30,NG,Natural Gas Steam Turbine,OP,ST,8.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9783999999999999,0.976,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.344139843261969 -3131,Shawville,2,1954.0,125.0,124.7,124.7,31,NG,Natural Gas Steam Turbine,OP,ST,3.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9976,0.9976,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.38848303300872 -3131,Shawville,3,1959.0,188.0,174.0,172.0,59,NG,Natural Gas Steam Turbine,OP,ST,12.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.925531914893617,0.9148936170212766,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270814902314651 -3131,Shawville,4,1960.0,188.0,175.0,171.0,59,NG,Natural Gas Steam Turbine,OP,ST,4.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9308510638297872,0.9095744680851063,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.057150192806832 -3131,Shawville,5,1960.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,4.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3131,Shawville,6,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,4.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3131,Shawville,7,1960.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,4.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.06755,-78.366228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3132,Warren,3,1972.0,53.1,62.0,50.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.943502824858757,RFC,PJM,PA,41.835947,-79.188668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3136,Keystone,1,1967.0,936.0,850.0,850.0,350,BIT,Conventional Steam Coal,OP,ST,8.0,1967.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9081196581196581,0.9081196581196581,RFC,PJM,PA,40.6604,-79.3411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.293481471527388 -3136,Keystone,2,1968.0,936.0,850.0,850.0,350,BIT,Conventional Steam Coal,OP,ST,7.0,1968.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9081196581196581,0.9081196581196581,RFC,PJM,PA,40.6604,-79.3411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500979144097803 -3136,Keystone,3,1968.0,2.5,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.6604,-79.3411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3136,Keystone,4,1968.0,2.9,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,RFC,PJM,PA,40.6604,-79.3411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3136,Keystone,5,1968.0,2.9,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,RFC,PJM,PA,40.6604,-79.3411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3136,Keystone,6,1968.0,2.9,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,RFC,PJM,PA,40.6604,-79.3411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3138,New Castle Plant,3,1952.0,98.0,92.3,93.0,20,NG,Natural Gas Steam Turbine,OP,ST,9.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9418367346938775,0.9489795918367347,RFC,PJM,PA,40.937939,-80.369007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.92586728100397 -3138,New Castle Plant,4,1958.0,114.0,93.0,92.0,25,NG,Natural Gas Steam Turbine,OP,ST,8.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8157894736842105,0.8070175438596492,RFC,PJM,PA,40.937939,-80.369007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.069423558051804 -3138,New Castle Plant,5,1964.0,136.0,141.0,135.0,35,NG,Natural Gas Steam Turbine,OP,ST,6.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9926470588235294,RFC,PJM,PA,40.937939,-80.369007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.607955244657491 -3138,New Castle Plant,EMDA,1968.0,3.2,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.78125,0.78125,RFC,PJM,PA,40.937939,-80.369007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3138,New Castle Plant,EMDB,1968.0,3.2,2.5,2.5,1,DFO,Petroleum Liquids,OS,IC,12.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.78125,0.78125,RFC,PJM,PA,40.937939,-80.369007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3140,Brunner Island,1,1961.0,363.3,306.0,306.0,122,NG,Natural Gas Steam Turbine,OP,ST,5.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8422791081750619,0.8422791081750619,RFC,PJM,PA,40.096111,-76.6962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.54476368106476 -3140,Brunner Island,2,1965.0,405.0,363.0,363.0,126,NG,Natural Gas Steam Turbine,OP,ST,9.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8962962962962963,0.8962962962962963,RFC,PJM,PA,40.096111,-76.6962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.031813490363835 -3140,Brunner Island,3,1969.0,847.8,742.0,742.0,365,NG,Natural Gas Steam Turbine,OP,ST,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8752064166076905,0.8752064166076905,RFC,PJM,PA,40.096111,-76.6962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.165532363479924 -3145,Holtwood,HW1,1910.0,10.4,10.0,10.0,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9615384615384615,0.9615384615384615,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW10,1924.0,12.0,13.2,13.2,4,WAT,Conventional Hydroelectric,OP,HY,3.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW11,2011.0,1.4,1.2,1.2,1,WAT,Conventional Hydroelectric,OP,HY,6.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW13,2011.0,1.4,1.2,1.2,1,WAT,Conventional Hydroelectric,OP,HY,6.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW18,2013.0,66.0,64.6,64.6,25,WAT,Conventional Hydroelectric,OP,HY,11.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9787878787878787,0.9787878787878787,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW19,2013.0,66.0,64.6,64.6,25,WAT,Conventional Hydroelectric,OP,HY,11.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9787878787878787,0.9787878787878787,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW2,1911.0,10.4,11.7,11.7,4,WAT,Conventional Hydroelectric,OP,HY,2.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW3,1911.0,13.5,12.7,12.7,4,WAT,Conventional Hydroelectric,OP,HY,2.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9407407407407407,0.9407407407407407,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW4,1911.0,10.4,11.2,11.2,7,WAT,Conventional Hydroelectric,OP,HY,5.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW5,1911.0,10.4,12.1,12.1,7,WAT,Conventional Hydroelectric,OP,HY,7.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW6,1911.0,10.4,12.5,12.5,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW7,1913.0,10.4,10.3,10.3,7,WAT,Conventional Hydroelectric,OP,HY,10.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9903846153846154,0.9903846153846154,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW8,1914.0,11.4,10.5,10.5,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9210526315789473,0.9210526315789473,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3145,Holtwood,HW9,1914.0,13.2,13.2,13.2,4,WAT,Conventional Hydroelectric,OP,HY,2.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.827198,-76.331772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3148,TalenEnergy Martins Creek,3,1975.0,850.5,850.0,850.0,165,NG,Natural Gas Steam Turbine,OP,ST,10.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9994121105232217,0.9994121105232217,RFC,PJM,PA,40.797762,-75.105416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.358017647591675 -3148,TalenEnergy Martins Creek,4,1977.0,850.5,850.0,850.0,165,NG,Natural Gas Steam Turbine,OP,ST,3.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9994121105232217,0.9994121105232217,RFC,PJM,PA,40.797762,-75.105416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.542708556788329 -3148,TalenEnergy Martins Creek,CTG1,1971.0,23.6,18.0,18.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0,6,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7627118644067796,0.7627118644067796,RFC,PJM,PA,40.797762,-75.105416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3148,TalenEnergy Martins Creek,CTG2,1971.0,23.6,17.3,17.3,17.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0,6,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7330508474576272,0.7330508474576272,RFC,PJM,PA,40.797762,-75.105416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3148,TalenEnergy Martins Creek,CTG4,1971.0,23.6,17.2,17.2,17.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0,6,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7288135593220338,0.7288135593220338,RFC,PJM,PA,40.797762,-75.105416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3149,TalenEnergy Montour,1,1972.0,864.9,752.0,752.0,338,BIT,Conventional Steam Coal,OP,ST,3.0,1972.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8694646779974564,0.8694646779974564,RFC,PJM,PA,41.0714,-76.6672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.156650288337943 -3149,TalenEnergy Montour,2,1973.0,893.0,752.0,752.0,342,BIT,Conventional Steam Coal,OP,ST,4.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8421052631578947,0.8421052631578947,RFC,PJM,PA,41.0714,-76.6672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.61202019545499 -3152,Sunbury Generation LP,CTG1,1971.0,23.6,18.0,18.0,2,DFO,Petroleum Liquids,SB,GT,11.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7627118644067796,0.7627118644067796,RFC,PJM,PA,40.8361,-76.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.161094224924014 -3152,Sunbury Generation LP,CTG2,1971.0,23.6,18.0,18.0,2,DFO,Petroleum Liquids,SB,GT,11.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7627118644067796,0.7627118644067796,RFC,PJM,PA,40.8361,-76.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.161094224924014 -3152,Sunbury Generation LP,DI2,1967.0,5.5,5.0,5.0,2.5,DFO,Petroleum Liquids,SB,IC,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,RFC,PJM,PA,40.8361,-76.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.833333333333333 -3153,Wallenpaupack,WP1,1926.0,20.0,22.0,22.0,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,41.467858,-75.130895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3153,Wallenpaupack,WP2,1926.0,20.0,22.0,22.0,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,41.467858,-75.130895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3157,Chester Generating Station,7,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,2.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.8301,-75.3837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.102165211217486 -3157,Chester Generating Station,8,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.8301,-75.3837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.102165211217486 -3157,Chester Generating Station,9,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,3.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.8301,-75.3837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.102165211217486 -3160,Delaware Generating Station,10,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.968021,-75.125203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.752196759836082 -3160,Delaware Generating Station,11,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,4.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.968021,-75.125203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.752196759836082 -3160,Delaware Generating Station,12,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.968021,-75.125203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.752196759836082 -3160,Delaware Generating Station,9,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,7.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,39.968021,-75.125203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.75219544267114 -3161,Eddystone Generating Station,10,1967.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.858,-75.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3161,Eddystone Generating Station,20,1967.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,10.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.858,-75.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3161,Eddystone Generating Station,3,1974.0,391.0,380.0,380.0,50,NG,Natural Gas Steam Turbine,OP,ST,9.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9718670076726342,0.9718670076726342,RFC,PJM,PA,39.858,-75.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.040734016292273 -3161,Eddystone Generating Station,30,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,3.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,39.858,-75.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3161,Eddystone Generating Station,4,1976.0,391.0,380.0,380.0,50,NG,Natural Gas Steam Turbine,OP,ST,6.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9718670076726342,0.9718670076726342,RFC,PJM,PA,39.858,-75.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.695666221354433 -3161,Eddystone Generating Station,40,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,39.858,-75.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3162,Falls,1,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,40.176486,-74.789976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.401292081728805 -3162,Falls,2,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,40.176486,-74.789976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.401292081728805 -3162,Falls,3,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,40.176486,-74.789976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.401292081728805 -3163,Moser Generating Station,1,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,40.2352,-75.6193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.95540366211568 -3163,Moser Generating Station,2,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,40.2352,-75.6193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.95540366211568 -3163,Moser Generating Station,3,1970.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,40.2352,-75.6193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.95540366211568 -3164,Muddy Run,1,1967.0,134.0,134.0,134.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,2,1967.0,134.0,133.0,133.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9925373134328358,0.9925373134328358,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,3,1967.0,134.0,134.0,134.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,4,1967.0,134.0,134.0,134.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,5,1967.0,134.0,134.0,134.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,6,1967.0,134.0,133.0,133.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1967.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9925373134328358,0.9925373134328358,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,7,1968.0,134.0,134.0,134.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3164,Muddy Run,8,1968.0,134.0,134.0,134.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1968.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,39.8076,-76.2993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3166,Peach Bottom,2,1974.0,1499.4,1264.7,1345.1,115.8,NUC,Nuclear,OP,ST,7.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8434707216219821,0.8970921702014137,RFC,PJM,PA,39.758936,-76.268742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3166,Peach Bottom,3,1974.0,1377.0,1284.7,1349.7,117.3,NUC,Nuclear,OP,ST,12.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9329702251270879,0.9801742919389979,RFC,PJM,PA,39.758936,-76.268742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3168,Richmond Generating Station,91,1973.0,65.8,49.0,66.0,20,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7446808510638299,1.0,RFC,PJM,PA,39.984469,-75.075247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.806214848143982 -3168,Richmond Generating Station,92,1973.0,65.8,49.0,66.0,20,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7446808510638299,1.0,RFC,PJM,PA,39.984469,-75.075247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.789341957255344 -3169,Schuylkill Generating Station,10,1969.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.9419,-75.1883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.728725315642707 -3169,Schuylkill Generating Station,11,1971.0,21.2,17.0,20.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8018867924528302,0.9433962264150944,RFC,PJM,PA,39.9419,-75.1883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.728721727283752 -3170,Southwark,3,1967.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,6.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.9144,-75.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.549673954737246 -3170,Southwark,4,1967.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,10.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.9144,-75.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.549673954737246 -3170,Southwark,5,1967.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,7.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.9144,-75.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.549673954737246 -3170,Southwark,6,1968.0,18.6,13.0,18.0,5,DFO,Petroleum Liquids,OP,GT,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6989247311827956,0.9677419354838709,RFC,PJM,PA,39.9144,-75.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.549673954737246 -3175,Safe Harbor,1,1940.0,33.0,33.0,33.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,10,1985.0,37.5,37.5,37.5,33,WAT,Conventional Hydroelectric,OP,HY,6.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,11,1986.0,37.5,37.5,37.5,33,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,12,1985.0,37.5,37.5,37.5,33,WAT,Conventional Hydroelectric,OP,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,2,1934.0,33.0,33.0,33.0,10,WAT,Conventional Hydroelectric,OP,HY,11.0,1934.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,3,1931.0,32.0,32.0,32.0,10,WAT,Conventional Hydroelectric,OP,HY,12.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,4,1931.0,32.0,32.0,32.0,10,WAT,Conventional Hydroelectric,OP,HY,12.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,41,1931.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,42,1931.0,2.0,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,5,1932.0,32.0,32.0,32.0,10,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,6,1932.0,32.0,32.0,32.0,10,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,7,1933.0,32.0,32.0,32.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1933.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,8,1985.0,37.5,37.5,37.5,33,WAT,Conventional Hydroelectric,OP,HY,4.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3175,Safe Harbor,9,1986.0,37.5,37.5,37.5,33,WAT,Conventional Hydroelectric,OP,HY,2.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.9244,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3176,Hunlock Power Station,3,1959.0,49.9,29.2,30.3,4,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.5851703406813628,0.6072144288577155,RFC,PJM,PA,41.200556,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3176,Hunlock Power Station,5,2011.0,48.0,48.0,50.3,30,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,41.200556,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3176,Hunlock Power Station,6,2011.0,48.0,48.0,48.3,30,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,41.200556,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3236,Manchester Street,G10A,1995.0,125.0,110.1,115.6,70,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8807999999999999,0.9248,NPCC,ISNE,RI,41.8167,-71.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3236,Manchester Street,G11A,1995.0,125.0,110.2,115.6,70,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8816,0.9248,NPCC,ISNE,RI,41.8167,-71.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3236,Manchester Street,GE10,1995.0,48.0,46.9,54.4,40,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9770833333333333,1.0,NPCC,ISNE,RI,41.8167,-71.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3236,Manchester Street,GE11,1995.0,46.0,46.8,54.4,40,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,RI,41.8167,-71.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3236,Manchester Street,GE9A,1995.0,125.0,110.1,115.6,70,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8807999999999999,0.9248,NPCC,ISNE,RI,41.8167,-71.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3236,Manchester Street,GEN9,1995.0,46.0,46.9,54.5,40,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,RI,41.8167,-71.4042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3250,Darlington County,12,1997.0,158.0,115.0,131.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7278481012658228,0.8291139240506329,SERC,CPLE,SC,34.4185,-80.1657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.258973387147632 -3250,Darlington County,13,1997.0,158.0,115.0,133.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7278481012658228,0.8417721518987342,SERC,CPLE,SC,34.4185,-80.1657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.407933257656975 -3251,H B Robinson,2,1971.0,768.6,759.0,792.9,759,NUC,Nuclear,OP,ST,3.0,1971.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9875097580015613,1.0,SERC,CPLE,SC,34.4017,-80.1589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3253,Boyds Mill Hydro,1,1996.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.455514,-82.199339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3253,Boyds Mill Hydro,2,1996.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.455514,-82.199339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3255,Cedar Creek,1,1926.0,15.0,15.0,15.0,15,WAT,Conventional Hydroelectric,OP,HY,8.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5414,-80.8756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3255,Cedar Creek,2,1926.0,15.0,15.0,15.0,15,WAT,Conventional Hydroelectric,OP,HY,8.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5414,-80.8756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3255,Cedar Creek,3,1926.0,15.0,15.0,15.0,15,WAT,Conventional Hydroelectric,OP,HY,8.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5414,-80.8756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3256,Dearborn,1,1923.0,15.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,3.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,0.9333333333333333,SERC,DUK,SC,34.5583,-80.8914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3256,Dearborn,2,1923.0,15.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,3.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,0.9333333333333333,SERC,DUK,SC,34.5583,-80.8914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3256,Dearborn,3,1923.0,15.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,3.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,0.9333333333333333,SERC,DUK,SC,34.5583,-80.8914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3257,Fishing Creek,1,1916.0,9.3,11.0,11.0,9.3,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.6,-80.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3257,Fishing Creek,2,1916.0,8.8,10.0,10.0,8.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.6,-80.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3257,Fishing Creek,3,1916.0,8.8,10.0,10.0,8.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.6,-80.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3257,Fishing Creek,4,1916.0,9.4,11.0,11.0,9.4,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.6,-80.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3257,Fishing Creek,5,1916.0,6.0,9.0,9.0,6,WAT,Conventional Hydroelectric,OP,HY,11.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.6,-80.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3258,Gaston Shoals,3,1908.0,1.4,1.0,1.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.7142857142857144,SERC,DUK,SC,35.1381,-81.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3258,Gaston Shoals,4,1908.0,1.4,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.1381,-81.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3258,Gaston Shoals,5,1908.0,1.4,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.1381,-81.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3258,Gaston Shoals,6,1927.0,2.5,2.5,2.5,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.1381,-81.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3259,Great Falls (SC),1,1907.0,3.0,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5592,-80.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3259,Great Falls (SC),2,1907.0,3.0,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5592,-80.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3259,Great Falls (SC),5,1907.0,3.0,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5592,-80.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3259,Great Falls (SC),6,1907.0,3.0,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.5592,-80.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3261,Hollidays Bridge Hydro,1,1996.0,1.0,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.527475,-82.374964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3261,Hollidays Bridge Hydro,2,1996.0,1.0,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.527475,-82.374964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3261,Hollidays Bridge Hydro,3,1996.0,1.0,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.527475,-82.374964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3261,Hollidays Bridge Hydro,4,1996.0,1.0,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.527475,-82.374964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3262,Jocassee,1,1973.0,193.5,195.0,195.0,155,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,34.9594,-82.9147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3262,Jocassee,2,1973.0,193.5,195.0,195.0,155,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,34.9594,-82.9147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3262,Jocassee,3,1975.0,193.5,195.0,195.0,155,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1975.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,34.9594,-82.9147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3262,Jocassee,4,1975.0,193.5,195.0,195.0,155,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1975.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,34.9594,-82.9147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3264,W S Lee,7,2007.0,54.0,42.0,48.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7777777777777778,0.8888888888888888,SERC,DUK,SC,34.6022,-82.435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3264,W S Lee,8,2007.0,54.0,42.0,48.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7777777777777778,0.8888888888888888,SERC,DUK,SC,34.6022,-82.435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3264,W S Lee,CT11,2018.0,242.3,234.0,248.0,234,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9657449442839455,1.0,SERC,DUK,SC,34.6022,-82.435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3264,W S Lee,CT12,2018.0,242.3,233.0,248.0,233,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9616178291374329,1.0,SERC,DUK,SC,34.6022,-82.435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3264,W S Lee,ST10,2018.0,362.1,313.0,313.0,313,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.864402098867716,0.864402098867716,SERC,DUK,SC,34.6022,-82.435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3265,Oconee,1,1973.0,886.7,847.0,865.0,847,NUC,Nuclear,OP,ST,7.0,1973.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9552272470959737,0.9755272358182022,SERC,DUK,SC,34.7939,-82.8986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3265,Oconee,2,1974.0,886.7,848.0,872.0,848,NUC,Nuclear,OP,ST,9.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9563550242472088,0.9834216758768467,SERC,DUK,SC,34.7939,-82.8986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3265,Oconee,3,1974.0,893.3,859.0,881.0,859,NUC,Nuclear,OP,ST,12.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9616030448897347,0.9862308295085638,SERC,DUK,SC,34.7939,-82.8986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3267,Saluda Dam,1,1996.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.852224,-82.483959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3267,Saluda Dam,2,1996.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.852224,-82.483959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3267,Saluda Dam,3,1996.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.852224,-82.483959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3267,Saluda Dam,4,1996.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.852224,-82.483959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3270,Wateree Hydro,1,1919.0,18.1,17.0,17.0,17,WAT,Conventional Hydroelectric,OP,HY,10.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9392265193370165,0.9392265193370165,SERC,DUK,SC,34.3355,-80.7021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3270,Wateree Hydro,2,1919.0,18.1,17.0,17.0,17,WAT,Conventional Hydroelectric,OP,HY,10.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9392265193370165,0.9392265193370165,SERC,DUK,SC,34.3355,-80.7021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3270,Wateree Hydro,3,1919.0,18.1,17.0,17.0,17,WAT,Conventional Hydroelectric,OP,HY,10.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9392265193370165,0.9392265193370165,SERC,DUK,SC,34.3355,-80.7021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3270,Wateree Hydro,4,1919.0,18.1,17.0,17.0,17,WAT,Conventional Hydroelectric,OP,HY,10.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9392265193370165,0.9392265193370165,SERC,DUK,SC,34.3355,-80.7021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3270,Wateree Hydro,5,1919.0,18.1,17.0,17.0,17,WAT,Conventional Hydroelectric,OP,HY,10.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9392265193370165,0.9392265193370165,SERC,DUK,SC,34.3355,-80.7021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3271,Wylie,1,1925.0,15.0,18.0,18.0,15,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0218,-81.0078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3271,Wylie,2,1925.0,15.0,18.0,18.0,15,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0218,-81.0078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3271,Wylie,3,1925.0,15.0,18.0,18.0,15,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0218,-81.0078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3271,Wylie,4,1925.0,15.0,6.0,6.0,6,WAT,Conventional Hydroelectric,OP,HY,8.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,SERC,DUK,SC,35.0218,-81.0078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3272,99 Islands,1,1910.0,3.0,4.2,4.2,1.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0314,-81.4936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3272,99 Islands,2,1910.0,3.0,3.4,3.4,1.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0314,-81.4936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3272,99 Islands,3,1910.0,3.0,4.2,4.2,1.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0314,-81.4936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3272,99 Islands,4,1910.0,3.0,3.4,3.4,1.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.0314,-81.4936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3275,Lockhart,2,1921.0,4.2,4.2,4.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.7792,-81.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3275,Lockhart,HY1,1921.0,4.2,4.2,4.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.7792,-81.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3275,Lockhart,HY3,1921.0,4.2,4.2,4.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.7792,-81.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3275,Lockhart,HY4,1921.0,4.2,4.2,4.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.7792,-81.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3275,Lockhart,HY5,1921.0,1.2,1.2,1.2,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.7792,-81.4561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3281,Coit GT,1,1969.0,19.6,14.0,18.0,1,DFO,Petroleum Liquids,OP,GT,7.0,1969.0,9,2024,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7142857142857142,0.9183673469387754,SERC,SCEG,SC,33.980254,-81.04067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.593397046046917 -3281,Coit GT,2,1969.0,19.6,12.0,18.0,1,DFO,Petroleum Liquids,OP,GT,5.0,1969.0,9,2024,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6122448979591837,0.9183673469387754,SERC,SCEG,SC,33.980254,-81.04067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.593397046046917 -3283,Columbia Canal Hydro,1,1929.0,1.6,1.3,1.3,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8125,0.8125,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3283,Columbia Canal Hydro,2,1929.0,1.6,1.7,1.7,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3283,Columbia Canal Hydro,3,1929.0,1.6,1.3,1.3,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8125,0.8125,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3283,Columbia Canal Hydro,4,1953.0,1.3,1.3,1.3,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3283,Columbia Canal Hydro,5,1953.0,1.3,1.7,1.7,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3283,Columbia Canal Hydro,6,1928.0,1.6,1.3,1.3,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8125,0.8125,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3283,Columbia Canal Hydro,7,1927.0,1.6,1.3,1.3,1,WAT,Conventional Hydroelectric,OS,HY,6.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8125,0.8125,SERC,SCEG,SC,33.9972,-81.0494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3285,Hagood,4,1991.0,122.0,88.0,99.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7213114754098361,0.8114754098360656,SERC,SCEG,SC,32.8265,-79.9634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3285,Hagood,5,2009.0,27.4,18.0,21.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.7664233576642336,SERC,SCEG,SC,32.8265,-79.9634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3285,Hagood,6,2010.0,27.9,20.0,21.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7168458781362008,0.7526881720430108,SERC,SCEG,SC,32.8265,-79.9634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3287,McMeekin,1,1958.0,146.8,125.0,125.0,35,NG,Natural Gas Steam Turbine,OP,ST,7.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8514986376021798,0.8514986376021798,SERC,SCEG,SC,34.0556,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3287,McMeekin,2,1958.0,146.8,125.0,125.0,35,NG,Natural Gas Steam Turbine,OP,ST,12.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8514986376021798,0.8514986376021798,SERC,SCEG,SC,34.0556,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3289,Neal Shoals,1,1905.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.6642,-81.4486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3289,Neal Shoals,2,1905.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.6642,-81.4486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3289,Neal Shoals,3,1905.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.6642,-81.4486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3289,Neal Shoals,4,1905.0,1.1,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.6642,-81.4486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3290,Parr Hydro,1,1914.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.26132,-81.330852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3290,Parr Hydro,2,1914.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.26132,-81.330852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3290,Parr Hydro,3,1914.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OA,HY,8.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.26132,-81.330852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3290,Parr Hydro,4,1914.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.26132,-81.330852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3290,Parr Hydro,5,1914.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.26132,-81.330852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3290,Parr Hydro,6,1921.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.26132,-81.330852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3291,Parr GT,GT1,1970.0,19.6,13.5,17.0,1,DFO,Petroleum Liquids,OS,GT,7.0,1970.0,3,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6887755102040816,0.8673469387755102,SERC,SCEG,SC,34.2642,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.605582395682335 -3291,Parr GT,GT2,1970.0,19.6,13.5,17.0,1,DFO,Petroleum Liquids,OP,GT,7.0,1970.0,3,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6887755102040816,0.8673469387755102,SERC,SCEG,SC,34.2642,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.605582395682335 -3291,Parr GT,GT3,1971.0,22.3,16.5,19.5,1,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,3,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7399103139013452,0.874439461883408,SERC,SCEG,SC,34.2642,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.60559526192 -3291,Parr GT,GT4,1971.0,22.3,16.5,19.5,1,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,3,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7399103139013452,0.874439461883408,SERC,SCEG,SC,34.2642,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.60559526192 -3293,Saluda Lexington,1,1930.0,32.5,32.5,32.5,1.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.0533,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3293,Saluda Lexington,2,1930.0,32.5,32.5,32.5,1.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.0533,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3293,Saluda Lexington,3,1930.0,42.3,35.0,35.0,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8274231678486998,0.8274231678486998,SERC,SCEG,SC,34.0533,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3293,Saluda Lexington,4,1930.0,32.5,32.5,32.5,1.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SCEG,SC,34.0533,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3293,Saluda Lexington,5,1971.0,67.5,66.0,66.0,4,WAT,Conventional Hydroelectric,OP,HY,7.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9777777777777777,0.9777777777777777,SERC,SCEG,SC,34.0533,-81.2172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,1,1953.0,75.0,64.0,65.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1953.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8533333333333333,0.8666666666666667,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,2,1954.0,75.0,64.0,66.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1954.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8533333333333333,0.88,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,3,1955.0,100.0,95.0,96.0,30,NG,Natural Gas Steam Turbine,OP,ST,11.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.95,0.96,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,CT1,2002.0,198.9,162.0,177.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8144796380090498,0.889894419306184,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,CT2,2002.0,198.9,168.0,176.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8446455505279035,0.8848667672197084,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,GT1,1969.0,19.6,13.0,16.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6632653061224489,0.8163265306122448,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,GT2,1969.0,16.3,14.0,17.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8588957055214723,1.0,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,GT3,1969.0,16.3,12.0,15.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7361963190184049,0.9202453987730062,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3295,Urquhart,GT4,1999.0,58.9,48.0,49.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8149405772495756,0.8319185059422751,SERC,SCEG,SC,33.435,-81.9111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3297,Wateree,1,1970.0,385.9,342.0,342.0,220,BIT,Conventional Steam Coal,OP,ST,9.0,1970.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8862399585384815,0.8862399585384815,SERC,SCEG,SC,33.8264,-80.6228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3297,Wateree,2,1971.0,385.9,342.0,342.0,220,BIT,Conventional Steam Coal,OP,ST,12.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8862399585384815,0.8862399585384815,SERC,SCEG,SC,33.8264,-80.6228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3298,Williams,ST1,1973.0,659.7,605.0,610.0,270,BIT,Conventional Steam Coal,OP,ST,7.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9170835228134,0.9246627254812793,SERC,SCEG,SC,33.0158,-79.9297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3305,Rocky River (SC),1,1941.0,1.8,1.8,1.8,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.2572,-82.6097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3305,Rocky River (SC),2,1941.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.2572,-82.6097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3305,Rocky River (SC),IC2,2013.0,1.3,1.0,1.0,0.2,DFO,Petroleum Liquids,OP,IC,5.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,SERC,DUK,SC,34.2572,-82.6097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -3318,Hilton Head,1,1973.0,26.6,16.0,20.0,2,DFO,Petroleum Liquids,OP,GT,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6015037593984962,0.7518796992481203,SERC,SC,SC,32.208871,-80.698754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3318,Hilton Head,2,1974.0,26.6,16.0,20.0,2,DFO,Petroleum Liquids,OP,GT,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6015037593984962,0.7518796992481203,SERC,SC,SC,32.208871,-80.698754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3318,Hilton Head,3,1979.0,64.7,52.0,60.0,7,DFO,Petroleum Liquids,OP,GT,4.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8037094281298299,0.9273570324574961,SERC,SC,SC,32.208871,-80.698754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3319,Jefferies,H1,1942.0,30.6,31.0,31.0,18,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SC,SC,33.244404,-79.990909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3319,Jefferies,H2,1942.0,36.9,36.0,36.0,13,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9756097560975611,0.9756097560975611,SERC,SC,SC,33.244404,-79.990909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3319,Jefferies,H3,1942.0,30.6,29.0,29.0,18,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9477124183006536,0.9477124183006536,SERC,SC,SC,33.244404,-79.990909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3319,Jefferies,H4,1942.0,36.9,36.0,36.0,13,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9756097560975611,0.9756097560975611,SERC,SC,SC,33.244404,-79.990909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3319,Jefferies,H6,1942.0,10.2,8.0,8.0,8,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7843137254901962,0.7843137254901962,SERC,SC,SC,33.244404,-79.990909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3320,Myrtle Beach,1,1972.0,11.5,8.0,10.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6956521739130435,0.8695652173913043,SERC,SC,SC,33.708283,-78.924146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3320,Myrtle Beach,2,1962.0,11.5,8.0,10.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6956521739130435,0.8695652173913043,SERC,SC,SC,33.708283,-78.924146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3320,Myrtle Beach,3,1962.0,26.6,19.0,20.0,4,DFO,Petroleum Liquids,OP,GT,5.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7142857142857142,0.7518796992481203,SERC,SC,SC,33.708283,-78.924146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3320,Myrtle Beach,4,1972.0,26.6,19.0,20.0,4,DFO,Petroleum Liquids,OP,GT,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7142857142857142,0.7518796992481203,SERC,SC,SC,33.708283,-78.924146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3320,Myrtle Beach,5,1976.0,35.3,21.0,25.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.594900849858357,0.708215297450425,SERC,SC,SC,33.708283,-78.924146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3321,Spillway,1,1950.0,2.0,2.0,2.0,1.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SC,SC,33.453759,-80.163986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,1,1953.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,2,1953.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,3,1953.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,4,1953.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,5,1954.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,6,1954.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3323,J Strom Thurmond,7,1954.0,51.7,48.0,48.0,25,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9284332688588007,0.9284332688588007,SERC,SEPA,SC,33.6602,-82.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3325,Ben French,1,1965.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,SD,44.087235,-103.260959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3325,Ben French,2,1965.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,SD,44.087235,-103.260959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3325,Ben French,3,1965.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,SD,44.087235,-103.260959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3325,Ben French,4,1965.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,SD,44.087235,-103.260959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3325,Ben French,5,1965.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,SD,44.087235,-103.260959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3325,Ben French,GT1,1977.0,25.0,17.0,25.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6799999999999999,1.0,WECC,WACM,SD,44.087235,-103.260959,Ben French GT1,GT,False,1.0,1.0,-1.0,1.7,1.7,1003.504,3.74,1.0,0.56,17.0,-1.2021178292310428,140.9660022439626,-6.710880655165924e-06,-1.2019524057817756,140.96502281534467,10.718156433465841,#TRUE#,#1977-07-01#,#2050-12-31#,Existing,WACM,RM_WACM,8.5,17.0,17.0,SD,NG,Industrial,#FALSE#,8.5,17,22.415442158696234 -3325,Ben French,GT2,1977.0,25.0,17.0,25.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6799999999999999,1.0,WECC,WACM,SD,44.087235,-103.260959,Ben French GT2,GT,False,1.0,1.0,-1.0,1.7,1.7,1003.504,3.74,1.0,0.56,17.0,-1.2021178292310428,140.9660022439626,-6.710880655165924e-06,-1.2019524057817756,140.96502281534467,10.718156433465841,#TRUE#,#1977-08-01#,#2050-12-31#,Existing,WACM,RM_WACM,8.5,17.0,17.0,SD,NG,Industrial,#FALSE#,8.5,17,22.415442158696234 -3325,Ben French,GT3,1978.0,25.0,17.0,25.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6799999999999999,1.0,WECC,WACM,SD,44.087235,-103.260959,Ben French GT3,GT,False,1.0,1.0,-1.0,1.7,1.7,1003.504,3.74,1.0,0.56,17.0,-1.2021178292310428,140.9660022439626,-6.710880655165924e-06,-1.2019524057817756,140.96502281534467,10.718156433465841,#TRUE#,#1978-06-01#,#2050-12-31#,Existing,WACM,RM_WACM,8.5,17.0,17.0,SD,NG,Industrial,#FALSE#,8.5,17,22.415442158696234 -3325,Ben French,GT4,1979.0,25.0,17.0,25.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6799999999999999,1.0,WECC,WACM,SD,44.087235,-103.260959,Ben French GT4,GT,False,1.0,1.0,-1.0,1.7,1.7,1003.504,3.74,1.0,0.56,17.0,-1.2021178292310428,140.9660022439626,-6.710880655165924e-06,-1.2019524057817756,140.96502281534467,10.718156433465841,#TRUE#,#1979-06-01#,#2050-12-31#,Existing,WACM,RM_WACM,8.5,17.0,17.0,SD,NG,Industrial,#FALSE#,8.5,17,22.415442158696234 -3338,Aberdeen CT,2,2013.0,82.2,52.0,60.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6326034063260341,0.7299270072992701,MRO,SWPP,SD,45.429884,-98.49396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3338,Aberdeen CT,GT1,1978.0,28.8,20.5,28.0,1.7,DFO,Petroleum Liquids,OP,GT,5.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7118055555555556,0.9722222222222222,MRO,SWPP,SD,45.429884,-98.49396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3341,Clark (SD),1,1970.0,2.7,2.6,2.7,1.2,DFO,Petroleum Liquids,SB,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9629629629629629,1.0,MRO,SWPP,SD,44.876484,-97.732102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3342,Faulkton,1,1969.0,2.7,2.5,2.5,1.2,DFO,Petroleum Liquids,SB,IC,3.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,MRO,SWPP,SD,45.036685,-99.120186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3352,Lake Preston,1A,1978.0,24.1,19.7,23.8,6,DFO,Petroleum Liquids,SB,GT,6.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8174273858921162,0.987551867219917,MRO,MISO,SD,44.364871,-97.381063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.867924528301884 -3356,Oahe,1,1962.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3356,Oahe,2,1962.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3356,Oahe,3,1962.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3356,Oahe,4,1962.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3356,Oahe,5,1963.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3356,Oahe,6,1963.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3356,Oahe,7,1963.0,112.3,102.0,102.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9082813891362422,0.9082813891362422,MRO,SWPP,SD,44.4504,-100.3866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,1,1954.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,2,1954.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,3,1954.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,4,1954.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,5,1955.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,6,1955.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,7,1955.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3373,Fort Randall,8,1956.0,40.0,45.0,45.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,SD,43.0653,-98.5539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,1,1964.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,2,1964.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,3,1965.0,67.2,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9672619047619048,0.9672619047619048,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,4,1965.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,5,1965.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,6,1965.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,7,1966.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3375,Big Bend Dam,8,1966.0,67.3,65.0,65.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9658246656760773,0.9658246656760773,MRO,SWPP,SD,44.0384,-99.4463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,CTG1,2018.0,347.0,311.9,330.3, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8988472622478385,0.9518731988472623,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,CTG2,2018.0,347.0,311.9,330.3, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8988472622478385,0.9518731988472623,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G10,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G11,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G12,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G13,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G14,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G15,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G16,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G17,1972.0,59.6,46.4,62.2,10,DFO,Petroleum Liquids,OP,GT,9.0,1972.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7785234899328859,1.0,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G18,1972.0,59.6,46.4,62.2,10,DFO,Petroleum Liquids,OP,GT,9.0,1972.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7785234899328859,1.0,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G19,1972.0,59.6,46.4,62.2,10,DFO,Petroleum Liquids,OP,GT,9.0,1972.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7785234899328859,1.0,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,G20,1972.0,59.6,46.4,62.2,10,DFO,Petroleum Liquids,OP,GT,9.0,1972.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7785234899328859,1.0,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT1,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT2,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT3,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT4,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT5,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT6,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT7,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT8,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,GT9,1971.0,23.9,15.1,20.4,5,DFO,Petroleum Liquids,OP,GT,6.0,1971.0,12,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6317991631799164,0.8535564853556485,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3393,Allen,STG1,2018.0,476.9,428.3,453.5, ,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.898091843153701,0.9509331096665968,SERC,TVA,TN,35.074087,-90.14868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3394,Apalachia,1,1943.0,52.2,41.2,41.2,13.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.789272030651341,0.789272030651341,SERC,TVA,TN,35.167712,-84.295601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3394,Apalachia,2,1943.0,41.4,41.2,41.2,13.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.995169082125604,0.995169082125604,SERC,TVA,TN,35.167712,-84.295601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3395,Boone Dam,1,1953.0,38.0,37.8,29.8,19.7,WAT,Conventional Hydroelectric,OP,HY,9.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.994736842105263,0.7842105263157895,SERC,TVA,TN,36.4403,-82.4381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3395,Boone Dam,2,1953.0,38.3,37.8,29.8,19.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9869451697127938,0.7780678851174936,SERC,TVA,TN,36.4403,-82.4381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3395,Boone Dam,3,1953.0,29.6,37.8,29.8,19.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.4403,-82.4381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3396,Bull Run,1,1967.0,950.0,865.0,872.0,572,BIT,Conventional Steam Coal,OP,ST,6.0,1967.0,12,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9105263157894736,0.9178947368421053,SERC,TVA,TN,36.0211,-84.1567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.382588922414586 -3397,Cherokee Dam,1,1942.0,33.4,37.0,37.0,14.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.168176,-83.49768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3397,Cherokee Dam,2,1953.0,34.6,39.8,36.1,14.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.168176,-83.49768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3397,Cherokee Dam,3,1942.0,34.6,39.8,37.5,14.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.168176,-83.49768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3397,Cherokee Dam,4,1953.0,32.4,25.0,25.0,14.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.771604938271605,0.771604938271605,SERC,TVA,TN,36.168176,-83.49768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3398,Chickamauga,1,1940.0,39.9,35.4,29.8,11.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8872180451127819,0.7468671679197996,SERC,TVA,TN,35.101791,-85.229467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3398,Chickamauga,2,1940.0,39.9,35.4,29.8,11.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8872180451127819,0.7468671679197996,SERC,TVA,TN,35.101791,-85.229467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3398,Chickamauga,3,1940.0,39.9,35.4,29.8,11.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8872180451127819,0.7468671679197996,SERC,TVA,TN,35.101791,-85.229467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3398,Chickamauga,4,1952.0,39.9,35.4,29.8,11.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8872180451127819,0.7468671679197996,SERC,TVA,TN,35.101791,-85.229467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3399,Cumberland (TN),1,1973.0,1300.0,1239.0,1265.0,650,BIT,Conventional Steam Coal,OP,ST,3.0,1973.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.953076923076923,0.9730769230769231,SERC,TVA,TN,36.3903,-87.6539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.956314225109242 -3399,Cumberland (TN),2,1973.0,1300.0,1231.0,1257.0,650,BIT,Conventional Steam Coal,OP,ST,11.0,1973.0,12,2026,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.946923076923077,0.9669230769230769,SERC,TVA,TN,36.3903,-87.6539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.956727431681497 -3400,Douglas Dam,1,1944.0,36.5,44.2,27.0,14.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.7397260273972603,SERC,TVA,TN,35.9623,-83.5393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3400,Douglas Dam,2,1949.0,41.4,44.7,27.5,13,WAT,Conventional Hydroelectric,OP,HY,5.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.6642512077294687,SERC,TVA,TN,35.9623,-83.5393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3400,Douglas Dam,3,1943.0,31.5,44.5,27.6,14.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8761904761904762,SERC,TVA,TN,35.9623,-83.5393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3400,Douglas Dam,4,1954.0,41.4,44.5,29.1,13,WAT,Conventional Hydroelectric,OP,HY,8.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.7028985507246377,SERC,TVA,TN,35.9623,-83.5393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3401,Fort Patrick Henry,1,1954.0,29.7,20.4,20.4,11.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6868686868686869,0.6868686868686869,SERC,TVA,TN,36.4982,-82.5086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3401,Fort Patrick Henry,2,1953.0,29.7,20.3,20.3,11.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6835016835016836,0.6835016835016836,SERC,TVA,TN,36.4982,-82.5086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3402,Fort Loudoun,1,1944.0,35.5,39.9,38.4,10.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.7917,-84.2431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3402,Fort Loudoun,2,1943.0,34.2,37.7,37.7,10.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.7917,-84.2431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3402,Fort Loudoun,3,1948.0,43.0,45.3,42.8,24.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9953488372093022,SERC,TVA,TN,35.7917,-84.2431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3402,Fort Loudoun,4,1949.0,40.6,45.3,42.8,24.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.7917,-84.2431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),1,1956.0,300.0,225.0,228.0,108,BIT,Conventional Steam Coal,OP,ST,11.0,1956.0,12,2031,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.75,0.76,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.770786442099093 -3403,Gallatin (TN),2,1957.0,300.0,225.0,228.0,108,SUB,Conventional Steam Coal,OP,ST,6.0,1957.0,12,2031,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.75,0.76,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.938918107830673 -3403,Gallatin (TN),3,1959.0,327.6,263.0,266.0,130,SUB,Conventional Steam Coal,OP,ST,5.0,1959.0,12,2031,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8028083028083027,0.811965811965812,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.627710656033848 -3403,Gallatin (TN),4,1959.0,327.6,263.0,266.0,130,SUB,Conventional Steam Coal,OP,ST,8.0,1959.0,12,2031,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8028083028083027,0.811965811965812,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.36362619520292 -3403,Gallatin (TN),GT1,1975.0,81.3,71.5,88.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1975.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.879458794587946,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT2,1975.0,81.3,71.5,88.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1975.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.879458794587946,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT3,1975.0,81.3,71.5,88.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1975.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.879458794587946,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT4,1975.0,81.3,71.5,88.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1975.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.879458794587946,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT5,2000.0,84.5,73.4,93.7,57,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8686390532544379,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT6,2000.0,84.5,73.4,93.7,57,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8686390532544379,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT7,2000.0,84.5,73.4,93.7,57,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8686390532544379,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3403,Gallatin (TN),GT8,2000.0,84.5,73.4,93.7,57,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8686390532544379,1.0,SERC,TVA,TN,36.3156,-86.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3404,Great Falls (TN),1,1916.0,15.3,15.9,16.0,9,WAT,Conventional Hydroelectric,OP,HY,12.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.806732,-85.634063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3404,Great Falls (TN),2,1924.0,18.4,19.5,19.6,9,WAT,Conventional Hydroelectric,OP,HY,10.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.806732,-85.634063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3405,John Sevier,CTG1,2012.0,191.3,165.0,188.0,44.8,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8625196027182436,0.982749607945635,SERC,TVA,TN,36.3767,-82.9639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3405,John Sevier,CTG2,2012.0,191.3,165.0,188.0,44.8,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8625196027182436,0.982749607945635,SERC,TVA,TN,36.3767,-82.9639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3405,John Sevier,CTG3,2012.0,191.3,165.0,188.0,44.8,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8625196027182436,0.982749607945635,SERC,TVA,TN,36.3767,-82.9639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3405,John Sevier,STG1,2012.0,423.0,383.0,376.0,90.2,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9054373522458629,0.8888888888888888,SERC,TVA,TN,36.3767,-82.9639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G10,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G11,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G12,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G13,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G14,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G15,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G16,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G17,2000.0,84.5,72.8,93.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8615384615384615,1.0,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G18,2000.0,84.5,72.8,93.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8615384615384615,1.0,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G19,2000.0,84.5,72.8,93.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8615384615384615,1.0,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,G20,2000.0,84.5,72.8,93.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8615384615384615,1.0,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT1,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT2,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT3,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT4,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT5,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT6,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT7,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT8,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3406,Johnsonville,GT9,1975.0,68.0,47.1,62.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6926470588235294,0.9191176470588235,SERC,TVA,TN,36.0278,-87.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3407,Kingston,1,1954.0,175.0,132.0,135.0,55,SUB,Conventional Steam Coal,OP,ST,2.0,1954.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7542857142857142,0.7714285714285715,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.139421508840776 -3407,Kingston,2,1954.0,175.0,132.0,135.0,55,SUB,Conventional Steam Coal,OP,ST,4.0,1954.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7542857142857142,0.7714285714285715,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.018180083412659 -3407,Kingston,3,1954.0,175.0,132.0,135.0,55,SUB,Conventional Steam Coal,OP,ST,6.0,1954.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7542857142857142,0.7714285714285715,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.498418187664521 -3407,Kingston,4,1954.0,175.0,132.0,135.0,55,SUB,Conventional Steam Coal,OP,ST,7.0,1954.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7542857142857142,0.7714285714285715,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.951216248222325 -3407,Kingston,5,1955.0,200.0,174.0,176.0,73,SUB,Conventional Steam Coal,OP,ST,1.0,1955.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87,0.88,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.605080998895055 -3407,Kingston,6,1955.0,200.0,174.0,176.0,73,SUB,Conventional Steam Coal,OP,ST,3.0,1955.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87,0.88,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.53772252890352 -3407,Kingston,7,1955.0,200.0,174.0,176.0,73,SUB,Conventional Steam Coal,OP,ST,5.0,1955.0,12,2026,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87,0.88,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.326158113701121 -3407,Kingston,8,1955.0,200.0,174.0,176.0,73,SUB,Conventional Steam Coal,OP,ST,8.0,1955.0,12,2026,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87,0.88,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.834437727053027 -3407,Kingston,9,1955.0,200.0,174.0,176.0,73,SUB,Conventional Steam Coal,OP,ST,12.0,1955.0,12,2026,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87,0.88,SERC,TVA,TN,35.8992,-84.5194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.783802938772215 -3408,Melton Hill,1,1964.0,36.0,39.5,39.7,9.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.8853,-84.3003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3408,Melton Hill,2,1964.0,36.0,39.7,39.7,9.3,WAT,Conventional Hydroelectric,OP,HY,11.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.8853,-84.3003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3409,Nickajack,1,1968.0,27.4,28.3,28.8,13.7,WAT,Conventional Hydroelectric,OP,HY,4.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0017,-85.6218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3409,Nickajack,2,1968.0,27.9,27.3,28.0,13.7,WAT,Conventional Hydroelectric,OP,HY,4.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.978494623655914,1.0,SERC,TVA,TN,35.0017,-85.6218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3409,Nickajack,3,1968.0,24.3,25.0,25.6,12.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0017,-85.6218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3409,Nickajack,4,1968.0,24.3,25.0,25.6,12.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0017,-85.6218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3411,Norris Dam,1,1936.0,65.7,63.5,54.8,25.8,WAT,Conventional Hydroelectric,OP,HY,9.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9665144596651446,0.8340943683409436,SERC,TVA,TN,36.2242,-84.0914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3411,Norris Dam,2,1936.0,65.7,63.5,54.8,25.8,WAT,Conventional Hydroelectric,OP,HY,7.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9665144596651446,0.8340943683409436,SERC,TVA,TN,36.2242,-84.0914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3412,Ocoee 1,1,1912.0,3.8,4.8,4.8,2.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0947,-84.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3412,Ocoee 1,2,1912.0,3.8,4.8,4.8,2.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0947,-84.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3412,Ocoee 1,3,1912.0,3.8,4.8,4.8,2.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0947,-84.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3412,Ocoee 1,4,1912.0,3.8,4.8,4.8,2.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0947,-84.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3412,Ocoee 1,5,1914.0,3.8,4.8,4.8,2.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.0947,-84.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3413,Ocoee 2,1,1913.0,11.5,10.8,10.8,6,WAT,Conventional Hydroelectric,OP,HY,10.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9391304347826087,0.9391304347826087,SERC,TVA,TN,35.082271,-84.49115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3413,Ocoee 2,2,1913.0,11.5,12.6,12.6,6,WAT,Conventional Hydroelectric,OP,HY,10.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.082271,-84.49115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3414,Ocoee 3,1,1943.0,28.8,28.6,28.6,10.8,WAT,Conventional Hydroelectric,OP,HY,4.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9930555555555556,0.9930555555555556,SERC,TVA,TN,35.075,-84.4833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3415,Pickwick Landing Dam,1,1938.0,40.0,37.7,34.4,32.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9425000000000001,0.86,SERC,TVA,TN,35.0683,-88.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3415,Pickwick Landing Dam,2,1938.0,40.0,37.6,34.3,32.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9400000000000001,0.8574999999999999,SERC,TVA,TN,35.0683,-88.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3415,Pickwick Landing Dam,3,1942.0,40.0,38.5,35.2,32.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9625,0.8800000000000001,SERC,TVA,TN,35.0683,-88.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3415,Pickwick Landing Dam,4,1942.0,40.0,43.6,39.4,32.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.985,SERC,TVA,TN,35.0683,-88.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3415,Pickwick Landing Dam,5,1952.0,40.0,43.7,38.4,30.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.96,SERC,TVA,TN,35.0683,-88.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3415,Pickwick Landing Dam,6,1952.0,40.0,43.2,37.9,30.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9475,SERC,TVA,TN,35.0683,-88.2494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3416,South Holston,1,1951.0,38.5,44.4,44.4,14.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.523174,-82.090213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3417,Tims Ford,1,1972.0,45.0,39.7,36.2,18.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1972.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8822222222222222,0.8044444444444445,SERC,TVA,TN,35.1967,-86.2783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3417,Tims Ford,2,1987.0,0.7,0.5,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.7142857142857144,SERC,TVA,TN,35.1967,-86.2783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3418,Watauga,1,1949.0,28.8,37.9,37.1,20.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.3413,-82.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3418,Watauga,2,1949.0,28.8,29.1,28.5,15.7,WAT,Conventional Hydroelectric,OP,HY,8.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9895833333333333,SERC,TVA,TN,36.3413,-82.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3420,Watts Bar Hydro,HY1,1942.0,41.0,39.3,36.9,16,WAT,Conventional Hydroelectric,OP,HY,7.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9585365853658536,0.8999999999999999,SERC,TVA,TN,35.619673,-84.785527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3420,Watts Bar Hydro,HY2,1942.0,33.4,39.3,36.9,16,WAT,Conventional Hydroelectric,OP,HY,4.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.619673,-84.785527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3420,Watts Bar Hydro,HY3,1942.0,33.4,39.3,36.9,16,WAT,Conventional Hydroelectric,OP,HY,3.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.619673,-84.785527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3420,Watts Bar Hydro,HY4,1944.0,33.4,39.2,36.7,30,WAT,Conventional Hydroelectric,OP,HY,4.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.619673,-84.785527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3420,Watts Bar Hydro,HY5,1944.0,33.4,39.3,36.9,16,WAT,Conventional Hydroelectric,OP,HY,3.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.619673,-84.785527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3421,Wilbur,1,1912.0,1.2,1.4,1.4,1.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.341667,-82.126389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3421,Wilbur,2,1912.0,1.2,1.4,1.4,1.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.341667,-82.126389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3421,Wilbur,3,1926.0,1.2,1.3,1.3,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.341667,-82.126389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3421,Wilbur,4,1950.0,7.0,7.0,7.0,1.6,WAT,Conventional Hydroelectric,OP,HY,7.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.341667,-82.126389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3423,Cordell Hull,1,1973.0,33.3,38.0,38.0,33.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.289539,-85.94416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3423,Cordell Hull,2,1973.0,33.3,30.0,30.0,30,WAT,Conventional Hydroelectric,OP,HY,10.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.900900900900901,0.900900900900901,SERC,TVA,TN,36.289539,-85.94416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3423,Cordell Hull,3,1974.0,33.3,38.0,38.0,33.3,WAT,Conventional Hydroelectric,OP,HY,2.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.289539,-85.94416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3424,Dale Hollow,1,1948.0,18.0,20.7,20.7,18,WAT,Conventional Hydroelectric,OP,HY,12.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.5378,-85.4517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3424,Dale Hollow,2,1949.0,18.0,20.7,20.7,18,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.5378,-85.4517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3424,Dale Hollow,3,1953.0,18.0,20.7,20.7,18,WAT,Conventional Hydroelectric,OP,HY,11.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.5378,-85.4517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3426,Old Hickory,1,1957.0,28.7,28.7,28.7,25,WAT,Conventional Hydroelectric,OP,HY,4.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.2972,-86.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3426,Old Hickory,2,1957.0,25.0,29.0,29.0,25,WAT,Conventional Hydroelectric,OP,HY,7.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.2972,-86.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3426,Old Hickory,3,1957.0,25.0,29.0,29.0,25,WAT,Conventional Hydroelectric,OP,HY,9.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.2972,-86.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3426,Old Hickory,4,1957.0,25.0,29.0,29.0,25,WAT,Conventional Hydroelectric,OA,HY,12.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.2972,-86.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3428,J P Priest,1,1970.0,28.0,30.0,30.0,28,WAT,Conventional Hydroelectric,OP,HY,2.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.1564,-86.6186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3437,Eagle Pass,1,1932.0,3.2,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,TRE,ERCO,TX,28.829535,-100.552234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3437,Eagle Pass,2,1932.0,3.2,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,TRE,ERCO,TX,28.829535,-100.552234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3437,Eagle Pass,3,1932.0,3.2,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,TRE,ERCO,TX,28.829535,-100.552234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3439,Laredo,4,2008.0,131.8,90.1,97.4,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6836115326251896,0.7389984825493171,TRE,ERCO,TX,27.5667,-99.5089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.658076025822183 -3439,Laredo,5,2008.0,131.8,87.3,94.4,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6623672230652503,0.716236722306525,TRE,ERCO,TX,27.5667,-99.5089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.256846092040007 -3441,Nueces Bay,7,1972.0,351.0,319.0,325.0,100,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9088319088319088,0.9259259259259259,TRE,ERCO,TX,27.819412,-97.419203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3441,Nueces Bay,8,2010.0,189.6,157.0,165.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280590717299579,0.870253164556962,TRE,ERCO,TX,27.819412,-97.419203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.309667398945518 -3441,Nueces Bay,9,2010.0,189.6,157.0,165.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280590717299579,0.870253164556962,TRE,ERCO,TX,27.819412,-97.419203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.656799290491163 -3443,Victoria,5,1963.0,180.0,112.0,112.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1963.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6222222222222222,0.6222222222222222,TRE,ERCO,TX,28.7883,-97.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3443,Victoria,7,2009.0,196.9,176.0,176.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8938547486033519,0.8938547486033519,TRE,ERCO,TX,28.7883,-97.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3452,Lake Hubbard,1,1970.0,396.5,392.0,392.0,56,NG,Natural Gas Steam Turbine,OP,ST,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9886506935687264,0.9886506935687264,TRE,ERCO,TX,32.8358,-96.5458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.501098267723915 -3452,Lake Hubbard,2,1973.0,531.0,523.0,523.0,40,NG,Natural Gas Steam Turbine,OP,ST,11.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9849340866290018,0.9849340866290018,TRE,ERCO,TX,32.8358,-96.5458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.673714048425222 -3453,Mountain Creek,6,1956.0,135.7,122.0,122.0,15,NG,Natural Gas Steam Turbine,OP,ST,2.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8990420044215182,0.8990420044215182,TRE,ERCO,TX,32.7231,-96.9358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.935294560319086 -3453,Mountain Creek,7,1958.0,136.0,122.0,122.0,15,NG,Natural Gas Steam Turbine,OP,ST,3.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8970588235294118,0.8970588235294118,TRE,ERCO,TX,32.7231,-96.9358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.8521668483665 -3453,Mountain Creek,8,1967.0,580.5,582.0,582.0,100,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.7231,-96.9358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.604982662105046 -3456,Newman,1,1960.0,81.6,73.0,78.0,21,NG,Natural Gas Steam Turbine,OP,ST,5.0,1960.0,12,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8946078431372549,0.9558823529411765,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.042713623523612 -3456,Newman,2,1963.0,81.6,73.0,78.0,21,NG,Natural Gas Steam Turbine,OP,ST,6.0,1963.0,12,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8946078431372549,0.9558823529411765,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.531321664934639 -3456,Newman,3,1966.0,121.8,90.0,98.0,20,NG,Natural Gas Steam Turbine,OP,ST,3.0,1966.0,12,2031,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7389162561576355,0.8045977011494253,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257575260484547 -3456,Newman,4,1975.0,120.0,86.0,90.0,24,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1975.0,12,2031,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7166666666666667,0.75,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3456,Newman,5CA1,2011.0,134.0,115.0,112.0,51,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8582089552238806,0.835820895522388,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3456,Newman,5CT1,2009.0,86.5,66.0,71.0,44,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7630057803468209,0.8208092485549133,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3456,Newman,5CT2,2009.0,86.5,66.0,71.0,44,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7630057803468209,0.8208092485549133,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3456,Newman,CT1,1975.0,85.0,67.0,71.0,29,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1975.0,12,2031,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.788235294117647,0.8352941176470589,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3456,Newman,CT2,1975.0,85.0,67.0,71.0,29,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1975.0,12,2031,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.788235294117647,0.8352941176470589,WECC,EPE,TX,31.983587,-106.431777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3457,Lewis Creek,1,1970.0,271.4,250.0,252.4,50,NG,Natural Gas Steam Turbine,OP,ST,12.0,1970.0,6,2034,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9211495946941785,0.9299926308032426,SERC,MISO,TX,30.4356,-95.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.628668737947022 -3457,Lewis Creek,2,1971.0,271.4,250.0,252.3,50,NG,Natural Gas Steam Turbine,OP,ST,5.0,1971.0,6,2034,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9211495946941785,0.9296241709653649,SERC,MISO,TX,30.4356,-95.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.806235488147074 -3459,Sabine,1,1962.0,239.4,211.6,206.6,50,NG,Natural Gas Steam Turbine,OP,ST,1.0,1962.0,5,2024,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.883876357560568,0.8629908103592314,SERC,MISO,TX,30.0242,-93.878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.253034355415448 -3459,Sabine,3,1966.0,473.4,369.8,375.6,55,NG,Natural Gas Steam Turbine,OP,ST,12.0,1966.0,6,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7811575834389524,0.7934093789607098,SERC,MISO,TX,30.0242,-93.878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.801229157914914 -3459,Sabine,4,1974.0,591.6,488.8,493.9,185,NG,Natural Gas Steam Turbine,OP,ST,8.0,1974.0,6,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8262339418526031,0.8348546315077754,SERC,MISO,TX,30.0242,-93.878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.100924739099588 -3459,Sabine,5,1979.0,507.4,400.2,406.3,55,NG,Natural Gas Steam Turbine,OP,ST,12.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.788726842727631,0.80074891604257,SERC,MISO,TX,30.0242,-93.878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.439981280963352 -3460,Cedar Bayou,1,1970.0,765.0,746.0,746.0,65,NG,Natural Gas Steam Turbine,OP,ST,12.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9751633986928104,0.9751633986928104,TRE,ERCO,TX,29.75,-94.9256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3460,Cedar Bayou,2,1972.0,765.0,749.0,749.0,65,NG,Natural Gas Steam Turbine,OP,ST,3.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9790849673202614,0.9790849673202614,TRE,ERCO,TX,29.75,-94.9256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3464,Greens Bayou,73,1976.0,72.0,57.0,67.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7916666666666666,0.9305555555555556,TRE,ERCO,TX,29.822201,-95.219429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3464,Greens Bayou,74,1976.0,72.0,53.0,68.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7361111111111112,0.9444444444444444,TRE,ERCO,TX,29.822201,-95.219429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3464,Greens Bayou,81,1976.0,72.0,54.0,69.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.75,0.9583333333333334,TRE,ERCO,TX,29.822201,-95.219429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3464,Greens Bayou,82,1976.0,72.0,47.0,50.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6527777777777778,0.6944444444444444,TRE,ERCO,TX,29.822201,-95.219429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3464,Greens Bayou,83,1976.0,72.0,61.0,72.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8472222222222222,1.0,TRE,ERCO,TX,29.822201,-95.219429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3464,Greens Bayou,84,1976.0,72.0,56.0,68.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7777777777777778,0.9444444444444444,TRE,ERCO,TX,29.822201,-95.219429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,3,1974.0,113.1,104.0,104.0,27,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9195402298850575,0.9195402298850575,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,31,1972.0,54.0,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,32,1972.0,54.0,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,33,1972.0,54.0,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,34,1972.0,54.0,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,4,1974.0,113.1,104.0,104.0,27,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9195402298850575,0.9195402298850575,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,41,1972.0,54.0,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,42,1972.0,54.0,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1972.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,43,1974.0,56.7,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,44,1974.0,56.7,57.0,69.0,53,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,51,1975.0,85.0,55.0,74.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6470588235294117,0.8705882352941177,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,52,1975.0,85.0,55.0,74.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6470588235294117,0.8705882352941177,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,53,1975.0,85.0,55.0,74.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6470588235294117,0.8705882352941177,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,54,1975.0,85.0,55.0,74.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6470588235294117,0.8705882352941177,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,55,1975.0,85.0,55.0,74.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6470588235294117,0.8705882352941177,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,56,1975.0,85.0,55.0,74.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6470588235294117,0.8705882352941177,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3469,T H Wharton,GT1,1967.0,16.3,11.0,15.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6748466257668712,0.9202453987730062,TRE,ERCO,TX,29.9417,-95.5306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,1,1958.0,187.8,169.0,169.0,30,NG,Natural Gas Steam Turbine,OP,ST,6.0,1958.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8998935037273694,0.8998935037273694,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,2,1958.0,187.8,169.0,169.0,30,NG,Natural Gas Steam Turbine,OP,ST,12.0,1958.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8998935037273694,0.8998935037273694,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,3,1961.0,299.2,273.0,273.0,60,NG,Natural Gas Steam Turbine,OP,ST,3.0,1961.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9124331550802139,0.9124331550802139,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,4,1968.0,580.5,552.0,552.0,60,NG,Natural Gas Steam Turbine,OP,ST,6.0,1968.0,12,2026,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9509043927648578,0.9509043927648578,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,5,1977.0,734.1,664.0,664.0,175,SUB,Conventional Steam Coal,OP,ST,12.0,1977.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9045089224901239,0.9045089224901239,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,6,1978.0,734.1,663.0,663.0,175,SUB,Conventional Steam Coal,OP,ST,12.0,1978.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9031467102574581,0.9031467102574581,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,7,1980.0,614.6,577.0,577.0,175,SUB,Conventional Steam Coal,OP,ST,6.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9388219980475105,0.9388219980475105,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,8,1982.0,654.0,610.0,610.0,175,SUB,Conventional Steam Coal,OP,ST,12.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9327217125382263,0.9327217125382263,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3470,W A Parish,GT1,1967.0,16.3,13.0,13.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7975460122699386,0.7975460122699386,TRE,ERCO,TX,29.4828,-95.6311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3476,Knox Lee,5,1974.0,351.0,342.0,348.0,75,NG,Natural Gas Steam Turbine,OP,ST,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9743589743589743,0.9914529914529915,MRO,SWPP,TX,32.3766,-94.6415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.579669788815716 -3478,Wilkes,1,1964.0,180.0,174.0,174.0,30,NG,Natural Gas Steam Turbine,OP,ST,5.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9666666666666667,0.9666666666666667,MRO,SWPP,TX,32.848163,-94.547986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.3590726935527 -3478,Wilkes,2,1970.0,351.0,355.0,365.0,40,NG,Natural Gas Steam Turbine,OP,ST,5.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,TX,32.848163,-94.547986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.431532240412832 -3478,Wilkes,3,1971.0,351.0,354.0,362.0,40,NG,Natural Gas Steam Turbine,OP,ST,12.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,TX,32.848163,-94.547986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.53488508871336 -3482,Jones,1,1971.0,247.5,243.0,243.0,56,NG,Natural Gas Steam Turbine,OP,ST,1.0,1971.0,12,2031,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9818181818181818,0.9818181818181818,MRO,SWPP,TX,33.5239,-101.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3482,Jones,2,1974.0,247.5,243.0,243.0,56,NG,Natural Gas Steam Turbine,OP,ST,1.0,1974.0,12,2034,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9818181818181818,0.9818181818181818,MRO,SWPP,TX,33.5239,-101.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3482,Jones,3,2011.0,182.7,166.0,183.0,114,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2011.0,12,2056,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9085933223864259,1.0,MRO,SWPP,TX,33.5239,-101.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3482,Jones,4,2013.0,182.7,168.0,183.0,116,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0,12,2058,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9195402298850576,1.0,MRO,SWPP,TX,33.5239,-101.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3484,Nichols,1,1960.0,113.6,107.0,107.0,25,NG,Natural Gas Steam Turbine,OP,ST,1.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9419014084507042,0.9419014084507042,MRO,SWPP,TX,35.283357,-101.746423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3484,Nichols,2,1962.0,113.6,106.0,106.0,18,NG,Natural Gas Steam Turbine,OP,ST,1.0,1962.0,12,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9330985915492959,0.9330985915492959,MRO,SWPP,TX,35.283357,-101.746423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3484,Nichols,3,1968.0,247.5,244.0,244.0,25,NG,Natural Gas Steam Turbine,OP,ST,1.0,1968.0,12,2030,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9858585858585859,0.9858585858585859,MRO,SWPP,TX,35.283357,-101.746423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3485,Plant X,1,1952.0,48.0,38.0,38.0,21,NG,Natural Gas Steam Turbine,OP,ST,1.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7916666666666666,0.7916666666666666,MRO,SWPP,TX,34.1661,-102.4114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3485,Plant X,2,1953.0,98.0,90.0,90.0,40,NG,Natural Gas Steam Turbine,OP,ST,1.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9183673469387755,0.9183673469387755,MRO,SWPP,TX,34.1661,-102.4114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3485,Plant X,4,1964.0,190.4,190.0,190.0,55,NG,Natural Gas Steam Turbine,OP,ST,1.0,1964.0,12,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9978991596638656,0.9978991596638656,MRO,SWPP,TX,34.1661,-102.4114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3490,Graham,1,1960.0,247.7,239.0,239.0,46,NG,Natural Gas Steam Turbine,OP,ST,12.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.964876867178038,0.964876867178038,TRE,ERCO,TX,33.1344,-98.6117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.333386824178666 -3490,Graham,2,1969.0,387.0,390.0,390.0,26,NG,Natural Gas Steam Turbine,OP,ST,6.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,33.1344,-98.6117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.713002674785255 -3491,Handley,3,1963.0,404.8,395.0,395.0,50,NG,Natural Gas Steam Turbine,OP,ST,7.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9757905138339921,0.9757905138339921,TRE,ERCO,TX,32.7283,-97.2192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.327652110784157 -3491,Handley,4,1976.0,455.0,435.0,435.0,120,NG,Natural Gas Steam Turbine,OP,ST,10.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9560439560439561,0.9560439560439561,TRE,ERCO,TX,32.7283,-97.2192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.358852068820497 -3491,Handley,5,1977.0,455.0,435.0,435.0,120,NG,Natural Gas Steam Turbine,OP,ST,10.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9560439560439561,0.9560439560439561,TRE,ERCO,TX,32.7283,-97.2192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.033909707086368 -3492,Morgan Creek,CT1,1988.0,89.4,66.0,82.0,30,DFO,Petroleum Liquids,OP,GT,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7382550335570469,0.9172259507829977,TRE,ERCO,TX,32.3358,-100.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.85268841696924 -3492,Morgan Creek,CT2,1988.0,89.4,65.0,80.0,30,DFO,Petroleum Liquids,OP,GT,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7270693512304249,0.8948545861297539,TRE,ERCO,TX,32.3358,-100.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.629419923186898 -3492,Morgan Creek,CT3,1988.0,89.4,65.0,80.0,30,DFO,Petroleum Liquids,OP,GT,8.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7270693512304249,0.8948545861297539,TRE,ERCO,TX,32.3358,-100.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.866097555359062 -3492,Morgan Creek,CT4,1988.0,89.4,67.0,81.0,30,DFO,Petroleum Liquids,OP,GT,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7494407158836689,0.9060402684563758,TRE,ERCO,TX,32.3358,-100.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.438094371413516 -3492,Morgan Creek,CT5,1988.0,89.4,67.0,80.0,30,DFO,Petroleum Liquids,OP,GT,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7494407158836689,0.8948545861297539,TRE,ERCO,TX,32.3358,-100.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.77029591882881 -3492,Morgan Creek,CT6,1988.0,89.4,67.0,82.0,30,DFO,Petroleum Liquids,OP,GT,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7494407158836689,0.9172259507829977,TRE,ERCO,TX,32.3358,-100.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.25977178024339 -3494,Permian Basin,CT1,1988.0,89.4,63.0,79.0,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7046979865771812,0.8836689038031319,TRE,ERCO,TX,31.5839,-102.9633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.815704476898033 -3494,Permian Basin,CT2,1988.0,89.4,64.0,76.0,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7158836689038031,0.8501118568232662,TRE,ERCO,TX,31.5839,-102.9633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.181917551939886 -3494,Permian Basin,CT3,1988.0,89.4,64.0,78.0,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7158836689038031,0.87248322147651,TRE,ERCO,TX,31.5839,-102.9633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.337652772313128 -3494,Permian Basin,CT4,1990.0,89.4,64.0,75.0,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7158836689038031,0.8389261744966443,TRE,ERCO,TX,31.5839,-102.9633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.24587057652695 -3494,Permian Basin,CT5,1990.0,89.4,65.0,79.0,41,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7270693512304249,0.8836689038031319,TRE,ERCO,TX,31.5839,-102.9633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.851109388139268 -3504,Stryker Creek,D1,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3504,Stryker Creek,D2,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3504,Stryker Creek,D3,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3504,Stryker Creek,D4,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3504,Stryker Creek,D5,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,7.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3504,Stryker Creek,ST1,1958.0,176.8,167.0,167.0,20,NG,Natural Gas Steam Turbine,OP,ST,6.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9445701357466063,0.9445701357466063,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3504,Stryker Creek,ST2,1965.0,526.6,502.0,502.0,35,NG,Natural Gas Steam Turbine,OP,ST,12.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9532852259779718,0.9532852259779718,TRE,ERCO,TX,31.93985,-94.989834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3507,Trinidad (TX),6,1965.0,239.3,235.0,235.0,50,NG,Natural Gas Steam Turbine,OP,ST,5.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9820309235269535,0.9820309235269535,TRE,ERCO,TX,32.124519,-96.101277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3507,Trinidad (TX),D1,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,8.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.124519,-96.101277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3507,Trinidad (TX),D2,1966.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,8.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.124519,-96.101277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3548,Decker Creek,GT1,1988.0,51.5,52.0,60.0,49,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,30.3033,-97.6128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3548,Decker Creek,GT2,1988.0,51.5,52.0,60.0,49,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,30.3033,-97.6128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3548,Decker Creek,GT3,1988.0,51.5,52.0,60.0,49,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,30.3033,-97.6128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3548,Decker Creek,GT4,1988.0,51.5,52.0,60.0,49,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,30.3033,-97.6128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3559,Silas Ray,10,2004.0,61.0,45.0,48.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7377049180327868,0.7868852459016393,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.138498450709614 -3559,Silas Ray,6,1959.0,25.0,20.0,20.0,15,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8,0.8,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3559,Silas Ray,9,1996.0,50.0,42.0,52.0,32,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.84,1.0,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.554589597086949 -3559,Silas Ray,DG-3a,2001.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3559,Silas Ray,DG-3b,2001.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3559,Silas Ray,DG-4,2001.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3559,Silas Ray,DG-6a,2001.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3559,Silas Ray,DG-6b,2001.0,1.3,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,TRE,ERCO,TX,25.9131,-97.5214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3561,Bryan (TX),7,1975.0,22.0,21.0,21.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9545454545454546,0.9545454545454546,TRE,ERCO,TX,30.64741,-96.372316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.635593220338983 -3576,Ray Olinger,1,1967.0,75.0,75.0,75.0,10,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,33.068055,-96.452481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3576,Ray Olinger,2,1971.0,113.4,107.0,107.0,20,NG,Natural Gas Steam Turbine,OP,ST,1.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9435626102292769,0.9435626102292769,TRE,ERCO,TX,33.068055,-96.452481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3576,Ray Olinger,3,1976.0,156.6,138.0,138.0,25,NG,Natural Gas Steam Turbine,OP,ST,6.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8812260536398467,0.8812260536398467,TRE,ERCO,TX,33.068055,-96.452481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3576,Ray Olinger,4,2001.0,82.7,75.0,81.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9068923821039903,0.9794437726723095,TRE,ERCO,TX,33.068055,-96.452481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3581,Abbott TP 3,1,1927.0,1.4,1.4,1.4,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.593951,-98.040734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3581,Abbott TP 3,2,1927.0,1.4,1.4,1.4,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.593951,-98.040734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3582,Dunlap TP 1,1,1927.0,1.8,1.8,1.8,1.7,WAT,Conventional Hydroelectric,OS,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.640187,-98.045934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3582,Dunlap TP 1,2,1927.0,1.8,1.8,1.8,1.7,WAT,Conventional Hydroelectric,OS,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.640187,-98.045934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3583,H 4,1,1931.0,2.4,2.4,2.4,0.5,WAT,Conventional Hydroelectric,OS,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.495193,-97.624948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3584,H 5,1,1931.0,2.4,2.4,2.4,0.5,WAT,Conventional Hydroelectric,OS,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.4681,-97.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3585,Nolte,1,1927.0,1.2,1.2,1.2,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.537565,-97.932106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3585,Nolte,2,1927.0,1.2,1.2,1.2,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.537565,-97.932106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3586,TP 4,1,1932.0,2.4,2.4,2.4,0.5,WAT,Conventional Hydroelectric,OS,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,29.548136,-97.999587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3594,Austin,1,1940.0,9.0,8.2,8.2,7,WAT,Conventional Hydroelectric,OP,HY,4.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.911111111111111,0.911111111111111,TRE,ERCO,TX,30.293424,-97.784408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3594,Austin,2,1940.0,9.0,8.8,8.8,7,WAT,Conventional Hydroelectric,OP,HY,4.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9777777777777779,0.9777777777777779,TRE,ERCO,TX,30.293424,-97.784408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3595,Buchanan Dam (TX),1,1938.0,18.3,18.3,18.3,11,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.7507,-98.4176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3595,Buchanan Dam (TX),2,1938.0,18.3,18.3,18.3,11,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.7507,-98.4176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3595,Buchanan Dam (TX),3,1950.0,18.3,18.3,18.3,11,WAT,Conventional Hydroelectric,OP,HY,5.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.7507,-98.4176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3597,Granite Shoals,1,1951.0,27.0,27.0,27.0,23,WAT,Conventional Hydroelectric,OP,HY,6.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.556,-98.3384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3597,Granite Shoals,2,1951.0,27.0,27.0,27.0,23,WAT,Conventional Hydroelectric,OP,HY,8.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.556,-98.3384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3598,Inks,1,1938.0,15.0,13.8,13.8,7,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.92,0.92,TRE,ERCO,TX,30.731599,-98.385422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3599,Marble Falls,1,1951.0,19.8,19.8,19.8,9,WAT,Conventional Hydroelectric,OP,HY,10.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.555288,-98.257593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3599,Marble Falls,2,1951.0,19.8,19.8,19.8,9,WAT,Conventional Hydroelectric,OP,HY,9.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.555288,-98.257593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3600,Marshall Ford,1,1941.0,36.0,36.0,36.0,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.3899,-97.9073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3600,Marshall Ford,2,1941.0,36.0,36.0,36.0,20,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.3899,-97.9073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3600,Marshall Ford,3,1941.0,36.0,36.0,36.0,15,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,30.3899,-97.9073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3601,Sim Gideon,1,1965.0,136.0,136.0,140.0,19,NG,Natural Gas Steam Turbine,OP,ST,5.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,30.1456,-97.2708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.173545206590452 -3601,Sim Gideon,2,1968.0,136.0,136.0,140.0,19,NG,Natural Gas Steam Turbine,OP,ST,3.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,30.1456,-97.2708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.843724354612768 -3601,Sim Gideon,3,1972.0,351.0,335.0,340.0,57,NG,Natural Gas Steam Turbine,OP,ST,5.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9544159544159544,0.9686609686609686,TRE,ERCO,TX,30.1456,-97.2708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.950103293037166 -3602,Ty Cooke,1,1965.0,44.0,42.0,42.0,25,NG,Natural Gas Steam Turbine,OA,ST,6.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9545454545454546,0.9545454545454546,TRE,SWPP,TX,33.5211,-101.7906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3602,Ty Cooke,2,1978.0,53.6,46.0,46.0,25,NG,Natural Gas Steam Turbine,OA,ST,6.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8582089552238805,0.8582089552238805,TRE,SWPP,TX,33.5211,-101.7906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3602,Ty Cooke,GT2,1971.0,18.5,16.0,18.5,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8648648648648649,1.0,TRE,SWPP,TX,33.5211,-101.7906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.120661581582624 -3602,Ty Cooke,GT3,1974.0,22.0,16.0,18.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.8181818181818181,TRE,SWPP,TX,33.5211,-101.7906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.120657905298412 -3604,J Robert Massengale,6A,1957.0,22.0,18.0,18.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1957.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8181818181818181,0.8181818181818181,TRE,SWPP,TX,33.6039,-101.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3604,J Robert Massengale,7,1959.0,22.0,18.0,18.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8181818181818181,0.8181818181818181,TRE,SWPP,TX,33.6039,-101.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3604,J Robert Massengale,8,2000.0,40.0,38.0,42.0,30,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.95,1.0,TRE,SWPP,TX,33.6039,-101.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3609,Leon Creek,CGT1,2004.0,57.4,46.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8013937282229966,0.8013937282229966,TRE,ERCO,TX,29.3525,-98.5761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.820128356668617 -3609,Leon Creek,CGT2,2004.0,57.4,46.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8013937282229966,0.8013937282229966,TRE,ERCO,TX,29.3525,-98.5761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.02063253637896 -3609,Leon Creek,CGT3,2004.0,57.4,46.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8013937282229966,0.8013937282229966,TRE,ERCO,TX,29.3525,-98.5761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.989265430527366 -3609,Leon Creek,CGT4,2004.0,57.4,46.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8013937282229966,0.8013937282229966,TRE,ERCO,TX,29.3525,-98.5761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.789869675599435 -3611,O W Sommers,1,1972.0,446.0,420.0,420.0,70,NG,Natural Gas Steam Turbine,OP,ST,4.0,1972.0,3,2027,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9417040358744395,0.9417040358744395,TRE,ERCO,TX,29.308056,-98.3242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.261630510160128 -3611,O W Sommers,2,1974.0,446.0,410.0,410.0,70,NG,Natural Gas Steam Turbine,OP,ST,1.0,1974.0,3,2029,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9192825112107623,0.9192825112107623,TRE,ERCO,TX,29.308056,-98.3242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.71560336365149 -3612,V H Braunig,1,1966.0,225.0,217.0,217.0,60,NG,Natural Gas Steam Turbine,OP,ST,3.0,1966.0,3,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9644444444444444,0.9644444444444444,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72975513158802 -3612,V H Braunig,1,1966.0,225.0,217.0,217.0,60,NG,Natural Gas Steam Turbine,OP,ST,3.0,1966.0,3,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9644444444444444,0.9644444444444444,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.477730098383562 -3612,V H Braunig,2,1968.0,252.0,230.0,230.0,60,NG,Natural Gas Steam Turbine,OP,ST,4.0,1968.0,3,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9126984126984127,0.9126984126984127,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.322785219641576 -3612,V H Braunig,2,1968.0,252.0,230.0,230.0,60,NG,Natural Gas Steam Turbine,OP,ST,4.0,1968.0,3,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9126984126984127,0.9126984126984127,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3612,V H Braunig,3,1970.0,417.0,412.0,412.0,70,NG,Natural Gas Steam Turbine,OP,ST,5.0,1970.0,3,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.988009592326139,0.988009592326139,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.388136112097696 -3612,V H Braunig,3,1970.0,417.0,412.0,412.0,70,NG,Natural Gas Steam Turbine,OP,ST,5.0,1970.0,3,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.988009592326139,0.988009592326139,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.855035376787502 -3612,V H Braunig,5,2010.0,61.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7868852459016393,0.7868852459016393,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3612,V H Braunig,6,2010.0,61.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7868852459016393,0.7868852459016393,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3612,V H Braunig,7,2010.0,61.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7868852459016393,0.7868852459016393,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3612,V H Braunig,8,2010.0,61.0,47.0,47.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7704918032786885,0.7704918032786885,TRE,ERCO,TX,29.2567,-98.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3628,R W Miller,1,1968.0,66.0,66.0,66.0,20,NG,Natural Gas Steam Turbine,OS,ST,10.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.6581,-98.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3628,R W Miller,2,1972.0,100.0,100.0,100.0,38,NG,Natural Gas Steam Turbine,OP,ST,7.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.6581,-98.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.430105979718977 -3628,R W Miller,3,1975.0,200.0,200.0,200.0,40,NG,Natural Gas Steam Turbine,OP,ST,8.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.6581,-98.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.606158746829195 -3628,R W Miller,4,1994.0,118.8,104.0,104.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8754208754208754,0.8754208754208754,TRE,ERCO,TX,32.6581,-98.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3628,R W Miller,5,1994.0,118.8,104.0,104.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8754208754208754,0.8754208754208754,TRE,ERCO,TX,32.6581,-98.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3630,Pearsall,10A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,11A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,12A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,13A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,14A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,15A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,16A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,17A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,18A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,19A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,1A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,20A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,21A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,22A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,23A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,24A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,2A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,3A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,4A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,5A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,6A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,7A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,8A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3630,Pearsall,9A,2010.0,8.4,8.4,8.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.9275,-99.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.939525687868143 -3631,Sam Rayburn,10,2003.0,42.0,37.0,37.0,7,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8809523809523809,0.8809523809523809,TRE,ERCO,TX,28.8947,-97.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3631,Sam Rayburn,4,1991.0,1.6,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,7.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5625,0.5625,TRE,ERCO,TX,28.8947,-97.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3631,Sam Rayburn,5,1991.0,1.6,0.9,0.9,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5625,0.5625,TRE,ERCO,TX,28.8947,-97.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3631,Sam Rayburn,7,2003.0,49.2,49.0,49.0,8,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9959349593495934,0.9959349593495934,TRE,ERCO,TX,28.8947,-97.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3631,Sam Rayburn,8,2003.0,49.2,49.0,49.0,8,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9959349593495934,0.9959349593495934,TRE,ERCO,TX,28.8947,-97.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3631,Sam Rayburn,9,2003.0,49.2,48.0,48.0,8,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.975609756097561,0.975609756097561,TRE,ERCO,TX,28.8947,-97.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3643,Upper Beaver,1,1907.0,1.3,1.3,1.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,38.2683,-112.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3643,Upper Beaver,2,1907.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,38.2683,-112.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3646,Cutler Hydro,1,1927.0,15.0,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.834702,-112.052114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3646,Cutler Hydro,2,1927.0,15.0,15.0,15.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.834702,-112.052114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3648,Gadsby,1,1951.0,69.0,64.0,64.0,25,NG,Natural Gas Steam Turbine,OP,ST,9.0,1951.0,12,2032,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.927536231884058,0.927536231884058,WECC,PACE,UT,40.7686,-111.9289,Gadsby_1,ST-NG,False,4.0,2.0,-1.0,6.9,6.9,4740.642,615.48,1.0,0.29,64.0,12.015176548613516,-32.548381880031606,0.3911421951583471,-22.116233248159666,665.8966228595026,11.175889973078847,#TRUE#,#1951-09-01#,#2032-12-31#,Existing,PAUT,BS_PACE,26.764,64.0,68.5,UT,NG,,#FALSE#,26.764,64,29.592774552245142 -3648,Gadsby,2,1952.0,69.0,69.0,69.0,20,NG,Natural Gas Steam Turbine,OP,ST,12.0,1952.0,12,2032,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,UT,40.7686,-111.9289,Gadsby_2,ST-NG,False,4.0,2.0,-1.0,7.3,7.3,5015.462,651.16,1.0,0.29,69.0,14.925624037381468,-104.80183642243146,0.3923122291247142,-19.040135694986624,556.6449327371165,12.03199413086621,#TRUE#,#1952-12-01#,#2032-12-31#,Existing,PAUT,BS_PACE,22.0,69.0,72.5,UT,NG,,#FALSE#,22,69,19.82361246194439 -3648,Gadsby,3,1955.0,133.6,104.5,104.5,25,NG,Natural Gas Steam Turbine,OP,ST,6.0,1955.0,12,2032,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7821856287425151,0.7821856287425151,WECC,PACE,UT,40.7686,-111.9289,Gadsby_3,ST-NG,False,4.0,2.0,-1.0,11.364,11.364,7807.632,1013.669,1.0,0.29,104.5,8.517557155712856,60.88233446250849,0.06612989805188034,0.8100899137934195,245.2878541444846,9.949491131311676,#TRUE#,#1955-06-01#,#2032-12-31#,Existing,PAUT,BS_PACE,20.0,104.5,99.5,UT,NG,,#FALSE#,20,104.5,15.173772619755367 -3648,Gadsby,4,2002.0,71.0,39.6,40.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0,12,2032,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5577464788732395,0.5732394366197183,WECC,PACE,UT,40.7686,-111.9289,Gadsby_4,GT LM_LM6000,False,1.0,1.0,-1.0,34.2,34.2,1138.406,172.14,1.0,0.45,42.0,4.89967699477388,76.65860131893503,0.24051613618022946,-7.409369464580468,215.729552158999,8.578780314006078,#TRUE#,#2002-06-01#,#2032-12-31#,Existing,PAUT,BS_PACE,12.0,42.0,38.0,UT,NG,Areo,#FALSE#,12,42,23.5269811827957 -3648,Gadsby,5,2002.0,71.0,39.6,40.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0,12,2032,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5577464788732395,0.5732394366197183,WECC,PACE,UT,40.7686,-111.9289,Gadsby_5,GT LM_LM6000,False,1.0,1.0,-1.0,34.2,34.2,1138.406,172.14,1.0,0.45,42.0,5.049557668339855,79.7759182945855,0.22626569198883797,-6.530183168771523,210.6069505709502,8.878271481826944,#TRUE#,#2002-06-01#,#2032-12-31#,Existing,PAUT,BS_PACE,12.0,42.0,38.0,UT,NG,Areo,#FALSE#,12,42,26.258494623655913 -3648,Gadsby,6,2002.0,71.0,36.9,40.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0,12,2032,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5197183098591549,0.5732394366197183,WECC,PACE,UT,40.7686,-111.9289,Gadsby_6,GT LM_LM6000,False,1.0,1.0,-1.0,34.2,34.2,1138.406,172.14,1.0,0.45,42.0,5.181359908511478,76.92315499294338,0.24314038608024657,-7.261988316662175,217.51146605504854,8.87316004562729,#TRUE#,#2002-06-01#,#2032-12-31#,Existing,PAUT,BS_PACE,12.0,42.0,38.0,UT,NG,Areo,#FALSE#,12,42,25.872586021505377 -3651,Granite,1,1896.0,2.0,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1896.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,WECC,PACE,UT,40.619173,-111.78208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3656,Pioneer,1,1910.0,2.5,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,WECC,PACE,UT,41.243643,-111.946478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3656,Pioneer,2,1910.0,2.5,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,WECC,PACE,UT,41.243643,-111.946478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3658,Snake Creek,1,1910.0,0.6,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACE,UT,40.544942,-111.502911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3658,Snake Creek,2,1910.0,0.6,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACE,UT,40.544942,-111.502911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3659,Stairs,3,1912.0,1.0,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.6236,-111.7533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3661,Weber,1,1911.0,3.8,2.0,2.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5263157894736843,0.5263157894736843,WECC,PACE,UT,41.137621,-111.884948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3665,Bountiful City,1A,2001.0,5.2,3.5,5.1,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6730769230769231,0.9807692307692306,WECC,PACE,UT,40.886867,-111.885332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.202370420099975 -3665,Bountiful City,2A,2012.0,12.6,10.5,13.5,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,WECC,PACE,UT,40.886867,-111.885332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.202370127510987 -3665,Bountiful City,3A,2012.0,12.6,10.5,13.5,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,WECC,PACE,UT,40.886867,-111.885332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.202370127510987 -3666,Brigham City,1,1921.0,0.6,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACE,UT,41.501619,-111.99345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3666,Brigham City,2,1921.0,0.6,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACE,UT,41.501619,-111.99345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3666,Brigham City,8182,1964.0,0.6,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACE,UT,41.501619,-111.99345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3675,Hydro III,HY1,1925.0,0.7,0.7,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.2857142857142857,WECC,PACE,UT,41.746364,-111.746023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3675,Hydro III,HY2,1925.0,0.7,0.7,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.2857142857142857,WECC,PACE,UT,41.746364,-111.746023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3676,Manti Upper,1,1939.0,0.6,0.4,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.16666666666666663,WECC,PACE,UT,39.255911,-111.621491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3676,Manti Upper,HC2,1988.0,1.0,0.8,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.09999999999999998,WECC,PACE,UT,39.255911,-111.621491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3688,Bartholomew,2,1988.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.167136,-111.499461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3691,Spanish Fork,1,1983.0,1.7,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.080042,-111.604846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3691,Spanish Fork,2,1983.0,1.7,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.080042,-111.604846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3691,Spanish Fork,3,1937.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.080042,-111.604846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3697,Gateway,1,1958.0,2.0,2.0,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.136547,-111.831441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3697,Gateway,2,1958.0,2.0,2.0,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.136547,-111.831441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3698,Wanship,1,1958.0,1.9,1.9,1.9,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.7904,-111.4043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3699,Boulder,1,1958.0,1.4,1.4,1.4,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,UT,37.9858,-111.4383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3699,Boulder,2,1958.0,1.4,1.4,1.4,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,UT,37.9858,-111.4383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3699,Boulder,3,1961.0,1.4,1.4,1.4,0.5,WAT,Conventional Hydroelectric,OP,HY,9.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,UT,37.9858,-111.4383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3704,Uintah,1,1920.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,UT,40.538056,-110.066111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3704,Uintah,2,1940.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,UT,40.538056,-110.066111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3708,Ascutney,GT4,1961.0,13.2,9.0,13.4,7,DFO,Petroleum Liquids,OP,GT,8.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6818181818181819,1.0,NPCC,ISNE,VT,43.4011,-72.4203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.2453531598513 -3709,Smith (VT),1,1982.0,1.0,0.7,0.9,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.9,NPCC,ISNE,VT,43.9921,-72.1282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3709,Smith (VT),HC2,1982.0,0.5,0.2,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.8,NPCC,ISNE,VT,43.9921,-72.1282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3710,Cavendish,1,1907.0,0.6,0.4,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.8333333333333334,NPCC,ISNE,VT,43.381225,-72.598242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3710,Cavendish,2,1907.0,0.6,0.4,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.8333333333333334,NPCC,ISNE,VT,43.381225,-72.598242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3710,Cavendish,3,1907.0,0.5,0.3,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.8,NPCC,ISNE,VT,43.381225,-72.598242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3711,Clark Falls,1,1937.0,3.0,3.0,3.0,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.6356,-73.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3712,Fairfax Falls,1,1919.0,1.4,1.4,1.4,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.6534,-72.9961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3712,Fairfax Falls,2,1919.0,2.1,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9523809523809523,NPCC,ISNE,VT,44.6534,-72.9961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3714,Glen,1,1920.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.6368,-72.9758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3714,Glen,2,1920.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.6368,-72.9758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3716,Lower Middlebury,1,1917.0,0.8,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,ISNE,VT,44.0249,-73.1768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3716,Lower Middlebury,2,1917.0,0.8,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,ISNE,VT,44.0249,-73.1768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3716,Lower Middlebury,3,1917.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.0249,-73.1768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3717,Milton,1,1929.0,3.7,3.5,3.5,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9459459459459459,NPCC,ISNE,VT,44.641433,-73.113364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3717,Milton,2,1929.0,3.7,3.5,3.5,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9459459459459459,NPCC,ISNE,VT,44.641433,-73.113364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3720,Peterson,1,1948.0,6.3,5.8,6.3,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9206349206349207,1.0,NPCC,ISNE,VT,44.6381,-73.1625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3722,Pittsford,1,1914.0,1.3,1.3,1.4,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.694,-72.955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3722,Pittsford,2,1914.0,1.3,1.3,1.4,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.694,-72.955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3722,Pittsford,3,1914.0,1.0,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,NPCC,ISNE,VT,43.694,-72.955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3723,Rutland,GT5,1962.0,13.2,8.4,12.8,7,DFO,Petroleum Liquids,OP,GT,12.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6363636363636365,0.9696969696969698,NPCC,ISNE,VT,43.603,-72.9923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.21509433962264 -3724,Salisbury,1,1917.0,1.3,1.2,1.2,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,ISNE,VT,43.8954,-73.1007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3725,Silver Lake (VT),1,1917.0,2.2,2.2,2.2,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.898584,-73.053125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3728,Weybridge,1,1951.0,3.0,3.4,3.4,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.0661,-73.2158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3731,Newport,1,1940.0,1.7,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.937579,-72.179968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3731,Newport,2,1944.0,1.7,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.937579,-72.179968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3731,Newport,3,1936.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.937579,-72.179968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3734,Berlin 5,GT1,1972.0,41.8,35.0,45.7,24,KER,Petroleum Liquids,OP,GT,6.0,1972.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8373205741626795,1.0,NPCC,ISNE,VT,44.251,-72.6027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3735,Colchester 16,GT1,1965.0,18.0,8.7,13.9,3,DFO,Petroleum Liquids,OP,GT,10.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.4833333333333333,0.7722222222222223,NPCC,ISNE,VT,44.4906,-73.1703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.327319587628864 -3737,Essex Junction 19,H1,1917.0,1.8,1.8,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3737,Essex Junction 19,H2,1917.0,1.8,1.8,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3737,Essex Junction 19,H3,1917.0,1.8,1.8,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3737,Essex Junction 19,H4,1917.0,1.8,1.8,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3737,Essex Junction 19,H9,2008.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3737,Essex Junction 19,IC-5,2007.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.351219512195122 -3737,Essex Junction 19,IC-6,2007.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.351219512195122 -3737,Essex Junction 19,IC-7,2007.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.351219512195122 -3737,Essex Junction 19,IC-8,2007.0,2.0,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,NPCC,ISNE,VT,44.4821,-73.1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.351219512195122 -3739,Marshfield 6,1,1927.0,5.0,5.0,5.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.3606,-72.3356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3740,Middlesex 2,1,1928.0,1.6,1.6,1.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.292391,-72.6824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3740,Middlesex 2,2,1928.0,1.6,1.6,1.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.292391,-72.6824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3743,West Danville 15,1,1917.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.4056,-72.1881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3745,Bellows Falls,GEN1,1928.0,13.6,15.7,15.7,4,WAT,Conventional Hydroelectric,OP,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.1375,-72.4464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3745,Bellows Falls,GEN2,1928.0,13.6,15.7,15.7,4,WAT,Conventional Hydroelectric,OP,HY,3.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.1375,-72.4464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3745,Bellows Falls,GEN3,1928.0,13.6,15.7,15.7,4,WAT,Conventional Hydroelectric,OP,HY,4.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.1375,-72.4464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3746,Harriman,GEN1,1924.0,11.2,13.6,12.8,8,WAT,Conventional Hydroelectric,OP,HY,5.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.7936,-72.9144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3746,Harriman,GEN2,1924.0,11.2,13.6,12.8,8,WAT,Conventional Hydroelectric,OP,HY,6.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.7936,-72.9144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3746,Harriman,GEN3,1924.0,11.2,13.6,12.8,8,WAT,Conventional Hydroelectric,OP,HY,11.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.7936,-72.9144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3750,Canaan,1,1927.0,1.1,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.999274,-71.530164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3753,West Charleston,1,1931.0,0.7,0.7,0.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.887379,-72.055357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3753,West Charleston,2,1948.0,0.7,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,NPCC,ISNE,VT,44.887379,-72.055357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3754,Burlington GT,GT1,1971.0,25.5,19.7,23.4,5,DFO,Petroleum Liquids,OP,GT,9.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7725490196078431,0.9176470588235294,NPCC,ISNE,VT,44.4814,-73.2239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3762,Great Falls (VT),1,1915.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.500222,-71.998921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3762,Great Falls (VT),2,1915.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.500222,-71.998921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3762,Great Falls (VT),3,1979.0,1.3,1.3,1.3,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.500222,-71.998921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3764,Morrisville,1,1924.0,0.6,0.5,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,NPCC,ISNE,VT,44.561831,-72.602369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3764,Morrisville,2,1924.0,1.2,1.0,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,NPCC,ISNE,VT,44.561831,-72.602369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3765,Cadys Falls,1,1914.0,0.8,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,NPCC,ISNE,VT,44.577553,-72.611861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3765,Cadys Falls,2,1947.0,0.8,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,ISNE,VT,44.577553,-72.611861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3772,Buck Hydro,1,1912.0,2.8,3.0,5.3,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.808229,-80.938714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3772,Buck Hydro,2,1912.0,2.8,3.0,5.3,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.808229,-80.938714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3772,Buck Hydro,3,1912.0,2.8,3.0,5.3,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.808229,-80.938714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3773,Byllesby 2,1,1912.0,5.4,7.9,4.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8148148148148149,RFC,PJM,VA,36.7858,-80.9333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3773,Byllesby 2,2,1912.0,5.4,7.9,4.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8148148148148149,RFC,PJM,VA,36.7858,-80.9333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3773,Byllesby 2,3,1912.0,5.4,7.9,4.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8148148148148149,RFC,PJM,VA,36.7858,-80.9333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3773,Byllesby 2,4,1912.0,5.4,7.9,4.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8148148148148149,RFC,PJM,VA,36.7858,-80.9333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3774,Claytor,1,1939.0,18.7,14.7,28.2,14,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.786096256684492,1.0,RFC,PJM,VA,37.075,-80.5847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3774,Claytor,2,1939.0,18.7,14.7,28.2,14,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.786096256684492,1.0,RFC,PJM,VA,37.075,-80.5847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3774,Claytor,3,1939.0,18.7,14.7,28.2,14,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.786096256684492,1.0,RFC,PJM,VA,37.075,-80.5847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3774,Claytor,4,1939.0,18.7,14.7,28.2,14,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.786096256684492,1.0,RFC,PJM,VA,37.075,-80.5847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3775,Clinch River,1,1958.0,237.5,230.0,235.0,60,NG,Natural Gas Steam Turbine,OP,ST,9.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.968421052631579,0.9894736842105263,RFC,PJM,VA,36.9333,-82.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.699174290272527 -3775,Clinch River,2,1958.0,237.5,230.0,235.0,60,NG,Natural Gas Steam Turbine,OP,ST,12.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.968421052631579,0.9894736842105263,RFC,PJM,VA,36.9333,-82.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.206347811944855 -3777,Leesville,1,1964.0,20.0,25.0,25.0,23,WAT,Conventional Hydroelectric,OP,HY,2.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.0933,-79.4025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3777,Leesville,2,1964.0,20.0,25.0,25.0,23,WAT,Conventional Hydroelectric,OP,HY,3.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.0933,-79.4025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3778,Niagara,1,1954.0,2.4,0.6,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.25,0.5833333333333333,RFC,PJM,VA,37.2544,-79.8756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3778,Niagara,2,1954.0,1.2,1.2,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.2544,-79.8756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3779,Reusens,1,1903.0,2.5,2.5,2.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.4639,-79.1856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3779,Reusens,2,1903.0,2.5,2.5,2.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.4639,-79.1856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3779,Reusens,3,1903.0,2.5,2.5,2.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.4639,-79.1856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3779,Reusens,4,1903.0,2.5,2.5,2.5,1,WAT,Conventional Hydroelectric,OS,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.4639,-79.1856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3779,Reusens,5,1903.0,2.5,2.5,2.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.4639,-79.1856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3780,Smith Mountain,1,1965.0,66.0,66.0,66.0,65,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1965.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,VA,37.0413,-79.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3780,Smith Mountain,2,1965.0,150.1,174.0,174.0,160,WAT,Conventional Hydroelectric,OP,HY,12.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.0413,-79.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3780,Smith Mountain,3,1980.0,115.3,106.0,106.0,105,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1980.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9193408499566349,0.9193408499566349,RFC,PJM,VA,37.0413,-79.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3780,Smith Mountain,4,1966.0,150.1,174.0,174.0,160,WAT,Conventional Hydroelectric,OP,HY,2.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.0413,-79.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3780,Smith Mountain,5,1966.0,66.0,66.0,66.0,65,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1966.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,VA,37.0413,-79.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3782,Bayview,BAYV,1963.0,2.0,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2717,-75.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.115677839054282 -3782,Bayview,BYV2,1963.0,2.0,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2717,-75.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.115677839054282 -3782,Bayview,BYV3,1963.0,2.0,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2717,-75.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.115677839054282 -3782,Bayview,BYV4,1963.0,2.0,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2717,-75.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.115677839054282 -3782,Bayview,BYV5,1963.0,2.0,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2717,-75.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.115677839054282 -3782,Bayview,BYV6,1963.0,2.0,2.1,2.1,2,DFO,Petroleum Liquids,SB,IC,10.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2717,-75.9682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.115677839054282 -3785,Tasley,TAS,1972.0,27.0,29.9,40.3,26.9,DFO,Petroleum Liquids,SB,GT,6.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,VA,37.7061,-75.7031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3789,Luray Hydro Station,1,1927.0,0.6,0.4,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,1.0,RFC,PJM,VA,38.676667,-78.498888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3789,Luray Hydro Station,2,1927.0,0.4,0.3,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,RFC,PJM,VA,38.676667,-78.498888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3789,Luray Hydro Station,3,1927.0,0.6,0.4,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,1.0,RFC,PJM,VA,38.676667,-78.498888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3790,Newport Hydro Station,1,1923.0,0.4,0.3,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,RFC,PJM,VA,38.571389,-78.593611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3790,Newport Hydro Station,2,1923.0,0.4,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,38.571389,-78.593611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3790,Newport Hydro Station,3,1923.0,0.6,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,RFC,PJM,VA,38.571389,-78.593611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3797,Chesterfield,5,1964.0,359.0,336.0,342.0,186,BIT,Conventional Steam Coal,OP,ST,8.0,1964.0,5,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.935933147632312,0.9526462395543176,SERC,PJM,VA,37.3822,-77.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.601489074916094 -3797,Chesterfield,6,1969.0,693.9,670.0,690.0,400,BIT,Conventional Steam Coal,OP,ST,12.0,1969.0,5,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9655569966854014,0.9943795936013835,SERC,PJM,VA,37.3822,-77.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.554612426111401 -3797,Chesterfield,CT7,1990.0,145.0,142.0,166.0,68,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9793103448275862,1.0,SERC,PJM,VA,37.3822,-77.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3797,Chesterfield,CT8,1992.0,148.0,140.0,175.0,63,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9459459459459459,1.0,SERC,PJM,VA,37.3822,-77.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3797,Chesterfield,CW7,1990.0,74.4,55.0,60.0,32,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.739247311827957,0.8064516129032258,SERC,PJM,VA,37.3822,-77.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3797,Chesterfield,CW8,1992.0,79.2,55.0,61.0,37,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6944444444444444,0.7702020202020201,SERC,PJM,VA,37.3822,-77.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3798,Cushaw,1,1930.0,1.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666666,0.2666666666666666,SERC,PJM,VA,37.592887,-79.380823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3798,Cushaw,2,1930.0,1.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666666,0.2666666666666666,SERC,PJM,VA,37.592887,-79.380823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3798,Cushaw,3,1930.0,1.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666666,0.2666666666666666,SERC,PJM,VA,37.592887,-79.380823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3798,Cushaw,4,1930.0,1.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666666,0.2666666666666666,SERC,PJM,VA,37.592887,-79.380823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3798,Cushaw,5,1930.0,1.5,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666666,0.2666666666666666,SERC,PJM,VA,37.592887,-79.380823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3799,Low Moor,GT1,1971.0,20.7,12.0,17.0,3,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.8212560386473431,SERC,PJM,VA,37.777,-79.892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.107839388145315 -3799,Low Moor,GT2,1971.0,20.7,12.0,16.0,3,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.7729468599033816,SERC,PJM,VA,37.777,-79.892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.107839388145315 -3799,Low Moor,GT3,1971.0,20.7,12.0,15.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.7246376811594203,SERC,PJM,VA,37.777,-79.892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.107839388145315 -3799,Low Moor,GT4,1971.0,20.7,12.0,17.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.8212560386473431,SERC,PJM,VA,37.777,-79.892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.107839388145315 -3800,Northern Neck,GT1,1971.0,20.7,12.0,18.0,3,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.8695652173913044,SERC,PJM,VA,37.95,-76.711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.786269168684424 -3800,Northern Neck,GT2,1971.0,20.7,11.0,17.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5314009661835749,0.8212560386473431,SERC,PJM,VA,37.95,-76.711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.786269168684424 -3800,Northern Neck,GT3,1971.0,20.7,12.0,17.0,3,DFO,Petroleum Liquids,OP,GT,7.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.8212560386473431,SERC,PJM,VA,37.95,-76.711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.786269168684424 -3800,Northern Neck,GT4,1971.0,20.7,12.0,18.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5797101449275363,0.8695652173913044,SERC,PJM,VA,37.95,-76.711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.786269168684424 -3803,Chesapeake,6,1969.0,16.3,12.0,16.0,3,DFO,Petroleum Liquids,OP,GT,7.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7361963190184049,0.9815950920245399,SERC,PJM,VA,36.7711,-76.3019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.59360736196319 -3803,Chesapeake,GT1,1967.0,18.5,15.0,20.0,3,DFO,Petroleum Liquids,OP,GT,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8108108108108107,1.0,SERC,PJM,VA,36.7711,-76.3019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.593607207207206 -3803,Chesapeake,GT4,1969.0,16.3,12.0,16.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7361963190184049,0.9815950920245399,SERC,PJM,VA,36.7711,-76.3019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.59360736196319 -3804,Possum Point,6A,2003.0,174.0,170.0,176.5,87,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9770114942528736,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.353314854272947 -3804,Possum Point,6B,2003.0,174.0,170.0,176.5,87,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9770114942528736,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.74810645499762 -3804,Possum Point,6ST,2003.0,265.0,233.0,262.0,116,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.879245283018868,0.9886792452830189,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3804,Possum Point,GT1,1968.0,16.0,12.0,19.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3804,Possum Point,GT2,1968.0,16.0,12.0,17.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3804,Possum Point,GT3,1968.0,16.0,12.0,16.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3804,Possum Point,GT4,1968.0,16.0,12.0,18.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3804,Possum Point,GT5,1968.0,16.0,12.0,17.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3804,Possum Point,GT6,1968.0,16.0,12.0,19.0,3,DFO,Petroleum Liquids,OP,GT,5.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,1.0,SERC,PJM,VA,38.5367,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3806,Surry,1,1972.0,847.5,838.0,875.0,189,NUC,Nuclear,OP,ST,12.0,1972.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9887905604719764,1.0,SERC,PJM,VA,37.1661,-76.6986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3806,Surry,2,1973.0,847.5,838.0,875.0,189,NUC,Nuclear,OP,ST,5.0,1973.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9887905604719764,1.0,SERC,PJM,VA,37.1661,-76.6986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3809,Yorktown,3,1974.0,882.0,790.0,792.0,190,RFO,Petroleum Liquids,OP,ST,12.0,1974.0,5,2023,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8956916099773242,0.8979591836734694,SERC,PJM,VA,37.2144,-76.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.890461024279956 -3821,Snowden,4,1987.0,2.5,2.5,2.5,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.5736,-79.3715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3821,Snowden,5,1987.0,2.5,2.5,2.5,0.6,WAT,Conventional Hydroelectric,OP,HY,8.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.5736,-79.3715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3825,Pinnacles,1,1938.0,3.7,3.5,3.5,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9459459459459459,RFC,PJM,VA,36.666866,-80.447897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3825,Pinnacles,2,1938.0,3.7,3.5,3.5,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9459459459459459,RFC,PJM,VA,36.666866,-80.447897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3825,Pinnacles,3,1938.0,3.7,3.5,3.5,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9459459459459459,RFC,PJM,VA,36.666866,-80.447897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3825,Pinnacles,4,2021.0,0.7,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,RFC,PJM,VA,36.666866,-80.447897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3826,Martinsville,1,1932.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.664145,-79.883588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3826,Martinsville,2,1932.0,1.0,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,RFC,PJM,VA,36.664145,-79.883588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3827,Radford,1,1934.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1934.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.078366,-80.572726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,1,1952.0,13.8,13.8,13.8,13,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,2,1952.0,46.8,46.8,46.8,32,WAT,Conventional Hydroelectric,OP,HY,11.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,3,1953.0,46.8,46.8,46.8,32,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,4,1953.0,46.8,46.8,46.8,32,WAT,Conventional Hydroelectric,OP,HY,3.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,5,1953.0,46.8,46.8,46.8,32,WAT,Conventional Hydroelectric,OP,HY,9.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,6,1953.0,46.8,46.8,46.8,32,WAT,Conventional Hydroelectric,OP,HY,10.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,7,1953.0,46.8,46.8,46.8,32,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,A,2008.0,1.1,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3833,John H Kerr,B,2008.0,1.1,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,SERC,PJM,VA,36.59943,-78.3005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3834,Philpott Lake,1,1953.0,6.7,7.5,7.5,6,WAT,Conventional Hydroelectric,OS,HY,8.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.7803,-80.0281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3834,Philpott Lake,2,1953.0,6.7,7.5,7.5,6,WAT,Conventional Hydroelectric,OS,HY,8.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.7803,-80.0281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3834,Philpott Lake,3,1953.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.7803,-80.0281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3845,Transalta Centralia Generation,2,1973.0,729.9,670.0,670.0,250,SUB,Conventional Steam Coal,OP,ST,7.0,1973.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9179339635566516,0.9179339635566516,WECC,BPAT,WA,46.755938,-122.859764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3847,Merwin,1,1932.0,45.0,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,45.9567,-122.554444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3847,Merwin,2,1949.0,45.0,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,45.9567,-122.554444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3847,Merwin,3,1958.0,45.0,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,45.9567,-122.554444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3847,Merwin,House,1931.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,45.9567,-122.554444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3850,Swift 1,HY11,1958.0,80.0,87.9,87.9,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,46.060833,-122.201667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3850,Swift 1,HY12,1958.0,80.0,87.9,87.9,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,46.060833,-122.201667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3850,Swift 1,HY13,1958.0,80.0,87.9,87.9,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,46.060833,-122.201667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3852,Yale,1,1953.0,67.0,81.8,81.8,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,45.96277,-122.335467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3852,Yale,2,1953.0,67.0,81.8,81.8,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,45.96277,-122.335467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3853,Crystal Mountain,1,1969.0,2.7,2.5,2.5,0.2,DFO,Petroleum Liquids,SB,IC,12.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,WECC,PSEI,WA,46.953468,-121.475198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.177831912302072 -3854,Electron,1,1904.0,5.1,5.7,5.7,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,46.990967,-122.174921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3854,Electron,2,1904.0,5.1,5.9,5.9,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,46.990967,-122.174921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3854,Electron,3,1904.0,5.1,6.3,6.3,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,46.990967,-122.174921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3854,Electron,4,1929.0,7.5,7.9,7.9,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,46.990967,-122.174921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3855,Lower Baker,3,1960.0,80.8,79.3,79.3,2,WAT,Conventional Hydroelectric,OP,HY,3.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9814356435643564,0.9814356435643564,WECC,PSEI,WA,48.5478,-121.7407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3855,Lower Baker,4,2013.0,23.1,23.1,23.1,2,WAT,Conventional Hydroelectric,OP,HY,7.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,48.5478,-121.7407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3860,Snoqualmie,1,1898.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1898.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.54011,-121.83702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3860,Snoqualmie,2,1898.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1898.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.54011,-121.83702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3860,Snoqualmie,3,1898.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1898.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.54011,-121.83702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3860,Snoqualmie,4,1898.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1898.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.54011,-121.83702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3860,Snoqualmie,5A,2013.0,6.8,6.1,6.1,3.7,WAT,Conventional Hydroelectric,OP,HY,8.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8970588235294117,0.8970588235294117,WECC,PSEI,WA,47.54011,-121.83702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3861,Upper Baker,1,1959.0,52.4,52.4,52.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,48.649,-121.6907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3861,Upper Baker,2,1959.0,52.4,51.0,51.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9732824427480916,0.9732824427480916,WECC,PSEI,WA,48.649,-121.6907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3866,Little Falls (WA),1,1910.0,10.8,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,7.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.821667,-117.916667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3866,Little Falls (WA),2,1910.0,10.8,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,9.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.821667,-117.916667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3866,Little Falls (WA),3,1910.0,10.8,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,12.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.821667,-117.916667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3866,Little Falls (WA),4,1911.0,10.8,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.821667,-117.916667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3867,Long Lake,1,1915.0,17.5,22.4,22.4,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.834444,-117.836111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3867,Long Lake,2,1915.0,17.5,22.5,22.5,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.834444,-117.836111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3867,Long Lake,3,1919.0,17.5,22.5,22.5,3,WAT,Conventional Hydroelectric,OP,HY,12.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.834444,-117.836111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3867,Long Lake,4,1924.0,17.5,22.1,22.1,3,WAT,Conventional Hydroelectric,OP,HY,2.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.834444,-117.836111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3868,Meyers Falls,UN1,1915.0,0.9,0.9,0.9,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.5953,-118.0603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3868,Meyers Falls,UN2,1915.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.5953,-118.0603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3868,Meyers Falls,UNA,2006.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.5953,-118.0603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3868,Meyers Falls,UNB,2006.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.5953,-118.0603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3869,Nine Mile,1,1910.0,8.8,8.8,8.8,2,WAT,Conventional Hydroelectric,OP,HY,7.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.769722,-117.537222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3869,Nine Mile,2,1908.0,8.8,8.8,8.8,2,WAT,Conventional Hydroelectric,OP,HY,7.0,1908.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.769722,-117.537222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3869,Nine Mile,3N,1994.0,10.0,10.0,10.0,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.769722,-117.537222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3869,Nine Mile,4N,1994.0,10.0,10.0,10.0,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.769722,-117.537222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3878,Yelm,1,1930.0,3.0,2.7,2.7,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,BPAT,WA,46.974912,-122.635795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3878,Yelm,2,1930.0,3.0,2.7,2.7,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,BPAT,WA,46.974912,-122.635795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3878,Yelm,3,1955.0,6.0,6.0,6.0,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.974912,-122.635795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-1,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-10,1974.0,125.4,129.9,129.9,35,WAT,Conventional Hydroelectric,OP,HY,1.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-11,1974.0,125.4,129.9,129.9,35,WAT,Conventional Hydroelectric,OS,HY,2.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-2,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-3,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-4,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OP,HY,8.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-5,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OA,HY,8.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-6,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OP,HY,8.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-7,1961.0,114.0,104.9,104.9,35,WAT,Conventional Hydroelectric,OP,HY,9.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9201754385964913,0.9201754385964913,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-8,1973.0,125.4,129.9,129.9,40,WAT,Conventional Hydroelectric,OP,HY,8.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3883,Rocky Reach,C-9,1973.0,125.4,129.9,129.9,50,WAT,Conventional Hydroelectric,OP,HY,11.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.533611,-120.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-1,1967.0,77.4,84.0,84.0,55,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-10,1969.0,77.4,89.6,89.6,55,WAT,Conventional Hydroelectric,OP,HY,1.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-2,1967.0,77.4,89.6,89.6,55,WAT,Conventional Hydroelectric,OP,HY,10.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-3,1967.0,77.4,89.6,89.6,55,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-4,1967.0,77.4,89.6,89.6,55,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-5,1967.0,77.4,84.0,84.0,55,WAT,Conventional Hydroelectric,OA,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-6,1967.0,77.4,84.0,84.0,55,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-7,1967.0,77.4,89.6,89.6,55,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-8,1968.0,77.4,84.0,84.0,55,WAT,Conventional Hydroelectric,OP,HY,10.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3886,Wells,U-9,1969.0,77.4,84.0,84.0,55,WAT,Conventional Hydroelectric,OP,HY,1.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,DOPD,WA,47.9469,-119.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,1,1961.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,7.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,10,1959.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,11.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,2,1961.0,97.8,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,5.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9713701431492843,0.9713701431492843,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,3,1960.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,9.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,4,1960.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,9.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,5,1960.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,4.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,6,1960.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,2.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,7,1960.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,1.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,8,1959.0,95.0,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,12.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3887,Priest Rapids,9,1959.0,97.8,95.0,95.0,50,WAT,Conventional Hydroelectric,OP,HY,10.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9713701431492843,0.9713701431492843,WECC,BPAT,WA,46.6451,-119.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,10A,2014.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,6.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,1A,2013.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,10.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,2A,2012.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,3A,2017.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,8.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,4A,2020.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,9.0,2020.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,5A,2012.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,2.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,6A,2016.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,7.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,7A,2011.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,4.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,8A,2018.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,11.0,2018.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3888,Wanapum,9A,2015.0,122.0,122.0,122.0,50,WAT,Conventional Hydroelectric,OP,HY,6.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,46.8731,-119.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3891,Box Canyon,1,1955.0,22.5,22.5,22.5,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.780856,-117.418337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3891,Box Canyon,2,1955.0,22.5,22.5,22.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.780856,-117.418337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3891,Box Canyon,3,1955.0,22.5,22.5,22.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.780856,-117.418337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3891,Box Canyon,4,1955.0,22.5,22.5,22.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,48.780856,-117.418337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,1,1957.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,10,1959.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,11,1960.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,12,1960.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OA,HY,5.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,13,1960.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,14,1960.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,15,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OP,HY,2.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,16,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OP,HY,2.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,17,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OP,HY,3.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,18,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OA,HY,3.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,19,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OS,HY,5.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,2,1957.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,20,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OS,HY,6.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,21,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OA,HY,11.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,22,1973.0,86.0,86.0,86.0,29,WAT,Conventional Hydroelectric,OP,HY,12.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,3,1958.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,4,1958.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,5,1958.0,89.7,92.7,92.0,24.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,6,1958.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,7,1959.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,8,1959.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,5.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,9,1959.0,78.0,78.0,78.0,24.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,F1,1957.0,14.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,6.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3895,The Dalles,F2,1957.0,14.0,14.0,14.0,14,WAT,Conventional Hydroelectric,OP,HY,7.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.614,-121.1346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3913,Alder,11,1947.0,25.0,25.2,21.0,4,WAT,Conventional Hydroelectric,OP,HY,5.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.84,WECC,TPWR,WA,46.8016,-122.3102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3913,Alder,12,1945.0,25.0,25.2,21.0,4,WAT,Conventional Hydroelectric,OP,HY,12.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.84,WECC,TPWR,WA,46.8016,-122.3102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3914,Cushman 1,21,1926.0,21.6,26.7,19.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8796296296296295,WECC,TPWR,WA,47.4181,-123.2252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3914,Cushman 1,22,1926.0,21.6,26.7,19.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8796296296296295,WECC,TPWR,WA,47.4181,-123.2252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3915,Cushman 2,31,1930.0,27.0,30.0,30.0,8,WAT,Conventional Hydroelectric,OP,HY,12.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,47.3698,-123.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3915,Cushman 2,32,1931.0,27.0,30.0,30.0,8,WAT,Conventional Hydroelectric,OP,HY,8.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,47.3698,-123.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3915,Cushman 2,33,1952.0,27.0,30.0,30.0,8,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,47.3698,-123.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3915,Cushman 2,34,2013.0,1.8,1.8,1.8,1,WAT,Conventional Hydroelectric,OP,HY,3.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,47.3698,-123.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3915,Cushman 2,35,2013.0,1.8,1.8,1.8,1,WAT,Conventional Hydroelectric,OP,HY,3.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,47.3698,-123.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3916,LaGrande,1,1912.0,6.0,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.8328,-122.3196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3916,LaGrande,2,1912.0,6.0,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.8328,-122.3196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3916,LaGrande,3,1912.0,6.0,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.8328,-122.3196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3916,LaGrande,4,1912.0,6.0,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.8328,-122.3196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3916,LaGrande,5,1945.0,40.0,40.0,40.0,8,WAT,Conventional Hydroelectric,OP,HY,9.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.8328,-122.3196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3917,Mayfield,41,1983.0,40.5,41.0,41.0,8,WAT,Conventional Hydroelectric,OP,HY,5.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.5035,-122.5885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3917,Mayfield,42,1963.0,40.5,41.0,41.0,8,WAT,Conventional Hydroelectric,OP,HY,3.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.5035,-122.5885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3917,Mayfield,43,1963.0,40.5,41.0,41.0,8,WAT,Conventional Hydroelectric,OP,HY,4.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.5035,-122.5885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3917,Mayfield,44,1963.0,40.5,41.0,41.0,8,WAT,Conventional Hydroelectric,OP,HY,6.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.5035,-122.5885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3918,Mossyrock,51,1968.0,150.0,186.0,175.3,100,WAT,Conventional Hydroelectric,OP,HY,11.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,46.5347,-122.4247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3918,Mossyrock,52,1968.0,150.0,157.0,147.0,85,WAT,Conventional Hydroelectric,OP,HY,10.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.98,WECC,TPWR,WA,46.5347,-122.4247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,1,1958.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,10,1955.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,11,1955.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,12,1955.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,13,1957.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,14,1957.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,7.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,15,1957.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,16,1957.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,17,1977.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,7.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,18,1977.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,8.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,19,1977.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,11.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,2,1958.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,7.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,20,1978.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,21,1978.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,22,1978.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,23,1978.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,9.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,24,1979.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,1.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,25,1979.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,1.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,26,1979.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,2.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,27,1979.0,95.0,95.0,95.0,95,WAT,Conventional Hydroelectric,OP,HY,5.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,3,1958.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,4,1958.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,5,1957.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,6,1956.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,7,1956.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,11.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,8,1956.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3921,Chief Joseph,9,1955.0,88.2,88.2,88.2,47.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.9951,-119.6404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3925,Ice Harbor,1,1962.0,90.0,72.0,72.0,70,WAT,Conventional Hydroelectric,OP,HY,1.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,WECC,BPAT,WA,46.249801,-118.879838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3925,Ice Harbor,2,1962.0,90.0,90.0,90.0,35.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.249801,-118.879838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3925,Ice Harbor,3,1962.0,90.0,76.0,76.0,35.7,WAT,Conventional Hydroelectric,OA,HY,3.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8444444444444444,0.8444444444444444,WECC,BPAT,WA,46.249801,-118.879838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3925,Ice Harbor,4,1975.0,111.0,87.0,87.0,42.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7837837837837838,0.7837837837837838,WECC,BPAT,WA,46.249801,-118.879838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3925,Ice Harbor,5,1975.0,111.0,87.0,87.0,42.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7837837837837838,0.7837837837837838,WECC,BPAT,WA,46.249801,-118.879838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3925,Ice Harbor,6,1976.0,111.0,87.0,87.0,42.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7837837837837838,0.7837837837837838,WECC,BPAT,WA,46.249801,-118.879838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3926,Little Goose,1,1970.0,135.0,135.0,135.0,51.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5838,-118.0273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3926,Little Goose,2,1970.0,135.0,135.0,135.0,51.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5838,-118.0273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3926,Little Goose,3,1971.0,135.0,135.0,135.0,51.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5838,-118.0273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3926,Little Goose,4,1978.0,135.0,135.0,135.0,59.7,WAT,Conventional Hydroelectric,OP,HY,2.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5838,-118.0273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3926,Little Goose,5,1978.0,135.0,135.0,135.0,59.7,WAT,Conventional Hydroelectric,OA,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5838,-118.0273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3926,Little Goose,6,1978.0,135.0,135.0,135.0,59.7,WAT,Conventional Hydroelectric,OA,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5838,-118.0273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3927,Lower Monumental,1,1969.0,135.0,135.0,135.0,53.8,WAT,Conventional Hydroelectric,OA,HY,6.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5635,-118.5397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3927,Lower Monumental,2,1969.0,135.0,135.0,135.0,53.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5635,-118.5397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3927,Lower Monumental,3,1970.0,135.0,135.0,135.0,53.8,WAT,Conventional Hydroelectric,OP,HY,2.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5635,-118.5397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3927,Lower Monumental,4,1979.0,135.0,135.0,135.0,63.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5635,-118.5397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3927,Lower Monumental,5,1979.0,135.0,115.0,115.0,63.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8518518518518519,0.8518518518518519,WECC,BPAT,WA,46.5635,-118.5397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3927,Lower Monumental,6,1979.0,135.0,135.0,135.0,63.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.5635,-118.5397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3929,Packwood,1,1964.0,27.5,26.0,26.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9454545454545454,0.9454545454545454,WECC,BPAT,WA,46.595833,-121.569444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3935,John E Amos,1,1971.0,816.3,800.0,800.0,300,BIT,Conventional Steam Coal,OP,ST,9.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9800318510351587,0.9800318510351587,RFC,PJM,WV,38.4731,-81.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.89029197994791 -3935,John E Amos,2,1972.0,816.3,800.0,800.0,300,BIT,Conventional Steam Coal,OP,ST,6.0,1972.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9800318510351587,0.9800318510351587,RFC,PJM,WV,38.4731,-81.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.235345146759638 -3935,John E Amos,3,1973.0,1300.0,1300.0,1299.0,600,BIT,Conventional Steam Coal,OP,ST,10.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9992307692307693,RFC,PJM,WV,38.4731,-81.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.377648342260365 -3943,FirstEnergy Fort Martin Power Station,1,1967.0,576.0,552.0,552.0,220,BIT,Conventional Steam Coal,OP,ST,10.0,1967.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9583333333333334,0.9583333333333334,RFC,PJM,WV,39.710833,-79.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.279708332187903 -3943,FirstEnergy Fort Martin Power Station,2,1968.0,576.0,546.0,546.0,220,BIT,Conventional Steam Coal,OP,ST,12.0,1968.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9479166666666666,0.9479166666666666,RFC,PJM,WV,39.710833,-79.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.561976642486458 -3944,FirstEnergy Harrison Power Station,1,1972.0,684.0,652.0,662.0,375,RC,Conventional Steam Coal,OP,ST,12.0,1972.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9532163742690059,0.9678362573099415,RFC,PJM,WV,39.384167,-80.3325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.869434998928085 -3944,FirstEnergy Harrison Power Station,2,1973.0,684.0,651.0,661.0,375,RC,Conventional Steam Coal,OP,ST,12.0,1973.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9517543859649122,0.966374269005848,RFC,PJM,WV,39.384167,-80.3325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.808045956967286 -3944,FirstEnergy Harrison Power Station,3,1974.0,684.0,651.0,661.0,375,RC,Conventional Steam Coal,OP,ST,12.0,1974.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9517543859649122,0.966374269005848,RFC,PJM,WV,39.384167,-80.3325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.152055379671673 -3948,Mitchell (WV),1,1971.0,816.3,770.0,770.0,370,BIT,Conventional Steam Coal,OP,ST,5.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9432806566213402,0.9432806566213402,RFC,PJM,WV,39.8297,-80.8153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.255185700328635 -3948,Mitchell (WV),2,1971.0,816.3,790.0,790.0,410,BIT,Conventional Steam Coal,OP,ST,5.0,1971.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9677814528972192,0.9677814528972192,RFC,PJM,WV,39.8297,-80.8153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.267942253904858 -3954,Mt Storm,1,1965.0,570.2,554.0,569.0,265,BIT,Conventional Steam Coal,OP,ST,9.0,1965.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.971588916169765,0.9978954752718343,RFC,PJM,WV,39.2008,-79.2636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.535144155716601 -3954,Mt Storm,2,1966.0,570.2,555.0,570.0,265,BIT,Conventional Steam Coal,OP,ST,7.0,1966.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9733426867765695,0.999649245878639,RFC,PJM,WV,39.2008,-79.2636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.589799339839365 -3954,Mt Storm,3,1973.0,522.0,520.0,537.0,300,BIT,Conventional Steam Coal,OP,ST,12.0,1973.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9961685823754789,1.0,RFC,PJM,WV,39.2008,-79.2636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.302137851283808 -3954,Mt Storm,JF1,1967.0,18.5,11.0,15.0,5,JF,Petroleum Liquids,OP,GT,10.0,1967.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.5945945945945945,0.8108108108108107,RFC,PJM,WV,39.2008,-79.2636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,1,1921.0,1.4,1.3,1.3,1.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,2,1921.0,1.4,1.3,1.3,1.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,3,1916.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OS,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,4,1896.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OS,HY,1.0,1896.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,5,1896.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OS,HY,1.0,1896.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,6,1896.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1896.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,7,1896.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OS,HY,1.0,1896.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3971,Biron,9,1896.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1896.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4306,-89.7808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3972,Du Bay,1,1942.0,1.2,1.2,1.2,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.6647,-89.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3972,Du Bay,2,1942.0,2.0,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.6647,-89.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3972,Du Bay,3,1942.0,2.0,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.6647,-89.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3972,Du Bay,4,1942.0,2.0,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.6647,-89.6511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3973,Stevens Point,1,1918.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.5153,-89.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3973,Stevens Point,2,1918.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.5153,-89.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3973,Stevens Point,3,1918.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.5153,-89.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3973,Stevens Point,4,1918.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.5153,-89.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3973,Stevens Point,5,1918.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.5153,-89.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3973,Stevens Point,6,1918.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OS,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.5153,-89.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,1,1920.0,2.3,2.3,2.3,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,10,1903.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,2,1920.0,2.3,2.3,2.3,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,3,1903.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,4,1903.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,5,1903.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,6,1903.0,0.3,0.3,0.3,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,7,1903.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,8,1903.0,0.3,0.3,0.3,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3974,Wisconsin Rapids,9,1903.0,0.6,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3939,-89.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,1,1963.0,1.2,1.2,1.2,1,WAT,Conventional Hydroelectric,OS,HY,7.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,10,1891.0,0.3,0.3,0.3,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,2,1891.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,3,1891.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OS,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,4,1891.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,5,1891.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,6,1891.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,7,1891.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,8,1891.0,0.3,0.3,0.3,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3975,Whiting,9,1891.0,0.3,0.3,0.3,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1891.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.4889,-89.5756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3976,Gordon,3,1955.0,0.7,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,46.23669,-91.785532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3976,Gordon,4,1949.0,0.7,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,8.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,46.23669,-91.785532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3976,Gordon,5,2001.0,2.8,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.2500000000000001,0.2500000000000001,MRO,MISO,WI,46.23669,-91.785532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3976,Gordon,6,2001.0,2.8,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.2500000000000001,0.2500000000000001,MRO,MISO,WI,46.23669,-91.785532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3982,Bay Front,5,1952.0,20.0,18.0,18.0,11,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1952.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,MRO,MISO,WI,46.587222,-90.9017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3982,Bay Front,6,1957.0,27.2,23.0,23.0,15,NG,Natural Gas Steam Turbine,OP,ST,1.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8455882352941176,0.8455882352941176,MRO,MISO,WI,46.587222,-90.9017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3983,Big Falls,1,1922.0,2.6,1.1,1.0,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.42307692307692313,0.3846153846153846,MRO,MISO,WI,45.491667,-91.0469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3983,Big Falls,2,1922.0,2.6,1.1,1.0,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.42307692307692313,0.3846153846153846,MRO,MISO,WI,45.491667,-91.0469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3983,Big Falls,3,1993.0,2.5,1.1,1.0,0.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.44000000000000006,0.4,MRO,MISO,WI,45.491667,-91.0469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3986,Ladysmith Dam,1,1940.0,0.9,0.3,0.3,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333326,0.33333333333333326,MRO,MISO,WI,45.464444,-91.083611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3986,Ladysmith Dam,2,1940.0,0.9,0.3,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333326,0.22222222222222232,MRO,MISO,WI,45.464444,-91.083611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3986,Ladysmith Dam,3,1983.0,1.6,0.4,0.3,0.4,WAT,Conventional Hydroelectric,OP,HY,11.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2499999999999999,0.1875,MRO,MISO,WI,45.464444,-91.083611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3988,Thornapple,1,1927.0,0.7,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5714285714285715,0.5714285714285715,MRO,MISO,WI,45.411139,-91.218283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3988,Thornapple,2,1929.0,0.7,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5714285714285715,0.5714285714285715,MRO,MISO,WI,45.411139,-91.218283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3989,White River (WI),1,1907.0,0.5,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0,7,2025,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,MRO,MISO,WI,46.498333,-90.903889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3989,White River (WI),2,1907.0,0.5,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0,7,2025,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,MRO,MISO,WI,46.498333,-90.903889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3991,Fitchburg,1,1973.0,28.8,15.3,15.3,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.53125,0.53125,MRO,MISO,WI,43.0147,-89.4603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.23720930232558 -3991,Fitchburg,2,1973.0,28.8,15.8,15.8,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5486111111111112,0.5486111111111112,MRO,MISO,WI,43.0147,-89.4603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.441860465116278 -3992,Blount Street,6,1957.0,50.0,47.2,47.2,5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9440000000000001,0.9440000000000001,MRO,MISO,WI,43.0789,-89.3744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3992,Blount Street,7,1961.0,50.0,47.9,47.9,5,NG,Natural Gas Steam Turbine,OP,ST,7.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.958,0.958,MRO,MISO,WI,43.0789,-89.3744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3993,Sycamore (WI),1,1967.0,18.0,12.2,12.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6777777777777778,0.6777777777777778,MRO,MISO,WI,43.1133,-89.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -3993,Sycamore (WI),2,1971.0,23.6,17.4,17.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7372881355932203,0.7372881355932203,MRO,MISO,WI,43.1133,-89.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -3995,Arpin Dam,1,1971.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7517,-91.2028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3995,Arpin Dam,2,1971.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7517,-91.2028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3995,Arpin Dam,3,1973.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7517,-91.2028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3998,Cedar Falls (WI),1,1915.0,2.0,1.3,1.2,1.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.65,0.6,MRO,MISO,WI,44.9367,-91.8883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3998,Cedar Falls (WI),2,1911.0,2.0,1.1,1.1,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.55,0.55,MRO,MISO,WI,44.9367,-91.8883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -3998,Cedar Falls (WI),3,1910.0,2.0,1.2,1.1,1.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.55,MRO,MISO,WI,44.9367,-91.8883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4000,Chippewa Falls,1,1928.0,3.6,1.9,1.9,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5277777777777777,0.5277777777777777,MRO,MISO,WI,44.9308,-91.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4000,Chippewa Falls,2,1928.0,3.6,2.1,2.1,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5833333333333334,0.5833333333333334,MRO,MISO,WI,44.9308,-91.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4000,Chippewa Falls,3,1928.0,3.6,2.0,2.0,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,MRO,MISO,WI,44.9308,-91.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4000,Chippewa Falls,4,1928.0,3.6,2.0,2.0,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,MRO,MISO,WI,44.9308,-91.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4000,Chippewa Falls,5,1928.0,3.6,2.0,2.0,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,MRO,MISO,WI,44.9308,-91.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4000,Chippewa Falls,6,1928.0,3.6,2.1,2.1,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5833333333333334,0.5833333333333334,MRO,MISO,WI,44.9308,-91.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4002,Dells,1,1923.0,2.9,1.9,1.9,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6551724137931034,0.6551724137931034,MRO,MISO,WI,44.828056,-91.511111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4002,Dells,2,1924.0,2.6,1.5,1.5,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5769230769230769,0.5769230769230769,MRO,MISO,WI,44.828056,-91.511111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4002,Dells,3,1924.0,2.6,1.5,1.5,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5769230769230769,0.5769230769230769,MRO,MISO,WI,44.828056,-91.511111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4002,Dells,4,1924.0,2.6,1.5,1.5,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5769230769230769,0.5769230769230769,MRO,MISO,WI,44.828056,-91.511111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4002,Dells,5,1924.0,1.6,0.9,0.9,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5625,0.5625,MRO,MISO,WI,44.828056,-91.511111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4005,French Island,1,1940.0,15.2,9.0,9.0,6,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1940.0,6,2030,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5921052631578947,0.5921052631578947,MRO,MISO,WI,43.8292,-91.2597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.915535944107372 -4005,French Island,2,1948.0,15.2,7.0,7.0,6,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1948.0,6,2030,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4605263157894737,0.4605263157894737,MRO,MISO,WI,43.8292,-91.2597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.17755095709366 -4005,French Island,3,1974.0,78.8,61.0,81.0,22,DFO,Petroleum Liquids,OP,GT,9.0,1974.0,6,2030,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7741116751269036,1.0,MRO,MISO,WI,43.8292,-91.2597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -4005,French Island,4,1974.0,78.8,58.0,78.0,22,DFO,Petroleum Liquids,OP,GT,11.0,1974.0,6,2030,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7360406091370559,0.9898477157360407,MRO,MISO,WI,43.8292,-91.2597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -4007,Holcombe,1,1950.0,11.3,7.3,7.3,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6460176991150441,0.6460176991150441,MRO,MISO,WI,45.223611,-91.127222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4007,Holcombe,2,1950.0,11.3,7.3,7.3,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6460176991150441,0.6460176991150441,MRO,MISO,WI,45.223611,-91.127222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4007,Holcombe,3,1950.0,11.3,7.3,7.3,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6460176991150441,0.6460176991150441,MRO,MISO,WI,45.223611,-91.127222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4008,Jim Falls,1,1988.0,29.6,12.3,12.3,7.4,WAT,Conventional Hydroelectric,OP,HY,8.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.41554054054054057,0.41554054054054057,MRO,MISO,WI,45.051,-91.274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4008,Jim Falls,2,1988.0,29.6,12.5,12.5,7.4,WAT,Conventional Hydroelectric,OP,HY,8.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.42229729729729726,0.42229729729729726,MRO,MISO,WI,45.051,-91.274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4008,Jim Falls,4,1988.0,0.6,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.33333333333333337,MRO,MISO,WI,45.051,-91.274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4009,Menomonie,1,1958.0,2.7,1.1,1.2,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.40740740740740744,0.4444444444444444,MRO,MISO,WI,44.884167,-91.929444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4009,Menomonie,2,1958.0,2.7,1.1,1.2,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.40740740740740744,0.4444444444444444,MRO,MISO,WI,44.884167,-91.929444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,1,1917.0,2.5,1.8,1.4,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.72,0.5599999999999999,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,2,1917.0,2.5,1.8,1.4,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.72,0.5599999999999999,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,3,1917.0,2.5,1.9,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.76,0.6,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,4,1917.0,2.5,1.9,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.76,0.6,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,5,1910.0,3.4,2.0,1.6,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5882352941176471,0.47058823529411764,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,6,1910.0,3.4,1.9,1.5,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5588235294117647,0.4411764705882353,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,7,1923.0,3.2,2.0,1.6,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.5,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4011,St Croix Falls,8,1923.0,3.2,1.9,1.5,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0,12,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.59375,0.46875,MRO,MISO,WI,45.41167,-92.6469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4012,Trego,1,1927.0,0.7,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0,11,2025,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5714285714285715,0.5714285714285715,MRO,MISO,WI,45.94794,-91.888374,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4012,Trego,2,1927.0,0.5,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0,11,2025,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,MRO,MISO,WI,45.94794,-91.888374,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4014,Wheaton,1,1973.0,48.5,44.0,56.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1973.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9072164948453608,1.0,MRO,MISO,WI,44.885416,-91.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.200241359080533 -4014,Wheaton,2,1973.0,48.5,51.0,66.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1973.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,WI,44.885416,-91.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.3874333309126 -4014,Wheaton,3,1973.0,48.5,44.0,56.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1973.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9072164948453608,1.0,MRO,MISO,WI,44.885416,-91.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.619253038490612 -4014,Wheaton,4,1973.0,48.5,47.0,61.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1973.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9690721649484536,1.0,MRO,MISO,WI,44.885416,-91.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.51049714549046 -4014,Wheaton,6,1973.0,53.1,48.0,70.0,25,DFO,Petroleum Liquids,OP,GT,6.0,1973.0,12,2025,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.903954802259887,1.0,MRO,MISO,WI,44.885416,-91.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4015,Wissota,1,1917.0,6.0,3.0,3.0,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,MRO,MISO,WI,44.9378,-91.3406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4015,Wissota,2,1917.0,7.7,3.1,3.1,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4025974025974026,0.4025974025974026,MRO,MISO,WI,44.9378,-91.3406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4015,Wissota,3,1917.0,6.0,3.0,3.0,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,MRO,MISO,WI,44.9378,-91.3406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4015,Wissota,4,1917.0,7.7,3.0,3.0,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.38961038961038963,0.38961038961038963,MRO,MISO,WI,44.9378,-91.3406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4015,Wissota,5,1917.0,6.0,2.9,2.9,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4833333333333333,0.4833333333333333,MRO,MISO,WI,44.9378,-91.3406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4015,Wissota,6,1917.0,6.0,3.0,3.0,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,MRO,MISO,WI,44.9378,-91.3406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4018,Clam River Dam,1,1942.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.9467,-92.5383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4018,Clam River Dam,2,1942.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.9467,-92.5383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4018,Clam River Dam,3,1967.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.9467,-92.5383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4019,Danbury Dam,1,1921.0,0.1,0.1,0.1,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,46,-92.3725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4019,Danbury Dam,2,1927.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,46,-92.3725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4019,Danbury Dam,HY3,1950.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,46,-92.3725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4020,Frederic Diesel,10,2000.0,2.5,2.5,2.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.997260273972607 -4020,Frederic Diesel,2,1948.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1948.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.04901960784314 -4020,Frederic Diesel,3,1949.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1949.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.04901960784314 -4020,Frederic Diesel,4,1955.0,0.7,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.04901960784314 -4020,Frederic Diesel,5,1955.0,0.6,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.875000000000004 -4020,Frederic Diesel,6,1970.0,1.8,1.7,1.7,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.977186311787072 -4020,Frederic Diesel,7,1975.0,1.7,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.020161290322584 -4020,Frederic Diesel,8,2000.0,2.5,2.5,2.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.997260273972607 -4020,Frederic Diesel,9,2000.0,2.5,2.5,2.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.654835,-92.465063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.997260273972607 -4021,Grantsburg Diesel,1A,1995.0,0.7,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,3.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.779189,-92.678047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -4021,Grantsburg Diesel,2,1963.0,0.7,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.779189,-92.678047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -4021,Grantsburg Diesel,3,1968.0,1.0,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,11.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,WI,45.779189,-92.678047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -4021,Grantsburg Diesel,4,1975.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,WI,45.779189,-92.678047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -4021,Grantsburg Diesel,8,2007.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.779189,-92.678047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -4040,Port Washington Generating Station,1CT1,2008.0,167.9,178.2,207.0,101,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,WI,43.3842,-87.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4040,Port Washington Generating Station,1CT2,2008.0,167.9,178.8,207.0,101,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,WI,43.3842,-87.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4040,Port Washington Generating Station,2CT1,2005.0,167.9,174.8,204.2,101,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,WI,43.3842,-87.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4040,Port Washington Generating Station,2CT2,2005.0,167.9,174.9,204.5,101,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,WI,43.3842,-87.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4040,Port Washington Generating Station,ST1,2008.0,268.6,265.1,265.2,131,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.986969471332837,0.9873417721518986,RFC,MISO,WI,43.3842,-87.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4040,Port Washington Generating Station,ST2,2005.0,268.6,264.7,264.3,131,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9854802680565896,0.9839910647803425,RFC,MISO,WI,43.3842,-87.8689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4041,South Oak Creek,5,1959.0,299.2,239.9,242.1,80,SUB,Conventional Steam Coal,OP,ST,12.0,1959.0,5,2024,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8018048128342247,0.8091577540106952,RFC,MISO,WI,42.8457,-87.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.179292656046282 -4041,South Oak Creek,6,1961.0,299.2,253.0,256.7,80,SUB,Conventional Steam Coal,OP,ST,12.0,1961.0,5,2024,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8455882352941176,0.8579545454545454,RFC,MISO,WI,42.8457,-87.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.790555327848509 -4041,South Oak Creek,7,1965.0,317.6,304.1,308.0,80,SUB,Conventional Steam Coal,OP,ST,3.0,1965.0,5,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9574937027707808,0.9697732997481108,RFC,MISO,WI,42.8457,-87.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.280839581936123 -4041,South Oak Creek,8,1967.0,324.0,311.4,315.4,80,SUB,Conventional Steam Coal,OP,ST,10.0,1967.0,5,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.961111111111111,0.9734567901234568,RFC,MISO,WI,42.8457,-87.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.465088713192415 -4042,Valley (WI),1,1968.0,136.0,124.7,88.3,20,NG,Natural Gas Steam Turbine,OP,ST,6.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9169117647058824,0.6492647058823529,RFC,MISO,WI,43.0303,-87.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.937365446460304 -4042,Valley (WI),2,1969.0,136.0,139.2,140.1,20,NG,Natural Gas Steam Turbine,OP,ST,3.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,WI,43.0303,-87.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.071596769540047 -4042,Valley (WI),3,1969.0,2.7,2.7,2.7,1,DFO,Petroleum Liquids,SB,IC,3.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.0303,-87.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4043,Appleton,4,1980.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.25393,-88.40956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4043,Appleton,5,1916.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.25393,-88.40956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4043,Appleton,6,1916.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.25393,-88.40956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4044,Oconto Falls Upper,1,1924.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.8764,-88.1475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4044,Oconto Falls Upper,2,1921.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.8764,-88.1475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4044,Oconto Falls Upper,3,1918.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.8764,-88.1475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4045,Pine,1,1922.0,1.6,1.6,1.6,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.8275,-88.2483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4045,Pine,2,1922.0,1.6,1.6,1.6,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.8275,-88.2483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4046,Point Beach Nuclear Plant,1,1970.0,643.0,595.4,599.6,150,NUC,Nuclear,OP,ST,12.0,1970.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9259720062208397,0.9325038880248834,RFC,MISO,WI,44.2806,-87.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4046,Point Beach Nuclear Plant,2,1972.0,643.0,600.6,606.2,150,NUC,Nuclear,OP,ST,10.0,1972.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9340590979782271,0.9427682737169518,RFC,MISO,WI,44.2806,-87.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4046,Point Beach Nuclear Plant,5,1969.0,25.0,15.0,18.0,4,DFO,Petroleum Liquids,OP,GT,6.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6,0.72,RFC,MISO,WI,44.2806,-87.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.639344262295082 -4050,Edgewater,5,1985.0,413.7,409.1,409.3,85,SUB,Conventional Steam Coal,OP,ST,3.0,1985.0,6,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9888808315204255,0.9893642736282331,MRO,MISO,WI,43.715142,-87.705863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.06293746971153 -4053,Kilbourn,2,1939.0,2.5,9.5,9.5,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,43.625845,-89.780764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4053,Kilbourn,HC1,1926.0,2.2,,,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.625845,-89.780764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4053,Kilbourn,HC5,1935.0,2.5,,,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.625845,-89.780764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4053,Kilbourn,HC6,1937.0,2.5,,,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.625845,-89.780764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,1,1915.0,3.5,29.0,29.0,0.7,WAT,Conventional Hydroelectric,OP,HY,10.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,2,1915.0,4.3,,,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,3,1920.0,4.8,,,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,4,1922.0,4.8,,,1,WAT,Conventional Hydroelectric,OP,HY,2.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,5,1938.0,4.0,,,0.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,6,1938.0,4.0,,,0.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,7,1940.0,4.0,,,0.7,WAT,Conventional Hydroelectric,OP,HY,11.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4056,Prairie Du Sac,8,1940.0,4.0,,,0.7,WAT,Conventional Hydroelectric,OP,HY,10.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,MRO,MISO,WI,43.309932,-89.727778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4060,Alexander,1,1925.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1875,-89.7553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4060,Alexander,2,1925.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1875,-89.7553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4060,Alexander,3,1925.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1875,-89.7553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4061,Caldron Falls,1,1924.0,3.2,3.2,3.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.3569,-88.2306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4061,Caldron Falls,2,1924.0,3.2,3.2,3.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.3569,-88.2306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4063,Grandfather Falls,1,1938.0,11.0,11.0,11.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.3019,-89.7917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4063,Grandfather Falls,2,1938.0,6.2,6.2,6.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.3019,-89.7917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4064,Hat Rapids,1,1923.0,0.8,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.5711,-89.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4064,Hat Rapids,2A,1984.0,0.5,0.5,0.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.5711,-89.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4064,Hat Rapids,3A,1984.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.5711,-89.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4065,High Falls (WI),1,1910.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2794,-88.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4065,High Falls (WI),2,1910.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2794,-88.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4065,High Falls (WI),3,1910.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2794,-88.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4065,High Falls (WI),4,1910.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2794,-88.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4065,High Falls (WI),5,1910.0,1.4,1.4,1.4,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2794,-88.1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4067,Johnson Falls,1,1923.0,1.7,1.7,1.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2875,-88.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4067,Johnson Falls,2,1923.0,1.7,1.7,1.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2875,-88.1603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4068,Merrill,1,1917.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1786,-89.685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4068,Merrill,2,1917.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1786,-89.685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4068,Merrill,3,1984.0,1.5,1.5,1.5,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1786,-89.685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4071,Potato Rapids,1,1926.0,0.5,0.5,0.5,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1136,-87.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4071,Potato Rapids,2,1921.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1136,-87.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4071,Potato Rapids,3,1921.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1136,-87.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4072,Pulliam,31,2003.0,91.0,79.8,106.3,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8769230769230769,1.0,MRO,MISO,WI,44.54,-88.0086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4074,Sandstone Rapids,1,1925.0,1.9,1.9,1.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2333,-88.0678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4074,Sandstone Rapids,2,1925.0,1.9,1.9,1.9,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.2333,-88.0678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4075,Tomahawk,1,1938.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.4411,-89.7306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4075,Tomahawk,2,1938.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.4411,-89.7306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4076,West Marinette,31,1971.0,41.8,36.8,47.9,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0,5,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8803827751196172,1.0,MRO,MISO,WI,45.0869,-87.6881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4076,West Marinette,32,1973.0,41.8,35.6,46.3,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1973.0,5,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8516746411483255,1.0,MRO,MISO,WI,45.0869,-87.6881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4076,West Marinette,33,1993.0,103.5,78.2,104.1,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7555555555555555,1.0,MRO,MISO,WI,45.0869,-87.6881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4077,Wausau,1,1921.0,1.8,1.8,1.8,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.9575,-89.6367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4077,Wausau,2,1921.0,1.8,1.8,1.8,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.9575,-89.6367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4077,Wausau,3,1924.0,1.8,1.8,1.8,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.9575,-89.6367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4078,Weston,2,1960.0,81.6,75.4,80.3,24,NG,Natural Gas Steam Turbine,OS,ST,9.0,1960.0,1,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9240196078431374,0.9840686274509804,MRO,MISO,WI,44.8606,-89.6553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4078,Weston,3,1981.0,350.5,334.7,339.8,70,SUB,Conventional Steam Coal,OP,ST,12.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9549215406562054,0.9694721825962911,MRO,MISO,WI,44.8606,-89.6553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.809193292988864 -4078,Weston,31,1969.0,19.6,18.2,27.1,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1969.0,6,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9285714285714285,1.0,MRO,MISO,WI,44.8606,-89.6553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4078,Weston,32,1973.0,56.7,45.8,62.6,19.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0,6,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8077601410934743,1.0,MRO,MISO,WI,44.8606,-89.6553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4078,Weston,4,2008.0,595.0,553.2,558.5,230,SUB,Conventional Steam Coal,OP,ST,7.0,2008.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9297478991596639,0.938655462184874,MRO,MISO,WI,44.8606,-89.6553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.873182872541802 -4079,Castle Rock,1,1951.0,3.0,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,MRO,MISO,WI,43.8656,-89.9514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4079,Castle Rock,2,1950.0,3.0,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,MRO,MISO,WI,43.8656,-89.9514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4079,Castle Rock,3,1950.0,3.0,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,MRO,MISO,WI,43.8656,-89.9514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4079,Castle Rock,4,1950.0,3.0,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,MRO,MISO,WI,43.8656,-89.9514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4079,Castle Rock,5,1950.0,3.0,2.8,2.8,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,MRO,MISO,WI,43.8656,-89.9514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4080,Petenwell,1,1949.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.0572,-90.0217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4080,Petenwell,2,1949.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.0572,-90.0217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4080,Petenwell,3,1949.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.0572,-90.0217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4080,Petenwell,4,1950.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.0572,-90.0217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4100,Arcadia Electric,1,1956.0,1.3,1.3,1.3,1,DFO,Petroleum Liquids,SB,IC,1.0,1956.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.105149752208575 -4100,Arcadia Electric,10,2007.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,5.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.10518207282913 -4100,Arcadia Electric,2,1947.0,1.0,1.0,1.0,0.8,DFO,Petroleum Liquids,SB,IC,1.0,1947.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.105135387488325 -4100,Arcadia Electric,3,1940.0,0.4,0.4,0.4,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1940.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.10527544351074 -4100,Arcadia Electric,4,1930.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1930.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.10504201680672 -4100,Arcadia Electric,5,1972.0,3.0,3.0,3.0,2,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.105166511048864 -4100,Arcadia Electric,6,1987.0,3.0,3.0,3.0,2,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.105166511048864 -4100,Arcadia Electric,7,2002.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.10518207282913 -4100,Arcadia Electric,8,2002.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.10518207282913 -4100,Arcadia Electric,9,2002.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.2524,-91.5034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.10518207282913 -4102,Barron,1A,1998.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,2A,1998.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,3A,1998.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,4,1998.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,7,1944.0,0.8,0.6,0.6,0.4,DFO,Petroleum Liquids,OS,IC,3.0,1944.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,8,1954.0,1.3,1.3,1.3,0.6,DFO,Petroleum Liquids,SB,IC,3.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,9,1960.0,2.0,2.0,2.0,0.8,DFO,Petroleum Liquids,SB,IC,3.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4102,Barron,H2,1923.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.40193,-91.840382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4107,Cashton,3,1932.0,0.4,0.4,0.4,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1932.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.742874,-90.780325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745089285714284 -4107,Cashton,5,1970.0,1.1,1.1,1.1,1.1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.742874,-90.780325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.744967532467532 -4107,Cashton,6,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.742874,-90.780325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.744910714285714 -4112,Cumberland (WI),1,1945.0,0.7,0.7,0.7,0.6,DFO,Petroleum Liquids,OP,IC,2.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.122562674094707 -4112,Cumberland (WI),2,1939.0,0.3,0.3,0.3,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1939.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.1235 -4112,Cumberland (WI),3,1939.0,0.3,0.3,0.3,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1939.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.1235 -4112,Cumberland (WI),4,1954.0,1.3,1.2,1.2,1.2,DFO,Petroleum Liquids,OP,IC,5.0,1954.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.12287988923503 -4112,Cumberland (WI),5,1966.0,2.0,2.1,2.1,2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.123603090077252 -4112,Cumberland (WI),6,1979.0,7.2,6.7,6.7,6.7,DFO,Petroleum Liquids,OP,IC,4.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9305555555555556,0.9305555555555556,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.123291666666667 -4112,Cumberland (WI),7,2001.0,6.6,6.2,6.2,6.2,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9393939393939394,0.9393939393939394,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.123295454545454 -4112,Cumberland (WI),8,2001.0,3.5,3.5,3.5,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.5336,-92.0224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.12343033471907 -4113,Elroy,1A,2005.0,2.3,2.2,2.3,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9565217391304349,1.0,MRO,MISO,WI,43.7395,-90.2675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.400612205854218 -4113,Elroy,2A,2005.0,2.3,2.2,2.3,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9565217391304349,1.0,MRO,MISO,WI,43.7395,-90.2675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.400612205854218 -4113,Elroy,5,1973.0,2.0,2.2,2.2,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.7395,-90.2675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.401100110011003 -4114,Fennimore,4,1964.0,1.1,1.1,1.1,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.9828,-90.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.008748317631227 -4114,Fennimore,5,1952.0,0.9,0.9,0.9,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.9828,-90.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.004934210526315 -4114,Fennimore,6,1999.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.9828,-90.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.00452302631579 -4114,Fennimore,7,1999.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.9828,-90.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.00452302631579 -4114,Fennimore,8,1999.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.9828,-90.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.00452302631579 -4118,Kaukauna Gas Turbine,GT1,1969.0,18.0,15.8,18.3,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8777777777777778,1.0,MRO,MISO,WI,44.276199,-88.265445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.509601181683898 -4119,Little Chute,1,1948.0,1.1,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.279897,-88.25558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4119,Little Chute,2,1948.0,1.1,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.279897,-88.25558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4119,Little Chute,3,1948.0,1.1,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.279897,-88.25558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4120,New Badger,3,2014.0,4.1,4.0,4.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9756097560975611,0.9756097560975611,MRO,MISO,WI,44.2772,-88.2678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4120,New Badger,4,2014.0,4.1,4.0,4.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9756097560975611,0.9756097560975611,MRO,MISO,WI,44.2772,-88.2678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4122,Rapide Croche,1,1926.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3164,-88.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4122,Rapide Croche,2,1926.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3164,-88.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4122,Rapide Croche,3,1926.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3164,-88.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4122,Rapide Croche,4,1926.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3164,-88.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4124,La Farge,2A,1990.0,1.5,1.5,1.5,1.4,DFO,Petroleum Liquids,OP,IC,10.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.5722,-90.6391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.692307692307692 -4125,Manitowoc,5,1955.0,22.0,22.0,22.0,6,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.082,-87.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4125,Manitowoc,6,1962.0,32.0,22.0,22.0,6,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1962.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6875,0.6875,MRO,MISO,WI,44.082,-87.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4125,Manitowoc,9,2007.0,63.4,58.4,58.4,14,PC,Petroleum Coke,OP,ST,4.0,2007.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9211356466876972,0.9211356466876972,MRO,MISO,WI,44.082,-87.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.310568967976451 -4130,New Lisbon,2,1966.0,1.3,1.2,1.2,1.1,DFO,Petroleum Liquids,OP,IC,1.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,MISO,WI,43.8797,-90.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.479733481399222 -4130,New Lisbon,5,1977.0,2.4,2.4,2.4,2.3,DFO,Petroleum Liquids,OP,IC,1.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.8797,-90.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.477522177116223 -4130,New Lisbon,6,2005.0,2.3,2.0,2.1,2,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.9130434782608696,MRO,MISO,WI,43.8797,-90.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.479209163659187 -4130,New Lisbon,7,2005.0,2.3,2.0,2.1,2,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.9130434782608696,MRO,MISO,WI,43.8797,-90.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.479209163659187 -4139,Viola,3,2002.0,1.8,1.8,1.8,1.7,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.507,-90.669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.142857142857142 -4142,Flambeau Hydroelectric Station,1,1951.0,7.9,8.1,8.1,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.491826,-91.047211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4142,Flambeau Hydroelectric Station,2,1951.0,6.2,8.0,8.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.491826,-91.047211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4142,Flambeau Hydroelectric Station,3,1951.0,7.9,8.0,8.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.491826,-91.047211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4147,Stiles,1,1949.0,0.5,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,MRO,MISO,WI,44.8747,-88.1586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4147,Stiles,2,1949.0,0.5,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,MRO,MISO,WI,44.8747,-88.1586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4148,Washington Island,2,1952.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727272 -4148,Washington Island,3,1945.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1945.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727272 -4148,Washington Island,4,1951.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,OP,IC,4.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727272 -4148,Washington Island,5,1968.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727273 -4148,Washington Island,6,1972.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,OP,IC,7.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727273 -4148,Washington Island,7,1997.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727272 -4148,Washington Island,8,1997.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,45.370922,-86.930822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.272727272727272 -4158,Dave Johnston,1,1959.0,133.6,93.0,99.0,45,SUB,Conventional Steam Coal,OP,ST,2.0,1959.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6961077844311377,0.7410179640718564,WECC,PACE,WY,42.8378,-105.7769,Dave_Johnston_1,ST-Col,False,6.0,12.0,-1.0,2.12,2.12,15715.93,988.98,1.0,1.79,106.0,9.685723357349437,25.304992206328855,0.0707161809294389,-1.3602835553965444,441.00867388345495,10.035705005290414,#TRUE#,#1959-02-01#,#2027-12-31#,Existing,PAWY,BS_PACE,55.0,106.0,98.0,WY,Coal,,#FALSE#,55,106, -4158,Dave Johnston,2,1961.0,133.6,102.0,106.0,45,SUB,Conventional Steam Coal,OP,ST,1.0,1961.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7634730538922156,0.7934131736526946,WECC,PACE,WY,42.8378,-105.7769,Dave_Johnston_2,ST-Col,False,6.0,12.0,-1.0,2.12,2.12,15715.93,988.98,1.0,1.79,106.0,10.5318410914288,27.509891535551677,0.07694824950579934,-1.4876179932137528,479.84792201391156,10.912317682600479,#TRUE#,#1961-01-01#,#2027-12-31#,Existing,PAWY,BS_PACE,55.0,106.0,104.0,WY,Coal,,#FALSE#,55,106, -4158,Dave Johnston,3,1964.0,255.0,220.0,220.0,100,SUB,Conventional Steam Coal,OP,ST,12.0,1964.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8627450980392157,0.8627450980392157,WECC,PACE,WY,42.8378,-105.7769,Dave_Johnston_3,ST-Col,False,6.0,12.0,-1.0,4.4,4.4,32617.97,2052.6,1.0,1.79,220.0,10.608200643025642,-20.248902045667634,0.03793246134381554,-1.9121325728915384,981.2922536536503,10.476402729627655,#TRUE#,#1964-12-01#,#2027-12-31#,Existing,PAWY,BS_PACE,120.0,220.0,225.0,WY,Coal,,#FALSE#,120,220, -4158,Dave Johnston,4,1972.0,400.0,330.0,330.0,125,SUB,Conventional Steam Coal,OP,ST,7.0,1972.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.825,0.825,WECC,PACE,WY,42.8378,-105.7769,Dave_Johnston_4,ST-Col,False,6.0,12.0,-1.0,6.6,6.6,48926.96,4620.0,1.0,1.79,330.0,10.805560844864551,-31.167037955658856,0.025777151815441775,-1.9568001200798038,1500.1854434892184,10.67031892540681,#TRUE#,#1972-07-01#,#2027-12-31#,Existing,PAWY,BS_PACE,180.0,330.0,338.0,WY,Coal,,#FALSE#,180,330, -4162,Naughton,1,1963.0,192.0,156.0,156.0,21,SUB,Conventional Steam Coal,OP,ST,5.0,1963.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8125,0.8125,WECC,PACE,WY,41.7581,-110.5983,Naughton1,ST-Col,False,48.0,108.0,-1.0,5.46,5.46,18250.67,1455.48,1.0,2.4,156.0,11.778950537472845,-47.59631720691038,0.050364230520373594,2.7281949888239025,298.25451544776945,11.085224045252449,#TRUE#,#1963-05-01#,#2029-12-31#,Existing,PAWY,BS_PACE,35.657,156.0,125.7019,WY,Coal,,#FALSE#,35.657,156,11.086174517371026 -4162,Naughton,2,1968.0,256.0,201.0,201.0,28,SUB,Conventional Steam Coal,OP,ST,10.0,1968.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.78515625,0.78515625,WECC,PACE,WY,41.7581,-110.5983,Naughton2,ST-Col,False,48.0,108.0,-1.0,7.035,7.035,23515.28,1875.33,1.0,2.4,201.0,10.332902357044492,16.249651737137444,0.031045408049821633,2.8831906285134936,406.96534027425736,10.50302839350289,#TRUE#,#1968-10-01#,#2029-12-31#,Existing,PAWY,BS_PACE,53.6,201.0,226.0,WY,Coal,,#FALSE#,53.6,201,11.836086118657418 -4162,Naughton,3,1971.0,384.0,247.0,247.0,50,NG,Natural Gas Steam Turbine,OP,ST,10.0,1971.0,12,2029,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6432291666666667,0.6432291666666667,WECC,PACE,WY,41.7581,-110.5983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.14500511079758 -4176,Fremont Canyon,1,1961.0,33.4,33.4,33.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.4766,-106.795901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4176,Fremont Canyon,2,1960.0,33.4,33.4,33.4,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.4766,-106.795901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4177,Glendo,1,1958.0,19.0,19.0,17.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9210526315789473,WECC,WAUW,WY,42.467254,-104.955526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4177,Glendo,2,1959.0,19.0,19.0,19.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.467254,-104.955526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4178,Guernsey,1,1927.0,3.2,3.2,2.9,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9062499999999999,WECC,WAUW,WY,42.289868,-104.760634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4178,Guernsey,2,1928.0,3.2,3.2,3.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.289868,-104.760634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4180,Kortes,1,1951.0,12.0,12.2,12.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.174301,-106.880543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4180,Kortes,2,1950.0,12.0,12.2,12.2,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.174301,-106.880543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4180,Kortes,3,1950.0,12.0,12.2,12.2,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.174301,-106.880543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4182,Seminoe,1,1939.0,17.2,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.156127,-106.908483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4182,Seminoe,2,1939.0,17.2,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.156127,-106.908483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4182,Seminoe,3,1939.0,17.2,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.156127,-106.908483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4183,Shoshone (WY),1,1922.0,3.0,3.0,3.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,44.502897,-109.181228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4185,Fontenelle,1,1968.0,10.0,11.2,11.2,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.027013,-110.063973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4195,Powerlane Plant,EP,2010.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,TRE,ERCO,TX,33.1707,-96.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4195,Powerlane Plant,EP2,2010.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,TRE,ERCO,TX,33.1707,-96.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4195,Powerlane Plant,EP3,2010.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,TRE,ERCO,TX,33.1707,-96.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4195,Powerlane Plant,ST1,1966.0,18.8,18.0,18.0,10,NG,Natural Gas Steam Turbine,OP,ST,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9574468085106382,0.9574468085106382,TRE,ERCO,TX,33.1707,-96.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4195,Powerlane Plant,ST2,1967.0,25.0,23.0,23.0,10,NG,Natural Gas Steam Turbine,OP,ST,8.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.92,0.92,TRE,ERCO,TX,33.1707,-96.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4195,Powerlane Plant,ST3,1978.0,43.2,41.0,41.0,13,NG,Natural Gas Steam Turbine,OP,ST,8.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.949074074074074,0.949074074074074,TRE,ERCO,TX,33.1707,-96.1264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4201,Combined Locks,HC1,1988.0,3.1,3.1,3.1,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.273511,-88.300548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4201,Combined Locks,HC2,1988.0,3.1,3.1,3.1,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.273511,-88.300548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4204,Island Park,HY1,1994.0,2.4,2.4,2.4,0.8,WAT,Conventional Hydroelectric,OP,HY,4.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.418293,-111.395971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4204,Island Park,HY2,1994.0,2.4,2.4,2.4,0.8,WAT,Conventional Hydroelectric,OP,HY,4.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.418293,-111.395971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4213,PHP 1,1,1982.0,23.7,24.0,24.0,12,WAT,Conventional Hydroelectric,OP,HY,2.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.481708,-122.083188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4214,PHP 2,2,1982.0,11.8,13.5,13.5,0.9,WAT,Conventional Hydroelectric,OP,HY,2.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PGE,OR,45.448977,-122.151257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4251,Logan City,1,2002.0,5.3,4.5,5.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8490566037735849,0.9811320754716982,WECC,PACE,UT,41.725833,-111.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.783482349987905 -4251,Logan City,2,2002.0,5.3,4.5,5.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8490566037735849,0.9811320754716982,WECC,PACE,UT,41.725833,-111.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.783482349987905 -4251,Logan City,3,2002.0,5.3,4.5,5.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8490566037735849,0.9811320754716982,WECC,PACE,UT,41.725833,-111.8433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.783482349987905 -4256,Walnut,1,1986.0,24.9,23.5,24.9,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9437751004016065,1.0,WECC,TIDC,CA,37.4903,-120.9044,Walnut 1,GT Aero_LM2500,False,1.0,1.0,-1.0,2.48,2.48,1463.935,5.456,1.0,0.56,24.8,4.4259352971105885,99.10240335107302,-7.020846306614069e-06,4.42618776673746,99.10022270945186,10.170449290232202,#TRUE#,#1986-04-01#,#2050-12-31#,Existing,TIDC,CA_TIDC,12.4,24.8,0.0,CA,NG,Industrial,#FALSE#,12.4,24.8,14.129483725113786 -4256,Walnut,2,1986.0,24.9,23.5,24.9,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9437751004016065,1.0,WECC,TIDC,CA,37.4903,-120.9044,Walnut 2,GT Aero_LM2500,False,1.0,1.0,-1.0,2.48,2.48,1463.935,5.456,1.0,0.56,24.8,4.4259352971105885,99.10240335107302,-7.020846306614069e-06,4.42618776673746,99.10022270945186,10.170449290232202,#TRUE#,#1986-04-01#,#2050-12-31#,Existing,TIDC,CA_TIDC,12.4,24.8,0.0,CA,NG,Industrial,#FALSE#,12.4,24.8,14.129483725113786 -4257,Easton 2,201,1995.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,OP,IC,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.155342507212348 -4257,Easton 2,202,1995.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,OP,IC,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.155342507212348 -4257,Easton 2,203,2004.0,5.4,4.5,5.1,0,DFO,Petroleum Liquids,OP,GT,11.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333333,0.9444444444444443,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.231132075471699 -4257,Easton 2,204,2004.0,5.4,4.5,5.1,0,DFO,Petroleum Liquids,OP,GT,11.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8333333333333333,0.9444444444444443,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.231132075471699 -4257,Easton 2,21,1978.0,6.2,6.2,6.2,0,DFO,Petroleum Liquids,OP,IC,3.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.155332845975696 -4257,Easton 2,22,1978.0,6.2,6.2,6.2,0,DFO,Petroleum Liquids,OP,IC,3.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.155332845975696 -4257,Easton 2,23,1989.0,6.3,6.3,6.3,0,DFO,Petroleum Liquids,OP,IC,6.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.155334728033473 -4257,Easton 2,24,1989.0,6.3,6.3,6.3,0,DFO,Petroleum Liquids,OP,IC,6.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.795,-76.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.155334728033473 -4258,Greenup Hydro,1,1982.0,23.4,23.4,23.4,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,38.6472,-82.8594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4258,Greenup Hydro,2,1982.0,23.4,23.4,23.4,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,38.6472,-82.8594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4258,Greenup Hydro,3,1982.0,23.4,23.4,23.4,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,38.6472,-82.8594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4263,Echo Dam,3,1987.0,1.0,1.0,0.9,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,WECC,PACE,UT,40.964828,-111.433937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4263,Echo Dam,NA1,1987.0,1.7,1.7,1.7,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.964828,-111.433937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4263,Echo Dam,NA2,1987.0,1.7,1.7,1.7,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.964828,-111.433937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4266,Spencer,4,1966.0,61.1,61.0,61.0,10,NG,Natural Gas Steam Turbine,OP,ST,6.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9983633387888707,0.9983633387888707,TRE,ERCO,TX,33.1975,-97.1061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.677261306532664 -4266,Spencer,5,1973.0,65.4,61.0,61.0,10,NG,Natural Gas Steam Turbine,OP,ST,5.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9327217125382262,0.9327217125382262,TRE,ERCO,TX,33.1975,-97.1061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.787530775951076 -4270,Waterford 3,3,1985.0,1199.8,1164.5,1173.5,200,NUC,Nuclear,OP,ST,9.0,1985.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9705784297382898,0.9780796799466578,SERC,MISO,LA,29.995267,-90.471581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4271,John P Madgett,1,1979.0,387.0,389.8,392.5,125,SUB,Conventional Steam Coal,OP,ST,11.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.303583,-91.912647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4937,Thomas C Ferguson,CT-1,2014.0,185.3,168.0,181.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9066378845116028,0.9767943874797624,TRE,ERCO,TX,30.558,-98.3721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.68456342834966 -4937,Thomas C Ferguson,CT-2,2014.0,185.3,168.0,181.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9066378845116028,0.9767943874797624,TRE,ERCO,TX,30.558,-98.3721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.701552019059354 -4937,Thomas C Ferguson,STG,2014.0,204.0,180.0,194.0,75,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8823529411764706,0.9509803921568627,TRE,ERCO,TX,30.558,-98.3721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4939,Barney M Davis,1,1974.0,352.0,292.0,292.0,60,NG,Natural Gas Steam Turbine,OP,ST,5.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8295454545454546,0.8295454545454546,TRE,ERCO,TX,27.6064,-97.3117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.2508229387143 -4939,Barney M Davis,2,1976.0,351.0,319.0,325.0,100,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1976.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9088319088319088,0.9259259259259259,TRE,ERCO,TX,27.6064,-97.3117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4939,Barney M Davis,3,2010.0,189.6,157.0,165.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280590717299579,0.870253164556962,TRE,ERCO,TX,27.6064,-97.3117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.122996959785654 -4939,Barney M Davis,4,2010.0,189.6,157.0,165.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280590717299579,0.870253164556962,TRE,ERCO,TX,27.6064,-97.3117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.232561078092653 -4940,Riverside (OK),1,1974.0,473.0,454.0,454.0,126,NG,Natural Gas Steam Turbine,OP,ST,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.959830866807611,0.959830866807611,MRO,SWPP,OK,35.9978,-95.9567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4940,Riverside (OK),2,1976.0,473.0,455.0,455.0,65,NG,Natural Gas Steam Turbine,OP,ST,5.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9619450317124736,0.9619450317124736,MRO,SWPP,OK,35.9978,-95.9567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4940,Riverside (OK),3,2008.0,86.5,79.0,79.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9132947976878613,0.9132947976878613,MRO,SWPP,OK,35.9978,-95.9567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4940,Riverside (OK),4,2008.0,86.5,79.0,79.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9132947976878613,0.9132947976878613,MRO,SWPP,OK,35.9978,-95.9567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -4940,Riverside (OK),IC1,1976.0,2.7,2.8,2.8,2.8,DFO,Petroleum Liquids,OP,IC,10.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,35.9978,-95.9567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -5083,Cumberland (NJ),CUMB,1990.0,99.4,86.9,104.1,78.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8742454728370221,1.0,RFC,PJM,NJ,39.3757,-74.9654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -5083,Cumberland (NJ),CUMB2,2009.0,131.8,96.5,102.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7321699544764795,0.7738998482549316,RFC,PJM,NJ,39.3757,-74.9654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6000,Donald C Cook,1,1975.0,1152.0,1009.0,1084.0,1006,NUC,Nuclear,OP,ST,8.0,1975.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8758680555555556,0.9409722222222222,RFC,PJM,MI,41.975604,-86.565206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6000,Donald C Cook,2,1978.0,1133.3,1168.0,1194.0,1053,NUC,Nuclear,OP,ST,7.0,1978.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,MI,41.975604,-86.565206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6001,Joseph M Farley,1,1977.0,888.2,895.0,895.0,250,NUC,Nuclear,OP,ST,12.0,1977.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,31.2231,-85.1116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6001,Joseph M Farley,2,1981.0,888.2,896.0,896.0,250,NUC,Nuclear,OP,ST,7.0,1981.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,31.2231,-85.1116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6002,James H Miller Jr,1,1978.0,705.5,687.8,687.8,300,SUB,Conventional Steam Coal,OP,ST,10.0,1978.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9749114103472714,0.9749114103472714,SERC,SOCO,AL,33.6319,-87.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.597020331251526 -6002,James H Miller Jr,2,1985.0,705.5,692.7,692.7,300,SUB,Conventional Steam Coal,OP,ST,5.0,1985.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9818568391211907,0.9818568391211907,SERC,SOCO,AL,33.6319,-87.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.047966889080529 -6002,James H Miller Jr,3,1989.0,705.5,693.0,693.0,300,SUB,Conventional Steam Coal,OP,ST,5.0,1989.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9822820694542878,0.9822820694542878,SERC,SOCO,AL,33.6319,-87.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.623965485400412 -6002,James H Miller Jr,4,1991.0,705.5,704.0,704.0,300,SUB,Conventional Steam Coal,OP,ST,3.0,1991.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9978738483345145,0.9978738483345145,SERC,SOCO,AL,33.6319,-87.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.827451455423375 -6004,Pleasants Power Station,1,1979.0,684.0,639.0,650.0,300,BIT,Conventional Steam Coal,OP,ST,4.0,1979.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9342105263157895,0.9502923976608187,RFC,PJM,WV,39.366667,-81.294444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.131853954591932 -6004,Pleasants Power Station,2,1980.0,684.0,639.0,650.0,300,BIT,Conventional Steam Coal,OP,ST,12.0,1980.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9342105263157895,0.9502923976608187,RFC,PJM,WV,39.366667,-81.294444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.245537702655291 -6006,Racine,1,1983.0,23.7,10.0,13.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.42194092827004226,0.5485232067510548,RFC,PJM,OH,38.9153,-81.9081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6006,Racine,2,1982.0,23.7,10.0,13.0,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.42194092827004226,0.5485232067510548,RFC,PJM,OH,38.9153,-81.9081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6008,Palo Verde,1,1986.0,1403.2,1311.0,1333.0,110,NUC,Nuclear,OP,ST,1.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9342930444697833,0.9499714937286202,WECC,SRP,AZ,33.3881,-112.8617,Palo Verde 1,ST-NUC,True,1.0,1.0,-1.0,6.98,6.98,170531.1,0.0,1.0,5.633296,1333.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,TH_PV,SW_TH_PV,1333.0,1333.0,1372.2,AZ,Uranium,,#FALSE#,1333,1333, -6008,Palo Verde,2,1986.0,1403.2,1314.0,1336.0,110,NUC,Nuclear,OP,ST,9.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9364310148232611,0.9521094640820981,WECC,SRP,AZ,33.3881,-112.8617,Palo Verde 2,ST-NUC,True,1.0,1.0,-1.0,6.98,6.98,170902.9,0.0,1.0,5.633296,1336.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1986-09-01#,#2050-12-31#,Existing,TH_PV,SW_TH_PV,1336.0,1336.0,1375.05,AZ,Uranium,,#FALSE#,1336,1336, -6008,Palo Verde,3,1988.0,1403.2,1312.0,1334.0,110,NUC,Nuclear,OP,ST,1.0,1988.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.935005701254276,0.9506841505131128,WECC,SRP,AZ,33.3881,-112.8617,Palo Verde 3,ST-NUC,True,1.0,1.0,-1.0,6.98,6.98,170655.0,0.0,1.0,5.633296,1334.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1988-01-01#,#2050-12-31#,Existing,TH_PV,SW_TH_PV,1334.0,1334.0,1373.15,AZ,Uranium,,#FALSE#,1334,1334, -6009,White Bluff,1,1980.0,900.0,817.4,823.4,200,SUB,Conventional Steam Coal,OP,ST,8.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9082222222222222,0.9148888888888889,SERC,MISO,AR,34.4228,-92.1406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.360696766525429 -6009,White Bluff,2,1981.0,900.0,820.6,826.6,200,SUB,Conventional Steam Coal,OP,ST,8.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9117777777777778,0.9184444444444445,SERC,MISO,AR,34.4228,-92.1406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.19137021218193 -6011,Calvert Cliffs Nuclear Power Plant,1,1975.0,918.0,866.0,920.6,50,NUC,Nuclear,OP,ST,5.0,1975.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9433551198257081,1.0,RFC,PJM,MD,38.4344,-76.4417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6011,Calvert Cliffs Nuclear Power Plant,2,1977.0,932.4,841.8,895.1,50,NUC,Nuclear,OP,ST,4.0,1977.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9028314028314028,0.95999570999571,RFC,PJM,MD,38.4344,-76.4417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6012,Sherman,GEN1,1926.0,7.2,6.1,6.2,3,WAT,Conventional Hydroelectric,OP,HY,12.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8472222222222221,0.8611111111111112,NPCC,ISNE,MA,42.7297,-72.9303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6013,Olive,O1,1959.0,50.0,44.0,44.0,5,NG,Natural Gas Steam Turbine,SB,ST,10.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.88,0.88,WECC,LDWP,CA,34.1764,-118.3147,Olive O1,ST-NG,False,4.0,2.0,-1.0,4.4,4.4,3023.018,392.48,1.0,0.29,48.0,5.586501513215819,79.55470048164248,0.1989846068732253,-7.63798782889985,286.9379721639852,8.255560523041018,#TRUE#,#1959-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,21.0,48.0,0.0,CA,NG,,#FALSE#,21,48, -6013,Olive,O2,1964.0,59.7,55.0,55.0,6,NG,Natural Gas Steam Turbine,SB,ST,9.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9212730318257956,0.9212730318257956,WECC,LDWP,CA,34.1764,-118.3147,Olive O2,ST-NG,False,4.0,2.0,-1.0,5.5,5.5,3778.773,490.6,1.0,0.29,55.0,8.98455550727543,59.75444590578785,-5.985625514505577e-07,8.984591721678854,59.75399813126508,11.513951207721444,#TRUE#,#1964-09-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,10.0,55.0,0.0,CA,NG,,#FALSE#,10,55, -6014,Brunswick Nuclear,1,1977.0,1001.6,938.0,975.0,938,NUC,Nuclear,OP,ST,3.0,1977.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9365015974440895,0.9734424920127795,SERC,CPLE,NC,33.9597,-78.0114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6014,Brunswick Nuclear,2,1975.0,1001.6,932.0,953.0,932,NUC,Nuclear,OP,ST,11.0,1975.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9305111821086262,0.9514776357827476,SERC,CPLE,NC,33.9597,-78.0114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6015,Harris,1,1987.0,950.9,964.0,1009.0,964,NUC,Nuclear,OP,ST,5.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.6334,-78.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6017,Newton,1,1977.0,617.4,595.0,615.0,200,SUB,Conventional Steam Coal,OP,ST,11.0,1977.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.963718820861678,0.9961127308066084,SERC,MISO,IL,38.9361,-88.2781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.45775996202636 -6018,East Bend,2,1981.0,772.0,600.0,600.0,340,BIT,Conventional Steam Coal,OP,ST,3.0,1981.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7772020725388601,0.7772020725388601,RFC,PJM,KY,38.9036,-84.8514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.949397057277604 -6020,Perry,1,1987.0,1311.6,1240.0,1268.0,133,NUC,Nuclear,OP,ST,11.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.945410186032327,0.9667581579749924,RFC,PJM,OH,41.8006,-81.1439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6021,Craig (CO),1,1980.0,446.4,427.0,427.0,130,SUB,Conventional Steam Coal,OP,ST,7.0,1980.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9565412186379929,0.9565412186379929,WECC,WACM,CO,40.4627,-107.5912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6021,Craig (CO),2,1979.0,446.4,410.0,410.0,130,SUB,Conventional Steam Coal,OP,ST,11.0,1979.0,9,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9184587813620072,0.9184587813620072,WECC,WACM,CO,40.4627,-107.5912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6021,Craig (CO),3,1984.0,534.8,448.0,448.0,130,SUB,Conventional Steam Coal,OP,ST,10.0,1984.0,12,2029,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8376963350785341,0.8376963350785341,WECC,WACM,CO,40.4627,-107.5912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6022,Braidwood Generation Station,1,1988.0,1224.9,1183.0,1218.6,657.1,NUC,Nuclear,OP,ST,7.0,1988.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9657931259694669,0.9948567229977956,RFC,PJM,IL,41.2435,-88.2286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6022,Braidwood Generation Station,2,1988.0,1224.9,1154.0,1182.5,657.6,NUC,Nuclear,OP,ST,10.0,1988.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9421177238958282,0.9653849293819903,RFC,PJM,IL,41.2435,-88.2286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6023,Byron Generating Station,1,1985.0,1224.9,1164.0,1211.7,643.5,NUC,Nuclear,OP,ST,9.0,1985.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9502816556453587,0.9892236100906197,RFC,PJM,IL,42.0742,-89.2819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6023,Byron Generating Station,2,1987.0,1224.9,1136.0,1174.0,646.7,NUC,Nuclear,OP,ST,8.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9274226467466731,0.9584455873948893,RFC,PJM,IL,42.0742,-89.2819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6026,LaSalle Generating Station,1,1984.0,1170.0,1130.5,1171.9,135,NUC,Nuclear,OP,ST,1.0,1984.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9662393162393162,1.0,RFC,PJM,IL,41.245498,-88.669066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6026,LaSalle Generating Station,2,1984.0,1170.0,1133.9,1174.0,133,NUC,Nuclear,OP,ST,10.0,1984.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9691452991452992,1.0,RFC,PJM,IL,41.245498,-88.669066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6030,Coal Creek,1,1979.0,604.8,568.3,568.3,285,RC,Conventional Steam Coal,OP,ST,6.0,1979.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9396494708994709,0.9396494708994709,MRO,MISO,ND,47.377743,-101.157058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.59607852346684 -6030,Coal Creek,2,1980.0,604.8,573.9,573.9,285,RC,Conventional Steam Coal,OP,ST,9.0,1980.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9489087301587302,0.9489087301587302,MRO,MISO,ND,47.377743,-101.157058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.443257972126425 -6030,Coal Creek,4,2016.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,SB,IC,2.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,47.377743,-101.157058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6030,Coal Creek,5,2016.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,SB,IC,1.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,47.377743,-101.157058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,12-1,1999.0,85.3,75.0,93.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8792497069167644,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,12-2,1999.0,85.3,75.0,93.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8792497069167644,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,13-1,1999.0,85.3,74.0,92.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8675263774912075,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,3,1981.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,4,1981.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,5,1981.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,IC1,1981.0,2.7,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7407407407407407,0.7407407407407407,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,IC2,1981.0,2.7,3.0,3.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,ST1,1984.0,697.5,635.0,635.0,155,SUB,Conventional Steam Coal,OP,ST,8.0,1984.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.910394265232975,0.910394265232975,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6034,Belle River,ST2,1985.0,697.5,635.0,635.0,155,SUB,Conventional Steam Coal,OP,ST,7.0,1985.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.910394265232975,0.910394265232975,RFC,MISO,MI,42.7756,-82.495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6035,Greenwood (MI),1,1979.0,815.4,785.0,785.0,155,NG,Natural Gas Steam Turbine,OP,ST,7.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9627176845719893,0.9627176845719893,RFC,MISO,MI,43.1056,-82.6964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.251314108104744 -6035,Greenwood (MI),11-1,1999.0,85.3,75.0,93.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8792497069167644,1.0,RFC,MISO,MI,43.1056,-82.6964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6035,Greenwood (MI),11-2,1999.0,85.3,75.0,93.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8792497069167644,1.0,RFC,MISO,MI,43.1056,-82.6964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6035,Greenwood (MI),11-3,1999.0,85.3,74.0,92.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8675263774912075,1.0,RFC,MISO,MI,43.1056,-82.6964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6036,Catawba,1,1985.0,1205.1,1160.1,1198.7,1160.1,NUC,Nuclear,OP,ST,6.0,1985.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9626587005227782,0.9946892374076841,SERC,DUK,SC,35.0514,-81.0694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6036,Catawba,2,1986.0,1205.1,1150.1,1179.8,1150.1,NUC,Nuclear,OP,ST,8.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9543606339722844,0.9790058916272509,SERC,DUK,SC,35.0514,-81.0694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6038,McGuire,1,1981.0,1220.3,1158.0,1199.0,1158,NUC,Nuclear,OP,ST,9.0,1981.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9489469802507581,0.9825452757518643,SERC,DUK,NC,35.4331,-80.9486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6038,McGuire,2,1984.0,1220.3,1157.6,1187.2,1157.6,NUC,Nuclear,OP,ST,3.0,1984.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9486191920019666,0.9728755224125216,SERC,DUK,NC,35.4331,-80.9486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6040,Beaver Valley,1,1976.0,923.4,907.0,939.0,94,NUC,Nuclear,OP,ST,9.0,1976.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9822395494910116,1.0,RFC,PJM,PA,40.6219,-80.4336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6040,Beaver Valley,2,1987.0,923.4,901.0,933.0,93,NUC,Nuclear,OP,ST,11.0,1987.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9757418236950401,1.0,RFC,PJM,PA,40.6219,-80.4336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6041,H L Spurlock,1,1977.0,357.6,300.0,300.0,145,BIT,Conventional Steam Coal,OP,ST,9.0,1977.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8389261744966443,0.8389261744966443,SERC,PJM,KY,38.7,-83.8181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.584852173774737 -6041,H L Spurlock,2,1981.0,592.1,510.0,510.0,280,BIT,Conventional Steam Coal,OP,ST,3.0,1981.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8613409896976861,0.8613409896976861,SERC,PJM,KY,38.7,-83.8181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.928576500536481 -6041,H L Spurlock,3,2005.0,329.4,268.0,268.0,180,BIT,Conventional Steam Coal,OP,ST,3.0,2005.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8136004857316333,0.8136004857316333,SERC,PJM,KY,38.7,-83.8181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.261068130514838 -6041,H L Spurlock,4,2009.0,329.4,268.0,268.0,180,BIT,Conventional Steam Coal,OP,ST,4.0,2009.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8136004857316333,0.8136004857316333,SERC,PJM,KY,38.7,-83.8181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.65884916803197 -6042,Manatee,1,1976.0,863.3,809.0,819.0,190,NG,Natural Gas Steam Turbine,OP,ST,10.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9371018186030349,0.9486852774238388,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6042,Manatee,2,1977.0,863.3,809.0,819.0,190,NG,Natural Gas Steam Turbine,OP,ST,12.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9371018186030349,0.9486852774238388,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6042,Manatee,3,2005.0,471.8,439.0,437.0,133,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9304790165324289,0.9262399321746503,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6042,Manatee,A,2005.0,188.2,173.5,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9218916046758768,1.0,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6042,Manatee,B,2005.0,188.2,173.5,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9218916046758768,1.0,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6042,Manatee,C,2005.0,188.2,173.5,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9218916046758768,1.0,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6042,Manatee,D,2005.0,188.2,173.5,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9218916046758768,1.0,SERC,FPL,FL,27.6058,-82.3456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,3GT1,1994.0,204.0,165.0,185.0,143,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8088235294117647,0.9068627450980392,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,3GT2,1994.0,204.0,165.0,185.0,143,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8088235294117647,0.9068627450980392,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,3ST,1994.0,204.0,157.0,163.0,143,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7696078431372549,0.7990196078431373,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,4GT1,1994.0,204.0,165.0,185.0,143,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8088235294117647,0.9068627450980392,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,4GT2,1994.0,204.0,165.0,185.0,143,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8088235294117647,0.9068627450980392,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,4ST,1994.0,204.0,157.0,163.0,143,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7696078431372549,0.7990196078431373,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,8,2005.0,471.7,447.8,443.0,133,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9493322026711893,0.9391562433750266,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,8A,2001.0,188.2,196.8,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,8B,2001.0,188.2,196.8,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,8C,2005.0,188.2,196.8,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6043,Martin,8D,2005.0,188.2,196.8,207.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.0536,-80.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6045,St Lucie,1,1976.0,1080.0,981.0,1003.0,981,NUC,Nuclear,OP,ST,5.0,1976.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9083333333333333,0.9287037037037037,SERC,FPL,FL,27.348611,-80.246389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6045,St Lucie,2,1983.0,1080.0,987.0,987.0,987,NUC,Nuclear,OP,ST,6.0,1983.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9138888888888889,0.9138888888888889,SERC,FPL,FL,27.348611,-80.246389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,10,1992.0,103.5,72.0,88.0,40,DFO,Petroleum Liquids,OP,GT,10.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6956521739130435,0.8502415458937198,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,2,1976.0,66.8,45.0,57.0,20,DFO,Petroleum Liquids,OP,GT,3.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6736526946107785,0.8532934131736527,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,3,1975.0,66.8,45.0,59.0,20,DFO,Petroleum Liquids,OP,GT,12.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6736526946107785,0.8832335329341318,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,4,1976.0,66.8,46.0,59.0,20,DFO,Petroleum Liquids,OP,GT,4.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.688622754491018,0.8832335329341318,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,5,1975.0,66.8,45.0,58.0,20,DFO,Petroleum Liquids,OP,GT,12.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6736526946107785,0.8682634730538923,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,6,1976.0,66.8,46.0,59.0,20,DFO,Petroleum Liquids,OP,GT,4.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.688622754491018,0.8832335329341318,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,7,1992.0,103.5,74.0,93.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7149758454106281,0.8985507246376812,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,8,1992.0,103.5,75.0,94.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7246376811594203,0.9082125603864735,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6046,DeBary,9,1992.0,103.5,76.0,94.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7342995169082125,0.9082125603864735,SERC,FPC,FL,28.903863,-81.332329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6047,Deerfield 2,GEN1,1913.0,1.6,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.573084,-72.707274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6047,Deerfield 2,GEN2,1913.0,1.6,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.573084,-72.707274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6047,Deerfield 2,GEN3,1913.0,1.6,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.573084,-72.707274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6049,West Tisbury Generating Facility,UN1,1975.0,2.7,2.8,2.8,2,DFO,Petroleum Liquids,OP,IC,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.392486,-70.620089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.711397058823529 -6049,West Tisbury Generating Facility,UN2,1975.0,2.7,2.8,2.8,2,DFO,Petroleum Liquids,OP,IC,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.392486,-70.620089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.711397058823529 -6051,Edwin I Hatch,1,1975.0,924.0,876.0,876.0,250,NUC,Nuclear,OP,ST,12.0,1975.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.948051948051948,0.948051948051948,SERC,SOCO,GA,31.9342,-82.3447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6051,Edwin I Hatch,2,1979.0,924.0,883.0,883.0,250,NUC,Nuclear,OP,ST,9.0,1979.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9556277056277056,0.9556277056277056,SERC,SOCO,GA,31.9342,-82.3447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6055,Big Cajun 2,1,1981.0,657.9,520.0,520.0,225,SUB,Conventional Steam Coal,OP,ST,7.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7903936768505853,0.7903936768505853,SERC,MISO,LA,30.7261,-91.3692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6055,Big Cajun 2,2,1982.0,626.0,550.0,550.0,100,NG,Natural Gas Steam Turbine,OP,ST,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8785942492012779,0.8785942492012779,SERC,MISO,LA,30.7261,-91.3692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6055,Big Cajun 2,3,1983.0,619.0,540.0,540.0,180,SUB,Conventional Steam Coal,OP,ST,4.0,1983.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8723747980613894,0.8723747980613894,SERC,MISO,LA,30.7261,-91.3692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6056,Kahului,1,1948.0,5.0,4.7,4.7,2,RFO,Petroleum Liquids,OP,ST,5.0,1948.0,12,2027,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.9400000000000001,non-conus,non-conus,HI,20.896884,-156.462696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6056,Kahului,2,1949.0,5.0,4.8,4.8,2,RFO,Petroleum Liquids,OP,ST,12.0,1949.0,12,2027,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.96,0.96,non-conus,non-conus,HI,20.896884,-156.462696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6056,Kahului,3,1954.0,11.5,11.0,11.0,3,RFO,Petroleum Liquids,OP,ST,4.0,1954.0,12,2027,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9565217391304348,0.9565217391304348,non-conus,non-conus,HI,20.896884,-156.462696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6056,Kahului,4,1966.0,12.5,11.9,11.9,3,RFO,Petroleum Liquids,OP,ST,10.0,1966.0,12,2027,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9520000000000001,0.9520000000000001,non-conus,non-conus,HI,20.896884,-156.462696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6058,Cascade Creek,1,1975.0,35.0,27.9,30.2,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7971428571428572,0.8628571428571429,MRO,MISO,MN,44.0322,-92.4908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6058,Cascade Creek,2,2002.0,49.9,49.5,49.9,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9919839679358717,1.0,MRO,MISO,MN,44.0322,-92.4908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6060,Coachella,1,1973.0,23.1,18.6,18.5,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8051948051948052,0.8008658008658008,WECC,IID,CA,33.6758,-116.1714,Coachella 1,GT Old,False,1.0,1.0,-1.0,2.0,2.0,1180.593,90.6,1.0,0.56,20.0,-1.3038001854127712,179.796002680677,-8.400201269354035e-06,-1.3035558423442168,179.7942947165501,11.61942232779955,#TRUE#,#1973-06-01#,#2050-12-31#,Existing,IID,CA_IID,10.0,20.0,20.0,CA,Oil,,#FALSE#,10,20,18.83605903470283 -6060,Coachella,2,1973.0,23.1,19.0,16.1,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8225108225108224,0.696969696969697,WECC,IID,CA,33.6758,-116.1714,Coachella 2,GT Old,False,1.0,1.0,-1.0,2.0,2.0,1180.593,90.6,1.0,0.56,20.0,-1.3038001854127712,179.796002680677,-8.400201269354035e-06,-1.3035558423442168,179.7942947165501,11.61942232779955,#TRUE#,#1973-06-01#,#2050-12-31#,Existing,IID,CA_IID,10.0,20.0,0.0,CA,Oil,,#FALSE#,10,20,18.83605903470283 -6060,Coachella,3,1974.0,23.1,18.3,20.3,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7922077922077921,0.8787878787878788,WECC,IID,CA,33.6758,-116.1714,Coachella 3,GT Old,False,1.0,1.0,-1.0,2.0,2.0,1180.593,90.6,1.0,0.56,20.0,-1.3038001854127712,179.796002680677,-8.400201269354035e-06,-1.3035558423442168,179.7942947165501,11.61942232779955,#TRUE#,#1974-04-01#,#2050-12-31#,Existing,IID,CA_IID,10.0,20.0,0.0,CA,Oil,,#FALSE#,10,20,18.83605903470283 -6060,Coachella,4,1976.0,23.1,18.0,19.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7792207792207791,0.8311688311688311,WECC,IID,CA,33.6758,-116.1714,Coachella 4,GT Old,False,1.0,1.0,-1.0,2.0,2.0,1180.593,90.6,1.0,0.56,20.0,-1.3038001854127712,179.796002680677,-8.400201269354035e-06,-1.3035558423442168,179.7942947165501,11.61942232779955,#TRUE#,#1976-12-01#,#2050-12-31#,Existing,IID,CA_IID,10.0,20.0,0.0,CA,Oil,,#FALSE#,10,20,18.83605903470283 -6063,Electrifarm,1,1975.0,71.2,54.5,71.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7654494382022472,0.997191011235955,MRO,MISO,IA,42.4407,-92.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.930107567522622 -6063,Electrifarm,2,1978.0,89.0,63.1,78.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7089887640449438,0.8764044943820225,MRO,MISO,IA,42.4407,-92.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.338088753766787 -6063,Electrifarm,3,1978.0,103.9,60.7,85.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5842155919153031,0.818094321462945,MRO,MISO,IA,42.4407,-92.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.824676247504811 -6064,Nearman Creek,1,1981.0,261.0,243.0,243.0,150,SUB,Conventional Steam Coal,OP,ST,6.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9310344827586207,0.9310344827586207,MRO,SWPP,KS,39.1681,-94.6975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6064,Nearman Creek,CT4,2006.0,104.0,76.0,76.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7307692307692308,0.7307692307692308,MRO,SWPP,KS,39.1681,-94.6975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.276546453600938 -6065,Iatan,1,1980.0,726.0,702.5,702.5,366,SUB,Conventional Steam Coal,OP,ST,5.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9676308539944903,0.9676308539944903,MRO,SWPP,MO,39.4472,-94.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.834961694182647 -6065,Iatan,2,2010.0,999.0,897.1,897.1,657,SUB,Conventional Steam Coal,OP,ST,8.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8979979979979981,0.8979979979979981,MRO,SWPP,MO,39.4472,-94.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.41706511040641 -6068,Jeffrey Energy Center,1,1978.0,720.0,670.6,670.6,230,SUB,Conventional Steam Coal,OP,ST,7.0,1978.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9313888888888889,0.9313888888888889,MRO,SWPP,KS,39.286453,-96.117231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.684917199143904 -6068,Jeffrey Energy Center,2,1980.0,720.0,664.1,664.1,220,SUB,Conventional Steam Coal,OP,ST,5.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9223611111111112,0.9223611111111112,MRO,SWPP,KS,39.286453,-96.117231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.412481401922898 -6068,Jeffrey Energy Center,3,1983.0,720.0,673.3,673.3,220,SUB,Conventional Steam Coal,OP,ST,5.0,1983.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9351388888888889,0.9351388888888889,MRO,SWPP,KS,39.286453,-96.117231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.98119638080014 -6071,Trimble County,1,1990.0,566.1,511.0,511.0,141,BIT,Conventional Steam Coal,OP,ST,12.0,1990.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9026673732556085,0.9026673732556085,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.748143056569107 -6071,Trimble County,10,2004.0,199.0,159.0,179.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7989949748743719,0.8994974874371859,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.118357841723562 -6071,Trimble County,2,2011.0,834.0,732.0,760.0,315,BIT,Conventional Steam Coal,OP,ST,2.0,2011.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8776978417266187,0.9112709832134293,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.108316518070408 -6071,Trimble County,5,2002.0,199.0,159.0,179.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7989949748743719,0.8994974874371859,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.675219865153258 -6071,Trimble County,6,2002.0,199.0,159.0,179.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7989949748743719,0.8994974874371859,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.77974624101806 -6071,Trimble County,7,2004.0,199.0,159.0,179.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7989949748743719,0.8994974874371859,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.060711293794075 -6071,Trimble County,8,2004.0,199.0,159.0,179.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7989949748743719,0.8994974874371859,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.253041212952816 -6071,Trimble County,9,2004.0,199.0,159.0,179.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7989949748743719,0.8994974874371859,SERC,LGEE,KY,38.5847,-85.4117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.653743059582101 -6072,Grand Gulf,1,1985.0,1440.0,1400.5,1448.1,300,NUC,Nuclear,OP,ST,7.0,1985.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9725694444444445,1.0,SERC,MISO,MS,32.0081,-91.0478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6073,Victor J Daniel Jr,1,1977.0,548.3,502.0,502.0,165,SUB,Conventional Steam Coal,OP,ST,9.0,1977.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9155571767280687,0.9155571767280687,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.77191112353131 -6073,Victor J Daniel Jr,2,1981.0,548.3,502.0,502.0,165,SUB,Conventional Steam Coal,OP,ST,6.0,1981.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9155571767280687,0.9155571767280687,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.268421578455913 -6073,Victor J Daniel Jr,3,2001.0,185.5,563.0,587.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6073,Victor J Daniel Jr,3CT,2001.0,185.5,,,110,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6073,Victor J Daniel Jr,3ST,2001.0,195.2,,,145,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6073,Victor J Daniel Jr,4,2001.0,185.5,559.0,588.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6073,Victor J Daniel Jr,4CT,2001.0,185.5,,,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6073,Victor J Daniel Jr,4ST,2001.0,195.2,,,145,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,SERC,SOCO,MS,30.5322,-88.5553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6074,Greenwood (MO),1,1975.0,64.7,62.7,62.7,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9690880989180835,0.9690880989180835,MRO,SWPP,MO,38.8615,-94.2982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.185213823201536 -6074,Greenwood (MO),2,1975.0,64.7,63.0,63.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.973724884080371,0.973724884080371,MRO,SWPP,MO,38.8615,-94.2982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.39703991840801 -6074,Greenwood (MO),3,1977.0,64.7,62.1,62.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9598145285935085,0.9598145285935085,MRO,SWPP,MO,38.8615,-94.2982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.486539693081284 -6074,Greenwood (MO),4,1979.0,64.7,61.4,61.4,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9489953632148377,0.9489953632148377,MRO,SWPP,MO,38.8615,-94.2982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.558174616351604 -6074,Greenwood (MO),5,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,MO,38.8615,-94.2982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6076,Colstrip,3,1984.0,823.7,740.0,740.0,200,SUB,Conventional Steam Coal,OP,ST,1.0,1984.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8983853344664319,0.8983853344664319,WECC,NWMT,MT,45.8831,-106.614,Colstrip_3,ST-Col,False,48.0,108.0,-1.0,25.9,25.9,86573.67,10360.0,1.0,2.4,740.0001,10.91017404958788,-241.92611939653207,0.008320423395290232,3.0153877805023894,1442.858106589943,10.337215903444225,#TRUE#,#1984-01-01#,#2025-12-31#,Existing,NWMT,NW_NWMT,219.259,740.0,791.463,MT,Coal,,#FALSE#,219.259,740,10.196812149792427 -6076,Colstrip,4,1986.0,823.7,740.0,740.0,200,SUB,Conventional Steam Coal,OP,ST,4.0,1986.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8983853344664319,0.8983853344664319,WECC,NWMT,MT,45.8831,-106.614,Colstrip_4,ST-Col,False,48.0,108.0,-1.0,25.9,25.9,86573.67,10360.0,1.0,2.4,740.0001,9.659673594157455,109.7638558745911,0.008074681036015866,1.9980595679241733,1744.7877204903714,9.919629383686756,#TRUE#,#1986-04-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,219.259,740.0,805.0,MT,Coal,,#FALSE#,219.259,740.0001,10.411801745291761 -6077,Gerald Gentleman,1,1979.0,681.3,665.0,665.0,0,SUB,Conventional Steam Coal,OP,ST,4.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9760751504476737,0.9760751504476737,MRO,SWPP,NE,41.0808,-101.1408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.855555548648306 -6077,Gerald Gentleman,2,1982.0,681.3,700.0,700.0,0,SUB,Conventional Steam Coal,OP,ST,1.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,NE,41.0808,-101.1408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.090554211849298 -6081,Stony Brook,1,1982.0,85.0,65.0,85.0,40,DFO,Petroleum Liquids,OP,GT,11.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7647058823529411,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,2,1982.0,85.0,65.0,85.0,40,DFO,Petroleum Liquids,OP,GT,11.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7647058823529411,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,5051S,2018.0,6.9,6.9,6.9,0,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,BS#1,2007.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,BS#2,2007.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,CA1,1981.0,105.0,96.0,105.0,20,DFO,Petroleum Liquids,OP,CA,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Steam Part,0.9142857142857143,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,CT1,1981.0,85.0,69.7,87.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1981.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8200000000000001,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,CT2,1981.0,85.0,69.7,87.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1981.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8200000000000001,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,CT3,1981.0,85.0,69.7,87.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1981.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8200000000000001,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6081,Stony Brook,EDSI,1981.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,OP,IC,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.1978,-72.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6083,Deerfield 3,GEN1,1912.0,1.6,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5995,-72.7335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6083,Deerfield 3,GEN2,1912.0,1.6,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5995,-72.7335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6083,Deerfield 3,GEN3,1912.0,1.6,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.5995,-72.7335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6085,R M Schahfer,16A,1979.0,129.0,78.0,78.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6046511627906976,0.6046511627906976,RFC,MISO,IN,41.2164,-87.0261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6085,R M Schahfer,16B,1979.0,129.0,77.0,77.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5968992248062015,0.5968992248062015,RFC,MISO,IN,41.2164,-87.0261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.630780211480364 -6085,R M Schahfer,17,1983.0,423.5,361.0,361.0,110,BIT,Conventional Steam Coal,OP,ST,4.0,1983.0,12,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8524203069657615,0.8524203069657615,RFC,MISO,IN,41.2164,-87.0261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.656819803450327 -6085,R M Schahfer,18,1986.0,423.5,361.0,361.0,110,BIT,Conventional Steam Coal,OP,ST,2.0,1986.0,12,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8524203069657615,0.8524203069657615,RFC,MISO,IN,41.2164,-87.0261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.141014631540592 -6086,Cornell,1,1976.0,11.5,6.2,6.2,2.9,WAT,Conventional Hydroelectric,OP,HY,7.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5391304347826087,0.5391304347826087,MRO,MISO,WI,45.164024,-91.157427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6086,Cornell,2,1976.0,11.5,6.4,6.4,2.9,WAT,Conventional Hydroelectric,OP,HY,8.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5565217391304348,0.5565217391304348,MRO,MISO,WI,45.164024,-91.157427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6086,Cornell,3,1976.0,11.5,6.9,6.9,2.9,WAT,Conventional Hydroelectric,OP,HY,7.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6000000000000001,0.6000000000000001,MRO,MISO,WI,45.164024,-91.157427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6086,Cornell,4,1977.0,0.8,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,4.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,MRO,MISO,WI,45.164024,-91.157427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6087,Wallace Dam,1,1980.0,52.2,53.6,53.3,50.7,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1980.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,33.3502,-83.1574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6087,Wallace Dam,2,1980.0,52.2,53.6,53.3,50.7,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1980.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,33.3502,-83.1574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6087,Wallace Dam,3,1980.0,56.2,56.8,57.1,54.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3502,-83.1574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6087,Wallace Dam,4,1980.0,56.2,56.8,57.1,54.6,WAT,Conventional Hydroelectric,OP,HY,4.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.3502,-83.1574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6087,Wallace Dam,5,1980.0,52.2,53.6,53.3,50.7,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1980.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,33.3502,-83.1574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6087,Wallace Dam,6,1979.0,52.2,53.6,53.3,50.7,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1979.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,33.3502,-83.1574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6088,North Loop,1,1972.0,27.0,25.0,26.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9259259259259259,0.9925925925925926,WECC,TEPC,AZ,32.401,-111.1262,North Loop 1,GT,False,1.0,1.0,-1.0,22.5,22.5,748.951,99.66,1.0,0.45,25.0,0.6542855769050453,185.54285951209104,-3.984422164343693e-06,0.6544234218627585,185.54173174822938,12.021480818165863,#TRUE#,#1972-12-01#,#2027-12-31#,Existing,TEPC,SW_TEPC,11.0,25.0,22.0,AZ,NG,Areo,#FALSE#,11,25,15.042806944939256 -6088,North Loop,2,1972.0,27.0,25.0,26.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9259259259259259,0.9925925925925926,WECC,TEPC,AZ,32.401,-111.1262,North Loop 2,GT,False,1.0,1.0,-1.0,22.5,22.5,748.951,99.66,1.0,0.45,25.0,0.6542855769050453,185.54285951209104,-3.984422164343693e-06,0.6544234218627585,185.54173174822938,12.021480818165863,#TRUE#,#1972-12-01#,#2027-12-31#,Existing,TEPC,SW_TEPC,11.0,25.0,22.0,AZ,NG,Areo,#FALSE#,11,25,15.042806944939256 -6088,North Loop,3,1972.0,27.0,25.0,26.8,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9259259259259259,0.9925925925925926,WECC,TEPC,AZ,32.401,-111.1262,North Loop 3,GT,False,1.0,1.0,-1.0,20.7,20.7,689.0349,99.66,1.0,0.45,23.0,-0.5826668575631214,199.14933647973905,-4.9181428905531455e-06,-0.5825056478739938,199.14807372257025,12.14332793279542,#TRUE#,#1972-12-01#,#2027-12-31#,Existing,TEPC,SW_TEPC,11.0,23.0,22.0,AZ,NG,Areo,#FALSE#,11,23,15.042806944939256 -6088,North Loop,4,2001.0,26.8,20.0,21.4,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7462686567164178,0.7985074626865671,WECC,TEPC,AZ,32.401,-111.1262,North Loop 4,GT Aero_Aero,False,1.0,1.0,-1.0,18.9,18.9,629.1188,77.01,1.0,0.45,21.0,1.7092799516315837,139.43412063199992,-1.9399904968575576e-06,1.7093339367621478,139.4337709272302,12.303227453762762,#TRUE#,#2001-06-01#,#2046-12-31#,Existing,TEPC,SW_TEPC,8.5,21.0,17.0,AZ,NG,Areo,#FALSE#,8.5,21,15.042806330923803 -6089,Lewis & Clark,2,2016.0,9.3,9.1,9.1,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9784946236559139,0.9784946236559139,MRO,MISO,MT,47.6785,-104.15665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -6089,Lewis & Clark,3,2016.0,9.3,9.1,9.1,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9784946236559139,0.9784946236559139,MRO,MISO,MT,47.6785,-104.15665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -6090,Sherburne County,1,1976.0,765.3,680.0,680.0,260,SUB,Conventional Steam Coal,OP,ST,4.0,1976.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8885404416568666,0.8885404416568666,MRO,MISO,MN,45.3808,-93.8931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.609496434472524 -6090,Sherburne County,2,1977.0,765.3,682.0,682.0,260,SUB,Conventional Steam Coal,OP,ST,3.0,1977.0,12,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8911537958970339,0.8911537958970339,MRO,MISO,MN,45.3808,-93.8931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.63131133906125 -6090,Sherburne County,3,1987.0,938.7,876.0,876.0,400,SUB,Conventional Steam Coal,OP,ST,10.0,1987.0,12,2034,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9332054969638862,0.9332054969638862,MRO,MISO,MN,45.3808,-93.8931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43545801811824 -6092,Spirit Mound,1,1978.0,67.5,50.0,60.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7407407407407407,0.8888888888888888,MRO,SWPP,SD,42.897663,-96.990494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.773301970008822 -6092,Spirit Mound,2,1978.0,67.5,45.0,60.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6666666666666667,0.8888888888888888,MRO,SWPP,SD,42.897663,-96.990494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.773301970008822 -6095,Sooner,1,1979.0,569.0,516.0,516.0,200,SUB,Conventional Steam Coal,OP,ST,11.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9068541300527241,0.9068541300527241,MRO,SWPP,OK,36.45307,-97.05279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.912107306504069 -6095,Sooner,2,1980.0,569.0,515.0,515.0,200,SUB,Conventional Steam Coal,OP,ST,12.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9050966608084359,0.9050966608084359,MRO,SWPP,OK,36.45307,-97.05279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.370527013383423 -6096,Nebraska City,1,1979.0,651.6,650.3,650.3,180,SUB,Conventional Steam Coal,OP,ST,4.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9980049109883363,0.9980049109883363,MRO,SWPP,NE,40.6214,-95.7764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.02819011865935 -6096,Nebraska City,2,2009.0,738.0,691.0,691.0,235,SUB,Conventional Steam Coal,OP,ST,5.0,2009.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9363143631436315,0.9363143631436315,MRO,SWPP,NE,40.6214,-95.7764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.201169175114893 -6098,Big Stone,1,1975.0,450.0,475.0,475.0,150,SUB,Conventional Steam Coal,OP,ST,5.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,SD,45.303652,-96.510067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.14477580249045 -6098,Big Stone,D1,1975.0,1.0,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,5.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6,0.6,MRO,MISO,SD,45.303652,-96.510067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6099,Diablo Canyon,1,1985.0,1159.0,1122.0,1122.0,0,NUC,Nuclear,OP,ST,5.0,1985.0,11,2024,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9680759275237274,0.9680759275237274,WECC,CISO,CA,35.211536,-120.855542,DiabloCanyon1,ST-NUC,True,168.0,168.0,-1.0,6.98,6.98,148719.0,0.0,1.0,5.633296,1200.0,1.2823150905870848,11661.221675942172,-0.0003019105121763957,1.9207837380629438,11325.339496580618,12.364000719958758,#TRUE#,#1985-01-01#,#2024-11-02#,Existing,CIPV,CA_CISO,941.0,1200.0,1190.0,CA,Uranium,,#FALSE#,941,1200, -6099,Diablo Canyon,2,1986.0,1164.0,1118.0,1118.0,0,NUC,Nuclear,OP,ST,3.0,1986.0,8,2025,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9604810996563574,0.9604810996563574,WECC,CISO,CA,35.211536,-120.855542,DiabloCanyon2,ST-NUC,True,168.0,168.0,-1.0,6.98,6.98,148719.0,0.0,1.0,5.633296,1200.0,1.2823150905870848,11661.221675942172,-0.0003019105121763957,1.9207837380629438,11325.339496580618,12.364000719958758,#TRUE#,#1986-01-01#,#2025-08-26#,Existing,CIPV,CA_CISO,941.0,1200.0,1190.0,CA,Uranium,,#FALSE#,941,1200, -6100,Helms Pumped Storage,1,1984.0,351.0,404.0,404.0,83,WAT,Hydroelectric Pumped Storage,OS,PS,6.0,1984.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,37.029304,-118.968252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6100,Helms Pumped Storage,2,1984.0,351.0,404.0,404.0,83,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1984.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,37.029304,-118.968252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6100,Helms Pumped Storage,3,1984.0,351.0,404.0,404.0,83,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1984.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,37.029304,-118.968252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6101,Wyodak,1,1978.0,402.3,332.0,335.0,130,SUB,Conventional Steam Coal,OP,ST,9.0,1978.0,12,2039,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8252547849863285,0.8327119065374099,WECC,PACE,WY,44.290128,-105.381482,Wyodak,ST-Col,False,48.0,108.0,-1.0,11.9,11.9,39777.09,4760.0,1.0,2.4,340.0,11.745518612362043,0.3800652655170965,0.014655034852355328,6.187771409773584,436.534592803646,11.748191747170731,#TRUE#,#2030-01-01#,#2050-12-31#,Existing,PAWY,BS_PACE,58.594,340.0,380.0,WY,Coal,,#FALSE#,58.594,340, -6103,TalenEnergy Susquehanna,1,1983.0,1266.0,1247.0,1247.0,170,NUC,Nuclear,OP,ST,6.0,1983.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9849921011058452,0.9849921011058452,RFC,PJM,PA,41.0919,-76.1462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6103,TalenEnergy Susquehanna,2,1985.0,1266.0,1247.0,1247.0,170,NUC,Nuclear,OP,ST,2.0,1985.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9849921011058452,0.9849921011058452,RFC,PJM,PA,41.0919,-76.1462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6105,Limerick,1,1986.0,1138.5,1119.7,1180.1,55,NUC,Nuclear,OP,ST,2.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9834870443566096,1.0,RFC,PJM,PA,40.224303,-75.58744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6105,Limerick,2,1990.0,1138.5,1122.1,1188.1,55,NUC,Nuclear,OP,ST,1.0,1990.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.985595081247255,1.0,RFC,PJM,PA,40.224303,-75.58744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6110,James A Fitzpatrick,1,1976.0,883.3,831.3,853.4,125,NUC,Nuclear,OP,ST,8.0,1976.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9411298539567531,0.9661496660251331,NPCC,NYIS,NY,43.52139,-76.408394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6112,Fort St Vrain,1,1998.0,342.6,301.0,304.0,39,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8785755983654406,0.8873321657910098,WECC,PSCO,CO,40.2461,-104.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6112,Fort St Vrain,2,1996.0,175.1,123.0,134.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7024557395773844,0.7652769845802398,WECC,PSCO,CO,40.2461,-104.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.415745171636129 -6112,Fort St Vrain,3,1999.0,175.1,128.0,139.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7310108509423188,0.7938320959451742,WECC,PSCO,CO,40.2461,-104.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.651325292579152 -6112,Fort St Vrain,4,2001.0,175.1,145.0,168.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280982295830954,0.9594517418617933,WECC,PSCO,CO,40.2461,-104.8742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.659457092599572 -6112,Fort St Vrain,5,2009.0,140.3,144.0,159.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,40.2461,-104.8742,Fort St Vrain 5,GT F_7FA,False,1.0,1.0,-1.0,15.8,15.8,9326.683,34.76,1.0,0.56,160.0,5.590548181246748,302.9916769254471,0.17432742883552976,-33.981779855766625,2431.1811300536356,8.41461874076609,#TRUE#,#2009-05-01#,#2049-12-31#,Existing,PSCO,RM_PSCO,70.0,160.0,130.0,CO,NG,Industrial,#FALSE#,70,160,12.351084626710431 -6112,Fort St Vrain,6,2009.0,140.3,144.0,159.0,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,40.2461,-104.8742,Fort St Vrain 6,GT F_7FA,False,1.0,1.0,-1.0,15.5,15.5,9149.594,34.1,1.0,0.56,160.0,5.744740747743886,280.983493620151,0.18165568793309225,-35.49109968437122,2498.636044635454,8.363681373755897,#TRUE#,#2009-05-01#,#2049-12-31#,Existing,PSCO,RM_PSCO,70.0,160.0,130.0,CO,NG,Industrial,#FALSE#,70,160,12.14296246167146 -6113,Gibson,1,1976.0,667.9,630.0,635.0,200,BIT,Conventional Steam Coal,OP,ST,5.0,1976.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9432549782901632,0.9507411289115137,RFC,MISO,IN,38.372222,-87.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.191609254217928 -6113,Gibson,2,1975.0,667.9,630.0,635.0,200,BIT,Conventional Steam Coal,OP,ST,4.0,1975.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9432549782901632,0.9507411289115137,RFC,MISO,IN,38.372222,-87.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.966235127111482 -6113,Gibson,3,1978.0,667.9,630.0,635.0,200,BIT,Conventional Steam Coal,OP,ST,3.0,1978.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9432549782901632,0.9507411289115137,RFC,MISO,IN,38.372222,-87.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.147638603425118 -6113,Gibson,4,1979.0,667.9,622.0,627.0,200,BIT,Conventional Steam Coal,OP,ST,3.0,1979.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9312771372960025,0.938763287917353,RFC,MISO,IN,38.372222,-87.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.403247124385567 -6113,Gibson,5,1982.0,667.9,620.0,625.0,200,BIT,Conventional Steam Coal,OP,ST,10.0,1982.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9282826770474623,0.9357688276688128,RFC,MISO,IN,38.372222,-87.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.180764648983871 -6115,Seabrook,1,1990.0,1242.0,1248.1,1251.4,360,NUC,Nuclear,OP,ST,8.0,1990.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,NH,42.899167,-70.848889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6118,PSEG Hope Creek Generating Station,1,1986.0,1290.7,1172.0,1172.0,1172,NUC,Nuclear,OP,ST,12.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.908034399938018,0.908034399938018,RFC,PJM,NJ,39.4666,-75.5377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6119,Deerfield 4,GEN1,1912.0,1.6,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.6198,-72.7376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6119,Deerfield 4,GEN2,1912.0,1.6,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.6198,-72.7376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6119,Deerfield 4,GEN3,1912.0,1.6,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.6198,-72.7376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6120,Whitehorn,2,1981.0,84.6,67.0,81.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7919621749408984,0.958628841607565,WECC,PSEI,WA,48.885636,-122.75164,Whitehorn_2,GT E_E,False,1.0,1.0,-1.0,8.11,8.11,4787.303,18.612,1.0,0.56,81.1,7.689069855540075,146.46093234270495,-1.207596209457221e-06,7.689195055792918,146.45796429527437,11.016481334836424,#TRUE#,#1981-10-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,24.33,81.1,65.0,WA,NG,Industrial,#FALSE#,24.33,81.1,14.368314388932946 -6120,Whitehorn,3,1981.0,84.6,67.0,81.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7919621749408984,0.958628841607565,WECC,PSEI,WA,48.885636,-122.75164,Whitehorn_3,GT E_E,False,1.0,1.0,-1.0,8.46,8.46,4993.907,18.612,1.0,0.56,84.6,9.455376486151964,153.00954679454955,-1.361462688216553e-06,9.455518157237238,153.00625520161793,12.787750476501241,#TRUE#,#1981-10-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,25.38,84.6,65.0,WA,NG,Industrial,#FALSE#,25.38,84.6,14.368314388932946 -6122,R E Ginna Nuclear Power Plant,1,1970.0,614.0,580.3,582.0,133,NUC,Nuclear,OP,ST,7.0,1970.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9451140065146579,0.9478827361563518,NPCC,NYIS,NY,43.2777,-77.3099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6124,McIntosh,CT1,1995.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,5.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.831794239073698 -6124,McIntosh,CT2,1995.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,4.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.952090352583877 -6124,McIntosh,CT3,1994.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.019190433255824 -6124,McIntosh,CT4,1994.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,5.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.823290466473686 -6124,McIntosh,CT5,1994.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,4.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.03033265315807 -6124,McIntosh,CT6,1994.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,5.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.905243676742753 -6124,McIntosh,CT7,1994.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,4.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.782252171024533 -6124,McIntosh,CT8,1994.0,101.3,82.2,94.5,57,DFO,Petroleum Liquids,OP,GT,2.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8114511352418559,0.932872655478776,SERC,SOCO,GA,32.356287,-81.168347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.786551511412709 -6125,Shrewsbury,1,1969.0,2.8,2.8,2.8,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.2747,-71.7172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.41434262948207 -6125,Shrewsbury,2,1969.0,2.8,2.8,2.8,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1969.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.2747,-71.7172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.41434262948207 -6125,Shrewsbury,3,1975.0,2.8,2.8,2.8,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.2747,-71.7172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.41434262948207 -6125,Shrewsbury,4,1975.0,2.8,2.8,2.8,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.2747,-71.7172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.41434262948207 -6125,Shrewsbury,5,1978.0,2.8,2.8,2.8,0.6,DFO,Petroleum Liquids,OP,IC,5.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.2747,-71.7172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.41434262948207 -6126,Fairfield Pumped Storage,1,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,2,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,3,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,4,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,5,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,6,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,7,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6126,Fairfield Pumped Storage,8,1978.0,73.4,72.0,72.0,50,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9809264305177111,0.9809264305177111,SERC,SCEG,SC,34.3061,-81.3308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6127,V C Summer,1,1984.0,1029.6,977.2,994.1,150,NUC,Nuclear,OP,ST,1.0,1984.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9491064491064493,0.9655205905205906,SERC,SCEG,SC,34.2983,-81.3153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6128,Amistad Dam & Power,1,1983.0,33.0,29.0,29.0,29,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8787878787878788,0.8787878787878788,TRE,ERCO,TX,29.449827,-101.06011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6128,Amistad Dam & Power,2,1983.0,33.0,29.0,29.0,27,WAT,Conventional Hydroelectric,OP,HY,10.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8787878787878788,0.8787878787878788,TRE,ERCO,TX,29.449827,-101.06011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6130,Carters,1,1975.0,125.0,120.0,140.0,120,WAT,Conventional Hydroelectric,OP,HY,11.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,1.0,SERC,SOCO,GA,34.6121,-84.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6130,Carters,2,1975.0,125.0,120.0,140.0,120,WAT,Conventional Hydroelectric,OP,HY,7.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,1.0,SERC,SOCO,GA,34.6121,-84.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6130,Carters,3,1977.0,125.0,160.0,160.0,140,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,1977.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,34.6121,-84.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6130,Carters,4,1977.0,125.0,160.0,160.0,140,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1977.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,34.6121,-84.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6131,Jones Bluff,1,1975.0,20.5,20.5,20.5,15,WAT,Conventional Hydroelectric,OP,HY,6.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.324242,-86.784319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6131,Jones Bluff,2,1975.0,20.5,20.5,20.5,15,WAT,Conventional Hydroelectric,OP,HY,7.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.324242,-86.784319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6131,Jones Bluff,3,1975.0,20.5,20.5,20.5,15,WAT,Conventional Hydroelectric,OP,HY,9.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.324242,-86.784319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6131,Jones Bluff,4,1975.0,20.5,20.5,20.5,15,WAT,Conventional Hydroelectric,OP,HY,10.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,AL,32.324242,-86.784319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,1,1985.0,75.0,84.0,84.0,70,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,2,1985.0,75.0,84.0,84.0,70,WAT,Conventional Hydroelectric,OP,HY,2.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,3,1985.0,75.0,84.0,84.0,70,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,4,1986.0,75.0,84.0,84.0,70,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,5,2002.0,82.0,82.0,82.0,70,WAT,Hydroelectric Pumped Storage,OS,PS,9.0,2002.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,6,2002.0,82.0,82.0,82.0,70,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,2002.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,7,2002.0,82.0,82.0,82.0,70,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,2002.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6132,Richard B Russell,8,2002.0,82.0,82.0,82.0,70,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,2002.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SEPA,GA,34.0256,-82.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6133,West Point (GA),1,1975.0,3.3,3.0,3.0,3,WAT,Conventional Hydroelectric,OP,HY,4.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909092,0.9090909090909092,SERC,SOCO,GA,32.918674,-85.1887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6133,West Point (GA),2,1975.0,35.0,42.0,42.0,35,WAT,Conventional Hydroelectric,OP,HY,4.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,32.918674,-85.1887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6133,West Point (GA),3,1975.0,35.0,42.0,42.0,35,WAT,Conventional Hydroelectric,OP,HY,4.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,32.918674,-85.1887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6137,A B Brown,1,1979.0,265.2,245.0,245.0,120,BIT,Conventional Steam Coal,OP,ST,3.0,1979.0,10,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9238310708898945,0.9238310708898945,RFC,MISO,IN,37.9053,-87.715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.387650270261123 -6137,A B Brown,2,1986.0,265.2,240.0,240.0,120,BIT,Conventional Steam Coal,OP,ST,2.0,1986.0,10,2023,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9049773755656109,0.9049773755656109,RFC,MISO,IN,37.9053,-87.715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.204061558560557 -6137,A B Brown,4,1991.0,88.2,80.0,87.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9070294784580498,0.9863945578231292,RFC,MISO,IN,37.9053,-87.715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.132842208158406 -6137,A B Brown,5,2002.0,88.2,80.0,87.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9070294784580498,0.9863945578231292,RFC,MISO,IN,37.9053,-87.715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6138,Flint Creek,1,1978.0,558.0,494.0,494.0,190,SUB,Conventional Steam Coal,OP,ST,5.0,1978.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8853046594982079,0.8853046594982079,MRO,SWPP,AR,36.2561,-94.5241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.986882102032553 -6139,Welsh,1,1977.0,558.0,500.0,500.0,150,SUB,Conventional Steam Coal,OP,ST,3.0,1977.0,1,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8960573476702509,0.8960573476702509,MRO,SWPP,TX,33.05522,-94.839993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.730308934446459 -6139,Welsh,3,1982.0,558.0,500.0,500.0,150,SUB,Conventional Steam Coal,OP,ST,3.0,1982.0,1,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8960573476702509,0.8960573476702509,MRO,SWPP,TX,33.05522,-94.839993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.494887934448618 -6140,Clarence Cannon,1,1984.0,27.0,27.0,27.0,27,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,AECI,MO,39.524791,-91.643969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6140,Clarence Cannon,2,1984.0,31.0,31.0,31.0,31,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1984.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,AECI,MO,39.524791,-91.643969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6141,Harry Truman,1,1982.0,26.9,31.0,31.0,3,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1982.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,MRO,SPA,MO,38.2623,-93.4062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6141,Harry Truman,2,1982.0,26.9,31.0,31.0,3,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1982.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,MRO,SPA,MO,38.2623,-93.4062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6141,Harry Truman,3,1982.0,26.9,31.0,31.0,3,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1982.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,MRO,SPA,MO,38.2623,-93.4062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6141,Harry Truman,4,1982.0,26.9,31.0,31.0,3,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1982.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,MRO,SPA,MO,38.2623,-93.4062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6141,Harry Truman,5,1981.0,26.9,31.0,31.0,3,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1981.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,MRO,SPA,MO,38.2623,-93.4062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6141,Harry Truman,6,1979.0,26.9,31.0,31.0,3,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1979.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,MRO,SPA,MO,38.2623,-93.4062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6142,Ozark,1,1972.0,20.0,23.0,23.0,7,WAT,Conventional Hydroelectric,OP,HY,11.0,1972.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,35.4693,-93.8175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6142,Ozark,2,1973.0,20.0,23.0,23.0,7,WAT,Conventional Hydroelectric,OP,HY,8.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,35.4693,-93.8175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6142,Ozark,3,1973.0,20.0,23.0,23.0,7,WAT,Conventional Hydroelectric,OP,HY,10.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,35.4693,-93.8175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6142,Ozark,4,1973.0,20.0,23.0,23.0,7,WAT,Conventional Hydroelectric,OS,HY,12.0,1973.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,35.4693,-93.8175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6142,Ozark,5,1974.0,20.0,23.0,23.0,7,WAT,Conventional Hydroelectric,OP,HY,5.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,AR,35.4693,-93.8175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6145,Comanche Peak,1,1990.0,1215.0,1205.0,1235.0,1112,NUC,Nuclear,OP,ST,8.0,1990.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9917695473251029,1.0,TRE,ERCO,TX,32.298365,-97.785515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6145,Comanche Peak,2,1993.0,1215.0,1195.0,1225.0,1103,NUC,Nuclear,OP,ST,4.0,1993.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9835390946502057,1.0,TRE,ERCO,TX,32.298365,-97.785515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6146,Martin Lake,1,1977.0,793.2,800.0,815.0,220,SUB,Conventional Steam Coal,OP,ST,5.0,1977.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.2606,-94.5706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.269703612358223 -6146,Martin Lake,2,1978.0,793.2,805.0,820.0,220,SUB,Conventional Steam Coal,OP,ST,5.0,1978.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.2606,-94.5706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.946784813034538 -6146,Martin Lake,3,1979.0,793.2,805.0,820.0,230,SUB,Conventional Steam Coal,OP,ST,4.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,32.2606,-94.5706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.922851056101994 -6149,Davis Besse,1,1977.0,925.2,894.0,908.0,110,NUC,Nuclear,OP,ST,11.0,1977.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9662775616083008,0.9814094249891915,RFC,PJM,OH,41.5967,-83.0861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6150,Bellefonte,DG-1,1998.0,7.0,7.0,7.0,7,DFO,Petroleum Liquids,OS,IC,12.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.7092,-85.9278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6150,Bellefonte,DG-2,1998.0,7.0,7.0,7.0,7,DFO,Petroleum Liquids,OS,IC,12.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.7092,-85.9278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6151,Raccoon Mountain,1,1979.0,428.4,404.7,404.7,40,WAT,Hydroelectric Pumped Storage,OP,PS,1.0,1979.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9446778711484594,0.9446778711484594,SERC,TVA,TN,35.055795,-85.387934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6151,Raccoon Mountain,2,1978.0,428.4,404.1,404.1,300,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1978.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9432773109243698,0.9432773109243698,SERC,TVA,TN,35.055795,-85.387934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6151,Raccoon Mountain,3,1979.0,428.4,403.5,403.5,300,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1979.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9418767507002802,0.9418767507002802,SERC,TVA,TN,35.055795,-85.387934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6151,Raccoon Mountain,4,1979.0,428.4,404.0,404.0,300,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1979.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9430438842203549,0.9430438842203549,SERC,TVA,TN,35.055795,-85.387934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6152,Sequoyah,1,1981.0,1220.5,1152.0,1177.4,1152,NUC,Nuclear,OP,ST,7.0,1981.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9438754608766898,0.9646866038508809,SERC,TVA,TN,35.2267,-85.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6152,Sequoyah,2,1982.0,1220.5,1125.7,1155.1,1125.7,NUC,Nuclear,OP,ST,6.0,1982.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9223269151986891,0.9464154035231461,SERC,TVA,TN,35.2267,-85.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6153,Callaway,1,1984.0,1235.8,1190.0,1236.0,800,NUC,Nuclear,OP,ST,12.0,1984.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9629389868910827,1.0,SERC,MISO,MO,38.758919,-91.778841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6155,Rush Island,1,1976.0,621.0,589.0,609.0,275,SUB,Conventional Steam Coal,OP,ST,3.0,1976.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9484702093397746,0.9806763285024155,SERC,MISO,MO,38.131248,-90.263157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856716502626393 -6155,Rush Island,2,1977.0,621.0,589.0,609.0,280,SUB,Conventional Steam Coal,OP,ST,3.0,1977.0,12,2025,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9484702093397746,0.9806763285024155,SERC,MISO,MO,38.131248,-90.263157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.274278960814529 -6156,New Haven Harbor,1,1975.0,460.0,432.6,453.3,100,RFO,Petroleum Liquids,OP,ST,7.0,1975.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9404347826086957,0.9854347826086957,NPCC,ISNE,CT,41.283997,-72.904323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6156,New Haven Harbor,2,2012.0,60.5,43.2,47.7,43,KER,Petroleum Liquids,OP,GT,6.0,2012.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7140495867768595,0.7884297520661158,NPCC,ISNE,CT,41.283997,-72.904323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6156,New Haven Harbor,3,2012.0,60.5,43.2,47.7,43,KER,Petroleum Liquids,OP,GT,6.0,2012.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7140495867768595,0.7884297520661158,NPCC,ISNE,CT,41.283997,-72.904323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6156,New Haven Harbor,4,2012.0,60.5,43.2,47.7,43,KER,Petroleum Liquids,OP,GT,6.0,2012.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7140495867768595,0.7884297520661158,NPCC,ISNE,CT,41.283997,-72.904323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6158,New Melones,1,1979.0,150.0,191.0,191.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,37.946927,-120.528211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6158,New Melones,2,1979.0,150.0,191.0,191.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,37.946927,-120.528211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6159,Crystal,1,1978.0,28.0,35.0,35.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.510573,-107.625335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,1,1942.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,10,1951.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,11,1951.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,12,1951.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,13,1950.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,14,1950.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,15,1950.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,16,1949.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,17,1949.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,18,1949.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,19,1975.0,600.0,690.0,690.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,2,1942.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,20,1976.0,600.0,690.0,690.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,21,1976.0,600.0,690.0,690.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,22,1978.0,805.0,805.0,805.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,23,1979.0,805.0,805.0,805.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,24,1980.0,805.0,805.0,805.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,3,1941.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,4,1944.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,5,1943.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,6,1943.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,7,1947.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,8,1943.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,9,1948.0,125.0,125.0,125.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,LS1,1941.0,10.0,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,LS2,1941.0,10.0,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,LS3,1951.0,10.0,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,PG10,1983.0,53.5,53.5,53.5,0,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1983.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,PG11,1983.0,53.5,53.5,53.5,0,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1983.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,PG12,1984.0,53.5,53.5,53.5,0,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1984.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,PG7,1973.0,50.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,PG8,1973.0,50.0,50.0,50.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1973.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6163,Grand Coulee,PG9,1983.0,53.5,53.5,53.5,0,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1983.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,BPAT,WA,47.957511,-118.977323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6165,Hunter,1,1978.0,525.0,446.0,446.0,80,BIT,Conventional Steam Coal,OP,ST,6.0,1978.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8495238095238096,0.8495238095238096,WECC,PACE,UT,39.1747,-111.0289,Hunter_1,ST-Col,False,48.0,108.0,-1.0,16.485,16.485,55102.97,6594.0,1.0,2.4,471.0,11.165890158844306,-578.2384966120865,0.021467321825968697,-1.7510539013680964,1165.7615515479808,9.000213209227041,#TRUE#,#1978-06-01#,#2042-12-31#,Existing,PAUT,BS_PACE,137.375,471.0,476.0,UT,Coal,,#FALSE#,137.375,471,10.499905004784479 -6165,Hunter,2,1980.0,525.0,446.0,446.0,80,BIT,Conventional Steam Coal,OP,ST,6.0,1980.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8495238095238096,0.8495238095238096,WECC,PACE,UT,39.1747,-111.0289,Hunter_2,ST-Col,False,48.0,108.0,-1.0,15.05,15.05,50306.32,6020.0,1.0,2.4,430.0,13.463952244250873,-738.0307361810704,0.027987899861705055,-1.910502262347044,1157.07724691992,10.436247156586294,#TRUE#,#1980-06-01#,#2042-12-31#,Existing,PAUT,BS_PACE,125.417,430.0,476.0,UT,Coal,,#FALSE#,125.417,430,10.754557432758428 -6165,Hunter,3,1983.0,527.2,471.0,471.0,60,BIT,Conventional Steam Coal,OP,ST,6.0,1983.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8933990895295902,0.8933990895295902,WECC,PACE,UT,39.1747,-111.0289,Hunter_3,ST-Col,False,48.0,108.0,-1.0,16.1,16.1,53816.07,6440.0,1.0,2.4,460.0,12.336713446126291,-621.6162408574486,0.025090425916279642,-2.9370314682842666,1508.233989164027,10.091942524966806,#TRUE#,#1983-06-01#,#2042-12-31#,Existing,PAUT,BS_PACE,154.851,460.0,500.5,UT,Coal,,#FALSE#,154.851,460,11.21845060317135 -6166,Rockport,1,1984.0,1300.0,1300.0,1299.0,500,SUB,Conventional Steam Coal,OP,ST,12.0,1984.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9992307692307693,RFC,PJM,IN,37.9256,-87.0372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6166,Rockport,2,1989.0,1300.0,1300.0,1299.0,500,SUB,Conventional Steam Coal,OP,ST,12.0,1989.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9992307692307693,RFC,PJM,IN,37.9256,-87.0372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6167,Bath County,1,1985.0,477.0,500.0,500.0,207,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1985.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,PJM,VA,38.20889,-79.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6167,Bath County,2,1985.0,477.0,500.0,500.0,207,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1985.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,PJM,VA,38.20889,-79.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6167,Bath County,3,1985.0,477.0,502.0,502.0,207,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1985.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,PJM,VA,38.20889,-79.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6167,Bath County,4,1985.0,477.0,500.0,500.0,207,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1985.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,PJM,VA,38.20889,-79.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6167,Bath County,5,1985.0,477.0,501.0,501.0,207,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1985.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,PJM,VA,38.20889,-79.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6167,Bath County,6,1985.0,477.0,500.0,500.0,207,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1985.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,PJM,VA,38.20889,-79.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6168,North Anna,1,1978.0,979.7,948.0,982.0,185,NUC,Nuclear,OP,ST,6.0,1978.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9676431560681841,1.0,SERC,PJM,VA,38.06,-77.7897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6168,North Anna,2,1980.0,979.7,944.0,976.0,185,NUC,Nuclear,OP,ST,12.0,1980.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9635602735531285,0.9962233336735735,SERC,PJM,VA,38.06,-77.7897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6168,North Anna,HC1,1987.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,38.06,-77.7897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6171,Laurel Dam,1,1977.0,70.0,61.0,61.0,61,WAT,Conventional Hydroelectric,OP,HY,11.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8714285714285714,0.8714285714285714,SERC,PJM,KY,36.9614,-84.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6172,Libby,1,1975.0,105.0,105.0,105.0,105,WAT,Conventional Hydroelectric,OP,HY,8.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.4098,-115.3143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6172,Libby,2,1975.0,105.0,105.0,105.0,105,WAT,Conventional Hydroelectric,OP,HY,10.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.4098,-115.3143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6172,Libby,3,1976.0,105.0,105.0,105.0,105,WAT,Conventional Hydroelectric,OP,HY,1.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.4098,-115.3143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6172,Libby,4,1976.0,105.0,105.0,105.0,105,WAT,Conventional Hydroelectric,OP,HY,4.0,1976.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.4098,-115.3143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6172,Libby,5,1984.0,105.0,105.0,105.0,105,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,MT,48.4098,-115.3143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6174,Lost Creek,1,1977.0,24.5,24.5,24.5,24.4,WAT,Conventional Hydroelectric,OP,HY,9.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.6717,-122.6772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6174,Lost Creek,2,1977.0,24.5,24.5,24.5,24.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.6717,-122.6772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6175,Lower Granite,1,1975.0,135.0,135.0,135.0,110,WAT,Conventional Hydroelectric,OP,HY,4.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.659503,-117.429385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6175,Lower Granite,2,1975.0,135.0,127.0,127.0,46.4,WAT,Conventional Hydroelectric,OP,HY,5.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9407407407407408,0.9407407407407408,WECC,BPAT,WA,46.659503,-117.429385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6175,Lower Granite,3,1975.0,135.0,135.0,135.0,46.4,WAT,Conventional Hydroelectric,OP,HY,6.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.659503,-117.429385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6175,Lower Granite,4,1978.0,135.0,135.0,135.0,57.5,WAT,Conventional Hydroelectric,OA,HY,2.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.659503,-117.429385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6175,Lower Granite,5,1978.0,135.0,135.0,135.0,57.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.659503,-117.429385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6175,Lower Granite,6,1978.0,135.0,135.0,135.0,57.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.659503,-117.429385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6177,Coronado,CO1,1979.0,410.9,380.0,380.0,50,SUB,Conventional Steam Coal,OP,ST,12.0,1979.0,12,2032,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9247992212217084,0.9247992212217084,WECC,SRP,AZ,34.5789,-109.2708,Coronado CO1,ST-Col,False,48.0,108.0,-1.0,13.3,13.3,44456.75,5320.0,1.0,2.4,380.0,11.312234740341848,41.284132102042896,0.019058212034158938,1.7536235357703984,1152.6401531117247,11.497694142835533,#TRUE#,#1979-12-01#,#2050-12-31#,Existing,SRP,SW_SRP,138.182,380.0,418.0,AZ,Coal,,#FALSE#,138.182,380, -6177,Coronado,CO2,1980.0,410.9,382.0,382.0,170,SUB,Conventional Steam Coal,OP,ST,10.0,1980.0,12,2032,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.929666585543928,0.929666585543928,WECC,SRP,AZ,34.5789,-109.2708,Coronado CO2,ST-Col,False,48.0,108.0,-1.0,13.37,13.37,44690.73,5348.0,1.0,2.4,382.0,11.59711592603136,-80.56317601567784,0.018492004569539446,1.6591912556454707,1189.6331112341654,11.271140230427804,#TRUE#,#1980-10-01#,#2050-12-31#,Existing,SRP,SW_SRP,170.0,382.0,420.0,AZ,Coal,,#FALSE#,170,382, -6178,Coleto Creek,1,1980.0,622.4,655.0,655.0,175,SUB,Conventional Steam Coal,OP,ST,6.0,1980.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.7128,-97.214167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.335803361861618 -6179,Fayette Power Project,1,1979.0,615.0,590.0,598.0,156,SUB,Conventional Steam Coal,OP,ST,6.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.959349593495935,0.9723577235772358,TRE,ERCO,TX,29.9172,-96.7506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.570017194518417 -6179,Fayette Power Project,2,1980.0,615.0,590.0,598.0,156,SUB,Conventional Steam Coal,OP,ST,5.0,1980.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.959349593495935,0.9723577235772358,TRE,ERCO,TX,29.9172,-96.7506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.61581029322965 -6179,Fayette Power Project,3,1988.0,460.0,435.0,440.0,180,SUB,Conventional Steam Coal,OP,ST,4.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9456521739130435,0.9565217391304348,TRE,ERCO,TX,29.9172,-96.7506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.44236801438221 -6180,Oak Grove (TX),OG1,2010.0,916.8,855.0,855.0,348,LIG,Conventional Steam Coal,OP,ST,4.0,2010.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9325916230366492,0.9325916230366492,TRE,ERCO,TX,31.1803,-96.4866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6180,Oak Grove (TX),OG2,2011.0,878.6,855.0,855.0,455,LIG,Conventional Steam Coal,OP,ST,4.0,2011.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9731390849078079,0.9731390849078079,TRE,ERCO,TX,31.1803,-96.4866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6181,J T Deely,1,1977.0,486.0,420.0,420.0,125,SUB,Conventional Steam Coal,OS,ST,8.0,1977.0,1,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8641975308641976,0.8641975308641976,TRE,ERCO,TX,29.308056,-98.3228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6181,J T Deely,2,1978.0,446.0,420.0,420.0,125,SUB,Conventional Steam Coal,OS,ST,8.0,1978.0,1,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9417040358744395,0.9417040358744395,TRE,ERCO,TX,29.308056,-98.3228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6183,San Miguel,1,1982.0,410.0,391.0,391.0,250,LIG,Conventional Steam Coal,OP,ST,1.0,1982.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9536585365853658,0.9536585365853658,TRE,ERCO,TX,28.7044,-98.4775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6188,Harris Dam,1,1983.0,67.5,66.5,61.5,61.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9851851851851852,0.9111111111111111,SERC,SOCO,AL,33.258281,-85.616047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6188,Harris Dam,2,1983.0,67.5,66.5,61.5,61.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9851851851851852,0.9111111111111111,SERC,SOCO,AL,33.258281,-85.616047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6189,Rocky Mountain Hydroelectric Plant,1,1995.0,282.6,345.0,345.0,100,WAT,Hydroelectric Pumped Storage,OP,PS,7.0,1995.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,34.355538,-85.303942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6189,Rocky Mountain Hydroelectric Plant,2,1995.0,282.6,345.0,345.0,100,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1995.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,34.355538,-85.303942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6189,Rocky Mountain Hydroelectric Plant,3,1995.0,282.6,345.0,345.0,100,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1995.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,SOCO,GA,34.355538,-85.303942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6190,Brame Energy Center,1,1975.0,445.5,421.6,422.0,55,NG,Natural Gas Steam Turbine,OP,ST,6.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9463524130190797,0.9472502805836139,SERC,MISO,LA,31.395,-92.716667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.94297716213439 -6190,Brame Energy Center,2,1982.0,558.0,496.6,493.0,180,SUB,Conventional Steam Coal,OP,ST,8.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8899641577060933,0.8835125448028673,SERC,MISO,LA,31.395,-92.716667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.680225007289177 -6190,Brame Energy Center,3,2010.0,703.8,627.9,628.0,400,PC,Petroleum Coke,OP,ST,2.0,2010.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8921568627450981,0.8922989485649333,SERC,MISO,LA,31.395,-92.716667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6193,Harrington,1,1976.0,360.0,339.0,339.0,120,SUB,Conventional Steam Coal,OP,ST,1.0,1976.0,12,2036,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9416666666666667,0.9416666666666667,MRO,SWPP,TX,35.29816,-101.747187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6193,Harrington,2,1978.0,360.0,339.0,339.0,120,SUB,Conventional Steam Coal,OP,ST,1.0,1978.0,12,2038,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9416666666666667,0.9416666666666667,MRO,SWPP,TX,35.29816,-101.747187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6193,Harrington,3,1980.0,360.0,340.0,340.0,125,SUB,Conventional Steam Coal,OP,ST,1.0,1980.0,12,2040,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9444444444444444,MRO,SWPP,TX,35.29816,-101.747187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6194,Tolk,1,1982.0,567.9,532.0,532.0,125,SUB,Conventional Steam Coal,OP,ST,1.0,1982.0,12,2037,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9367846451840113,0.9367846451840113,MRO,SWPP,TX,34.186494,-102.56999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6194,Tolk,2,1985.0,567.9,535.0,535.0,125,SUB,Conventional Steam Coal,OP,ST,1.0,1985.0,12,2037,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9420672653636204,0.9420672653636204,MRO,SWPP,TX,34.186494,-102.56999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6195,John Twitty Energy Center,GT1,1983.0,57.0,52.0,52.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9122807017543859,0.9122807017543859,MRO,SWPP,MO,37.151706,-93.38804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6195,John Twitty Energy Center,GT2,1983.0,52.0,52.0,52.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,MO,37.151706,-93.38804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6195,John Twitty Energy Center,ST1,1976.0,194.0,184.0,184.0,84,SUB,Conventional Steam Coal,OP,ST,6.0,1976.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9484536082474226,0.9484536082474226,MRO,SWPP,MO,37.151706,-93.38804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6195,John Twitty Energy Center,ST2,2011.0,300.0,275.0,275.0,116,SUB,Conventional Steam Coal,OP,ST,1.0,2011.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9166666666666666,0.9166666666666666,MRO,SWPP,MO,37.151706,-93.38804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6196,W E Warne,1,1982.0,37.1,38.0,38.0,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.6853,-118.7881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6196,W E Warne,2,1983.0,37.1,38.0,38.0,5,WAT,Conventional Hydroelectric,OP,HY,2.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.6853,-118.7881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,A,1931.0,1.2,1.2,1.2,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-1,1931.0,20.7,15.0,15.0,10,WAT,Conventional Hydroelectric,OS,HY,11.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7246376811594203,0.7246376811594203,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-10,1953.0,22.5,19.0,19.0,10,WAT,Conventional Hydroelectric,OP,HY,4.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8444444444444444,0.8444444444444444,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-2,1931.0,20.7,15.0,15.0,10,WAT,Conventional Hydroelectric,OS,HY,10.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7246376811594203,0.7246376811594203,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-3,1932.0,20.7,15.0,15.0,10,WAT,Conventional Hydroelectric,OA,HY,12.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7246376811594203,0.7246376811594203,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-4,1932.0,20.7,15.0,15.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7246376811594203,0.7246376811594203,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-5,1952.0,22.5,17.0,17.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7555555555555555,0.7555555555555555,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-6,1952.0,22.5,17.0,17.0,10,WAT,Conventional Hydroelectric,OA,HY,10.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7555555555555555,0.7555555555555555,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-7,1952.0,22.5,17.0,17.0,10,WAT,Conventional Hydroelectric,OP,HY,11.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7555555555555555,0.7555555555555555,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-8,1953.0,22.5,17.0,17.0,10,WAT,Conventional Hydroelectric,OP,HY,1.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7555555555555555,0.7555555555555555,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,B-9,1953.0,22.5,19.0,19.0,10,WAT,Conventional Hydroelectric,OP,HY,3.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8444444444444444,0.8444444444444444,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-1,1979.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,8.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-2,1979.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,6.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-3,1979.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,4.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-4,1979.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,2.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-5,1978.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,12.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-6,1978.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-7,1978.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,8.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6200,Rock Island,U-8,1978.0,51.3,42.0,42.0,10,WAT,Conventional Hydroelectric,OP,HY,7.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8187134502923977,0.8187134502923977,WECC,CHPD,WA,47.346111,-120.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6202,Ross,41,1956.0,112.5,112.5,112.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.732577,-121.06788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6202,Ross,42,1954.0,112.5,112.5,112.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.732577,-121.06788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6202,Ross,43,1953.0,112.5,112.5,112.5,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.732577,-121.06788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6202,Ross,44,1952.0,112.5,112.5,112.5,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.732577,-121.06788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6204,Laramie River Station,1,1981.0,621.0,560.0,560.0,200,SUB,Conventional Steam Coal,OP,ST,9.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9017713365539453,0.9017713365539453,WECC,WACM,WY,42.108889,-104.8825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.213046166698131 -6204,Laramie River Station,2,1981.0,621.0,570.0,570.0,200,SUB,Conventional Steam Coal,OP,ST,7.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9178743961352657,0.9178743961352657,WECC,WACM,WY,42.108889,-104.8825,LaramieRiver2,ST-Col,False,48.0,108.0,-1.0,21.175,21.175,70779.83,7980.0,1.0,2.4,570.0,11.731525619971817,-570.1008732344164,0.019852255733592495,-3.486822775013883,2124.780715832989,10.11258887778938,#TRUE#,#1981-07-01#,#2050-12-31#,Existing,WACM,RM_WACM,203.902,570.0,291.9755,WY,Coal,,#FALSE#,203.902,570,11.424918195738481 -6204,Laramie River Station,3,1982.0,621.0,570.0,570.0,230,SUB,Conventional Steam Coal,OP,ST,11.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9178743961352657,0.9178743961352657,WECC,WACM,WY,42.108889,-104.8825,LaramieRiver3,ST-Col,False,48.0,108.0,-1.0,21.175,21.175,70779.83,7980.0,1.0,2.4,570.0,10.448690313722732,336.67127332409797,0.008078907266078952,4.193349130966578,1461.0033497544018,11.389917684843784,#TRUE#,#1982-11-01#,#2050-12-31#,Existing,WACM,RM_WACM,211.452,570.0,400.0,WY,Coal,,#FALSE#,211.452,570,12.217011849475327 -6206,Tacoma,1,1906.0,2.3,2.3,2.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,37.52372,-107.782786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6206,Tacoma,2,1905.0,2.3,2.3,2.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,37.52372,-107.782786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6207,Ames Hydro,1,1906.0,3.6,2.8,2.8,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7777777777777777,0.7777777777777777,WECC,WACM,CO,37.866,-107.8831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6208,Mount Elbert,1,1981.0,100.0,115.0,115.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1981.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WACM,CO,39.094197,-106.352331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6208,Mount Elbert,2,1984.0,100.0,115.0,115.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,2.0,1984.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WACM,CO,39.094197,-106.352331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6210,Northeast (WA),1,1978.0,61.8,45.0,66.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1978.0,12,2035,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7281553398058253,1.0,WECC,AVA,WA,47.73511,-117.370538,Northeast,GT,False,1.0,1.0,-1.0,54.0,54.0,1797.482,271.8,1.0,0.45,60.0,-1.1552001929625124,478.21200838641874,-7.426570107108237e-06,-1.1545540840900705,478.1985070053261,10.302303683145677,#TRUE#,#1978-12-01#,#2050-12-31#,Existing,AVA,NW_AVA,30.0,60.0,55.0,WA,NG,Areo,#FALSE#,30,60,12.202077431539188 -6211,Dynegy Oakland Power Plant,GEN1,1978.0,74.5,55.0,55.0,15,JF,Petroleum Liquids,OP,GT,11.0,1978.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.738255033557047,0.738255033557047,WECC,CISO,CA,37.79675,-122.28185,Oakland_Pwr1,GT,False,2.0,2.0,-1.0,5.0,5.0,1858.987,5.5,1.0,2.027986,55.0,8.761610314511936,113.21143110418323,-1.3116052798231581e-06,8.761698982512971,113.21009306511252,12.554176435457599,#TRUE#,#1978-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,16.5,55.0,51.7,CA,,,#FALSE#,16.5,55,13.689439674786883 -6211,Dynegy Oakland Power Plant,GEN3,1978.0,74.5,55.0,55.0,15,JF,Petroleum Liquids,OP,GT,11.0,1978.0, , ,,,,,oil,oil,Jet Fuel,Combustion (Gas) Turbine,0.738255033557047,0.738255033557047,WECC,CISO,CA,37.79675,-122.28185,Oakland_Pwr3,GT,False,2.0,2.0,-1.0,5.0,5.0,1858.987,5.5,1.0,2.027986,55.0,8.761610314511936,113.21143110418323,-1.3116052798231581e-06,8.761698982512971,113.21009306511252,12.554176435457599,#TRUE#,#1978-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,16.5,55.0,55.0,CA,,,#FALSE#,16.5,55,13.689439674786883 -6213,Merom,1,1983.0,540.0,488.0,495.0,250,BIT,Conventional Steam Coal,OP,ST,9.0,1983.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9037037037037037,0.9166666666666666,RFC,MISO,IN,39.0694,-87.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6213,Merom,2,1982.0,540.0,489.0,494.0,240,BIT,Conventional Steam Coal,OP,ST,2.0,1982.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9055555555555556,0.9148148148148149,RFC,MISO,IN,39.0694,-87.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6220,Durant,7,1998.0,1.8,1.8,1.8,1.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.59976,-90.91195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.949398663697105 -6220,Durant,8,2011.0,2.6,2.6,2.6,1.5,DFO,Petroleum Liquids,SB,IC,5.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.59976,-90.91195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.948689485044712 -6223,Empire Energy Center,1,1978.0,129.0,80.0,90.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1978.0,12,2035,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6201550387596899,0.6976744186046512,MRO,SWPP,MO,37.1385,-94.1041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.03580408718725 -6223,Empire Energy Center,2,1981.0,129.0,82.0,92.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1981.0,12,2035,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6356589147286822,0.7131782945736433,MRO,SWPP,MO,37.1385,-94.1041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.934868667712236 -6223,Empire Energy Center,3,2003.0,60.5,41.0,58.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.9586776859504132,MRO,SWPP,MO,37.1385,-94.1041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6223,Empire Energy Center,4,2003.0,60.5,41.0,58.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.9586776859504132,MRO,SWPP,MO,37.1385,-94.1041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6229,Mobile,1,1980.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,OP,IC,1.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.883013,-97.601363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.88202042304887 -6229,Mobile,2,1996.0,1.6,1.6,1.6,0,DFO,Petroleum Liquids,OP,IC,3.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.883013,-97.601363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.88260770458172 -6229,Mobile,500,1994.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,OP,IC,10.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.883013,-97.601363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.882202771699491 -6231,Apple River,1,1901.0,0.8,0.4,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1901.0,12,2024,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.625,MRO,MISO,WI,45.157552,-92.716214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6231,Apple River,3,1901.0,0.8,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1901.0,12,2024,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.75,MRO,MISO,WI,45.157552,-92.716214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6231,Apple River,4,1901.0,0.8,0.5,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1901.0,12,2024,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.75,MRO,MISO,WI,45.157552,-92.716214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6238,Pearl Station,GT1,1973.0,24.0,20.1,22.0,2,DFO,Petroleum Liquids,OP,GT,6.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8375,0.9166666666666666,SERC,MISO,IL,39.449185,-90.614119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.980582524271846 -6243,Dansby,1,1978.0,105.0,110.0,110.0,12,NG,Natural Gas Steam Turbine,OP,ST,9.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,30.7217,-96.4608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.624904606447185 -6243,Dansby,2,2004.0,49.1,47.1,48.1,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9592668024439919,0.9796334012219959,TRE,ERCO,TX,30.7217,-96.4608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.153337405066653 -6243,Dansby,3,2010.0,49.1,47.1,48.1,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9592668024439919,0.9796334012219959,TRE,ERCO,TX,30.7217,-96.4608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.219816474587073 -6248,Pawnee,1,1981.0,552.3,505.0,505.0,200,SUB,Conventional Steam Coal,OP,ST,11.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9143581386927395,0.9143581386927395,WECC,PSCO,CO,40.2217,-103.6803,Pawnee 1,ST-Col,False,48.0,108.0,-1.0,17.675,17.675,59080.68,7070.0,1.0,2.4,505.0,11.481122672407325,-23.608365604500854,0.009252402719445777,4.960434477027488,1056.2426562302717,11.40960003207684,#TRUE#,#1981-11-01#,#2041-12-31#,Existing,PSCO,RM_PSCO,205.741,505.0,521.0798,CO,Coal,,#FALSE#,205.741,505,11.579687430372562 -6249,Winyah,1,1975.0,315.0,275.0,280.0,100,BIT,Conventional Steam Coal,OP,ST,3.0,1975.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.873015873015873,0.8888888888888888,SERC,SC,SC,33.33184,-79.357236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.835803258456904 -6249,Winyah,2,1977.0,315.0,285.0,290.0,100,BIT,Conventional Steam Coal,OP,ST,7.0,1977.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9047619047619048,0.9206349206349207,SERC,SC,SC,33.33184,-79.357236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.389546981604068 -6249,Winyah,3,1980.0,315.0,285.0,290.0,100,BIT,Conventional Steam Coal,OP,ST,5.0,1980.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9047619047619048,0.9206349206349207,SERC,SC,SC,33.33184,-79.357236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.787052697032822 -6249,Winyah,4,1981.0,315.0,285.0,290.0,110,BIT,Conventional Steam Coal,OP,ST,11.0,1981.0,12,2028,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9047619047619048,0.9206349206349207,SERC,SC,SC,33.33184,-79.357236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.643283657847538 -6250,Mayo,1,1983.0,763.2,704.0,713.0,75,BIT,Conventional Steam Coal,OP,ST,3.0,1983.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9224318658280922,0.9342243186582808,SERC,CPLE,NC,36.5278,-78.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6251,South Texas Project,1,1988.0,1354.3,1300.0,1340.0,1280,NUC,Nuclear,OP,ST,8.0,1988.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9599054862290483,0.9894410396514806,TRE,ERCO,TX,28.795,-96.0481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6251,South Texas Project,2,1989.0,1354.3,1280.0,1320.0,1280,NUC,Nuclear,OP,ST,6.0,1989.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9451377095178322,0.9746732629402644,TRE,ERCO,TX,28.795,-96.0481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6253,Germantown,1,1978.0,61.2,49.2,69.9,30,DFO,Petroleum Liquids,OP,GT,7.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.803921568627451,1.0,RFC,MISO,WI,43.1952,-88.1496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6253,Germantown,2,1978.0,61.2,49.0,69.6,30,DFO,Petroleum Liquids,OP,GT,7.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8006535947712418,1.0,RFC,MISO,WI,43.1952,-88.1496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6253,Germantown,3,1978.0,61.2,47.5,67.5,30,DFO,Petroleum Liquids,OP,GT,7.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7761437908496731,1.0,RFC,MISO,WI,43.1952,-88.1496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6253,Germantown,4,1978.0,61.2,46.8,66.5,30,DFO,Petroleum Liquids,OP,GT,7.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7647058823529411,1.0,RFC,MISO,WI,43.1952,-88.1496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6253,Germantown,5,2000.0,90.9,76.2,103.9,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8382838283828382,1.0,RFC,MISO,WI,43.1952,-88.1496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6254,Ottumwa,1,1981.0,725.9,729.3,740.7,190,SUB,Conventional Steam Coal,OP,ST,5.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.0961,-92.555833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.295748384045542 -6257,Scherer,1,1982.0,891.0,860.0,860.0,350,SUB,Conventional Steam Coal,OP,ST,3.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9652076318742986,0.9652076318742986,SERC,SOCO,GA,33.0606,-83.8075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.266915192763804 -6257,Scherer,2,1984.0,891.0,860.0,860.0,350,SUB,Conventional Steam Coal,OP,ST,2.0,1984.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9652076318742986,0.9652076318742986,SERC,SOCO,GA,33.0606,-83.8075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.893610009803302 -6257,Scherer,3,1987.0,891.0,860.0,860.0,350,SUB,Conventional Steam Coal,OP,ST,1.0,1987.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9652076318742986,0.9652076318742986,SERC,SOCO,GA,33.0606,-83.8075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.007153881642367 -6258,Wilson,5A,1972.0,52.5,41.0,54.0,4,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.780952380952381,1.0,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6258,Wilson,5B,1972.0,52.5,56.0,67.0,4,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6258,Wilson,5C,1972.0,52.5,49.0,61.0,4,DFO,Petroleum Liquids,OP,GT,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9333333333333333,1.0,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6258,Wilson,5D,1973.0,52.5,41.0,56.0,4,DFO,Petroleum Liquids,OP,GT,2.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.780952380952381,1.0,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6258,Wilson,5E,1973.0,52.5,54.0,61.0,4,DFO,Petroleum Liquids,OP,GT,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6258,Wilson,5F,1973.0,52.5,54.0,65.0,4,DFO,Petroleum Liquids,OP,GT,4.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6258,Wilson,IC1,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,SERC,SOCO,GA,33.137711,-81.748294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6264,Mountaineer,1,1980.0,1300.0,1299.0,1299.0,500,BIT,Conventional Steam Coal,OP,ST,9.0,1980.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9992307692307693,0.9992307692307693,RFC,PJM,WV,38.9794,-81.9344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.219966455702147 -6265,Swift 2,21,1959.0,36.0,34.0,34.0,0,WAT,Conventional Hydroelectric,OS,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,WECC,PACW,WA,46.0594,-122.2594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6265,Swift 2,22,1958.0,36.0,31.0,31.0,0,WAT,Conventional Hydroelectric,OS,HY,12.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8611111111111112,0.8611111111111112,WECC,PACW,WA,46.0594,-122.2594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6280,Ozark Beach,5,1931.0,4.0,4.0,4.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,MO,36.658995,-93.1235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6280,Ozark Beach,6,1931.0,4.0,4.0,4.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,MO,36.658995,-93.1235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6280,Ozark Beach,7,1931.0,4.0,4.0,4.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,MO,36.658995,-93.1235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6280,Ozark Beach,8,1931.0,4.0,4.0,4.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,MO,36.658995,-93.1235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6281,Kodiak Microgrid,1,1976.0,2.5,2.5,2.5,0.6,DFO,Petroleum Liquids,OP,IC,12.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.789956,-152.396982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6281,Kodiak Microgrid,2c,2005.0,4.4,4.4,4.4,1.1,DFO,Petroleum Liquids,OP,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.789956,-152.396982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6281,Kodiak Microgrid,3c,2005.0,4.4,4.4,4.4,1.1,DFO,Petroleum Liquids,OP,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.789956,-152.396982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6281,Kodiak Microgrid,4,1981.0,7.0,7.0,7.0,2.5,DFO,Petroleum Liquids,OP,IC,7.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.789956,-152.396982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6282,Port Lions Microgrid,5,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.864775,-152.855441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6283,Seldovia,5,2004.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.439542,-151.713439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.030785936905048 -6283,Seldovia,7,2017.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.439542,-151.713439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.030749183462795 -6285,North Pole,1,1976.0,60.5,44.0,60.0,8,DFO,Petroleum Liquids,OP,GT,12.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7272727272727273,0.9917355371900827,non-conus,non-conus,AK,64.7356,-147.3481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.652290915238954 -6285,North Pole,2,1977.0,60.5,50.0,64.0,8,DFO,Petroleum Liquids,OP,GT,2.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8264462809917356,1.0,non-conus,non-conus,AK,64.7356,-147.3481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.652290915238954 -6285,North Pole,GT3,2007.0,47.0,41.0,53.0,15,WO,Petroleum Liquids,OP,CT,3.0,2007.0, , ,,,,,oil,oil,Waste/Other Oil ,Combined Cycle Combustion Turbine Part,0.8723404255319149,1.0,non-conus,non-conus,AK,64.7356,-147.3481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.306764671470555 -6285,North Pole,STG1,2007.0,13.0,10.0,12.0,8,WO,Petroleum Liquids,OP,CA,3.0,2007.0, , ,,,,,oil,oil,Waste/Other Oil ,Combined Cycle Steam Part,0.7692307692307692,0.9230769230769231,non-conus,non-conus,AK,64.7356,-147.3481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6286,Fairbanks,5,1970.0,2.7,2.8,2.8,2.8,DFO,Petroleum Liquids,SB,IC,5.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.854171,-147.719351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6286,Fairbanks,6,1970.0,2.7,2.8,2.8,2.8,DFO,Petroleum Liquids,SB,IC,9.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.854171,-147.719351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6286,Fairbanks,GT1,1971.0,18.4,15.5,17.7,3,DFO,Petroleum Liquids,OP,GT,5.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8423913043478262,0.9619565217391305,non-conus,non-conus,AK,64.854171,-147.719351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.74351994318854 -6286,Fairbanks,GT2,1972.0,18.4,15.0,17.7,3,DFO,Petroleum Liquids,OP,GT,11.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8152173913043479,0.9619565217391305,non-conus,non-conus,AK,64.854171,-147.719351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.74351994318854 -6288,Healy,1,1967.0,28.0,25.0,25.0,1.5,LIG,Conventional Steam Coal,OP,ST,11.0,1967.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8928571428571429,0.8928571428571429,non-conus,non-conus,AK,63.8542,-148.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.309919468549882 -6288,Healy,2,1998.0,62.0,50.0,50.0,8,LIG,Conventional Steam Coal,OP,ST,1.0,1998.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8064516129032258,0.8064516129032258,non-conus,non-conus,AK,63.8542,-148.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.044296951827345 -6288,Healy,IC1,1967.0,2.8,2.8,2.8,2.5,DFO,Petroleum Liquids,OP,IC,9.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.8542,-148.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6291,Cooper Lake,1,1961.0,9.7,9.7,9.7,6.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,60.392331,-149.665603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6291,Cooper Lake,2,1961.0,9.7,9.7,9.7,6.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,60.392331,-149.665603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6292,Bernice Lake,2,1971.0,20.7,17.0,19.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8212560386473431,0.9178743961352658,non-conus,non-conus,AK,60.6935,-151.3874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.981100637358285 -6292,Bernice Lake,3,1978.0,28.8,22.9,26.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7951388888888888,0.9027777777777778,non-conus,non-conus,AK,60.6935,-151.3874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.98116494284159 -6292,Bernice Lake,4,1981.0,27.2,22.5,26.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8272058823529412,0.9558823529411765,non-conus,non-conus,AK,60.6935,-151.3874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.981121200297945 -6293,International,1,1964.0,15.0,12.6,14.1,1,NG,Natural Gas Fired Combustion Turbine,OS,GT,12.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.84,0.94,non-conus,non-conus,AK,61.168972,-149.911038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6299,Unalakleet,5,2010.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,non-conus,non-conus,AK,63.876789,-160.790414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.468163641956322 -6299,Unalakleet,6,2010.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,non-conus,non-conus,AK,63.876789,-160.790414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.468163641956322 -6299,Unalakleet,7,2010.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,non-conus,non-conus,AK,63.876789,-160.790414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.468163641956322 -6299,Unalakleet,8,2010.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,non-conus,non-conus,AK,63.876789,-160.790414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.468163641956322 -6301,Naknek,4A,1999.0,1.3,1.3,1.3,1,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637225102998537 -6301,Naknek,5A,2005.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637224747638207 -6301,Naknek,6A,2006.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,4.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637224747638207 -6301,Naknek,7A,2006.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,4.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637224747638207 -6301,Naknek,8,1977.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,12.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637224747638207 -6301,Naknek,NA1,1988.0,1.1,1.1,1.1,1,DFO,Petroleum Liquids,OP,IC,5.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637222854973423 -6301,Naknek,NA2,1988.0,1.1,1.1,1.1,1,DFO,Petroleum Liquids,OP,IC,5.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637222854973423 -6301,Naknek,NA3,1991.0,0.8,0.8,0.8,0.8,DFO,Petroleum Liquids,OP,IC,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637220697731475 -6301,Naknek,NA4,1992.0,0.8,0.8,0.8,0.8,DFO,Petroleum Liquids,OP,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637220697731475 -6301,Naknek,NA5,1993.0,0.8,0.8,0.8,0.8,DFO,Petroleum Liquids,OP,IC,9.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637220697731475 -6301,Naknek,NA6,2019.0,3.3,3.0,0.1,1.7,DFO,Petroleum Liquids,OP,IC,4.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909092,0.030303030303030276,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637222644056358 -6301,Naknek,NA7,2019.0,3.3,3.0,0.1,1.7,DFO,Petroleum Liquids,OP,IC,4.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909092,0.030303030303030276,non-conus,non-conus,AK,58.730417,-157.007222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.637222644056358 -6302,Purple Lake,1,1956.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.091263,-131.544978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6302,Purple Lake,2,1956.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.091263,-131.544978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6302,Purple Lake,3,1962.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.091263,-131.544978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,10,1992.0,3.0,3.0,3.0,1.5,DFO,Petroleum Liquids,OP,IC,12.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225381903062265 -6304,Kotzebue Hybrid,11wt,2005.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2005.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,13WT,2006.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,14,1994.0,2.8,2.8,2.8,1,DFO,Petroleum Liquids,OP,IC,7.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225383848306874 -6304,Kotzebue Hybrid,14wt,2002.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2002.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,15,2006.0,2.8,2.8,2.8,1,DFO,Petroleum Liquids,OP,IC,2.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225383848306874 -6304,Kotzebue Hybrid,15WT,2006.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,16,2013.0,1.4,1.4,1.4,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225383848306874 -6304,Kotzebue Hybrid,16WT,2006.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,17,2016.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225383319006948 -6304,Kotzebue Hybrid,17WT,2006.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,18WT,2012.0,0.9,0.9,0.9,0.9,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,19WT,2012.0,0.9,0.9,0.9,0.9,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,1WT,1999.0,0.6,0.6,0.6,0.6,WND,Onshore Wind Turbine,OP,WT,5.0,1999.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,2WT,1999.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,1999.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,3WT,1997.0,0.2,0.2,0.2,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,1997.0,5,2025,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,7A,1987.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225381136737667 -6304,Kotzebue Hybrid,ES1,2015.0,1.2,1.2,1.2,0,MWH,Batteries,OP,BA,12.0,2015.0, , ,1.0,1.2,1.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV1,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV2,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV3,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV4,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV5,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV6,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV7,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6304,Kotzebue Hybrid,PV8,2020.0,0.1,0.1,0.1,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0,7,2040,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,AK,66.837778,-162.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6305,Glennallen,6,1976.0,2.6,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,AK,62.110415,-145.532529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.925831237581804 -6305,Glennallen,7,1976.0,2.6,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,AK,62.110415,-145.532529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.925831237581804 -6305,Glennallen,8,1999.0,1.2,1.2,1.2,0.2,DFO,Petroleum Liquids,OP,IC,2.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.110415,-145.532529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.925830346555435 -6305,Glennallen,9,2010.0,2.8,2.8,2.8,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.110415,-145.532529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.925832718097954 -6306,Valdez,11,2017.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.1303,-146.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333221660850473 -6306,Valdez,12,2017.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.1303,-146.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333221660850473 -6306,Valdez,4,1972.0,1.9,1.5,1.5,0.2,DFO,Petroleum Liquids,OP,IC,10.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7894736842105263,0.7894736842105263,non-conus,non-conus,AK,61.1303,-146.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333224418802978 -6306,Valdez,5,1975.0,2.6,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,non-conus,non-conus,AK,61.1303,-146.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333224755700327 -6306,Valdez,6,1974.0,0.9,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,non-conus,non-conus,AK,61.1303,-146.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333228311840562 -6311,Chevak,1A,2009.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.525297,-165.590152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.897179419741697 -6311,Chevak,2A,2009.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.525297,-165.590152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.897179419741697 -6311,Chevak,3A,2009.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.525297,-165.590152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.897176672366317 -6314,Emmonak,2A,2012.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.777694,-164.531517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.92494658210007 -6314,Emmonak,4a,2005.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.777694,-164.531517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.92494658210007 -6314,Emmonak,5B,2016.0,1.3,1.3,1.3,0.3,DFO,Petroleum Liquids,OP,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.777694,-164.531517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.924947362714803 -6314,Emmonak,6,1995.0,0.9,0.9,0.9,0.2,DFO,Petroleum Liquids,OP,IC,4.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.777694,-164.531517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.924947459086994 -6319,Hooper Bay,3B,2018.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.530858,-166.101944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.580174332736317 -6319,Hooper Bay,4B,2013.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.530858,-166.101944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.58017800555014 -6319,Hooper Bay,5A,2016.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.530858,-166.101944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.580173577656898 -6319,Hooper Bay,6,1997.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,OP,IC,10.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.530858,-166.101944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.58017800555014 -6323,Kiana,1B,2001.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.973889,-160.428592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.012856344326439 -6323,Kiana,3B,2019.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.973889,-160.428592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.012861941230822 -6323,Kiana,4,1984.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.973889,-160.428592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.012851866807438 -6329,Mountain Village,1,1984.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,4.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.085569,-163.729072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.73995916244486 -6329,Mountain Village,3B,2005.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2005.0,5,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.085569,-163.729072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.739977924562103 -6329,Mountain Village,4A,2015.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,12.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.085569,-163.729072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.73993209809658 -6329,Mountain Village,5A,2010.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,OP,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.085569,-163.729072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.739945760976797 -6330,Noorvik,1A,1997.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.834519,-161.038717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.011214953271029 -6330,Noorvik,2B,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.834519,-161.038717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.011219164121105 -6330,Noorvik,3A,2003.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,OP,IC,12.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.834519,-161.038717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.011211945523382 -6333,Nunapitchuk,1A,2006.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.89588,-162.459756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6338,St Marys IC,1C,2022.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.051525,-163.172567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.811101393295006 -6338,St Marys IC,2A,2022.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.051525,-163.172567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.811101393295006 -6338,St Marys IC,3A,2022.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,OP,IC,10.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.051525,-163.172567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.811104546516261 -6338,St Marys IC,4,2022.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,OP,IC,10.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.051525,-163.172567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.811104546516261 -6341,Selawik,1B,2020.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,12.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.606778,-160.014808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.008537492812609 -6341,Selawik,2B,2013.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.606778,-160.014808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.0085459549898 -6341,Selawik,3B,2014.0,0.9,0.5,0.5,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5555555555555556,0.5555555555555556,non-conus,non-conus,AK,66.606778,-160.014808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.008541776452322 -6345,Shishmaref,1,2004.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.255072,-166.073589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289340101522841 -6345,Shishmaref,2,1976.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.255072,-166.073589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289340101522841 -6345,Shishmaref,3A,2002.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.255072,-166.073589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289340101522843 -6345,Shishmaref,4A,2006.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.255072,-166.073589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289340101522843 -6348,Togiak,1,2019.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.059744,-160.380278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.37023580568794 -6348,Togiak,2B,2019.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.059744,-160.380278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.37023580568794 -6348,Togiak,3,2019.0,1.1,1.1,1.1,0.2,DFO,Petroleum Liquids,OP,IC,4.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.059744,-160.380278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.370239185454732 -6348,Togiak,4C,2019.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.059744,-160.380278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.370243241178487 -6356,Sixth Street Gas Turbine,1,1974.0,24.0,16.0,20.0,10,DFO,Petroleum Liquids,OP,GT,5.0,1974.0,5,2023,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6666666666666667,0.8333333333333334,RFC,MISO,MI,42.792645,-86.103583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6358,Hutchinson Plant #2,2,1994.0,54.0,41.0,41.0,10,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7592592592592593,0.7592592592592593,MRO,MISO,MN,44.888881,-94.349348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6358,Hutchinson Plant #2,3,1994.0,11.5,10.0,10.0,2.5,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8695652173913043,0.8695652173913043,MRO,MISO,MN,44.888881,-94.349348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6358,Hutchinson Plant #2,9,2001.0,25.0,22.0,24.3,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.88,0.972,MRO,MISO,MN,44.888881,-94.349348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6359,Felt,1,1986.0,2.7,2.3,2.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8518518518518517,0.8518518518518517,WECC,PACE,ID,43.913476,-111.283319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6359,Felt,2,1986.0,2.7,2.3,2.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8518518518518517,0.8518518518518517,WECC,PACE,ID,43.913476,-111.283319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6359,Felt,4,1946.0,0.9,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,WECC,PACE,ID,43.913476,-111.283319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6359,Felt,5,1947.0,1.1,0.8,0.8,0.7,WAT,Conventional Hydroelectric,OP,HY,9.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7272727272727273,0.7272727272727273,WECC,PACE,ID,43.913476,-111.283319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6369,Detour,6,1973.0,3.0,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,10.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,MISO,MI,45.98363,-83.90788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.670947030497592 -6369,Detour,7,1976.0,3.0,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,8.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,MISO,MI,45.98363,-83.90788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.670947030497592 -6373,Rokeby,1,1975.0,72.4,70.5,72.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.973756906077348,0.9944751381215469,MRO,SWPP,NE,40.7316,-96.7364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.911237860940274 -6373,Rokeby,2,1997.0,95.4,90.4,91.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9475890985324947,0.9538784067085954,MRO,SWPP,NE,40.7316,-96.7364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.037858802103138 -6373,Rokeby,3,2001.0,95.4,94.2,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9874213836477987,1.0,MRO,SWPP,NE,40.7316,-96.7364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.950040880534031 -6373,Rokeby,BSU,1997.0,2.9,3.2,3.2,0,DFO,Petroleum Liquids,OP,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.7316,-96.7364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6377,Ocracoke Hybrid,1,1991.0,3.0,3.0,3.0,3,DFO,Petroleum Liquids,OP,IC,4.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,35.109444,-75.979722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.398809523809526 -6377,Ocracoke Hybrid,BAT,2017.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,1.0,2017.0, , ,1.0,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,PJM,NC,35.109444,-75.979722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6378,Dwight,DW2,1920.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.149497,-72.610949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6378,Dwight,DW3,1920.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.149497,-72.610949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6378,Dwight,DW4,1920.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.149497,-72.610949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6379,Indian Orchard,IO3,1928.0,1.5,1.5,1.5,1.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.160954,-72.507631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6379,Indian Orchard,IO4,1928.0,2.2,2.2,2.2,2.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.160954,-72.507631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6388,Turners Falls,1,1913.0,1.4,1.9,1.9,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.608042,-72.561458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6388,Turners Falls,2,1913.0,0.4,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.608042,-72.561458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6388,Turners Falls,3,1910.0,1.3,1.3,1.3,1.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.608042,-72.561458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6388,Turners Falls,5,1905.0,1.3,1.4,1.4,1.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.608042,-72.561458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6388,Turners Falls,7,1910.0,1.3,1.4,1.4,1.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.608042,-72.561458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6390,Tangier,5,1993.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.8277,-75.9915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.735294117647058 -6390,Tangier,6,1993.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.8277,-75.9915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.735294117647058 -6391,Smith Island,2,1994.0,0.5,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,3.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,37.9955,-76.038881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.035714285714286 -6391,Smith Island,4,2021.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,37.9955,-76.038881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.035714285714286 -6393,Strawberry Creek,1,1940.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WY,42.905142,-110.893422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6393,Strawberry Creek,2,1940.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WY,42.905142,-110.893422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6393,Strawberry Creek,3,1951.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WY,42.905142,-110.893422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6394,Swift Creek,3,2009.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WY,42.728439,-110.916592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6394,Swift Creek,4,2010.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,2010.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WY,42.728439,-110.916592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6394,Swift Creek,5,2010.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,2010.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WY,42.728439,-110.916592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6395,Anderson Ranch,1,1950.0,20.0,20.0,20.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.357066,-115.451517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6395,Anderson Ranch,2,1951.0,20.0,20.0,20.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.357066,-115.451517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6396,Black Canyon,1,1925.0,5.1,5.1,5.1,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.930462,-116.437172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6396,Black Canyon,2,1925.0,5.1,5.1,5.1,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,43.930462,-116.437172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6397,Boise R Diversion,1A,2004.0,1.1,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,6.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.537685,-116.093756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6397,Boise R Diversion,2A,2004.0,1.1,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,6.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.537685,-116.093756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6397,Boise R Diversion,3A,2004.0,1.1,1.1,1.1,0,WAT,Conventional Hydroelectric,OP,HY,6.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.537685,-116.093756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6398,Minidoka,6,1927.0,2.7,2.7,2.7,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,42.669899,-113.483175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6398,Minidoka,7,1942.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,42.669899,-113.483175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6398,Minidoka,8,1997.0,10.0,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1997.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,42.669899,-113.483175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6398,Minidoka,9,1997.0,10.0,10.0,10.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1997.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,42.669899,-113.483175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6400,Canyon Ferry,1,1953.0,16.6,19.2,19.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,46.649026,-111.727874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6400,Canyon Ferry,2,1954.0,16.6,19.2,19.2,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,46.649026,-111.727874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6400,Canyon Ferry,3,1954.0,16.6,19.2,19.2,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,46.649026,-111.727874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6402,Elephant Butte,1,1940.0,9.3,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,33.153358,-107.191973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6402,Elephant Butte,2,1940.0,9.3,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,33.153358,-107.191973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6402,Elephant Butte,3,1940.0,9.3,9.3,9.3,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,33.153358,-107.191973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6403,Green Springs,1,1960.0,17.2,17.2,17.2,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1960.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,42.121168,-122.547896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6404,Deer Creek (UT),1,1958.0,2.4,2.7,2.7,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,UT,40.404354,-111.528446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6404,Deer Creek (UT),2,1958.0,2.4,2.7,2.7,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,UT,40.404354,-111.528446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6405,Flaming Gorge,1,1963.0,50.6,50.6,50.6,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,UT,40.914646,-109.421662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6405,Flaming Gorge,2,1963.0,50.6,50.6,50.6,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,UT,40.914646,-109.421662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6405,Flaming Gorge,3,1964.0,50.6,50.6,50.6,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,UT,40.914646,-109.421662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6406,Chandler,1,1956.0,6.0,6.0,6.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.26678,-119.589821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6406,Chandler,2,1956.0,6.0,6.0,6.0,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.26678,-119.589821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6407,Roza,1,1958.0,12.9,12.9,12.9,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.618413,-120.477759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6408,Heart Mountain,1,1948.0,5.0,5.0,4.6,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9199999999999999,WECC,WAUW,WY,44.513767,-109.129588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6409,Alcova,1,1955.0,20.7,20.7,20.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.548412,-106.717536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6409,Alcova,2,1955.0,20.7,20.7,20.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,42.548412,-106.717536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6410,Falcon Dam & Power,1,1954.0,10.5,10.5,10.5,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,26.5575,-99.1642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6410,Falcon Dam & Power,2,1954.0,10.5,10.0,10.0,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9523809523809523,TRE,ERCO,TX,26.5575,-99.1642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6410,Falcon Dam & Power,3,1954.0,10.5,10.0,10.0,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9523809523809523,TRE,ERCO,TX,26.5575,-99.1642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6413,Sam Rayburn Dam,1,1965.0,26.0,26.0,26.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,MISO,TX,31.060893,-94.1062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6413,Sam Rayburn Dam,2,1965.0,26.0,26.0,26.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,MISO,TX,31.060893,-94.1062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6414,Whitney,1,1953.0,20.9,21.0,21.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,31.8694,-97.3667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6414,Whitney,2,1953.0,20.9,21.0,21.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,31.8694,-97.3667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6415,Broken Bow Dam,1,1970.0,50.0,57.5,57.5,18,WAT,Conventional Hydroelectric,OP,HY,1.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,OK,34.138779,-94.684498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6415,Broken Bow Dam,2,1970.0,50.0,57.5,57.5,18,WAT,Conventional Hydroelectric,OP,HY,6.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,OK,34.138779,-94.684498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6416,Denison,1,1945.0,53.5,50.0,50.0,25,WAT,Conventional Hydroelectric,OP,HY,3.0,1945.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9345794392523364,0.9345794392523364,TRE,ERCO,TX,33.8181,-96.5692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6416,Denison,2,1949.0,50.8,50.0,50.0,25,WAT,Conventional Hydroelectric,OP,HY,9.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.984251968503937,0.984251968503937,TRE,ERCO,TX,33.8181,-96.5692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6417,Center Hill,1,1950.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,11.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.0972,-85.8274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6417,Center Hill,2,1951.0,50.0,50.0,50.0,45,WAT,Conventional Hydroelectric,OP,HY,1.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.0972,-85.8274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6417,Center Hill,3,1951.0,45.0,52.0,52.0,45,WAT,Conventional Hydroelectric,OP,HY,4.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.0972,-85.8274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6418,Cheatham,1,1958.0,12.0,13.8,13.8,12,WAT,Conventional Hydroelectric,OP,HY,5.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.3208,-87.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6418,Cheatham,2,1958.0,12.0,13.8,13.8,12,WAT,Conventional Hydroelectric,OP,HY,9.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.3208,-87.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6418,Cheatham,3,1958.0,12.0,13.8,13.8,12,WAT,Conventional Hydroelectric,OP,HY,11.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,36.3208,-87.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6419,Eufaula Dam,1,1964.0,30.0,34.5,34.5,10,WAT,Conventional Hydroelectric,OP,HY,7.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.3069,-95.3572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6419,Eufaula Dam,2,1964.0,30.0,34.5,34.5,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.3069,-95.3572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6419,Eufaula Dam,3,1964.0,30.0,34.5,34.5,10,WAT,Conventional Hydroelectric,OP,HY,8.0,1964.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SPA,OK,35.3069,-95.3572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6421,Lemolo 2,1,1956.0,43.7,38.5,38.5,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8810068649885583,0.8810068649885583,WECC,PACW,OR,43.280611,-122.40248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6422,Madison Dam,MAD5,2021.0,4.1,4.1,4.1,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,45.487869,-111.633807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6422,Madison Dam,MAD6,2021.0,4.1,4.1,4.1,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,45.487869,-111.633807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6422,Madison Dam,MAD7,2022.0,4.1,4.1,4.1,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,2022.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,45.487869,-111.633807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6422,Madison Dam,MAD8,2022.0,4.1,4.1,4.1,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,2022.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,45.487869,-111.633807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6424,Chelan,A-1,1927.0,29.6,31.4,31.4,23,WAT,Conventional Hydroelectric,OP,HY,9.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.8347,-120.0133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6424,Chelan,A-2,1928.0,29.6,30.7,30.7,23,WAT,Conventional Hydroelectric,OP,HY,8.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CHPD,WA,47.8347,-120.0133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6430,Cedar Falls (WA),5,1921.0,15.0,15.0,15.0,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,47.4193,-121.781858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6430,Cedar Falls (WA),6,1929.0,15.0,15.0,15.0,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,47.4193,-121.781858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6431,Gorge,21,1924.0,36.8,32.0,32.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,0.8695652173913044,WECC,SCL,WA,48.698056,-121.208611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6431,Gorge,22,1924.0,36.8,32.0,32.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,0.8695652173913044,WECC,SCL,WA,48.698056,-121.208611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6431,Gorge,23,1929.0,36.8,32.0,32.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,0.8695652173913044,WECC,SCL,WA,48.698056,-121.208611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6431,Gorge,24,1951.0,96.9,97.0,97.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.698056,-121.208611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6432,Diablo,31,1937.0,90.0,90.0,90.0,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.713853,-121.131736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6432,Diablo,32,1936.0,90.0,90.0,90.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.713853,-121.131736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6432,Diablo,35,1936.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.713853,-121.131736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6432,Diablo,36,1936.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.713853,-121.131736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6433,Boundary,51,1967.0,158.4,158.4,158.4,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.987111,-117.347847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6433,Boundary,52,1967.0,161.5,161.5,161.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.987111,-117.347847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6433,Boundary,53,1967.0,158.4,158.4,158.4,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.987111,-117.347847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6433,Boundary,54,1967.0,161.5,161.5,161.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.987111,-117.347847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6433,Boundary,55,1985.0,239.4,232.0,232.0,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9690893901420217,0.9690893901420217,WECC,SCL,WA,48.987111,-117.347847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6433,Boundary,56,1986.0,239.4,232.0,232.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9690893901420217,0.9690893901420217,WECC,SCL,WA,48.987111,-117.347847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6438,Queens Creek,1,1949.0,1.4,1.4,1.4,1.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.27127,-83.676016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,1,1925.0,23.0,22.0,21.8,21,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9565217391304348,0.9478260869565218,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,10,1942.0,29.2,29.5,29.2,18,WAT,Conventional Hydroelectric,OP,HY,5.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,11,1942.0,29.2,29.2,29.0,18,WAT,Conventional Hydroelectric,OP,HY,7.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9931506849315068,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,12,1942.0,29.2,29.2,29.0,22,WAT,Conventional Hydroelectric,OP,HY,8.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9931506849315068,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,13,1943.0,29.2,29.4,29.1,18,WAT,Conventional Hydroelectric,OP,HY,4.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9965753424657535,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,14,1943.0,25.2,29.4,29.1,22,WAT,Conventional Hydroelectric,OP,HY,11.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,15,1949.0,29.2,29.2,29.0,18,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9931506849315068,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,16,1950.0,29.2,29.2,29.0,18,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9931506849315068,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,17,1950.0,29.2,29.0,28.8,18,WAT,Conventional Hydroelectric,OP,HY,2.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9931506849315068,0.9863013698630138,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,18,1950.0,25.2,29.0,28.7,18,WAT,Conventional Hydroelectric,OP,HY,3.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,19,1961.0,54.0,55.0,54.9,50,WAT,Conventional Hydroelectric,OP,HY,12.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,2,1925.0,23.0,22.3,22.1,21,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9695652173913044,0.9608695652173913,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,20,1962.0,54.0,55.0,55.0,50,WAT,Conventional Hydroelectric,OP,HY,1.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,21,1962.0,54.0,55.0,55.0,51.2,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,3,1925.0,23.0,23.0,22.7,21,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9869565217391304,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,4,1925.0,23.0,22.0,21.8,21,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9565217391304348,0.9478260869565218,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,5,1925.0,36.0,30.3,30.0,20,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8416666666666667,0.8333333333333334,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,6,1925.0,30.9,30.4,30.1,20,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9838187702265372,0.9741100323624596,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,7,1925.0,30.9,29.1,28.8,20,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9417475728155341,0.9320388349514563,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,8,1925.0,30.9,30.7,30.4,20,WAT,Conventional Hydroelectric,OP,HY,9.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.993527508090615,0.9838187702265372,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6440,Wilson Dam,9,1942.0,29.2,29.6,29.3,18,WAT,Conventional Hydroelectric,OP,HY,3.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,AL,34.79782,-87.62537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6449,Azusa,1,1949.0,3.0,2.0,2.0,2,WAT,Conventional Hydroelectric,OP,HY,2.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,WECC,CISO,CA,34.1548,-117.9093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6450,Proctor,1,1927.0,1.6,1.6,1.6,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.662775,-73.034023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6450,Proctor,2,1905.0,0.8,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,VT,43.662775,-73.034023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6450,Proctor,3,1905.0,0.8,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,VT,43.662775,-73.034023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6450,Proctor,4,1905.0,0.8,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1905.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,VT,43.662775,-73.034023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6450,Proctor,5,1984.0,2.9,2.8,2.9,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9655172413793103,1.0,NPCC,ISNE,VT,43.662775,-73.034023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6451,Beldens,1,1913.0,0.8,0.6,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,ISNE,VT,44.0525,-73.1762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6451,Beldens,2,1913.0,0.8,0.6,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,ISNE,VT,44.0525,-73.1762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6451,Beldens,HC3,1988.0,4.1,3.2,4.1,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7804878048780489,1.0,NPCC,ISNE,VT,44.0525,-73.1762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6456,Carver Falls,1,1922.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NY,43.6262,-73.3073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6456,Carver Falls,2,1922.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NY,43.6262,-73.3073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6459,Big Fork,1,1927.0,1.7,1.9,1.9,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,MT,48.0592,-114.0708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6459,Big Fork,2,1928.0,1.7,1.9,1.9,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,MT,48.0592,-114.0708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6459,Big Fork,3,1910.0,0.7,0.8,0.8,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,MT,48.0592,-114.0708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6462,River Bend,1,1986.0,1035.9,967.5,967.0,103.6,NUC,Nuclear,OP,ST,6.0,1986.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9339704604691572,0.9334877883965633,SERC,MISO,LA,30.757,-91.3327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6463,Ames GT,GT1,1972.0,21.3,16.1,23.9,1,DFO,Petroleum Liquids,OP,GT,5.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.755868544600939,1.0,MRO,MISO,IA,42.0272,-93.5828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6463,Ames GT,GT2,2005.0,57.4,22.2,,15,DFO,Petroleum Liquids,OP,GT,9.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.38675958188153303,,MRO,MISO,IA,42.0272,-93.5828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.7816669803120324 -6469,Antelope Valley,1,1984.0,477.0,450.0,450.0,200,LIG,Conventional Steam Coal,OP,ST,7.0,1984.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9433962264150944,0.9433962264150944,MRO,SWPP,ND,47.370542,-101.83566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6469,Antelope Valley,2,1986.0,477.0,450.0,450.0,200,LIG,Conventional Steam Coal,OP,ST,7.0,1986.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9433962264150944,0.9433962264150944,MRO,SWPP,ND,47.370542,-101.83566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6474,Port Allen (HI),3,1968.0,2.7,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745935508009707 -6474,Port Allen (HI),4,1968.0,2.7,1.2,1.2,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.4444444444444444,0.4444444444444444,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745935508009707 -6474,Port Allen (HI),5,1968.0,2.7,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745935508009707 -6474,Port Allen (HI),8,1991.0,8.6,7.6,7.6,1,DFO,Petroleum Liquids,OP,IC,12.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8837209302325582,0.8837209302325582,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74593517593532 -6474,Port Allen (HI),9,1991.0,8.6,7.6,7.6,1,DFO,Petroleum Liquids,OP,IC,12.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8837209302325582,0.8837209302325582,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74593517593532 -6474,Port Allen (HI),D6,1990.0,8.6,7.6,7.6,1,DFO,Petroleum Liquids,OP,IC,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8837209302325582,0.8837209302325582,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74593517593532 -6474,Port Allen (HI),D7,1990.0,8.6,7.6,7.6,1,DFO,Petroleum Liquids,OP,IC,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8837209302325582,0.8837209302325582,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74593517593532 -6474,Port Allen (HI),GT1,1973.0,19.2,19.0,19.0,1,DFO,Petroleum Liquids,OP,GT,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9895833333333334,0.9895833333333334,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.50661546987051 -6474,Port Allen (HI),GT2,1977.0,23.8,21.5,21.5,1,DFO,Petroleum Liquids,OP,GT,12.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9033613445378151,0.9033613445378151,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.506566887017797 -6474,Port Allen (HI),IC1,1964.0,2.0,1.5,1.5,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745938127671355 -6474,Port Allen (HI),IC2,1964.0,2.0,1.5,1.5,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,non-conus,non-conus,HI,21.899583,-159.585042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745938127671355 -6475,Gorge 18,1,1928.0,3.0,3.0,3.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.489997,-73.169312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6479,San Francisquito 1,1A,1983.0,22.5,27.0,27.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.590183,-118.454676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6479,San Francisquito 1,3,1917.0,9.9,11.0,11.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.590183,-118.454676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6479,San Francisquito 1,4,1923.0,10.6,12.0,12.0,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.590183,-118.454676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6479,San Francisquito 1,6,1987.0,22.5,27.0,27.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.590183,-118.454676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6480,San Francisquito 2,1,1920.0,14.0,14.5,14.5,0.1,WAT,Conventional Hydroelectric,OS,HY,7.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.534337,-118.525113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6480,San Francisquito 2,2,1920.0,14.0,14.4,14.4,0.1,WAT,Conventional Hydroelectric,OA,HY,8.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.534337,-118.525113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6480,San Francisquito 2,3,1932.0,18.0,16.0,16.0,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8888888888888888,0.8888888888888888,WECC,LDWP,CA,34.534337,-118.525113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6481,Intermountain Power Project,1,1986.0,820.0,900.0,900.0,270,BIT,Conventional Steam Coal,OP,ST,6.0,1986.0,7,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,LDWP,UT,39.509731,-112.58018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6481,Intermountain Power Project,2,1987.0,820.0,900.0,900.0,270,BIT,Conventional Steam Coal,OP,ST,5.0,1987.0,7,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,LDWP,UT,39.509731,-112.58018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6483,Mcindoes,GEN1,1931.0,2.6,2.3,2.4,2.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8846153846153845,0.923076923076923,NPCC,ISNE,VT,44.2603,-72.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6483,Mcindoes,GEN2,1931.0,2.6,2.3,2.4,2.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8846153846153845,0.923076923076923,NPCC,ISNE,VT,44.2603,-72.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6483,Mcindoes,GEN3,1931.0,2.6,2.8,3.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.2603,-72.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6483,Mcindoes,GEN4,1931.0,2.6,2.8,3.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.2603,-72.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6484,Bend,1,1913.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.062326,-121.313331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6484,Bend,2,1916.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.062326,-121.313331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6484,Bend,3,1917.0,0.6,0.5,0.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACW,OR,44.062326,-121.313331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6486,Mill C,1,1944.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6967,-73.6122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6486,Mill C,2,1943.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OA,HY,8.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6967,-73.6122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6486,Mill C,3,1984.0,3.8,3.8,3.8,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6967,-73.6122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6504,Maalaea,1,1971.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024962322026 -6504,Maalaea,10,1979.0,12.5,12.3,12.3,8,DFO,Petroleum Liquids,OP,IC,12.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9840000000000001,0.9840000000000001,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024977859567 -6504,Maalaea,11,1980.0,12.5,12.3,12.3,8,DFO,Petroleum Liquids,OP,IC,7.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9840000000000001,0.9840000000000001,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024977859567 -6504,Maalaea,12,1988.0,12.5,12.3,12.3,8,DFO,Petroleum Liquids,OP,IC,4.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9840000000000001,0.9840000000000001,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024977859567 -6504,Maalaea,13,1989.0,12.5,12.3,12.3,8,DFO,Petroleum Liquids,OP,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9840000000000001,0.9840000000000001,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024977859567 -6504,Maalaea,14,1992.0,23.6,21.1,21.1,8,DFO,Petroleum Liquids,OP,CT,5.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.8940677966101696,0.8940677966101696,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.726110780643532 -6504,Maalaea,15,1993.0,18.0,12.0,12.0,4,DFO,Petroleum Liquids,OP,CA,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Steam Part,0.6666666666666667,0.6666666666666667,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6504,Maalaea,16,1993.0,23.6,21.1,21.1,8,DFO,Petroleum Liquids,OP,CT,5.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.8940677966101696,0.8940677966101696,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.390136801371973 -6504,Maalaea,17,1998.0,25.0,17.6,17.6,14,DFO,Petroleum Liquids,OP,CT,12.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.7040000000000001,0.7040000000000001,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.952537415781524 -6504,Maalaea,18,2006.0,18.0,13.8,13.8,8.5,DFO,Petroleum Liquids,OP,CA,10.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Steam Part,0.7666666666666667,0.7666666666666667,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6504,Maalaea,19,2000.0,25.0,17.6,17.6,14,DFO,Petroleum Liquids,OP,CT,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.7040000000000001,0.7040000000000001,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.355848086667311 -6504,Maalaea,2,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,7.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024962322026 -6504,Maalaea,3,1972.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,9.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024962322026 -6504,Maalaea,4,1973.0,5.6,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,11.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024382985266 -6504,Maalaea,5,1973.0,5.6,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,12.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024382985266 -6504,Maalaea,6,1975.0,5.6,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,3.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024382985266 -6504,Maalaea,7,1975.0,5.6,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,8.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024382985266 -6504,Maalaea,8,1977.0,5.6,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,11.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024382985266 -6504,Maalaea,9,1978.0,5.6,5.5,5.5,3,DFO,Petroleum Liquids,OP,IC,7.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9821428571428572,0.9821428571428572,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024382985266 -6504,Maalaea,X1,1987.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,3.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024962322026 -6504,Maalaea,X2,1987.0,2.6,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,3.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,non-conus,non-conus,HI,20.80117,-156.492981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.161024962322026 -6505,Oak Grove,1,1924.0,25.5,22.0,22.0,4,WAT,Conventional Hydroelectric,OS,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8627450980392157,0.8627450980392157,WECC,PGE,OR,45.122009,-122.06987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6505,Oak Grove,2,1931.0,25.5,22.0,22.0,4,WAT,Conventional Hydroelectric,OS,HY,3.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8627450980392157,0.8627450980392157,WECC,PGE,OR,45.122009,-122.06987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6506,Moyie Springs,1,1941.0,1.0,1.1,1.1,0.7,WAT,Conventional Hydroelectric,OP,HY,12.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.7339,-116.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6506,Moyie Springs,2,1921.0,0.4,0.4,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.7339,-116.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6506,Moyie Springs,3,1950.0,1.0,1.1,1.1,0.7,WAT,Conventional Hydroelectric,OP,HY,12.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.7339,-116.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6506,Moyie Springs,4,1982.0,1.5,1.7,1.7,1.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.7339,-116.1752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6507,Drop 2 (WA),1,1942.0,2.5,2.1,2.1,0.8,WAT,Conventional Hydroelectric,OA,HY,8.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8400000000000001,0.8400000000000001,WECC,BPAT,WA,46.4492,-120.5342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6508,Drop 3 (WA),1,1932.0,0.8,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OS,HY,5.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,WECC,BPAT,WA,46.423133,-120.559997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6508,Drop 3 (WA),2,1932.0,0.8,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OS,HY,5.0,1932.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,WECC,BPAT,WA,46.423133,-120.559997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6510,Brunswick,1,1960.0,2.0,2.0,2.0,1.7,DFO,Petroleum Liquids,OS,IC,9.0,1960.0,9,2028,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,NEVP,NV,39.1522,-119.7478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6510,Brunswick,2,1960.0,2.0,2.0,2.0,1.7,DFO,Petroleum Liquids,OS,IC,9.0,1960.0,9,2028,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,NEVP,NV,39.1522,-119.7478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6510,Brunswick,3,1960.0,2.0,2.0,2.0,1.7,DFO,Petroleum Liquids,OS,IC,9.0,1960.0,9,2028,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,NEVP,NV,39.1522,-119.7478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6513,Fleish,1,1914.0,2.0,2.5,2.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,NV,39.2851,-119.5933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6515,Valencia,GT1,1989.0,18.0,13.5,14.8,8,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.75,0.8222222222222223,WECC,TEPC,AZ,31.363472,-110.931343,Valencia AZ 1,GT_MS 5001 M,False,1.0,1.0,-1.0,12.6,12.6,419.4126,62.514,1.0,0.45,14.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1989-08-01#,#2050-12-31#,Existing,TEPC,SW_TEPC,14.0,14.0,13.8,AZ,NG,Areo,#FALSE#,14,14,15.182258096010708 -6515,Valencia,GT2,1989.0,18.0,13.5,14.8,8,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.75,0.8222222222222223,WECC,TEPC,AZ,31.363472,-110.931343,Valencia AZ 2,GT_MS 5001 M,False,1.0,1.0,-1.0,12.6,12.6,419.4126,62.514,1.0,0.45,14.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1989-08-01#,#2050-12-31#,Existing,TEPC,SW_TEPC,14.0,14.0,13.8,AZ,NG,Areo,#FALSE#,14,14,15.182258096010708 -6515,Valencia,GT3,1989.0,18.0,13.5,14.8,8,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.75,0.8222222222222223,WECC,TEPC,AZ,31.363472,-110.931343,Valencia AZ 3,GT_MS 5001 M,False,1.0,1.0,-1.0,12.6,12.6,419.4126,62.514,1.0,0.45,14.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1989-08-01#,#2050-12-31#,Existing,TEPC,SW_TEPC,14.0,14.0,13.8,AZ,NG,Areo,#FALSE#,14,14,15.182258096010708 -6515,Valencia,GT4,2006.0,54.0,19.8,21.2,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.3666666666666666,0.3925925925925926,WECC,TEPC,AZ,31.363472,-110.931343,Valencia AZ 4,GT LM_LM2500,False,1.0,1.0,-1.0,18.9,18.9,629.1188,90.6,1.0,0.45,20.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2006-06-01#,#2050-12-31#,Existing,TEPC,SW_TEPC,20.0,20.0,20.0,AZ,NG,Areo,#FALSE#,20,20,15.18224852071006 -6516,Rocky Ford,IC1A,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,2.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.0492,-103.7136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6516,Rocky Ford,IC2,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.0492,-103.7136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6516,Rocky Ford,IC3,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.0492,-103.7136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6516,Rocky Ford,IC4,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.0492,-103.7136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6516,Rocky Ford,IC5,1964.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.0492,-103.7136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6517,Keowee,1,1971.0,78.8,76.0,76.0,76,WAT,Conventional Hydroelectric,OP,HY,4.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9644670050761421,0.9644670050761421,SERC,DUK,SC,34.7981,-82.8872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6517,Keowee,2,1971.0,78.8,76.0,76.0,76,WAT,Conventional Hydroelectric,OP,HY,4.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9644670050761421,0.9644670050761421,SERC,DUK,SC,34.7981,-82.8872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6518,Kings Beach,KB1,2008.0,2.5,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,WECC,NEVP,CA,39.245833,-120.027222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6518,Kings Beach,KB2,2008.0,2.5,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,WECC,NEVP,CA,39.245833,-120.027222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6518,Kings Beach,KB3,2008.0,2.5,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,WECC,NEVP,CA,39.245833,-120.027222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6518,Kings Beach,KB4,2008.0,2.5,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,WECC,NEVP,CA,39.245833,-120.027222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6518,Kings Beach,KB5,2008.0,2.5,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,WECC,NEVP,CA,39.245833,-120.027222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6518,Kings Beach,KB6,2008.0,2.5,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,WECC,NEVP,CA,39.245833,-120.027222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6519,Vergennes 9,1,1912.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.1664,-73.2575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6519,Vergennes 9,2,1912.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.1664,-73.2575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6519,Vergennes 9,4,1943.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.1664,-73.2575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6520,Waterbury 22,1,1953.0,5.5,5.0,5.0,2.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,NPCC,ISNE,VT,44.38126,-72.76769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6521,Lahontan,1,1911.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,NV,39.4625,-119.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6521,Lahontan,2,1911.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,NV,39.4625,-119.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6521,Lahontan,3,1911.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,NV,39.4625,-119.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6522,Yards Creek Energy,1,1965.0,151.0,140.0,140.0,70,WAT,Hydroelectric Pumped Storage,OP,PS,11.0,1965.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9271523178807947,0.9271523178807947,RFC,PJM,NJ,41.0006,-75.0314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6522,Yards Creek Energy,2,1965.0,151.0,140.0,140.0,70,WAT,Hydroelectric Pumped Storage,OP,PS,12.0,1965.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9271523178807947,0.9271523178807947,RFC,PJM,NJ,41.0006,-75.0314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6522,Yards Creek Energy,3,1965.0,151.0,140.0,140.0,70,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,1965.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",0.9271523178807947,0.9271523178807947,RFC,PJM,NJ,41.0006,-75.0314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6526,Rainbow Falls Auscble,1,1926.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.5236,-73.4617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6526,Rainbow Falls Auscble,2,1927.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.5236,-73.4617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6527,E J West,1,1930.0,11.0,10.2,11.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9272727272727272,1.0,NPCC,NYIS,NY,43.318906,-73.920785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6527,E J West,2,1930.0,11.0,10.4,11.1,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9454545454545454,1.0,NPCC,NYIS,NY,43.318906,-73.920785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6529,Searsburg,GEN1,1922.0,4.0,4.5,4.6,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,42.87084,-72.92732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6531,Verdi,1,1911.0,2.4,2.4,2.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,NV,39.3125,-119.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6532,Washoe,1,1904.0,1.3,0.9,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6923076923076923,0.5384615384615384,WECC,NEVP,NV,39.3022,-119.5604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6532,Washoe,2,1904.0,1.3,0.9,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6923076923076923,0.5384615384615384,WECC,NEVP,NV,39.3022,-119.5604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6537,Little Cottonwood,1,1983.0,2.4,2.4,2.4,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.584985,-111.800605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6537,Little Cottonwood,2,1983.0,2.4,2.4,2.4,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.584985,-111.800605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6543,Dam No. 4 Hydro Station,1,1909.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.493056,-77.826944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6543,Dam No. 4 Hydro Station,2,1909.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.493056,-77.826944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6543,Dam No. 4 Hydro Station,3,1991.0,0.9,0.9,0.9,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.493056,-77.826944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6544,Dam No. 5 Hydro Station,1,1919.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.605,-77.923055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6544,Dam No. 5 Hydro Station,2,1919.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.605,-77.923055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6546,Millville Hydro Station,1,1913.0,0.8,0.6,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,RFC,PJM,WV,39.273056,-77.784444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6546,Millville Hydro Station,2,1939.0,1.0,0.8,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,1.0,RFC,PJM,WV,39.273056,-77.784444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6546,Millville Hydro Station,3,1938.0,1.0,1.0,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.273056,-77.784444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6552,Foster,1,1968.0,10.0,10.0,10.0,10,WAT,Conventional Hydroelectric,OP,HY,9.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.4146,-122.6712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6552,Foster,2,1968.0,10.0,10.0,10.0,10,WAT,Conventional Hydroelectric,OP,HY,10.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,44.4146,-122.6712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6554,Waverly Municipal Electric North Plant,10,1993.0,7.0,7.0,7.0,1.5,DFO,Petroleum Liquids,OP,IC,4.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107829796623882 -6554,Waverly Municipal Electric North Plant,17,2015.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107766018306638 -6554,Waverly Municipal Electric North Plant,18,2015.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107766018306638 -6554,Waverly Municipal Electric North Plant,19,2015.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107766018306638 -6554,Waverly Municipal Electric North Plant,20,2015.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107766018306638 -6554,Waverly Municipal Electric North Plant,7,1958.0,3.5,3.5,3.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107829796623882 -6554,Waverly Municipal Electric North Plant,8,1967.0,3.7,3.7,3.7,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107705687945728 -6554,Waverly Municipal Electric North Plant,9,1967.0,3.7,3.7,3.7,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.107705687945728 -6555,McGrath,11,2021.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.95699,-155.594997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538808212318477 -6555,McGrath,12,2021.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.95699,-155.594997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538808212318477 -6555,McGrath,13,2021.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.95699,-155.594997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538808212318477 -6555,McGrath,14,2021.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.95699,-155.594997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.538808212318477 -6558,D G Hunter,10,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6558,D G Hunter,11,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6558,D G Hunter,5,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6558,D G Hunter,6,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6558,D G Hunter,7,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6558,D G Hunter,8,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6558,D G Hunter,9,2016.0,9.3,8.6,8.6,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9247311827956988,0.9247311827956988,SERC,MISO,LA,31.3207,-92.4613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58632676972064 -6559,George M Sullivan Generation Plant 2,10,2017.0,60.4,50.0,50.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8278145695364238,0.8278145695364238,non-conus,non-conus,AK,61.229713,-149.716744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.110090644211736 -6559,George M Sullivan Generation Plant 2,11,2017.0,30.9,29.0,29.0,3,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9385113268608415,0.9385113268608415,non-conus,non-conus,AK,61.229713,-149.716744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6559,George M Sullivan Generation Plant 2,7,1979.0,102.6,102.6,81.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.797270955165692,non-conus,non-conus,AK,61.229713,-149.716744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.237083131296806 -6559,George M Sullivan Generation Plant 2,9,2017.0,60.4,50.0,50.0,5,NG,Natural Gas Fired Combined Cycle,SB,CT,2.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8278145695364238,0.8278145695364238,non-conus,non-conus,AK,61.229713,-149.716744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.742000880389767 -6559,George M Sullivan Generation Plant 2,GT8,1984.0,92.6,77.7,86.5,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,12.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8390928725701945,0.9341252699784017,non-conus,non-conus,AK,61.229713,-149.716744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -6560,London,1,1935.0,4.8,4.8,4.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1944,-81.3706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6560,London,2,1935.0,4.8,4.8,4.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1944,-81.3706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6560,London,3,1935.0,4.8,4.8,4.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1944,-81.3706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6561,Marmet,1,1935.0,4.8,4.8,4.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.2526,-81.5695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6561,Marmet,2,1935.0,4.8,4.8,4.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.2526,-81.5695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6561,Marmet,3,1935.0,4.8,4.8,4.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.2526,-81.5695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6562,Winfield,1,1938.0,14.7,8.9,14.5,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6054421768707483,0.9863945578231293,RFC,PJM,WV,38.5274,-81.91392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6562,Winfield,2,1938.0,4.9,4.9,4.9,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.5274,-81.91392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6562,Winfield,3,1938.0,4.9,4.9,4.9,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.5274,-81.91392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6563,Unionville,1,1976.0,26.6,22.0,22.0,22,DFO,Petroleum Liquids,OS,GT,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8270676691729323,0.8270676691729323,SERC,AECI,MO,40.459344,-93.021833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6563,Unionville,2,1976.0,26.6,22.0,22.0,22,DFO,Petroleum Liquids,OS,GT,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8270676691729323,0.8270676691729323,SERC,AECI,MO,40.459344,-93.021833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6565,Berlin,1A,1961.0,1.1,1.1,1.1,0.8,DFO,Petroleum Liquids,OP,IC,6.0,1961.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.327778,-75.217222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.7277983784803 -6565,Berlin,5A,1989.0,2.5,2.5,2.5,1.2,DFO,Petroleum Liquids,OP,IC,12.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.327778,-75.217222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.72813251845911 -6565,Berlin,8A,2020.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.327778,-75.217222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.72788551280722 -6566,Bethel,1,1976.0,2.1,2.1,2.1,1.4,DFO,Petroleum Liquids,OP,IC,11.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.7897,-161.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293432137931784 -6566,Bethel,2,1976.0,2.1,2.1,2.1,1.4,DFO,Petroleum Liquids,OP,IC,11.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.7897,-161.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293432137931784 -6566,Bethel,3,1976.0,2.1,2.1,2.1,1.4,DFO,Petroleum Liquids,OP,IC,11.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.7897,-161.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293432137931784 -6566,Bethel,4,1976.0,2.1,2.1,2.1,1.4,DFO,Petroleum Liquids,OP,IC,11.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.7897,-161.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293432137931784 -6566,Bethel,6,1989.0,2.1,2.1,2.1,1.4,DFO,Petroleum Liquids,OP,IC,4.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.7897,-161.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293432137931784 -6566,Bethel,7,1992.0,2.1,2.1,2.1,1.4,DFO,Petroleum Liquids,OP,IC,12.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.7897,-161.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293432137931784 -6567,Block Island,23,2001.0,1.2,1.2,1.2,1.2,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,nan,RI,41.175556,-71.5711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.453735528993313 -6567,Block Island,24,2002.0,1.6,1.6,1.6,1.6,DFO,Petroleum Liquids,SB,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,nan,RI,41.175556,-71.5711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.453739804032217 -6567,Block Island,25,2006.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,3.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,nan,RI,41.175556,-71.5711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.453795116167719 -6567,Block Island,27,2018.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,6.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,nan,RI,41.175556,-71.5711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.453759716328356 -6579,Johnson,CAT8,2017.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.566881,-101.751065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.655172413793103 -6579,Johnson,CAT9,2017.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,OP,IC,8.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.566881,-101.751065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.655172413793103 -6580,Beaver Falls,1,1947.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.37975,-131.470269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6580,Beaver Falls,3,1954.0,2.2,2.2,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8181818181818181,non-conus,non-conus,AK,55.37975,-131.470269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6580,Beaver Falls,4,1954.0,2.2,2.2,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8181818181818181,non-conus,non-conus,AK,55.37975,-131.470269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6581,Silvis,1,1968.0,2.1,2.1,2.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.381402,-131.517758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,EP2,2012.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,6.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,GT1,1978.0,23.4,19.0,19.0,5,DFO,Petroleum Liquids,OP,GT,11.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.811965811965812,0.811965811965812,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,GT2,1999.0,19.7,17.0,17.0,5,DFO,Petroleum Liquids,OP,GT,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8629441624365483,0.8629441624365483,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,GT3,1999.0,19.7,17.0,17.0,5,DFO,Petroleum Liquids,OP,GT,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8629441624365483,0.8629441624365483,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,GT4,2006.0,42.0,44.0,44.0,10,DFO,Petroleum Liquids,OP,GT,6.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,MSD1,1991.0,9.6,7.5,7.5,4,DFO,Petroleum Liquids,OP,IC,6.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.78125,0.78125,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6584,Stock Island,MSD2,1991.0,9.6,7.5,7.5,4,DFO,Petroleum Liquids,OP,IC,6.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.78125,0.78125,SERC,FPL,FL,24.563333,-81.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6586,Wilkins Station,1,1975.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,11.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,NPCC,ISNE,MA,42.5131,-70.8583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.287037037037036 -6586,Wilkins Station,2,1975.0,2.7,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,11.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,NPCC,ISNE,MA,42.5131,-70.8583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.287037037037036 -6595,Toledo Bend,1,1969.0,40.5,40.0,40.0,32,WAT,Conventional Hydroelectric,OP,HY,2.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9876543209876543,0.9876543209876543,SERC,MISO,TX,31.173484,-93.565877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6595,Toledo Bend,2,1969.0,40.5,40.0,40.0,32,WAT,Conventional Hydroelectric,OP,HY,2.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9876543209876543,0.9876543209876543,SERC,MISO,TX,31.173484,-93.565877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6612,Union Valley,1,1963.0,38.6,38.6,38.6,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,38.86429,-120.444335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6618,Highgate Falls,1,1930.0,1.1,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,NPCC,ISNE,VT,44.933611,-73.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6618,Highgate Falls,2,1923.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.933611,-73.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6618,Highgate Falls,3,1954.0,3.2,2.9,2.9,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9062499999999999,0.9062499999999999,NPCC,ISNE,VT,44.933611,-73.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6618,Highgate Falls,4,1990.0,5.8,4.8,4.8,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8275862068965517,0.8275862068965517,NPCC,ISNE,VT,44.933611,-73.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6618,Highgate Falls,5,2012.0,0.5,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.19999999999999996,0.19999999999999996,NPCC,ISNE,VT,44.933611,-73.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6619,Burlington (CO),1,1977.0,64.7,50.0,60.0,25,DFO,Petroleum Liquids,SB,GT,6.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7727975270479134,0.9273570324574961,WECC,WACM,CO,39.3561,-102.2431,Burlington Oil 1,GT,False,1.0,1.0,-1.0,5.04,5.04,2975.094,228.312,1.0,0.56,50.4,-1.3418732089150702,466.3952070456507,-7.373064752451428e-06,-1.3413343844273542,466.3857489869448,11.960965576898285,#TRUE#,#1977-06-01#,#2050-12-31#,Existing,WACM,RM_WACM,25.2,50.4,25.0,CO,Oil,,#FALSE#,25.2,50.4,12.467228217952092 -6619,Burlington (CO),2,1977.0,64.7,50.0,60.0,25,DFO,Petroleum Liquids,SB,GT,7.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7727975270479134,0.9273570324574961,WECC,WACM,CO,39.3561,-102.2431,Burlington Oil 2,GT,False,1.0,1.0,-1.0,5.04,5.04,2975.094,228.312,1.0,0.56,50.4,-1.3418732089150702,466.3952070456507,-7.373064752451428e-06,-1.3413343844273542,466.3857489869448,11.960965576898285,#TRUE#,#1977-07-01#,#2050-12-31#,Existing,WACM,RM_WACM,25.2,50.4,25.0,CO,Oil,,#FALSE#,25.2,50.4,12.467228217952092 -6623,Fort Peck,1,1943.0,41.2,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,48.0122,-106.4123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6623,Fort Peck,2,1948.0,17.3,20.0,20.0,0,WAT,Conventional Hydroelectric,OS,HY,2.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,48.0122,-106.4123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6623,Fort Peck,3,1951.0,41.2,50.0,50.0,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,48.0122,-106.4123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6623,Fort Peck,4,1961.0,40.0,49.0,49.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,48.0122,-106.4123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6623,Fort Peck,5,1961.0,40.0,49.0,49.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,48.0122,-106.4123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6624,Gavins Point,1,1956.0,44.1,34.0,34.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7709750566893424,0.7709750566893424,MRO,SWPP,NE,42.848829,-97.481479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6624,Gavins Point,2,1956.0,44.1,34.0,34.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1956.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7709750566893424,0.7709750566893424,MRO,SWPP,NE,42.848829,-97.481479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6624,Gavins Point,3,1957.0,44.1,34.0,34.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7709750566893424,0.7709750566893424,MRO,SWPP,NE,42.848829,-97.481479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6635,A L Pierce,4,2007.0,84.0,74.1,94.6,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8821428571428571,1.0,NPCC,ISNE,CT,41.44823,-72.834884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6636,Lake Lynn Hydro Station,1,1926.0,12.8,13.0,13.0,3,WAT,Conventional Hydroelectric,OP,HY,9.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.720278,-79.856111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6636,Lake Lynn Hydro Station,2,1929.0,12.8,13.0,13.0,3,WAT,Conventional Hydroelectric,OP,HY,7.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.720278,-79.856111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6636,Lake Lynn Hydro Station,3,1926.0,12.8,13.0,13.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.720278,-79.856111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6636,Lake Lynn Hydro Station,4,1926.0,12.8,13.0,13.0,3,WAT,Conventional Hydroelectric,OP,HY,5.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,39.720278,-79.856111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6637,Yakutat,2B,1999.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.544553,-139.724306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.327011508053236 -6637,Yakutat,3A,1999.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.544553,-139.724306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.327011007790096 -6637,Yakutat,6,2007.0,1.2,1.2,1.2,0,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.544553,-139.724306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.32701617401562 -6637,Yakutat,7,2012.0,1.2,1.2,1.2,0,DFO,Petroleum Liquids,OP,IC,7.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.544553,-139.724306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.32701617401562 -6639,R D Green,1,1979.0,293.0,231.0,231.0,105,BIT,Conventional Steam Coal,OP,ST,12.0,1979.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.78839590443686,0.78839590443686,SERC,MISO,KY,37.6461,-87.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6639,R D Green,2,1981.0,293.0,223.0,223.0,110,NG,Natural Gas Steam Turbine,OP,ST,1.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7610921501706485,0.7610921501706485,SERC,MISO,KY,37.6461,-87.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6641,Independence Steam Electric Station,1,1983.0,900.0,820.9,836.0,220,SUB,Conventional Steam Coal,OP,ST,1.0,1983.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9121111111111111,0.9288888888888889,SERC,MISO,AR,35.678442,-91.408761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.51544463046222 -6641,Independence Steam Electric Station,2,1984.0,900.0,825.8,842.0,220,SUB,Conventional Steam Coal,OP,ST,12.0,1984.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9175555555555555,0.9355555555555556,SERC,MISO,AR,35.678442,-91.408761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.946165978387185 -6644,Lake Mathews,1,1980.0,4.9,4.9,4.9,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.8553,-117.4537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6645,Foothill Feeder,1,1981.0,4.5,7.1,6.7,2,WAT,Conventional Hydroelectric,OP,HY,4.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.5148,-118.6092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6645,Foothill Feeder,2,1981.0,4.5,,,2,WAT,Conventional Hydroelectric,OP,HY,4.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,,WECC,CISO,CA,34.5148,-118.6092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6646,San Dimas,1,1981.0,9.9,9.9,9.9,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.1275,-117.7958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6647,Yorba Linda,1,1981.0,5.1,5.1,5.1,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.9117,-117.8192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6650,Mexico,1,1978.0,60.7,54.0,69.0,6,DFO,Petroleum Liquids,OP,GT,9.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8896210873146623,1.0,SERC,MISO,MO,39.1481,-91.8306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6651,Moberly,1,1978.0,60.6,54.0,69.0,6,DFO,Petroleum Liquids,OP,GT,8.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8910891089108911,1.0,SERC,MISO,MO,39.4244,-92.4837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6652,Moreau,1,1978.0,60.8,54.0,69.0,6,DFO,Petroleum Liquids,OP,GT,8.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8881578947368421,1.0,SERC,MISO,MO,38.555713,-92.102316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6664,Louisa,1,1983.0,811.9,746.9,746.9,175,SUB,Conventional Steam Coal,OP,ST,10.0,1983.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9199408794186477,0.9199408794186477,MRO,MISO,IA,41.3181,-91.0931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6702,Pelican,HC1,1984.0,0.6,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,non-conus,non-conus,AK,57.957197,-136.220095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6702,Pelican,HC2,1984.0,0.8,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OS,HY,5.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.125,0.125,non-conus,non-conus,AK,57.957197,-136.220095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6702,Pelican,IC6,2008.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.957197,-136.220095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.586206896551724 -6702,Pelican,IC7,2008.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.957197,-136.220095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.586206896551724 -6702,Pelican,IC8,2008.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OA,IC,9.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.957197,-136.220095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.586206896551724 -6704,Pebbly Beach Generating Station Hybrid,10,1966.0,1.1,1.1,1.1,0.9,DFO,Petroleum Liquids,OP,IC,7.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.956715349082664 -6704,Pebbly Beach Generating Station Hybrid,12,1976.0,1.6,1.6,1.6,1.3,DFO,Petroleum Liquids,OP,IC,6.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.956714604373385 -6704,Pebbly Beach Generating Station Hybrid,14,1986.0,1.4,1.4,1.4,1.1,DFO,Petroleum Liquids,OP,IC,10.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.956714838424858 -6704,Pebbly Beach Generating Station Hybrid,15,1995.0,2.8,2.8,2.8,2.2,DFO,Petroleum Liquids,OP,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.956714838424858 -6704,Pebbly Beach Generating Station Hybrid,7,1958.0,1.0,1.0,1.0,0.8,DFO,Petroleum Liquids,OP,IC,7.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.956715916844326 -6704,Pebbly Beach Generating Station Hybrid,8,1963.0,1.5,1.5,1.5,1.2,DFO,Petroleum Liquids,OP,IC,6.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.956714713597405 -6704,Pebbly Beach Generating Station Hybrid,MT01,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT02,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT03,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT04,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT05,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT06,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OS,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT07,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT08,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT09,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT10,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT11,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT14,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT15,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT16,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OS,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT17,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OS,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT18,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT19,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT20,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT21,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT22,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OS,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT23,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT24,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,MT25,2011.0,0.1,0.1,0.1,0.1,PG,Petroleum Liquids,OP,GT,12.0,2011.0, , ,,,,,oil,oil,Gaseous Propane,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.332613912735354 -6704,Pebbly Beach Generating Station Hybrid,NASB1,2012.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,8.0,2012.0, , ,6.8,1.0,1.0,NAB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.333056,-118.310278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6705,Warrick,1,1960.0,166.6,154.9,157.9,40,BIT,Conventional Steam Coal,OP,ST,4.0,1960.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9297719087635055,0.9477791116446579,RFC,MISO,IN,37.915,-87.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.469611422082405 -6705,Warrick,2,1964.0,166.6,153.5,125.7,40,BIT,Conventional Steam Coal,OP,ST,1.0,1964.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9213685474189677,0.7545018007202882,RFC,MISO,IN,37.915,-87.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.528253147360324 -6705,Warrick,3,1965.0,166.6,149.8,153.1,40,BIT,Conventional Steam Coal,OP,ST,10.0,1965.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8991596638655464,0.918967587034814,RFC,MISO,IN,37.915,-87.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.59330483851407 -6705,Warrick,4,1970.0,323.0,301.0,309.9,80,BIT,Conventional Steam Coal,OP,ST,10.0,1970.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9318885448916409,0.9594427244582042,RFC,MISO,IN,37.915,-87.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.006536288696363 -6741,Rock Lake CT,1,1978.0,25.0,20.7,29.4,15,DFO,Petroleum Liquids,OP,GT,4.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.828,1.0,MRO,MISO,MN,45.805443,-92.97176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.465153538050734 -6761,Rawhide,1,1984.0,293.6,280.0,280.0,100,SUB,Conventional Steam Coal,OP,ST,4.0,1984.0,12,2029,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9536784741144413,0.9536784741144413,WECC,PSCO,CO,40.860905,-105.021207,Rawhide 1,ST-Col,False,48.0,108.0,-1.0,5.6,5.6,41513.78,2612.4,1.0,1.79,280.0,9.626223904137122,-12.053433638711917,0.024121854183133437,-0.036994686396043086,913.4651849526131,9.5601508872401,#TRUE#,#1984-04-01#,#2029-12-31#,Existing,PSCO,RM_PSCO,135.0,280.0,300.0,CO,Coal,,#FALSE#,135,280, -6761,Rawhide,A,2002.0,89.3,65.0,65.0,44,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7278835386338186,0.7278835386338186,WECC,PSCO,CO,40.860905,-105.021207,Rawhide A,GT E_7EA,False,1.0,1.0,-1.0,6.5,6.5,3836.926,14.3,1.0,0.56,70.0,2.3001251993250897,415.0834340125762,1.5435679233127615,-169.89111514298926,5128.468150534791,10.100557425423837,#TRUE#,#2002-06-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,44.0,70.0,0.0,CO,NG,Industrial,#FALSE#,44,70,12.21047779954203 -6761,Rawhide,B,2002.0,89.3,65.0,65.0,44,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7278835386338186,0.7278835386338186,WECC,PSCO,CO,40.860905,-105.021207,Rawhide B,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,2.3001251993250897,415.0834340125762,1.5435679233127615,-169.89111514298926,5128.468150534791,10.100557425423837,#TRUE#,#2002-08-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,44.0,70.0,65.0,CO,NG,Industrial,#FALSE#,44,70,8.809895048752654 -6761,Rawhide,C,2002.0,89.3,65.0,65.0,44,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7278835386338186,0.7278835386338186,WECC,PSCO,CO,40.860905,-105.021207,Rawhide C,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,1.7701851838529343,470.2863713049771,0.8052756612805156,-88.06157044374353,2929.247863793965,10.608015522587285,#TRUE#,#2002-10-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,44.0,70.0,65.0,CO,NG,Industrial,#FALSE#,44,70,5.64147964653131 -6761,Rawhide,D,2004.0,89.3,65.0,65.0,44,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7278835386338186,0.7278835386338186,WECC,PSCO,CO,40.860905,-105.021207,Rawhide D,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,1.7701851838529343,470.2863713049771,0.8052756612805156,-88.06157044374353,2929.247863793965,10.608015522587285,#TRUE#,#2004-06-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,44.0,70.0,65.0,CO,NG,Industrial,#FALSE#,44,70,8.8917288091499 -6761,Rawhide,F,2008.0,149.6,128.0,128.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8556149732620322,0.8556149732620322,WECC,PSCO,CO,40.860905,-105.021207,Rawhide F,GT F_7FA,False,1.0,1.0,-1.0,12.8,12.8,7555.793,28.16,1.0,0.56,130.0,0.021733388667443423,590.812923125346,0.6739682128902861,-129.94177399501086,6619.109499480384,6.3984189342153,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,65.0,130.0,126.0,CO,NG,Industrial,#FALSE#,65,130,19.682750957611287 -6768,Sikeston Power Station,1,1981.0,261.0,240.0,240.0,70,SUB,Conventional Steam Coal,OP,ST,9.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9195402298850575,0.9195402298850575,SERC,SPA,MO,36.8791,-89.6209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.10170904166653 -6772,Hugo,1,1982.0,446.0,440.0,440.0,180,SUB,Conventional Steam Coal,OP,ST,4.0,1982.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9865470852017937,0.9865470852017937,MRO,SWPP,OK,34.0158,-95.3206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.933905911114364 -6789,St Stephen,1,1985.0,28.0,28.0,28.0,28,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SC,SC,33.4261,-79.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6789,St Stephen,2,1985.0,28.0,28.0,28.0,28,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SC,SC,33.4261,-79.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6789,St Stephen,3,1985.0,28.0,28.0,28.0,28,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SC,SC,33.4261,-79.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6791,Augusta Electric Plant No 2,1,1968.0,4.0,4.0,4.0,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.686085,-96.964982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.919960808619937 -6791,Augusta Electric Plant No 2,2,1968.0,4.0,4.0,4.0,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.686085,-96.964982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.919960808619937 -6791,Augusta Electric Plant No 2,3,1981.0,6.0,6.0,6.0,5.3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.686085,-96.964982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.919975171552665 -6791,Augusta Electric Plant No 2,4,2005.0,6.7,6.1,6.1,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9104477611940298,0.9104477611940298,MRO,SWPP,KS,37.686085,-96.964982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.919977054584237 -6801,Jarvis Street,1,1979.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,8.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.0497,-135.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6801,Jarvis Street,2,1979.0,2.8,2.8,2.8,1,DFO,Petroleum Liquids,OP,IC,8.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.0497,-135.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6801,Jarvis Street,3,1979.0,2.8,2.8,2.8,1,DFO,Petroleum Liquids,OP,IC,8.0,1979.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.0497,-135.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6801,Jarvis Street,4,2002.0,4.5,4.0,4.0,2.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,non-conus,non-conus,AK,57.0497,-135.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6801,Jarvis Street,5,2014.0,13.5,13.5,13.5,10,DFO,Petroleum Liquids,OP,IC,8.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.0497,-135.3128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6823,D B Wilson,1,1984.0,509.4,417.0,417.0,300,BIT,Conventional Steam Coal,OP,ST,9.0,1984.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8186101295641932,0.8186101295641932,SERC,MISO,KY,37.4497,-87.0806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -6824,St Bonifacius,1,1978.0,61.2,60.2,66.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9836601307189542,1.0,MRO,MISO,MN,44.905026,-93.820761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.270457796852646 -7011,Hugoton 2,10,1983.0,4.3,4.0,4.0,2.6,DFO,Petroleum Liquids,OP,IC,9.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.930232558139535,0.930232558139535,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7011,Hugoton 2,11,1997.0,2.5,2.2,2.2,1.5,DFO,Petroleum Liquids,OP,IC,6.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7011,Hugoton 2,12,1997.0,3.0,2.8,2.8,1.8,DFO,Petroleum Liquids,OP,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7011,Hugoton 2,13,1998.0,0.8,0.5,0.5,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.625,0.625,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7011,Hugoton 2,7,1964.0,2.3,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,1.0,1964.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7011,Hugoton 2,8,1971.0,2.0,1.8,1.8,0.9,DFO,Petroleum Liquids,OP,IC,1.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7011,Hugoton 2,9A,1994.0,4.3,4.0,4.0,3.2,DFO,Petroleum Liquids,OP,IC,8.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.930232558139535,0.930232558139535,MRO,SWPP,KS,37.16424,-101.340133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7012,Lower No 1,2,1982.0,8.0,8.0,8.0,8,WAT,Conventional Hydroelectric,OP,HY,4.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,43.468679,-112.062499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7013,East 12th Street,4,1970.0,26.5,25.8,28.6,5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9735849056603774,1.0,MRO,SWPP,KS,37.2367,-96.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.69525641025641 -7013,East 12th Street,5,2002.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.2367,-96.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7015,Unit 4,1,1993.0,1.3,1.3,0.3,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.23076923076923084,WECC,PACE,UT,39.544108,-111.418727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7018,Chanute 3,10,1986.0,7.6,6.9,6.9,4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9078947368421053,0.9078947368421053,MRO,SWPP,KS,37.6376,-95.4704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.502745732408156 -7018,Chanute 3,11,1986.0,7.6,6.9,6.9,4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9078947368421053,0.9078947368421053,MRO,SWPP,KS,37.6376,-95.4704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.502745732408156 -7018,Chanute 3,12,1991.0,6.0,5.5,5.5,2,DFO,Petroleum Liquids,OP,IC,11.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9166666666666666,0.9166666666666666,MRO,SWPP,KS,37.6376,-95.4704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.502738926772077 -7018,Chanute 3,13,1991.0,6.0,5.9,5.9,2,DFO,Petroleum Liquids,OP,IC,11.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9833333333333334,0.9833333333333334,MRO,SWPP,KS,37.6376,-95.4704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.502738926772077 -7018,Chanute 3,9,1985.0,7.6,6.9,6.9,4,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9078947368421053,0.9078947368421053,MRO,SWPP,KS,37.6376,-95.4704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.502745732408156 -7028,Whitehead,K1,1986.0,7.0,5.9,6.3,5,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.842857142857143,0.9,WECC,PACE,UT,40.1817,-111.6203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.696027688663374 -7028,Whitehead,K2,1986.0,7.0,6.0,6.2,5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,0.8857142857142858,WECC,PACE,UT,40.1817,-111.6203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.696027688663374 -7028,Whitehead,K3,2000.0,7.0,5.9,6.0,5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.842857142857143,0.8571428571428572,WECC,PACE,UT,40.1817,-111.6203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.696027688663374 -7028,Whitehead,K4,2002.0,5.0,4.0,4.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.86,WECC,PACE,UT,40.1817,-111.6203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.69602618554015 -7028,Whitehead,K6CAT,2016.0,2.5,2.5,2.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.1817,-111.6203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.69602618554015 -7028,Whitehead,K7CAT,2016.0,2.5,2.5,2.5,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.1817,-111.6203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.69602618554015 -7030,Major Oak Power,1,1990.0,174.6,152.0,153.0,95,LIG,Conventional Steam Coal,OP,ST,9.0,1990.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.870561282932417,0.8762886597938144,TRE,ERCO,TX,31.091925,-96.69503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7030,Major Oak Power,2,1991.0,174.6,153.0,154.0,95,LIG,Conventional Steam Coal,OP,ST,10.0,1991.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8762886597938144,0.8820160366552119,TRE,ERCO,TX,31.091925,-96.69503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7032,Gravel Neck,1,1970.0,16.3,12.0,15.0,0,DFO,Petroleum Liquids,OP,GT,8.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7361963190184049,0.9202453987730062,SERC,PJM,VA,37.1575,-76.6911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7032,Gravel Neck,2,1970.0,23.8,16.0,23.0,0,DFO,Petroleum Liquids,OP,GT,12.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6722689075630253,0.9663865546218487,SERC,PJM,VA,37.1575,-76.6911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7032,Gravel Neck,3,1989.0,91.9,85.0,98.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9249183895538629,1.0,SERC,PJM,VA,37.1575,-76.6911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.253876496191513 -7032,Gravel Neck,4,1989.0,91.9,85.0,97.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9249183895538629,1.0,SERC,PJM,VA,37.1575,-76.6911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.698748639825897 -7032,Gravel Neck,5,1989.0,91.9,85.0,98.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9249183895538629,1.0,SERC,PJM,VA,37.1575,-76.6911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.006800870511425 -7032,Gravel Neck,6,1989.0,91.9,85.0,97.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9249183895538629,1.0,SERC,PJM,VA,37.1575,-76.6911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.8139825897714905 -7034,Hydro II,1,1986.0,3.3,3.1,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9393939393939394,0.4545454545454546,WECC,PACE,UT,41.743728,-111.783169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7034,Hydro II,2,1986.0,3.3,3.1,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9393939393939394,0.4545454545454546,WECC,PACE,UT,41.743728,-111.783169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7039,Lake (WY),1,1967.0,2.7,2.7,2.7,2.3,DFO,Petroleum Liquids,SB,IC,9.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,NWMT,WY,44.415,-110.5739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.558252427184467 -7040,Ellis Hydro,1,1988.0,10.8,5.0,5.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4629629629629629,0.4629629629629629,SERC,SWPP,AR,35.351361,-94.294349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7040,Ellis Hydro,2,1988.0,10.8,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,SERC,SWPP,AR,35.351361,-94.294349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7040,Ellis Hydro,3,1988.0,10.8,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,SERC,SWPP,AR,35.351361,-94.294349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7042,Humpback Creek,1,1991.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,non-conus,non-conus,AK,60.612822,-145.679411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7042,Humpback Creek,2,1991.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,non-conus,non-conus,AK,60.612822,-145.679411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7042,Humpback Creek,3,1991.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,60.612822,-145.679411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7051,Wrightsville Hydro Plant,1,1985.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.309693,-72.575305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7051,Wrightsville Hydro Plant,2,1985.0,0.3,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,ISNE,VT,44.309693,-72.575305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7051,Wrightsville Hydro Plant,3,1985.0,0.6,0.4,0.4,0.4,WAT,Conventional Hydroelectric,OP,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,ISNE,VT,44.309693,-72.575305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7056,Bolton Falls,1,1986.0,4.4,3.9,3.9,0.9,WAT,Conventional Hydroelectric,OP,HY,11.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8863636363636362,0.8863636363636362,NPCC,ISNE,VT,44.359381,-72.81673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7056,Bolton Falls,2,1986.0,4.4,3.9,3.9,0.9,WAT,Conventional Hydroelectric,OP,HY,11.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8863636363636362,0.8863636363636362,NPCC,ISNE,VT,44.359381,-72.81673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,1,1988.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,2,1988.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,2.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,3,1989.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,4.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,4,1989.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,4.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,5,1989.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,4.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,6,1995.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,7,1995.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7058,Solon Diesel,8,1995.0,1.0,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,MRO,MISO,WI,46.358956,-91.823631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7060,Sibley No Two,4,1987.0,1.1,1.0,1.1,1,DFO,Petroleum Liquids,OP,IC,12.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,1.0,MRO,MISO,IA,43.396851,-95.74966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.755102040816325 -7063,McIntosh (AL),1,1991.0,110.0,110.0,110.0,30,NG,Natural Gas with Compressed Air Storage,OP,CE,6.0,1991.0, , ,110.0,52.0,110.0,nan,other,gas,Natural Gas,"Energy Storage, Compressed Air",1.0,1.0,SERC,SOCO,AL,31.2546,-88.0299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7063,McIntosh (AL),2,1998.0,113.0,114.0,120.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,31.2546,-88.0299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7063,McIntosh (AL),3,1998.0,113.0,114.0,120.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,31.2546,-88.0299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7063,McIntosh (AL),4,2010.0,170.0,175.0,224.0,111,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,31.2546,-88.0299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7063,McIntosh (AL),5,2010.0,170.0,175.0,224.0,111,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,AL,31.2546,-88.0299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7066,Stampede,1,1988.0,3.0,3.0,3.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,CA,39.470447,-120.10455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7066,Stampede,2,1988.0,0.6,0.6,0.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NEVP,CA,39.470447,-120.10455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7072,Mojave Siphon,1,1996.0,10.9,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9908256880733946,0.9908256880733946,WECC,CISO,CA,34.307444,-117.323548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7072,Mojave Siphon,2,1996.0,10.9,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9908256880733946,0.9908256880733946,WECC,CISO,CA,34.307444,-117.323548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7072,Mojave Siphon,3,1996.0,10.9,10.8,10.8,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1996.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9908256880733946,0.9908256880733946,WECC,CISO,CA,34.307444,-117.323548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7079,Upper Salmon B,1,1947.0,8.2,9.2,8.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.766397,-114.908236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7079,Upper Salmon B,2,1947.0,8.3,9.2,8.3,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1947.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.766397,-114.908236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7080,St George Red Rock,1,1987.0,7.0,7.0,7.0,1,DFO,Petroleum Liquids,SB,IC,5.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,37.113736,-113.568944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.38512035010941 -7080,St George Red Rock,2,1987.0,7.0,7.0,7.0,1,DFO,Petroleum Liquids,SB,IC,5.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,37.113736,-113.568944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.38512035010941 -7082,Harry Allen,5,2011.0,167.5,151.6,164.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9050746268656716,0.9791044776119403,WECC,NEVP,NV,36.430554,-114.902405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7082,Harry Allen,6,2011.0,167.5,151.6,164.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9050746268656716,0.9791044776119403,WECC,NEVP,NV,36.430554,-114.902405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7082,Harry Allen,7,2011.0,223.5,206.8,196.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9252796420581656,0.8769574944071589,WECC,NEVP,NV,36.430554,-114.902405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7082,Harry Allen,GT1,1995.0,101.5,72.0,76.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7093596059113301,0.7487684729064039,WECC,NEVP,NV,36.430554,-114.902405,Harry Allen GT1,GT E_7EA,False,1.0,1.0,-1.0,64.8,64.8,2156.979,326.16,1.0,0.45,76.0,-17.66002375444416,2008.8337688750041,-0.009307765649714082,-16.318646867203174,1960.5438152518022,10.204091449073436,#TRUE#,#1995-06-01#,#2025-12-31#,Existing,NEVP,SW_NVE,69.0,76.0,74.0,NV,NG,Areo,#FALSE#,69,76, -7082,Harry Allen,GT4,2006.0,85.0,72.0,76.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8470588235294118,0.8941176470588236,WECC,NEVP,NV,36.430554,-114.902405,Harry Allen GT4,GT E_7EA,False,1.0,1.0,-1.0,64.8,64.8,2156.979,326.16,1.0,0.45,76.0,-24.689479750421537,2498.764417847872,-0.02206423483468871,-21.48344687912736,2382.3674226167127,9.700753658357602,#TRUE#,#2006-06-01#,#2036-12-31#,Existing,NEVP,SW_NVE,70.0,76.0,70.0,NV,NG,Areo,#FALSE#,70,76, -7097,J K Spruce,1,1992.0,566.0,560.0,560.0,122,SUB,Conventional Steam Coal,OP,ST,12.0,1992.0,12,2028,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9893992932862191,0.9893992932862191,TRE,ERCO,TX,29.309722,-98.3203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7097,J K Spruce,2,2010.0,922.5,785.0,785.0,290,SUB,Conventional Steam Coal,OP,ST,5.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8509485094850948,0.8509485094850948,TRE,ERCO,TX,29.309722,-98.3203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7111,Heber City,1,2004.0,1.4,1.4,1.4,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307998492488586 -7111,Heber City,11,2015.0,1.9,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307996653067635 -7111,Heber City,12,2015.0,2.3,2.3,2.3,2.3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307996616593167 -7111,Heber City,13,2022.0,2.5,2.5,2.5,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.30799490271878 -7111,Heber City,2,2004.0,1.4,1.4,1.4,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307998492488586 -7111,Heber City,4,2003.0,1.9,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307996653067635 -7111,Heber City,NA10,2002.0,1.9,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307996653067635 -7111,Heber City,NA9,2003.0,1.9,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.50368,-111.425246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307996653067635 -7112,Centennial,IC6,1987.0,3.3,3.3,3.3,0.2,DFO,Petroleum Liquids,OA,IC,4.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.121433,-131.560267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.992727272727272 -7113,PEC Headworks,1,1990.0,6.6,6.6,6.6,3,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,GCPD,WA,47.159553,-119.896306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7115,Hoist,2,1988.0,1.4,0.8,0.5,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5714285714285715,0.3571428571428572,RFC,MISO,MI,46.5628,-87.5686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7115,Hoist,3,1988.0,2.0,1.2,0.8,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.4,RFC,MISO,MI,46.5628,-87.5686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7116,McClure Dam,1,1988.0,4.0,2.9,2.3,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.725,0.575,RFC,MISO,MI,46.5717,-87.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7116,McClure Dam,2,1988.0,4.0,2.9,2.3,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.725,0.575,RFC,MISO,MI,46.5717,-87.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7118,Cataract (MI),1,1988.0,2.0,0.6,0.3,0,WAT,Conventional Hydroelectric,OP,HY,2.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.30000000000000004,0.15000000000000002,RFC,MISO,MI,46.3156,-87.5128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7119,Gladstone,1,1975.0,22.6,17.0,22.2,5,DFO,Petroleum Liquids,OP,GT,11.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7522123893805309,0.9823008849557521,RFC,MISO,MI,45.8475,-87.0036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7125,Bad Creek,1,1991.0,420.0,420.0,420.0,320,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1991.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,35.0075,-82.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7125,Bad Creek,2,1991.0,420.0,420.0,420.0,320,WAT,Hydroelectric Pumped Storage,OP,PS,5.0,1991.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,35.0075,-82.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7125,Bad Creek,3,1991.0,324.0,340.0,340.0,250,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,1991.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,35.0075,-82.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7125,Bad Creek,4,1991.0,324.0,340.0,340.0,250,WAT,Hydroelectric Pumped Storage,OP,PS,9.0,1991.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,SERC,DUK,SC,35.0075,-82.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7127,Wynoochee,1,1994.0,12.8,15.5,12.8,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,TPWR,WA,47.385072,-123.605225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7128,William F Matson Generating Station,1,1988.0,7.0,2.4,7.0,2.4,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.34285714285714286,1.0,RFC,PJM,PA,40.432915,-78.002887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7128,William F Matson Generating Station,2,1988.0,14.7,6.0,14.7,6,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.40816326530612246,1.0,RFC,PJM,PA,40.432915,-78.002887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7129,Thermalito Diverson Dam,TD1,1987.0,3.4,3.0,3.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8823529411764706,0.8823529411764706,WECC,CISO,CA,39.528749,-121.546359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7130,Puna,1,1988.0,15.5,14.0,14.0,6,RFO,Petroleum Liquids,OP,ST,8.0,1988.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9032258064516129,0.9032258064516129,non-conus,non-conus,HI,19.6316,-155.0313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7130,Puna,3,1992.0,23.6,20.0,20.0,7,DFO,Petroleum Liquids,OP,GT,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.847457627118644,0.847457627118644,non-conus,non-conus,HI,19.6316,-155.0313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.870900513748424 -7131,Brandon Station,1,1990.0,21.0,20.0,21.5,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9523809523809523,1.0,TRE,SWPP,TX,33.585257,-101.886093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.536490790749204 -7132,Pine View Dam,NA1,1991.0,1.8,1.8,1.8,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.254331,-111.848525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7135,Whillock,1,1993.0,10.8,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,SERC,MISO,AR,35.127591,-92.790273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7135,Whillock,2,1993.0,10.8,6.0,6.0,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5555555555555556,0.5555555555555556,SERC,MISO,AR,35.127591,-92.790273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7135,Whillock,3,1993.0,10.8,5.0,5.0,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4629629629629629,0.4629629629629629,SERC,MISO,AR,35.127591,-92.790273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7138,Forked River,1,1989.0,38.4,34.0,44.0,34,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8854166666666667,1.0,RFC,PJM,NJ,39.8154,-74.2098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7138,Forked River,2,1989.0,38.4,31.0,41.0,31,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8072916666666667,1.0,RFC,PJM,NJ,39.8154,-74.2098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7145,Pleasant Hill,1,1990.0,41.4,36.7,47.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8864734299516909,1.0,MRO,MISO,IA,41.5572,-93.5242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.419796932498556 -7145,Pleasant Hill,2,1990.0,41.4,37.3,47.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9009661835748792,1.0,MRO,MISO,IA,41.5572,-93.5242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.435716035925008 -7145,Pleasant Hill,3,1994.0,97.0,80.8,100.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8329896907216494,1.0,MRO,MISO,IA,41.5572,-93.5242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300691869161618 -7146,Wading River,02,1989.0,79.5,76.9,96.2,66.4,DFO,Petroleum Liquids,OP,GT,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9672955974842768,1.0,NPCC,NYIS,NY,40.956932,-72.877411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7146,Wading River,03,1989.0,79.5,81.7,99.0,65.9,DFO,Petroleum Liquids,OP,GT,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.956932,-72.877411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7146,Wading River,1,1989.0,79.5,82.0,101.3,68.1,DFO,Petroleum Liquids,OP,GT,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.956932,-72.877411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7147,Mill Creek 3,3,1903.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.088019,-117.039539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7147,Mill Creek 3,4,1904.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.088019,-117.039539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7147,Mill Creek 3,5,1904.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,3.0,1904.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.088019,-117.039539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7151,Stony Gorge,1,1986.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.586864,-122.533248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7151,Stony Gorge,2,1986.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.586864,-122.533248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR1,1989.0,103.5,126.0,126.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR2,1989.0,103.5,126.0,126.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR3,1991.0,122.0,126.0,126.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR4,1993.0,207.0,187.0,187.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9033816425120773,0.9033816425120773,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR5,2001.0,122.4,128.0,128.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR6,2001.0,122.4,128.0,128.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR7,2001.0,122.4,128.0,128.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7153,Hay Road,HR8,2002.0,195.0,187.0,187.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.958974358974359,0.958974358974359,RFC,PJM,DE,39.7436,-75.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7155,Lime Creek,1,1991.0,45.1,31.9,39.0,13,DFO,Petroleum Liquids,OP,GT,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7073170731707317,0.8647450110864745,MRO,MISO,IA,43.2481,-93.205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7155,Lime Creek,2,1991.0,45.1,34.1,41.6,13,DFO,Petroleum Liquids,OP,GT,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7560975609756098,0.9223946784922394,MRO,MISO,IA,43.2481,-93.205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7158,Woodsdale,GT1,1993.0,95.3,78.0,94.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8184679958027282,0.9863588667366212,RFC,PJM,OH,39.4492,-84.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7158,Woodsdale,GT2,1992.0,95.3,80.0,94.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8394543546694648,0.9863588667366212,RFC,PJM,OH,39.4492,-84.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7158,Woodsdale,GT3,1992.0,95.3,80.0,94.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8394543546694648,0.9863588667366212,RFC,PJM,OH,39.4492,-84.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7158,Woodsdale,GT4,1992.0,95.3,78.0,94.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8184679958027282,0.9863588667366212,RFC,PJM,OH,39.4492,-84.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7158,Woodsdale,GT5,1992.0,95.3,80.0,94.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8394543546694648,0.9863588667366212,RFC,PJM,OH,39.4492,-84.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7158,Woodsdale,GT6,1992.0,95.3,80.0,94.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8394543546694648,0.9863588667366212,RFC,PJM,OH,39.4492,-84.4611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7159,Concord,1,1993.0,95.4,92.5,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9696016771488469,1.0,RFC,MISO,WI,43.1669,-88.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7159,Concord,2,1993.0,95.4,91.3,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9570230607966456,1.0,RFC,MISO,WI,43.1669,-88.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7159,Concord,3,1994.0,95.4,90.7,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.950733752620545,1.0,RFC,MISO,WI,43.1669,-88.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7159,Concord,4,1994.0,95.4,94.0,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9853249475890985,1.0,RFC,MISO,WI,43.1669,-88.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7164,Waddell,PG3,1993.0,10.0,10.0,10.0,10,WAT,Hydroelectric Pumped Storage,OP,PS,4.0,1993.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WALC,AZ,33.8447,-112.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7164,Waddell,PG6,1993.0,10.0,10.0,10.0,10,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,1993.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WALC,AZ,33.8447,-112.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7164,Waddell,PG7,1993.0,10.0,10.0,10.0,10,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1993.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WALC,AZ,33.8447,-112.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7164,Waddell,PS1,1993.0,10.0,10.0,10.0,10,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1993.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,WALC,AZ,33.8447,-112.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7166,Murray,1,1988.0,22.7,21.2,21.2,4,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.933920704845815,0.933920704845815,SERC,MISO,AR,34.7956,-92.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7166,Murray,2,1988.0,22.7,21.2,21.2,4,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.933920704845815,0.933920704845815,SERC,MISO,AR,34.7956,-92.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7168,Chester Lake,1,1988.0,1.3,1.2,1.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,non-conus,non-conus,AK,55.116879,-131.545879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7169,Northway,1A,1997.0,0.5,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6,0.6,non-conus,non-conus,AK,62.9617,-141.9372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.043405267670128 -7169,Northway,2A,1997.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.9617,-141.9372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.043393289605202 -7169,Northway,5,2007.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.9617,-141.9372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.043395776041692 -7173,Barrow,11,1996.0,4.8,4.8,5.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,71.292,-156.7786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.828655826915988 -7173,Barrow,12,2001.0,5.0,5.0,5.3,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,71.292,-156.7786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.828655823499043 -7173,Barrow,6,1977.0,2.5,2.5,3.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,71.292,-156.7786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.828655893509769 -7173,Barrow,7,1980.0,2.5,2.5,3.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,71.292,-156.7786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.828655893509769 -7173,Barrow,8,1982.0,2.5,2.5,3.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,71.292,-156.7786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.828655893509769 -7174,Gwitchyaa Zhee,11,2022.0,0.4,0.2,0.3,0.2,DFO,Petroleum Liquids,OP,IC,1.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.75,non-conus,non-conus,AK,66.566287,-145.253052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.132630233301374 -7174,Gwitchyaa Zhee,7,2015.0,1.0,0.4,0.6,0.2,DFO,Petroleum Liquids,OP,IC,10.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.4,0.6,non-conus,non-conus,AK,66.566287,-145.253052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.132635925924411 -7174,Gwitchyaa Zhee,8,2016.0,1.0,0.4,0.6,0.2,DFO,Petroleum Liquids,OP,IC,8.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.4,0.6,non-conus,non-conus,AK,66.566287,-145.253052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.132635925924411 -7174,Gwitchyaa Zhee,9,2016.0,0.4,0.2,0.3,0.2,DFO,Petroleum Liquids,OP,IC,12.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.75,non-conus,non-conus,AK,66.566287,-145.253052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.132630233301374 -7179,Headgate Rock,1,1993.0,6.5,6.5,6.5,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,34.168264,-114.277356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7179,Headgate Rock,2,1993.0,6.5,6.5,6.5,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,34.168264,-114.277356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7179,Headgate Rock,3,1993.0,6.5,6.5,6.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,34.168264,-114.277356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7182,Aniak,1,1988.0,0.5,0.2,0.3,0.1,DFO,Petroleum Liquids,OP,IC,7.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.4,0.6,non-conus,non-conus,AK,61.580678,-159.535643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.27349405150807 -7182,Aniak,10,2016.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.580678,-159.535643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.27348650070288 -7182,Aniak,11,2018.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.580678,-159.535643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.27349405150807 -7182,Aniak,9,1996.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.580678,-159.535643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.27348650070288 -7183,Newhalen,5,2012.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,OP,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.899054,-154.698735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.286188792456873 -7183,Newhalen,6,2012.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,OP,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.899054,-154.698735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.286188792456873 -7183,Newhalen,7,2012.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,OP,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.899054,-154.698735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.286188792456873 -7183,Newhalen,H-1,1998.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1998.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.899054,-154.698735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7183,Newhalen,H-2,1998.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1998.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.899054,-154.698735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7189,Whiskeytown,1,1986.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BANC,CA,40.597617,-122.538683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7190,Milner Hydro,1,1992.0,46.6,45.2,46.6,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9699570815450644,1.0,WECC,IPCO,ID,42.526786,-114.036889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7190,Milner Hydro,2,1992.0,12.1,11.4,12.1,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9421487603305786,1.0,WECC,IPCO,ID,42.526786,-114.036889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7190,Milner Hydro,3,1992.0,0.8,0.3,0.8,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.375,1.0,WECC,IPCO,ID,42.526786,-114.036889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7191,Tallassee Hydro Project,1,1986.0,2.2,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,SERC,SOCO,GA,33.989153,-83.498448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7191,Tallassee Hydro Project,2,1986.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.989153,-83.498448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7200,Robert D Willis,1,1989.0,4.0,4.0,4.0,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,MISO,TX,30.7975,-94.1756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7200,Robert D Willis,2,1989.0,4.0,4.0,4.0,0.5,WAT,Conventional Hydroelectric,OS,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,MISO,TX,30.7975,-94.1756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7203,South Fond Du Lac,CT1,1993.0,95.4,80.8,90.8,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8469601677148846,0.9517819706498951,MRO,MISO,WI,43.7353,-88.496667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7203,South Fond Du Lac,CT2,1994.0,95.4,81.3,91.5,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8522012578616351,0.9591194968553458,MRO,MISO,WI,43.7353,-88.496667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7203,South Fond Du Lac,CT3,1994.0,95.4,83.1,93.5,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.871069182389937,0.9800838574423479,MRO,MISO,WI,43.7353,-88.496667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7203,South Fond Du Lac,CT4,1996.0,95.4,83.0,93.3,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.870020964360587,0.9779874213836477,MRO,MISO,WI,43.7353,-88.496667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7210,Cope,ST1,1996.0,417.3,415.0,415.0,110,NG,Natural Gas Steam Turbine,OP,ST,1.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9944883776659478,0.9944883776659478,SERC,SCEG,SC,33.3644,-81.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7212,Darbytown,1,1990.0,92.1,84.0,98.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9120521172638437,1.0,SERC,PJM,VA,37.498223,-77.368544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.2288005236458845 -7212,Darbytown,2,1990.0,92.1,84.0,97.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9120521172638437,1.0,SERC,PJM,VA,37.498223,-77.368544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.40427280496009 -7212,Darbytown,3,1990.0,92.1,84.0,95.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9120521172638437,1.0,SERC,PJM,VA,37.498223,-77.368544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.046437207949236 -7212,Darbytown,4,1990.0,92.1,84.0,97.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9120521172638437,1.0,SERC,PJM,VA,37.498223,-77.368544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.463775705012818 -7213,Clover,1,1995.0,424.0,440.0,443.0,130,BIT,Conventional Steam Coal,OP,ST,10.0,1995.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,36.869,-78.704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.53687747801414 -7213,Clover,2,1996.0,424.0,437.0,438.0,130,BIT,Conventional Steam Coal,OP,ST,3.0,1996.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,36.869,-78.704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.141438152665742 -7229,Black Butte,1,1988.0,6.1,6.1,6.1,0.5,WAT,Conventional Hydroelectric,OP,HY,9.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.814905,-122.332335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7231,Gianera,1,1987.0,32.3,24.8,24.8,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7678018575851394,0.7678018575851394,WECC,CISO,CA,37.401,-121.96867,Gianera 1,GT Aero_LM2500,False,1.0,1.0,-1.0,22.95,22.95,763.93,115.515,1.0,0.45,25.5,5.206941604542103,63.581268012563974,0.7062523428525336,-18.988637949847767,256.74314104828215,9.422136624585495,#TRUE#,#1987-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,10.2,25.5,20.1,CA,NG,Areo,#FALSE#,10.2,25.5,14.804766523486213 -7231,Gianera,2,1986.0,32.3,24.8,24.8,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7678018575851394,0.7678018575851394,WECC,CISO,CA,37.401,-121.96867,Gianera 2,GT Aero_LM2500,False,1.0,1.0,-1.0,22.95,22.95,763.93,115.515,1.0,0.45,25.5,5.206941604542103,63.581268012563974,0.7062523428525336,-18.988637949847767,256.74314104828215,9.422136624585495,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,10.2,25.5,20.6,CA,NG,Areo,#FALSE#,10.2,25.5,14.804766523486213 -7232,Santa Clara Cogen,1,1982.0,3.9,3.5,3.5,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8974358974358975,0.8974358974358975,WECC,CISO,CA,37.364297,-121.944238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.116269812549756 -7232,Santa Clara Cogen,2,1982.0,3.9,3.5,3.5,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8974358974358975,0.8974358974358975,WECC,CISO,CA,37.364297,-121.944238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.116269812549756 -7233,Tesla,1,1997.0,26.6,28.0,28.0,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1997.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.973655,-104.901141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7237,Angus Anson,1,1994.0,119.7,90.0,109.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1994.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7518796992481203,0.910609857978279,MRO,MISO,SD,43.60347,-96.6356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7237,Angus Anson,2,1994.0,119.7,90.0,109.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1994.0,12,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7518796992481203,0.910609857978279,MRO,MISO,SD,43.60347,-96.6356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.009344562266288 -7237,Angus Anson,4,2005.0,166.3,147.0,168.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8839446782922429,1.0,MRO,MISO,SD,43.60347,-96.6356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.63859019227373 -7238,Cane Island,1,1994.0,32.0,32.0,42.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7238,Cane Island,2,1995.0,76.0,76.0,85.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.00132558539698 -7238,Cane Island,2A,1995.0,40.0,39.0,40.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.975,1.0,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7238,Cane Island,3,2002.0,152.0,152.0,172.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.114530194471469 -7238,Cane Island,3A,2002.0,82.5,90.0,90.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7238,Cane Island,4,2011.0,180.0,160.0,180.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,1.0,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.522658601754538 -7238,Cane Island,4A,2011.0,143.5,130.0,140.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9059233449477352,0.975609756097561,SERC,FMPP,FL,28.2764,-81.533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,1CA,1996.0,133.4,59.0,59.0,33,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.4422788605697151,0.4422788605697151,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,1CT,1996.0,192.9,161.0,161.0,89,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8346293416277863,0.8346293416277863,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,2,2000.0,175.8,150.0,180.0,89,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8532423208191126,1.0,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,2CC,2017.0,463.0,461.0,480.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9956803455723542,1.0,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,3,2002.0,175.8,150.0,180.0,89,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8532423208191126,1.0,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,4,2007.0,175.8,150.0,180.0,89,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8532423208191126,1.0,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7242,Polk,5,2007.0,175.8,150.0,180.0,89,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8532423208191126,1.0,SERC,TEC,FL,27.7286,-81.9897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7246,Dam 2,1,1999.0,34.2,11.0,11.0,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3216374269005847,0.3216374269005847,SERC,MISO,AR,33.986501,-91.315788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7246,Dam 2,2,1999.0,34.2,12.0,12.0,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3508771929824561,0.3508771929824561,SERC,MISO,AR,33.986501,-91.315788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7246,Dam 2,3,1999.0,34.2,12.0,12.0,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3508771929824561,0.3508771929824561,SERC,MISO,AR,33.986501,-91.315788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7247,Watertown Power Plant,1,1978.0,67.5,50.0,60.0,10,DFO,Petroleum Liquids,OP,GT,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7407407407407407,0.8888888888888888,MRO,SWPP,SD,44.901667,-97.108333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.248864668483197 -7250,Auke Bay,13,1993.0,2.8,2.8,2.8,0.5,DFO,Petroleum Liquids,SB,GT,8.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,58.3875,-134.6446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.674590040619826 -7250,Auke Bay,14,1994.0,30.9,23.0,23.0,9,DFO,Petroleum Liquids,SB,GT,12.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7443365695792881,0.7443365695792881,non-conus,non-conus,AK,58.3875,-134.6446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.67503714912819 -7250,Auke Bay,4,1980.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.3875,-134.6446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.0 -7259,Skookumchuck,1,1990.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.7844,-122.7197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7264,Miki Basin,LL1,1990.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,4.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112559516245973 -7264,Miki Basin,LL2,1990.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,4.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112559516245973 -7264,Miki Basin,LL3,1990.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,4.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112559516245973 -7264,Miki Basin,LL4,1990.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,4.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112559516245973 -7264,Miki Basin,LL5,1990.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,4.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112559516245973 -7264,Miki Basin,LL6,1990.0,1.0,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,4.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112559516245973 -7264,Miki Basin,LL7,1996.0,2.2,2.1,2.1,0.6,DFO,Petroleum Liquids,OP,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112561261738636 -7264,Miki Basin,LL8,1996.0,2.2,2.1,2.1,0.6,DFO,Petroleum Liquids,OP,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,non-conus,non-conus,HI,20.79,-156.9342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.112561261738636 -7266,Woodland,2,2003.0,37.7,33.0,33.0,2,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8753315649867374,0.8753315649867374,WECC,BANC,CA,37.652602,-121.020397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.528210733101216 -7266,Woodland,3,2003.0,60.5,50.0,50.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8264462809917356,0.8264462809917356,WECC,BANC,CA,37.652602,-121.020397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7266,Woodland,3A,2011.0,8.4,8.2,8.2,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,WECC,BANC,CA,37.652602,-121.020397,Woodland 3A,IC_20V34SG,False,1.0,1.0,-1.0,7.79,7.79,82.0,0.82,1.0,0.0,8.2,5.610548737459669,14.804700191825244,-4.346648581029861e-07,5.610552682600382,14.804692874401308,9.632279420768988,#TRUE#,#2011-07-22#,#2050-12-31#,Existing,BANC,CA_BANC,1.64,8.2,8.2,CA,NG,,#FALSE#,1.64,8.2, -7266,Woodland,3B,2011.0,8.4,8.2,8.2,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,WECC,BANC,CA,37.652602,-121.020397,Woodland 3B,IC_20V34SG,False,1.0,1.0,-1.0,7.79,7.79,82.0,0.82,1.0,0.0,8.2,5.610548737459669,14.804700191825244,-4.346648581029861e-07,5.610552682600382,14.804692874401308,9.632279420768988,#TRUE#,#2011-07-22#,#2050-12-31#,Existing,BANC,CA_BANC,1.64,8.2,8.2,CA,NG,,#FALSE#,1.64,8.2, -7266,Woodland,3C,2011.0,8.4,8.2,8.2,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,WECC,BANC,CA,37.652602,-121.020397,Woodland 3C,IC_20V34SG,False,1.0,1.0,-1.0,7.79,7.79,82.0,0.82,1.0,0.0,8.2,5.610548737459669,14.804700191825244,-4.346648581029861e-07,5.610552682600382,14.804692874401308,9.632279420768988,#TRUE#,#2011-07-22#,#2050-12-31#,Existing,BANC,CA_BANC,1.64,8.2,8.2,CA,NG,,#FALSE#,1.64,8.2, -7266,Woodland,3D,2011.0,8.4,8.2,8.2,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,WECC,BANC,CA,37.652602,-121.020397,Woodland 3D,IC_20V34SG,False,1.0,1.0,-1.0,7.79,7.79,82.0,0.82,1.0,0.0,8.2,5.610548737459669,14.804700191825244,-4.346648581029861e-07,5.610552682600382,14.804692874401308,9.632279420768988,#TRUE#,#2011-07-22#,#2050-12-31#,Existing,BANC,CA_BANC,1.64,8.2,8.2,CA,NG,,#FALSE#,1.64,8.2, -7266,Woodland,3E,2011.0,8.4,8.2,8.2,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,WECC,BANC,CA,37.652602,-121.020397,Woodland 3E,IC_20V34SG,False,1.0,1.0,-1.0,7.79,7.79,82.0,0.82,1.0,0.0,8.2,5.610548737459669,14.804700191825244,-4.346648581029861e-07,5.610552682600382,14.804692874401308,9.632279420768988,#TRUE#,#2011-07-22#,#2050-12-31#,Existing,BANC,CA_BANC,1.64,8.2,8.2,CA,NG,,#FALSE#,1.64,8.2, -7266,Woodland,3F,2011.0,8.4,8.2,8.2,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,WECC,BANC,CA,37.652602,-121.020397,Woodland 3F,IC_20V34SG,False,1.0,1.0,-1.0,7.79,7.79,82.0,0.82,1.0,0.0,8.2,5.610548737459669,14.804700191825244,-4.346648581029861e-07,5.610552682600382,14.804692874401308,9.632279420768988,#TRUE#,#2011-07-22#,#2050-12-31#,Existing,BANC,CA_BANC,1.64,8.2,8.2,CA,NG,,#FALSE#,1.64,8.2, -7266,Woodland,NA1,1993.0,50.4,45.0,45.0,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8928571428571429,0.8928571428571429,WECC,BANC,CA,37.652602,-121.020397,Woodland 1,GT LM_LM6000,False,1.0,1.0,-1.0,44.1,44.1,1467.944,10.78,1.0,0.45,49.0,9.062329359641762,-52.541342316933935,0.8740817447166738,-56.04662545024278,1120.3968971966437,7.610825938818,#TRUE#,#1993-11-01#,#2050-12-31#,Existing,BANC,CA_BANC,26.0,49.0,41.1,CA,NG,Industrial,#FALSE#,26,83, -7268,491 E 48th Street,7,1992.0,39.1,35.0,39.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8951406649616368,0.9974424552429667,RFC,MISO,MI,42.7553,-86.0853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7268,491 E 48th Street,8,1992.0,39.1,35.0,39.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8951406649616368,0.9974424552429667,RFC,MISO,MI,42.7553,-86.0853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7268,491 E 48th Street,9,2000.0,83.5,75.0,83.5,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8982035928143712,1.0,RFC,MISO,MI,42.7553,-86.0853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7270,Paris (WI),1,1995.0,95.4,90.1,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9444444444444443,1.0,RFC,MISO,WI,42.6658,-88.0131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7270,Paris (WI),2,1995.0,95.4,89.9,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9423480083857443,1.0,RFC,MISO,WI,42.6658,-88.0131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7270,Paris (WI),3,1995.0,95.4,93.5,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9800838574423479,1.0,RFC,MISO,WI,42.6658,-88.0131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7270,Paris (WI),4,1995.0,95.4,90.4,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9475890985324947,1.0,RFC,MISO,WI,42.6658,-88.0131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7277,Lincoln Combustion,1,1995.0,109.6,73.0,94.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.268567562856898 -7277,Lincoln Combustion,10,1995.0,109.6,73.0,96.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8759124087591241,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.891967111791221 -7277,Lincoln Combustion,11,1995.0,109.6,73.0,95.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8667883211678833,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.860418445310337 -7277,Lincoln Combustion,12,1995.0,109.6,73.0,94.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.839368166684885 -7277,Lincoln Combustion,13,1996.0,109.6,72.0,93.0,72,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.8485401459854015,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.57696000378131 -7277,Lincoln Combustion,14,1996.0,109.6,72.0,94.0,72,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.676759351439639 -7277,Lincoln Combustion,15,1996.0,109.6,73.0,94.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.988694144844535 -7277,Lincoln Combustion,16,1996.0,109.6,73.0,93.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8485401459854015,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.92243784225043 -7277,Lincoln Combustion,2,1995.0,109.6,74.0,96.0,74,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6751824817518248,0.8759124087591241,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.894288744398196 -7277,Lincoln Combustion,3,1995.0,109.6,73.0,95.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8667883211678833,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.09396293462502 -7277,Lincoln Combustion,4,1995.0,109.6,73.0,94.0,73,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.666058394160584,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.64047255874899 -7277,Lincoln Combustion,5,1995.0,109.6,72.0,93.0,72,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.8485401459854015,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.843897861294842 -7277,Lincoln Combustion,6,1995.0,109.6,72.0,93.0,72,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.8485401459854015,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.994643800243093 -7277,Lincoln Combustion,7,1995.0,109.6,72.0,95.0,72,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.8667883211678833,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.57325550136334 -7277,Lincoln Combustion,8,1995.0,109.6,72.0,94.0,72,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6569343065693432,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.466701000438855 -7277,Lincoln Combustion,9,1995.0,109.6,71.0,94.0,71,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6478102189781022,0.8576642335766423,SERC,DUK,NC,35.4317,-81.0347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.784783705441182 -7279,O'Shaughnessy Hydro,1,1988.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OS,HY,9.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,40.153328,-83.126719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7279,O'Shaughnessy Hydro,2,1988.0,3.9,3.9,3.9,0.5,WAT,Conventional Hydroelectric,OS,HY,9.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,40.153328,-83.126719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7281,Gardner Energy Center,CT1,1990.0,19.6,13.0,14.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6632653061224489,0.7142857142857142,MRO,SWPP,KS,38.830833,-94.890278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.675 -7281,Gardner Energy Center,CT2,1990.0,19.6,13.0,14.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6632653061224489,0.7142857142857142,MRO,SWPP,KS,38.830833,-94.890278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.675 -7283,Paragould Turbine,1,1990.0,3.4,3.4,3.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SPA,AR,36.024272,-90.509229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.04054054054054 -7283,Paragould Turbine,2,1990.0,3.4,3.4,3.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SPA,AR,36.024272,-90.509229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.04054054054054 -7283,Paragould Turbine,3,1990.0,3.4,3.4,3.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SPA,AR,36.024272,-90.509229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.04054054054054 -7283,Paragould Turbine,4,1990.0,3.4,3.4,3.4,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SPA,AR,36.024272,-90.509229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.04054054054054 -7283,Paragould Turbine,5,1991.0,0.3,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,2.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,SPA,AR,36.024272,-90.509229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7288,Sherman Avenue,SEHR,1991.0,112.8,86.9,99.0,78.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7703900709219859,0.8776595744680851,RFC,PJM,NJ,39.451,-75.0578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7294,Central Energy Plant,GTG,1989.0,61.5,48.0,48.0,2,NG,Natural Gas Fired Combined Cycle,SB,CT,5.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7804878048780488,0.7804878048780488,SERC,FPC,FL,28.4263,-81.5809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7294,Central Energy Plant,STG,1989.0,8.5,8.0,8.0,1,NG,Natural Gas Fired Combined Cycle,SB,CA,1.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9411764705882353,0.9411764705882353,SERC,FPC,FL,28.4263,-81.5809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7296,State Line Combined Cycle,1,1995.0,123.0,94.0,104.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7642276422764227,0.8455284552845528,MRO,SWPP,MO,37.0659,-94.614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.050191572604941 -7296,State Line Combined Cycle,2-1,2001.0,181.0,175.0,200.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9668508287292817,1.0,MRO,SWPP,MO,37.0659,-94.614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.654023384728507 -7296,State Line Combined Cycle,2-2,1997.0,180.0,175.0,200.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9722222222222222,1.0,MRO,SWPP,MO,37.0659,-94.614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.875414359984482 -7296,State Line Combined Cycle,2-3,2001.0,206.5,186.0,186.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9007263922518159,0.9007263922518159,MRO,SWPP,MO,37.0659,-94.614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,1GT,1999.0,173.4,167.0,174.0,167,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9630911188004614,1.0,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,1GT2,1999.0,173.4,167.0,177.0,167,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9630911188004614,1.0,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,1ST,1999.0,199.7,167.0,170.0,162,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8362543815723587,0.8512769153730596,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,2GT,2003.0,178.5,176.0,179.0,176,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9859943977591037,1.0,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,2GT2,2003.0,178.5,174.0,183.0,174,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9747899159663865,1.0,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,2ST,2003.0,191.3,182.0,187.0,182,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9513852587558808,0.9775222164140094,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,3GT,2005.0,178.5,171.0,175.0,171,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.957983193277311,0.9803921568627451,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,3GT2,2005.0,178.5,176.0,177.0,176,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9859943977591037,0.9915966386554622,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,3ST,2005.0,204.0,176.0,183.0,176,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8627450980392157,0.8970588235294118,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,4GT,2007.0,199.0,171.0,179.0,171,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8592964824120604,0.8994974874371859,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,4GT2,2007.0,199.0,176.0,179.0,176,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8844221105527639,0.8994974874371859,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7302,Hines Energy Complex,4ST,2007.0,212.5,178.0,186.0,178,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8376470588235294,0.8752941176470588,SERC,FPC,FL,27.788215,-81.869983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7307,Redding Power,1,1996.0,18.0,16.0,17.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8888888888888888,0.9444444444444444,WECC,BANC,CA,40.507292,-122.423281,Redding Power 1,GT_Frame 5,False,1.0,1.0,-1.0,15.327,15.327,510.1854,77.1459,1.0,0.45,17.03,-1.1180483322718064,131.33618223902636,-5.254740772786537e-06,-1.1179208542736383,131.33543043716128,9.968351197457928,#TRUE#,#1996-05-01#,#2050-12-31#,Existing,BANC,CA_BANC,8.515,17.03,14.03,CA,NG,Areo,#FALSE#,8.515,17.03, -7307,Redding Power,2,1996.0,27.9,23.0,25.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8243727598566308,0.8960573476702509,WECC,BANC,CA,40.507292,-122.423281,Redding Power 2,GT_Frame 5,False,1.0,1.0,-1.0,22.527,22.527,749.8497,113.3859,1.0,0.45,25.03,-1.1251212415984442,194.285893383526,-6.62505130061275e-06,-1.1248812913364574,194.28380685655816,10.033260236984741,#TRUE#,#1996-05-01#,#2050-12-31#,Existing,BANC,CA_BANC,12.515,25.03,15.03,CA,NG,Areo,#FALSE#,12.515,25.03, -7307,Redding Power,3,1996.0,27.9,23.0,25.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8243727598566308,0.8960573476702509,WECC,BANC,CA,40.507292,-122.423281,Redding Power 3,GT_Frame 5,False,1.0,1.0,-1.0,22.527,22.527,749.8497,113.3859,1.0,0.45,25.03,-1.1251212415984442,194.285893383526,-6.62505130061275e-06,-1.1248812913364574,194.28380685655816,10.033260236984741,#TRUE#,#1994-06-01#,#2050-12-31#,Existing,BANC,CA_BANC,12.515,25.03,15.03,CA,NG,Areo,#FALSE#,12.515,25.03, -7307,Redding Power,4,1989.0,26.8,27.0,28.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,BANC,CA,40.507292,-122.423281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7307,Redding Power,5,2002.0,40.0,41.0,45.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,BANC,CA,40.507292,-122.423281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.599181365275749 -7307,Redding Power,6,2011.0,42.5,41.0,46.0,24,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9647058823529412,1.0,WECC,BANC,CA,40.507292,-122.423281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.622187098531084 -7314,Richard M Flynn,NA1,1994.0,110.0,87.5,104.0,1,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7954545454545454,0.9454545454545454,NPCC,NYIS,NY,40.8158,-73.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7314,Richard M Flynn,NA2,1994.0,60.0,49.4,58.7,1,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8233333333333333,0.9783333333333334,NPCC,NYIS,NY,40.8158,-73.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7315,Almond Power Plant,1,1996.0,49.5,49.5,49.5,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,TIDC,CA,37.5744,-120.985,Almond 1,GT LM_LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,48.0,4.98752898653247,85.11445665924501,0.314680928492155,-14.893265434395012,375.0250919167922,8.089879046593655,#TRUE#,#1996-05-01#,#2050-12-31#,Existing,TIDC,CA_TIDC,18.0,48.0,30.0,CA,NG,Areo,#FALSE#,18,48,13.335193397575663 -7315,Almond Power Plant,2,2012.0,58.0,50.0,58.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8620689655172413,1.0,WECC,TIDC,CA,37.5744,-120.985,Almond 2-2,GT LM_LM6000PG Sprint,False,1.0,1.0,-1.0,48.6,48.6,1617.734,244.62,1.0,0.45,52.0,4.3973276323591035,125.34987377494903,0.2584530864735871,-13.43323894024239,410.36480179295177,8.558268365535465,#TRUE#,#2012-07-13#,#2050-12-31#,Existing,TIDC,CA_TIDC,20.0,52.0,50.0,CA,NG,Areo,#FALSE#,20,52,8.333270221795564 -7315,Almond Power Plant,3,2012.0,58.0,50.0,58.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8620689655172413,1.0,WECC,TIDC,CA,37.5744,-120.985,Almond 2-3,GT LM_LM6000PG Sprint,False,1.0,1.0,-1.0,48.6,48.6,1617.734,244.62,1.0,0.45,52.0,4.4285906673072875,126.30759705329031,0.2602107591753908,-13.523236325571945,413.2608144090477,8.621322655472195,#TRUE#,#2012-07-13#,#2050-12-31#,Existing,TIDC,CA_TIDC,20.0,52.0,50.0,CA,NG,Areo,#FALSE#,20,52,13.29767221914023 -7315,Almond Power Plant,4,2012.0,58.0,50.0,58.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8620689655172413,1.0,WECC,TIDC,CA,37.5744,-120.985,Almond 2-4,GT LM_LM6000PG Sprint,False,1.0,1.0,-1.0,48.6,48.6,1617.734,244.62,1.0,0.45,52.0,4.426135524246688,122.643141913115,0.25529706504555544,-13.18669849113713,404.17769600955677,8.497227336809761,#TRUE#,#2012-07-13#,#2050-12-31#,Existing,TIDC,CA_TIDC,20.0,52.0,50.0,CA,NG,Areo,#FALSE#,20,52,7.449012003976558 -7317,Buffalo Bill,1,1992.0,6.0,6.0,6.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,44.508169,-109.170661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7317,Buffalo Bill,2,1992.0,6.0,6.0,6.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,44.508169,-109.170661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7317,Buffalo Bill,3,1992.0,6.0,6.0,6.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,44.508169,-109.170661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7318,Van Sant Station,1,1991.0,45.1,42.0,42.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9312638580931264,0.9312638580931264,RFC,PJM,DE,39.145036,-75.548172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7325,San Jacinto Steam Electric Station,1,1995.0,88.2,80.0,87.0,58,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9070294784580498,0.9863945578231292,TRE,ERCO,TX,29.694838,-95.040622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7325,San Jacinto Steam Electric Station,2,1995.0,88.2,80.0,87.0,58,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0,12,2031,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9070294784580498,0.9863945578231292,TRE,ERCO,TX,29.694838,-95.040622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7335,Richmond,RCT1,1992.0,41.4,34.0,42.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8212560386473431,1.0,RFC,PJM,IN,39.839572,-84.965682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.43357166717279 -7335,Richmond,RCT2,1992.0,41.4,34.0,42.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8212560386473431,1.0,RFC,PJM,IN,39.839572,-84.965682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.281490434254478 -7336,Anderson,ACT1,1992.0,41.4,34.0,42.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8212560386473431,1.0,RFC,PJM,IN,40.0529,-85.7389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.408568196852434 -7336,Anderson,ACT2,1992.0,41.4,34.0,42.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8212560386473431,1.0,RFC,PJM,IN,40.0529,-85.7389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.23580148595627 -7336,Anderson,ACT3,2004.0,85.9,72.0,90.0,36,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8381839348079161,1.0,RFC,PJM,IN,40.0529,-85.7389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.994120244425805 -7338,Grizzly,NA1,1993.0,22.0,17.7,17.7,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8045454545454545,0.8045454545454545,WECC,CISO,CA,39.889287,-121.279173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7339,Wellington 2,6,1989.0,20.0,21.0,21.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,KS,37.2678,-97.3497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.0196910541504 -7343,George Neal South,4,1979.0,695.9,640.6,640.6,200,SUB,Conventional Steam Coal,OP,ST,7.0,1979.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9205345595631557,0.9205345595631557,MRO,MISO,IA,42.3006,-96.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.60368196643716 -7345,University of Florida,P1,1994.0,54.2,44.0,50.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8118081180811808,0.9225092250922509,SERC,FPC,FL,29.640278,-82.348611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7348,Robins,1,1995.0,91.9,80.0,93.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8705114254624591,1.0,SERC,SOCO,GA,32.5792,-83.5822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7348,Robins,2,1995.0,91.9,80.0,93.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8705114254624591,1.0,SERC,SOCO,GA,32.5792,-83.5822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7350,Coyote Springs,1,1995.0,208.0,168.3,187.2,98.8,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8091346153846155,0.8999999999999999,WECC,PGE,OR,45.847998,-119.67392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7350,Coyote Springs,2,1995.0,88.0,75.9,83.7,61,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8625,0.9511363636363637,WECC,PGE,OR,45.847998,-119.67392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7367,Bradley Lake,1,1991.0,63.0,63.0,63.0,63,WAT,Conventional Hydroelectric,OP,HY,6.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.77862,-150.94015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7367,Bradley Lake,2,1991.0,63.0,63.0,63.0,63,WAT,Conventional Hydroelectric,OP,HY,6.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.77862,-150.94015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7368,Geothermal 1,1,1983.0,55.0,25.0,26.0,10,GEO,Geothermal,OP,ST,1.0,1983.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4545454545454546,0.4727272727272728,WECC,CISO,CA,38.752,-122.7195,Geothermal 1-1,GEO,True,6.0,16.0,-1.0,11.47,11.47,0.0,0.0,1.0,3.098312,31.0,-1.7614259953316531,182.0142042376283,-6.884708436909501e-06,-1.7611118130086376,182.01074893906718,6.679000132264411,#TRUE#,#1983-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,31.0,22.0,CA,Geo,Binary,#FALSE#,15.5,31, -7368,Geothermal 1,2,1983.0,55.0,26.0,27.0,10,GEO,Geothermal,OP,ST,1.0,1983.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4727272727272728,0.49090909090909096,WECC,CISO,CA,38.752,-122.7195,Geothermal 1-2,GEO,True,6.0,16.0,-1.0,2.61,2.61,0.0,0.0,1.0,3.098312,28.0,-1.7614287594034814,164.4000038084401,-7.0992573225842485e-06,-1.761140529560413,164.39719307057396,6.67900134198496,#TRUE#,#1983-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,28.0,22.0,CA,Geo,Binary,#FALSE#,14,28, -7369,Geothermal 2,3,1985.0,55.0,25.0,25.0,0,GEO,Geothermal,SB,ST,12.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4545454545454546,0.4545454545454546,WECC,CISO,CA,38.7492,-122.7117,Geothermal 2 3,GEO,True,6.0,16.0,-1.0,2.92,2.92,0.0,0.0,1.0,3.098312,60.0,-1.7614301929633525,352.2858083864552,-6.910354839778518e-06,-1.7608245022476268,352.2730341832434,6.679001967460726,#TRUE#,#1985-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,60.0,0.0,CA,Geo,Binary,#FALSE#,27.5,60, -7369,Geothermal 2,4,1986.0,55.0,40.0,41.0,10,GEO,Geothermal,OP,ST,5.0,1986.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7272727272727273,0.7454545454545455,WECC,CISO,CA,38.7492,-122.7117,Geothermal 2 4,GEO,True,6.0,16.0,-1.0,2.5,2.5,0.0,0.0,1.0,3.098312,53.0,-1.761430381066099,311.18580738501424,-7.3900323758972076e-06,-1.7608624570789,311.1753242915721,6.679002049968058,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,53.0,37.0,CA,Geo,Binary,#FALSE#,26.5,53, -7372,McPhee,1,1992.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,37.57522,-108.574002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7373,Towaoc,1,1993.0,11.4,11.4,10.5,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9210526315789473,WECC,WACM,CO,37.429538,-108.574871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,CT1,2002.0,181.1,179.0,198.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9884041965764772,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,CT2,2002.0,181.1,179.0,198.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9884041965764772,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,GT4,2006.0,62.0,54.0,62.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,GT5,2006.0,62.0,54.0,62.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,GT6,2006.0,62.0,54.0,62.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,GT7,2006.0,62.0,54.0,62.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,GT8,2006.0,62.0,54.0,62.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7380,Midulla Generating Station,ST3,2002.0,181.1,185.0,187.0,62,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SEC,FL,27.641667,-81.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7381,Searsburg Wind Turbine,1,1997.0,6.0,5.2,5.0,0.5,WND,Onshore Wind Turbine,OP,WT,6.0,1997.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8666666666666667,0.8333333333333334,NPCC,ISNE,VT,42.8625,-72.9628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7392,Poplar Bluff Generating Station,1,1976.0,7.0,7.0,7.0,3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,36.7597,-90.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.58754891309149 -7392,Poplar Bluff Generating Station,2,1976.0,7.0,6.7,6.7,3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9571428571428572,0.9571428571428572,SERC,SWPP,MO,36.7597,-90.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.58754891309149 -7392,Poplar Bluff Generating Station,3,2002.0,6.7,6.7,6.7,3,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,36.7597,-90.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.58759309332866 -7392,Poplar Bluff Generating Station,4,2002.0,6.7,6.3,6.3,3,NG,Natural Gas Internal Combustion Engine,OA,IC,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9402985074626865,0.9402985074626865,SERC,SWPP,MO,36.7597,-90.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.58759309332866 -7392,Poplar Bluff Generating Station,5,2002.0,6.7,6.7,6.7,3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,36.7597,-90.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.58759309332866 -7396,Front Street,1,1978.0,2.7,2.8,2.8,1.3,DFO,Petroleum Liquids,OP,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.1483,-72.5911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.346012909333627 -7396,Front Street,2,1978.0,2.7,2.8,2.8,1.3,DFO,Petroleum Liquids,OP,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.1483,-72.5911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.346012909333627 -7396,Front Street,3,1978.0,2.7,2.8,2.8,1.3,DFO,Petroleum Liquids,OP,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.1483,-72.5911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.346012909333627 -7397,Falling Spring,5,1967.0,2.0,2.1,2.1,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.9389,-77.6583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.908346000508491 -7397,Falling Spring,6,1967.0,2.0,2.1,2.1,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.9389,-77.6583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.908346000508491 -7397,Falling Spring,7,2001.0,3.2,2.9,2.9,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9062499999999999,0.9062499999999999,RFC,PJM,PA,39.9389,-77.6583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.908340806568445 -7398,Water Street Station,GEN1,1980.0,5.7,5.5,5.5,1,NG,Natural Gas Internal Combustion Engine,OA,IC,8.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017544,0.9649122807017544,RFC,MISO,MI,43.582846,-83.896696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.176698399908917 -7398,Water Street Station,GEN2,1984.0,6.9,6.5,6.5,1,NG,Natural Gas Internal Combustion Engine,OA,IC,10.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9420289855072463,0.9420289855072463,RFC,MISO,MI,43.582846,-83.896696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.176707977919099 -7399,Henry Station,GEN3,1993.0,7.7,7.5,7.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.974025974025974,0.974025974025974,RFC,MISO,MI,43.595101,-83.89986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.456848772763262 -7399,Henry Station,GEN4,1993.0,7.7,7.5,7.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.974025974025974,0.974025974025974,RFC,MISO,MI,43.595101,-83.89986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.456848772763262 -7400,Salisbury City of,1,1983.0,1.0,0.8,1.0,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,1.0,SERC,SWPP,MO,39.4236,-92.8028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7400,Salisbury City of,2,1983.0,1.0,0.8,1.0,0.5,DFO,Petroleum Liquids,OP,IC,6.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,1.0,SERC,SWPP,MO,39.4236,-92.8028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7400,Salisbury City of,3,1986.0,2.2,1.8,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.9090909090909091,SERC,SWPP,MO,39.4236,-92.8028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7400,Salisbury City of,4,1986.0,2.2,1.8,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.9090909090909091,SERC,SWPP,MO,39.4236,-92.8028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7405,Shelbina Power #1,G1,1981.0,3.0,3.0,3.0,0.3,DFO,Petroleum Liquids,OP,IC,1.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.694755,-92.047014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499760421657882 -7405,Shelbina Power #1,G2,1989.0,1.6,1.6,1.6,1,DFO,Petroleum Liquids,OP,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.694755,-92.047014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500449236298293 -7406,Shelbina Power #2,G3,1992.0,1.6,1.6,1.6,1,DFO,Petroleum Liquids,OP,IC,4.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.694784,-92.04674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5454375 -7406,Shelbina Power #2,G4,1992.0,1.6,1.6,1.6,1,DFO,Petroleum Liquids,OP,IC,4.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.694784,-92.04674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5454375 -7406,Shelbina Power #2,G5,1992.0,1.6,1.6,1.6,1,DFO,Petroleum Liquids,OP,IC,4.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.694784,-92.04674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5454375 -7406,Shelbina Power #2,G6,1999.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.694784,-92.04674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.545444444444446 -7408,Payson,86-1,1988.0,2.6,2.6,2.6,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.06084,-111.73023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -7408,Payson,86-2,1988.0,2.6,2.6,2.6,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.06084,-111.73023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -7408,Payson,86-3,1995.0,2.5,2.0,2.0,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8,0.8,WECC,PACE,UT,40.06084,-111.73023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -7408,Payson,86-4,1995.0,2.0,2.0,2.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.06084,-111.73023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -7413,Short Mountain,1,1992.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,43.96211,-122.997361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.347001260731224 -7413,Short Mountain,2,1992.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,43.96211,-122.997361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.347001260731224 -7413,Short Mountain,3,1993.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,43.96211,-122.997361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.347001260731224 -7413,Short Mountain,4,1993.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,43.96211,-122.997361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.347001260731224 -7414,Thorne Bay Plant,2,1993.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.68586,-132.52892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.96153846153846 -7414,Thorne Bay Plant,4,1996.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.68586,-132.52892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.96153846153846 -7415,Lakefield Utilities,5,1985.0,1.2,0.9,0.9,0.8,DFO,Petroleum Liquids,OP,IC,2.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,MRO,MISO,MN,43.674186,-95.1706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.713790112749349 -7415,Lakefield Utilities,6,2003.0,2.2,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,43.674186,-95.1706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.71455606371235 -7425,Interstate,1,1997.0,138.6,89.6,123.6,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6464646464646464,0.8917748917748918,SERC,MISO,IL,39.8233,-89.5891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.205243956043956 -7427,Cowlitz Falls,U#1,1994.0,35.0,35.0,35.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.4661,-122.1097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7427,Cowlitz Falls,U#2,1994.0,35.0,35.0,35.0,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,46.4661,-122.1097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7429,Edenton Generators,2,1988.0,1.2,1.2,1.2,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,36.028611,-76.571944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7429,Edenton Generators,3,2014.0,1.2,1.2,1.2,0.2,DFO,Petroleum Liquids,OP,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,NC,36.028611,-76.571944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7431,Dalles Dam North Fishway Project,1,1991.0,6.5,5.0,5.0,5,WAT,Conventional Hydroelectric,OP,HY,5.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7692307692307692,0.7692307692307692,WECC,BPAT,OR,45.614375,-121.136885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7432,Oxford (KS),1A,1999.0,1.7,1.6,1.6,0.9,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,MRO,SWPP,KS,37.2758,-97.1636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.0 -7432,Oxford (KS),2A,1999.0,1.7,1.6,1.6,0.9,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,MRO,SWPP,KS,37.2758,-97.1636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.0 -7432,Oxford (KS),3A,2007.0,1.7,1.6,1.6,0.9,DFO,Petroleum Liquids,OP,IC,3.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,MRO,SWPP,KS,37.2758,-97.1636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.0 -7436,Vernon,JH1,1933.0,6.0,3.6,4.0,3.6,DFO,Petroleum Liquids,OS,IC,9.0,1933.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6000000000000001,0.6666666666666667,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7436,Vernon,JH2,1933.0,6.0,3.6,4.0,3.6,DFO,Petroleum Liquids,OS,IC,9.0,1933.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6000000000000001,0.6666666666666667,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7436,Vernon,JH3,1933.0,6.0,3.6,4.6,3.6,DFO,Petroleum Liquids,OS,IC,9.0,1933.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6000000000000001,0.7666666666666666,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7436,Vernon,JH4,1933.0,6.0,3.6,4.0,3.6,DFO,Petroleum Liquids,OS,IC,9.0,1933.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6000000000000001,0.6666666666666667,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7436,Vernon,JH5,1933.0,6.0,3.6,4.0,3.6,DFO,Petroleum Liquids,OS,IC,9.0,1933.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6000000000000001,0.6666666666666667,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7437,Galena Electric Utility,2A,2015.0,0.5,0.5,0.5,0.3,DFO,Petroleum Liquids,OP,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.74417,-156.8736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.551989089405664 -7437,Galena Electric Utility,3B,2022.0,0.4,0.4,0.4,0.3,DFO,Petroleum Liquids,OP,IC,9.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.74417,-156.8736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.551972240306592 -7437,Galena Electric Utility,4A,2004.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.74417,-156.8736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.551977856667923 -7437,Galena Electric Utility,5A,2009.0,0.8,0.8,0.8,0.4,DFO,Petroleum Liquids,OP,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.74417,-156.8736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.551986281219342 -7437,Galena Electric Utility,6B,2022.0,0.4,0.4,0.4,0.3,DFO,Petroleum Liquids,OP,IC,9.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.74417,-156.8736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.551972240306592 -7438,Church Street Plant,C3A,1996.0,1.1,1.0,1.0,0.3,DFO,Petroleum Liquids,OP,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,PJM,VA,38.752347,-77.462918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.715545420846299 -7438,Church Street Plant,C5,1987.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,2.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.752347,-77.462918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.715548931175089 -7438,Church Street Plant,C6,1987.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,2.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.752347,-77.462918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.715548931175089 -7439,Godwin Drive Plant,C10,1992.0,1.5,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,11.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.590545361513424 -7439,Godwin Drive Plant,C7,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.590539325094106 -7439,Godwin Drive Plant,C8,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.590539325094106 -7439,Godwin Drive Plant,C9,1992.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,11.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.590539325094106 -7440,VMEA 1 Credit Gen,V10,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V3,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V4,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V5,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V6,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V7,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V8,1990.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.50767527989443 -7440,VMEA 1 Credit Gen,V9-1,2009.0,2.0,1.8,1.8,0.3,DFO,Petroleum Liquids,OP,IC,4.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.507757904344153 -7441,VMEA Peaking Gen,V1,1992.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,11.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.401639344262295 -7441,VMEA Peaking Gen,V11,1993.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.401639344262295 -7441,VMEA Peaking Gen,V12,1993.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.401639344262295 -7441,VMEA Peaking Gen,V2,1992.0,1.6,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,11.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,VA,38.74054,-77.508061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.401639344262295 -7447,Pratt 2,IC2,1994.0,8.0,7.6,7.6,5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,MRO,SWPP,KS,37.6356,-98.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.23262839879154 -7447,Pratt 2,IC3,2004.0,8.0,7.6,7.6,5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,MRO,SWPP,KS,37.6356,-98.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.23262839879154 -7449,Combustion Turbine Project No 2,NA1,1996.0,50.0,49.3,49.9,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.986,0.998,WECC,CISO,CA,38.088138,-121.386944,Lodi STIG,GT LM_TM2500,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,50.0,9.457335864756141,154.32066559887727,0.32894381250988003,-9.437334704028448,383.30260924778867,16.515892206630493,#TRUE#,#1996-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,11.1,50.0,30.0,CA,NG,Areo,#FALSE#,11.1,50,8.714754245754245 -7450,Alameda,1,1986.0,27.4,24.9,24.9,21.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9087591240875912,0.9087591240875912,WECC,CISO,CA,37.7886,-122.2889,Alameda1,GT Aero_TM2500,False,1.0,1.0,-1.0,23.04,23.04,766.9258,115.968,1.0,0.45,25.6,4.425952937909601,102.29880346552976,-7.0422402082586985e-06,4.426214345860164,102.29647278777384,10.170441571510082,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,12.8,25.6,22.0,CA,NG,Areo,#FALSE#,12.8,25.6,15.897398008352072 -7450,Alameda,2,1986.0,27.4,24.9,24.9,21.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9087591240875912,0.9087591240875912,WECC,CISO,CA,37.7886,-122.2889,Alameda2,GT Aero_TM2500,False,1.0,1.0,-1.0,23.04,23.04,766.9258,115.968,1.0,0.45,25.6,4.425952937909601,102.29880346552976,-7.0422402082586985e-06,4.426214345860164,102.29647278777384,10.170441571510082,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,12.8,25.6,22.0,CA,NG,Areo,#FALSE#,12.8,25.6,15.897398008352072 -7451,Lodi,1,1986.0,27.4,25.2,25.2,23.3,NG,Natural Gas Fired Combustion Turbine,SB,GT,2.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9197080291970803,0.9197080291970803,WECC,CISO,CA,38.146571,-121.300541,Lodi 1,GT Aero_LM2500,False,1.0,1.0,-1.0,23.04,23.04,766.9258,115.968,1.0,0.45,25.6,4.425952937909601,102.29880346552976,-7.0422402082586985e-06,4.426214345860164,102.29647278777384,10.170441571510082,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,12.8,25.6,22.0,CA,NG,Areo,#FALSE#,12.8,25.6,16.299444681759933 -7452,Roseville Power Plant #2,1,1986.0,33.0,21.2,24.2,15,NG,Natural Gas Fired Combustion Turbine,SB,GT,4.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6424242424242423,0.7333333333333334,WECC,BANC,CA,38.810677,-121.323807,Roseville 1,GT Aero_TM2500 G4,False,1.0,1.0,-1.0,23.04,23.04,766.9258,115.968,1.0,0.45,25.6,4.425952937909601,102.29880346552976,-7.0422402082586985e-06,4.426214345860164,102.29647278777384,10.170441571510082,#TRUE#,#1986-05-01#,#2050-12-31#,Existing,BANC,CA_BANC,12.8,25.6,20.0,CA,NG,Areo,#FALSE#,12.8,25.6,17.635084105732922 -7452,Roseville Power Plant #2,2,1986.0,33.0,21.2,24.2,15,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6424242424242423,0.7333333333333334,WECC,BANC,CA,38.810677,-121.323807,Roseville 2,GT Aero_TM2500 G4,False,1.0,1.0,-1.0,23.04,23.04,766.9258,115.968,1.0,0.45,25.6,4.425952937909601,102.29880346552976,-7.0422402082586985e-06,4.426214345860164,102.29647278777384,10.170441571510082,#TRUE#,#1986-04-01#,#2050-12-31#,Existing,BANC,CA_BANC,12.8,25.6,20.0,CA,NG,Areo,#FALSE#,12.8,25.6,17.635084105732922 -7456,Rathdrum,1,1994.0,83.2,66.0,87.5,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7932692307692307,1.0,WECC,AVA,ID,47.80427,-116.867312,Rathdrum_1,GT E_7EA,False,1.0,1.0,-1.0,8.320001,8.320001,4911.266,18.304,1.0,0.56,89.0,-0.08561243132647917,431.1282954565203,1.0299823847488463,-139.47405391392766,5013.73813921954,6.706572061743513,#TRUE#,#1994-12-01#,#2050-12-31#,Existing,AVA,NW_AVA,50.0,89.0,70.0,ID,NG,Industrial,#FALSE#,50,89,10.595815095513908 -7456,Rathdrum,2,1994.0,83.2,66.0,87.5,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7932692307692307,1.0,WECC,AVA,ID,47.80427,-116.867312,Rathdrum_2,GT E_7EA,False,1.0,1.0,-1.0,8.320001,8.320001,4911.266,18.304,1.0,0.56,88.0,-0.5387213935417893,455.14690312263536,1.0776462267832163,-145.4014177032474,5191.05381551327,6.667245938889936,#TRUE#,#1994-12-01#,#2050-12-31#,Existing,AVA,NW_AVA,50.0,88.0,70.0,ID,NG,Industrial,#FALSE#,50,88,9.013740230277357 -7458,Basalt,1,1985.0,5.0,4.5,4.5,0.7,WAT,Conventional Hydroelectric,OP,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,PSCO,CO,39.363056,-106.821944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7462,Angoon,1A,2009.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.499166,-134.58614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.059509792526786 -7462,Angoon,2A,1998.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.499166,-134.58614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.059509792526786 -7462,Angoon,3,1990.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.499166,-134.58614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.059509792526786 -7463,Hoonah,2A,1997.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,7.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.106432,-135.43074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.88048108243548 -7463,Hoonah,3A,2012.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.106432,-135.43074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.88048108243548 -7463,Hoonah,4,2012.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.106432,-135.43074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.88048108243548 -7464,Kake,1B,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.962983,-133.922557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.662936393293624 -7464,Kake,2,1993.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,OP,IC,5.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.962983,-133.922557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.662947210776956 -7464,Kake,2A,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.962983,-133.922557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.662936393293624 -7464,Kake,3B,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.962983,-133.922557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.662936393293624 -7464,Kake,4,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,56.962983,-133.922557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.662936393293624 -7469,Madison Utilities,FM1,1959.0,2.0,1.7,1.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.85,0.85,MRO,SWPP,NE,41.829754,-97.456275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.201276102088167 -7469,Madison Utilities,FM2,1959.0,1.3,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,MRO,SWPP,NE,41.829754,-97.456275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.196253345227476 -7469,Madison Utilities,FM3,1953.0,1.1,0.9,0.9,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,MRO,SWPP,NE,41.829754,-97.456275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.20464135021097 -7469,Madison Utilities,FM5,2006.0,1.4,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7142857142857144,0.7142857142857144,MRO,SWPP,NE,41.829754,-97.456275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.19884009942005 -7470,Marceline,1,1989.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,39.716944,-92.945833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.875 -7470,Marceline,2,2002.0,3.0,3.0,3.0,1,DFO,Petroleum Liquids,SB,IC,3.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,39.716944,-92.945833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.875 -7470,Marceline,5,2004.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,39.716944,-92.945833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.875 -7470,Marceline,6,2004.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,39.716944,-92.945833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.875 -7474,Upper Sterling,1,1988.0,1.1,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,RFC,MISO,IL,41.787115,-89.677526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7474,Upper Sterling,2,1988.0,1.1,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,RFC,MISO,IL,41.787115,-89.677526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7479,North Road Peak,EAST,1987.0,7.0,6.5,7.0,1,DFO,Petroleum Liquids,OP,IC,4.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9285714285714286,1.0,SERC,SCEG,SC,33.5452,-80.9109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.429133858267717 -7479,North Road Peak,WEST,1987.0,7.0,6.5,7.0,1,DFO,Petroleum Liquids,OP,IC,4.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9285714285714286,1.0,SERC,SCEG,SC,33.5452,-80.9109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.429133858267717 -7480,Rowesville Rd Plant,GEN3,1994.0,4.8,4.2,4.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8750000000000001,1.0,SERC,SCEG,SC,33.436637,-80.847389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.627340823970037 -7480,Rowesville Rd Plant,GEN4,1994.0,4.8,4.2,4.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8750000000000001,1.0,SERC,SCEG,SC,33.436637,-80.847389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.627340823970037 -7481,City Light & Water,1,1987.0,0.9,0.9,0.9,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.327952,-98.450252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.49241877256318 -7481,City Light & Water,2,1987.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.327952,-98.450252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.51707317073171 -7482,NSB Atqasuk Utility,NA1,2003.0,0.9,0.9,0.9,0.2,DFO,Petroleum Liquids,OP,IC,2.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.4826,-157.4252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.99471552736669 -7482,NSB Atqasuk Utility,NA2,2003.0,0.9,0.9,0.9,0.2,DFO,Petroleum Liquids,OP,IC,2.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.4826,-157.4252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.99471552736669 -7482,NSB Atqasuk Utility,NA3,2003.0,0.4,0.4,0.4,0.3,DFO,Petroleum Liquids,OP,IC,2.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.4826,-157.4252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.994714587737842 -7482,NSB Atqasuk Utility,PG2,1986.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.4826,-157.4252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.994714587737842 -7482,NSB Atqasuk Utility,PG3,1986.0,0.6,0.6,0.6,0.4,DFO,Petroleum Liquids,OP,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.4826,-157.4252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.994714587737842 -7483,NSB Kaktovik Utility,PG1A,2000.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.125617,-143.619033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.63012999714833 -7483,NSB Kaktovik Utility,PG2A,2000.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.125617,-143.619033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.63012999714833 -7483,NSB Kaktovik Utility,PG3A,2000.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.125617,-143.619033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.630126237834244 -7483,NSB Kaktovik Utility,PG4A,2000.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.125617,-143.619033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.630126237834244 -7484,NSB Nuiqsut Utility,PG1A,1999.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.220565,-150.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.30202276916259 -7484,NSB Nuiqsut Utility,PG2A,1999.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.220565,-150.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.30202276916259 -7484,NSB Nuiqsut Utility,PG3A,1999.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.220565,-150.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.302020368358793 -7484,NSB Nuiqsut Utility,PG3B,2013.0,0.6,0.6,0.6,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.220565,-150.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.302014173139524 -7484,NSB Nuiqsut Utility,PG5A,2008.0,0.8,0.8,0.8,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.220565,-150.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.302020368358793 -7484,NSB Nuiqsut Utility,PG6A,2008.0,0.8,0.8,0.8,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.220565,-150.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.302020368358793 -7485,NSB Point Hope Utility,PG1A,2014.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.348424,-166.737211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.218716232922985 -7485,NSB Point Hope Utility,PG6,1995.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,OP,IC,9.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.348424,-166.737211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.218712430336414 -7485,NSB Point Hope Utility,PG7,1995.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,OP,IC,9.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.348424,-166.737211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.218712430336414 -7485,NSB Point Hope Utility,PG8,2008.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,8.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.348424,-166.737211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.21871270074335 -7486,NSB Point Lay Utility,PG10,2013.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,69.740833,-163.005833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.299404593138645 -7486,NSB Point Lay Utility,PG7,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,69.740833,-163.005833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.299404593138645 -7486,NSB Point Lay Utility,PG8,2013.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,69.740833,-163.005833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.299404593138645 -7486,NSB Point Lay Utility,PG9,2013.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,69.740833,-163.005833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.299404593138645 -7487,NSB Anaktuvuk Pass,1,1994.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.13795,-151.741017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475766014114528 -7487,NSB Anaktuvuk Pass,2,1994.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.13795,-151.741017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475766014114528 -7487,NSB Anaktuvuk Pass,3,1994.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.13795,-151.741017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475766014114528 -7487,NSB Anaktuvuk Pass,6,2003.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,12.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.13795,-151.741017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475774158013515 -7487,NSB Anaktuvuk Pass,7,2003.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,12.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,68.13795,-151.741017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475774158013515 -7488,NSB Wainwright Utility,PG1,1988.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.642877,-160.020461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872160267471957 -7488,NSB Wainwright Utility,PG2,1988.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.642877,-160.020461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872160267471957 -7488,NSB Wainwright Utility,PG3,1989.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.642877,-160.020461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872160267471957 -7488,NSB Wainwright Utility,PG4A,2001.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.642877,-160.020461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872159907966639 -7488,NSB Wainwright Utility,PG5,2001.0,0.9,0.9,0.9,0.4,DFO,Petroleum Liquids,OP,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.642877,-160.020461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.872159907966639 -7489,Lake Mendocino,G1,1987.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.197222,-123.185556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7489,Lake Mendocino,G2,1987.0,2.5,2.5,2.5,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.197222,-123.185556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7493,King Cove,1,1980.0,0.3,0.3,0.3,0.2,OTH,All Other,OP,IC,2.0,1980.0, , ,,,,,other,other,Other,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.061683,-162.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7493,King Cove,2,1986.0,0.5,0.4,0.4,0.2,DFO,Petroleum Liquids,OP,IC,1.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,non-conus,non-conus,AK,55.061683,-162.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.362679537128567 -7493,King Cove,3,1992.0,0.7,0.6,0.6,0.6,OTH,All Other,OP,IC,6.0,1992.0, , ,,,,,other,other,Other,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,non-conus,non-conus,AK,55.061683,-162.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7493,King Cove,4,1995.0,0.8,0.7,0.2,0.6,WAT,Conventional Hydroelectric,OP,HY,2.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.2499999999999999,non-conus,non-conus,AK,55.061683,-162.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7493,King Cove,5,1980.0,0.3,0.3,0.3,0.2,DFO,Petroleum Liquids,OP,IC,2.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.061683,-162.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.362704845814978 -7493,King Cove,6,2017.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.061683,-162.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7497,Croswell,1,1982.0,0.6,0.6,0.6,0.3,DFO,Petroleum Liquids,SB,IC,11.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.271944,-82.613889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7497,Croswell,2,1984.0,0.7,0.7,0.7,0.3,DFO,Petroleum Liquids,SB,IC,11.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.271944,-82.613889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7497,Croswell,3,1988.0,1.2,1.2,1.2,0.6,DFO,Petroleum Liquids,SB,IC,11.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.271944,-82.613889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7497,Croswell,4,1990.0,1.3,1.3,1.3,0.6,DFO,Petroleum Liquids,SB,IC,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.271944,-82.613889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7497,Croswell,5,1996.0,1.3,1.3,1.3,0.6,DFO,Petroleum Liquids,SB,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.271944,-82.613889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7501,Princeton Wind Farm,2,2010.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.4789,-71.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7502,Dutch Harbor,10,2010.0,5.2,4.4,4.4,3.1,DFO,Petroleum Liquids,OP,IC,11.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.039942063216793 -7502,Dutch Harbor,11,2010.0,5.2,4.4,4.4,3.1,DFO,Petroleum Liquids,OP,IC,11.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.039942063216793 -7502,Dutch Harbor,12,2015.0,4.4,3.7,3.7,2.6,DFO,Petroleum Liquids,OP,IC,4.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8409090909090908,0.8409090909090908,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.039941538396297 -7502,Dutch Harbor,13,2011.0,4.4,3.7,3.7,2.6,DFO,Petroleum Liquids,OP,IC,12.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8409090909090908,0.8409090909090908,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.039941538396297 -7502,Dutch Harbor,15,2010.0,0.3,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.03993718364163 -7502,Dutch Harbor,8,1989.0,1.2,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.039940637141305 -7502,Dutch Harbor,9,1994.0,1.2,1.0,1.0,0.6,DFO,Petroleum Liquids,OP,IC,5.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,non-conus,non-conus,AK,53.892459,-166.538185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.039940637141305 -7503,Unalaska Power Module,7,1993.0,1.1,0.8,0.8,0.6,DFO,Petroleum Liquids,OP,IC,11.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7272727272727273,0.7272727272727273,non-conus,non-conus,AK,53.863993,-166.512591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.146153846153846 -7504,Neil Simpson II,2,1995.0,90.0,80.0,80.0,52,SUB,Conventional Steam Coal,OP,ST,9.0,1995.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8888888888888888,0.8888888888888888,WECC,WACM,WY,44.2856,-105.3833,Neil Simpson ST2,ST-Col,False,48.0,108.0,-1.0,1.6,1.6,11861.08,746.4,1.0,1.79,80.0,12.470006662143762,55.11945961858898,-4.245897276641367e-05,12.475492337008484,54.94501938480955,13.336849673882266,#TRUE#,#1995-09-01#,#2050-12-31#,Existing,WACM,RM_WACM,52.0,80.0,90.7,WY,Coal,,#FALSE#,52,80, -7504,Neil Simpson II,GT1,2000.0,40.0,34.0,37.0,24.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.925,WECC,WACM,WY,44.2856,-105.3833,Neil Simpson GT1,GT LM_LM6000 PD,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,38.0,-11.486057038130651,717.7081520506086,-0.0011778414689890709,-11.40035744046501,716.1512226224929,8.582342300277881,#TRUE#,#2000-07-01#,#2050-12-31#,Existing,WACM,RM_WACM,34.0,38.0,40.0,WY,NG,Areo,#FALSE#,34,38, -7507,Deadwood Creek,1,1993.0,2.0,1.9,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,1.0,WECC,CISO,CA,39.53,-121.095833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7508,Stone Creek,1,1994.0,12.0,7.0,10.7,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5833333333333333,0.8916666666666666,WECC,PGE,OR,45.081111,-121.886611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7511,McNary Dam Fish Attraction Project,1,1997.0,10.0,9.0,9.0,8.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1997.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,BPAT,WA,45.940034,-119.299078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7512,Arthur Von Rosenberg,1,2000.0,187.5,164.0,176.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8746666666666667,0.9386666666666666,TRE,ERCO,TX,29.257046,-98.384045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7512,Arthur Von Rosenberg,2,2000.0,187.5,164.0,176.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8746666666666667,0.9386666666666666,TRE,ERCO,TX,29.257046,-98.384045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7512,Arthur Von Rosenberg,3,2000.0,200.0,190.0,197.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.95,0.985,TRE,ERCO,TX,29.257046,-98.384045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7515,McPherson 3,NA1,1998.0,115.6,80.2,85.0,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6937716262975779,0.7352941176470589,MRO,SWPP,KS,38.38932,-97.61108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7526,Solano Wind,1,1994.0,13.2,13.1,13.2,1,WND,Onshore Wind Turbine,OP,WT,6.0,1994.0,6,2023,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9924242424242424,1.0,WECC,CISO,CA,38.116415,-121.769031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7526,Solano Wind,2,2006.0,24.0,24.0,24.0,1,WND,Onshore Wind Turbine,OP,WT,6.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.116415,-121.769031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7526,Solano Wind,2B,2007.0,63.0,63.0,63.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.116415,-121.769031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7526,Solano Wind,3,2012.0,128.0,128.0,128.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.116415,-121.769031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7527,Carson Ice-Gen Project,1,1995.0,54.0,41.2,41.2,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7629629629629631,0.7629629629629631,WECC,BANC,CA,38.445681,-121.462387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.528210733101216 -7527,Carson Ice-Gen Project,2,1995.0,17.5,16.6,16.6,2,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9485714285714286,0.9485714285714286,WECC,BANC,CA,38.445681,-121.462387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7527,Carson Ice-Gen Project,CCCT,1995.0,54.0,51.2,51.2,21,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9481481481481482,0.9481481481481482,WECC,BANC,CA,38.445681,-121.462387,Carson Ice Peaker,CC LM_LM6000,False,1.0,1.0,-1.0,4.2,4.2,2479.245,9.24,1.0,0.56,42.0,5.326137982858213,103.2721413121844,0.408914908067857,-19.18019930656949,453.601327226818,9.10648687768185,#TRUE#,#1995-10-01#,#2050-12-31#,Existing,BANC,CA_BANC,20.0,42.0,40.0,CA,NG,Industrial,#FALSE#,20,42, -7538,Wayne County,1,2000.0,195.2,169.0,195.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8657786885245902,0.9989754098360656,SERC,CPLE,NC,35.375789,-78.098052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7538,Wayne County,2,2000.0,195.2,174.0,195.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8913934426229508,0.9989754098360656,SERC,CPLE,NC,35.375789,-78.098052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7538,Wayne County,3,2000.0,195.2,164.0,195.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8401639344262295,0.9989754098360656,SERC,CPLE,NC,35.375789,-78.098052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7538,Wayne County,4,2000.0,195.2,162.0,195.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8299180327868854,0.9989754098360656,SERC,CPLE,NC,35.375789,-78.098052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7538,Wayne County,5,2009.0,198.9,153.0,195.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7692307692307692,0.9803921568627451,SERC,CPLE,NC,35.375789,-78.098052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7541,Spirit Mountain,1,1994.0,4.5,4.5,4.5,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,WY,44.512699,-109.129878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7545,Kaw Hydro,1,1989.0,37.0,29.6,29.6,2,WAT,Conventional Hydroelectric,OP,HY,8.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,MRO,SWPP,OK,36.6994,-96.9278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7546,Ponca City,1,1966.0,19.8,18.8,18.8,1.5,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1966.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9494949494949495,0.9494949494949495,MRO,SWPP,OK,36.71979,-97.085758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7546,Ponca City,3,1995.0,54.0,44.1,44.1,33,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8166666666666667,0.8166666666666667,MRO,SWPP,OK,36.71979,-97.085758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7546,Ponca City,4,2003.0,60.5,43.9,43.9,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7256198347107438,0.7256198347107438,MRO,SWPP,OK,36.71979,-97.085758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7548,Causey,1,1998.0,1.5,1.5,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1998.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.297229,-111.588849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7548,Causey,2,1998.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1998.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.297229,-111.588849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7548,Causey,MINI,2021.0,0.1,0.1,0.1,0,WAT,Conventional Hydroelectric,OP,HY,3.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,41.297229,-111.588849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7551,SCA Cogen 2,CCST,1997.0,49.8,37.6,37.6,4.5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7550200803212852,0.7550200803212852,WECC,BANC,CA,38.530943,-121.400128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7551,SCA Cogen 2,CT1A,1997.0,49.8,47.6,47.6,35,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9558232931726909,0.9558232931726909,WECC,BANC,CA,38.530943,-121.400128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7551,SCA Cogen 2,CT1B,1997.0,49.8,47.6,47.6,35,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9558232931726909,0.9558232931726909,WECC,BANC,CA,38.530943,-121.400128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7551,SCA Cogen 2,CT1C,2001.0,44.0,43.8,47.3,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9954545454545454,1.0,WECC,BANC,CA,38.530943,-121.400128,SCACogen2GT,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,44.1,44.1,1467.944,10.78,1.0,0.45,50.0,5.551956804669181,99.60550199553586,0.2185706305037282,-9.131099058491785,329.46303091619626,8.919180891821686,#TRUE#,#2001-06-01#,#2050-12-31#,Existing,BANC,CA_BANC,20.0,50.0,47.0,CA,NG,Industrial,#FALSE#,20,50, -7552,SPA Cogen 3,CCCT,1997.0,118.7,119.0,111.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,0.9351305812973884,WECC,BANC,CA,38.511,-121.4735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7552,SPA Cogen 3,CCST,1997.0,55.2,59.0,53.0,36,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,0.9601449275362318,WECC,BANC,CA,38.511,-121.4735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7555,Nebraska City # 2,11,1998.0,4.5,4.0,4.0,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,MRO,SWPP,NE,40.6661,-95.868333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7555,Nebraska City # 2,12,1998.0,4.5,4.0,4.0,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8888888888888888,0.8888888888888888,MRO,SWPP,NE,40.6661,-95.868333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7555,Nebraska City # 2,13,1998.0,4.5,4.2,4.2,3,DFO,Petroleum Liquids,OP,IC,11.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333333,0.9333333333333333,MRO,SWPP,NE,40.6661,-95.868333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7556,State Farm,1,1996.0,1.7,1.7,1.7,0,DFO,Petroleum Liquids,SB,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,40.4535,-88.9605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.25145321582599 -7556,State Farm,2,1996.0,1.7,1.7,1.7,0,DFO,Petroleum Liquids,SB,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,40.4535,-88.9605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.25145321582599 -7556,State Farm,3,1996.0,1.7,1.7,1.7,0,DFO,Petroleum Liquids,SB,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,40.4535,-88.9605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.25145321582599 -7583,Talcville,1,1986.0,1.0,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7,0.7,NPCC,NYIS,NY,44.3083,-75.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7583,Talcville,2,1986.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.3083,-75.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7584,Panora,1,1988.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.694673,-94.367571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.173470718664406 -7584,Panora,2,1988.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.694673,-94.367571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.174134220309138 -7584,Panora,3,1993.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.694673,-94.367571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.174134220309138 -7588,H M Jackson,1,1984.0,47.5,41.0,44.0,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8631578947368421,0.9263157894736842,WECC,BPAT,WA,47.9084,-121.8144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7588,H M Jackson,2,1984.0,47.5,41.0,44.0,5,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8631578947368421,0.9263157894736842,WECC,BPAT,WA,47.9084,-121.8144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7588,H M Jackson,3,1984.0,8.4,7.0,8.0,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.9523809523809523,WECC,BPAT,WA,47.9084,-121.8144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7588,H M Jackson,4,1984.0,8.4,7.0,8.0,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333333,0.9523809523809523,WECC,BPAT,WA,47.9084,-121.8144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7593,El Vado Dam,1,1988.0,8.0,8.0,8.0,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,36.592775,-106.73213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7594,Belleville Dam,1,1999.0,21.0,21.0,21.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.1192,-81.7375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7594,Belleville Dam,2,1999.0,21.0,21.0,21.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.1192,-81.7375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7603,Prospect Municipal,1,1998.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.4411,-83.1883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.029411764705882 -7604,St Francis Energy Facility,1,1999.0,253.3,241.0,241.0,183,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9514409790761942,0.9514409790761942,SERC,AECI,MO,36.5852,-90.1779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.756516223963796 -7604,St Francis Energy Facility,2,2001.0,253.3,209.0,221.0,183,NG,Natural Gas Fired Combined Cycle,OP,CS,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8251085669166995,0.87248322147651,SERC,AECI,MO,36.5852,-90.1779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.616767878073734 -7605,River Road Gen Plant,1,1997.0,248.0,220.0,248.0,205,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8870967741935484,1.0,WECC,BPAT,WA,45.6497,-122.7256,River_Road,CC F_7FA,False,6.0,2.0,-1.0,14.88,14.88,19304.72,59.52,1.0,2.1,265.0,4.148530159822651,509.1894949158863,-5.400840314943863e-06,4.150548566176136,509.0099083808379,7.0156915506186195,#TRUE#,#1997-12-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,148.8,265.0,0.0,WA,NG,Single shaft,#FALSE#,122.928,265,7.146123309298549 -7646,Monticello Dam,1,1983.0,5.0,5.0,5.0,1.6,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.513056,-122.104444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7646,Monticello Dam,2,1983.0,5.0,5.0,5.0,1.6,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.513056,-122.104444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7646,Monticello Dam,3,1983.0,1.5,1.5,1.5,0.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.513056,-122.104444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7657,Auglaize Hydro,1,1986.0,0.7,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,41.237206,-84.399756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7657,Auglaize Hydro,2A,2004.0,0.9,1.0,1.0,0.6,WAT,Conventional Hydroelectric,OP,HY,7.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,41.237206,-84.399756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7657,Auglaize Hydro,3A,2004.0,0.9,1.0,1.0,0.6,WAT,Conventional Hydroelectric,OP,HY,6.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,41.237206,-84.399756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7657,Auglaize Hydro,4,1987.0,0.5,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,41.237206,-84.399756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7657,Auglaize Hydro,5,1988.0,0.5,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,41.237206,-84.399756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7657,Auglaize Hydro,6,2004.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,OH,41.237206,-84.399756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7690,Pennsbury,1,1996.0,3.0,2.0,2.8,1,LFG,Landfill Gas,OS,GT,9.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.6666666666666667,0.9333333333333332,RFC,PJM,PA,40.153128,-74.769146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7690,Pennsbury,2,1996.0,3.0,2.0,2.8,1,LFG,Landfill Gas,OS,GT,9.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.6666666666666667,0.9333333333333332,RFC,PJM,PA,40.153128,-74.769146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7697,Washington County Cogeneration Facility,1,1999.0,82.6,75.0,82.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9079903147699758,0.9927360774818402,SERC,SOCO,AL,31.26423,-88.00267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7697,Washington County Cogeneration Facility,2,1999.0,39.9,25.0,25.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6265664160401003,0.6265664160401003,SERC,SOCO,AL,31.26423,-88.00267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7698,General Electric Plastic,1,1999.0,82.2,74.0,84.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9002433090024331,1.0,SERC,SOCO,AL,32.310226,-86.52542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7698,General Electric Plastic,2,1999.0,14.8,10.5,10.5,2,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7094594594594594,0.7094594594594594,SERC,SOCO,AL,32.310226,-86.52542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7699,Tiger Bay,CT1,1997.0,195.2,130.0,160.0,130,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6659836065573771,0.819672131147541,SERC,FPC,FL,27.746369,-81.849446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7699,Tiger Bay,CW1,1997.0,82.9,69.0,70.0,69,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8323281061519903,0.8443908323281061,SERC,FPC,FL,27.746369,-81.849446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,1,2000.0,91.9,74.8,87.1,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8139281828073992,0.9477693144722523,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,10,2001.0,91.9,75.2,88.6,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8182807399347116,0.9640914036996734,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,2,2000.0,91.9,74.0,87.4,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8052230685527747,0.9510337323177367,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,3,2000.0,91.9,74.7,87.8,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8128400435255713,0.9553862894450489,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,4,2000.0,91.9,73.5,86.9,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7997823721436343,0.9455930359085963,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,5,2000.0,91.9,74.7,87.7,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8128400435255713,0.9542981501632208,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,6,2000.0,91.9,74.9,87.7,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8150163220892275,0.9542981501632208,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,7,2000.0,91.9,75.0,88.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8161044613710554,0.9575625680087051,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,8,2000.0,91.9,74.0,87.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8052230685527747,0.9466811751904243,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7709,Dahlberg,9,2001.0,91.9,74.8,88.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8139281828073992,0.9575625680087051,SERC,SOCO,GA,34.042267,-83.397721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,CT1A,2002.0,203.1,177.5,188.5,115,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8739537173806007,0.9281142294436239,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,CT1B,2002.0,203.1,177.5,188.5,115,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8739537173806007,0.9281142294436239,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,CT2A,2002.0,203.1,177.8,190.3,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8754308222550469,0.9369768586903005,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,CT2B,2002.0,203.1,177.8,190.3,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8754308222550469,0.9369768586903005,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,CT3A,2008.0,203.1,182.6,196.6,109,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8990645002461841,0.9679960610536682,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,CT3B,2008.0,203.1,182.6,196.6,109,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8990645002461841,0.9679960610536682,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,ST1,2002.0,213.3,240.0,240.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,ST2,2002.0,281.9,293.0,293.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7710,H Allen Franklin Combined Cycle,ST3,2008.0,281.9,293.0,293.0,112,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.6078,-85.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7715,Pea Ridge,1,1998.0,4.7,4.0,4.6,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1998.0,4,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.978723404255319,SERC,SOCO,FL,30.59208,-87.135391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.68507899793873 -7715,Pea Ridge,2,1998.0,4.7,4.0,4.6,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1998.0,4,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.978723404255319,SERC,SOCO,FL,30.59208,-87.135391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.68507899793873 -7715,Pea Ridge,3,1998.0,4.7,4.0,4.6,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1998.0,4,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.978723404255319,SERC,SOCO,FL,30.59208,-87.135391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.68507899793873 -7719,Meridian,1,1998.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,MS,32.55078,-88.60669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7719,Meridian,2,1998.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,MS,32.55078,-88.60669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7719,Meridian,3,1998.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,MS,32.55078,-88.60669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7719,Meridian,4,1998.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,MS,32.55078,-88.60669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7719,Meridian,5,1998.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,MS,32.55078,-88.60669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7721,Theodore Cogen Facility,1,2000.0,229.0,166.3,180.3,160,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7262008733624454,0.7873362445414848,SERC,SOCO,AL,30.525445,-88.128477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7721,Theodore Cogen Facility,2,2000.0,88.4,64.7,64.7,64.7,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7319004524886878,0.7319004524886878,SERC,SOCO,AL,30.525445,-88.128477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7722,Watts Bar Nuclear Plant,1,1996.0,1269.9,1123.0,1179.0,1123,NUC,Nuclear,OP,ST,5.0,1996.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8843216001259941,0.9284195605953224,SERC,TVA,TN,35.6021,-84.7895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7722,Watts Bar Nuclear Plant,2,2016.0,1269.9,1122.0,1164.0,1122,NUC,Nuclear,OP,ST,6.0,2016.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8835341365461846,0.9166076068981809,SERC,TVA,TN,35.6021,-84.7895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7723,Nymans Plant Microgrid,1,1994.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.731608,-152.507044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7723,Nymans Plant Microgrid,2,2000.0,7.5,7.3,7.4,1,DFO,Petroleum Liquids,OP,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9733333333333333,0.9866666666666667,non-conus,non-conus,AK,57.731608,-152.507044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7725,Coffin Butte,1,1995.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.6969,-123.2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.059507972182224 -7725,Coffin Butte,2,1995.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.6969,-123.2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.059507972182224 -7725,Coffin Butte,3,1995.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.6969,-123.2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.059507972182224 -7725,Coffin Butte,4,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.6969,-123.2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.05950886375676 -7725,Coffin Butte,5,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.6969,-123.2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.05950886375676 -7737,Kapstone,1,1999.0,99.2,85.0,85.0,25,WDS,Wood/Wood Waste Biomass,OP,ST,4.0,1999.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8568548387096774,0.8568548387096774,SERC,SCEG,SC,32.9,-79.9667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7749,Essex,1,1999.0,121.2,95.0,114.0,86,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7838283828382838,0.9405940594059405,SERC,AECI,MO,36.868206,-89.840173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.87440267236475 -7751,Goat Lake Hydro,1,1997.0,4.0,4.0,4.0,1.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1997.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.5357,-135.2123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7752,Black Bear Lake,1,1995.0,4.5,4.5,4.5,1.8,WAT,Conventional Hydroelectric,OP,HY,3.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.476472,-133.14772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7754,Nodaway,1,1999.0,157.8,90.0,107.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5703422053231939,0.6780735107731305,SERC,AECI,MO,40.2877,-94.7913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.878834933013398 -7754,Nodaway,2,1999.0,157.8,88.0,114.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5576679340937896,0.7224334600760456,SERC,AECI,MO,40.2877,-94.7913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.432954609078184 -7757,Chouteau,1,2000.0,176.0,145.0,150.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8238636363636364,0.8522727272727273,SERC,AECI,OK,36.222058,-95.277064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.128382301619759 -7757,Chouteau,2,2000.0,176.0,147.0,153.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8352272727272727,0.8693181818181819,SERC,AECI,OK,36.222058,-95.277064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.212549188290158 -7757,Chouteau,3,2000.0,182.8,152.0,150.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8315098468271334,0.8205689277899343,SERC,AECI,OK,36.222058,-95.277064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.80518192459776 -7757,Chouteau,4,2011.0,176.0,159.0,154.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9034090909090909,0.875,SERC,AECI,OK,36.222058,-95.277064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.236218265358861 -7757,Chouteau,5,2011.0,176.0,150.0,156.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8522727272727273,0.8863636363636364,SERC,AECI,OK,36.222058,-95.277064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7757,Chouteau,6,2011.0,182.8,158.0,154.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8643326039387308,0.8424507658643325,SERC,AECI,OK,36.222058,-95.277064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7758,South Plant,1,2000.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.208083323899015 -7758,South Plant,2,2000.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.208083323899015 -7758,South Plant,3,2000.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.208083323899015 -7758,South Plant,4,2000.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.208083323899015 -7758,South Plant,5,2000.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.208083323899015 -7758,South Plant,6,2000.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.208083323899015 -7759,Georgetown,GT1,2000.0,85.0,79.0,89.4,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9294117647058824,1.0,RFC,MISO,IN,39.902556,-86.24405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.45264532139819 -7759,Georgetown,GT2,2000.0,85.0,79.0,89.4,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9294117647058824,1.0,RFC,MISO,IN,39.902556,-86.24405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.504990609743542 -7759,Georgetown,GT3,2000.0,85.0,79.2,89.6,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9317647058823529,1.0,RFC,MISO,IN,39.902556,-86.24405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.301200500669185 -7759,Georgetown,GT4,2001.0,85.0,79.2,89.6,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9317647058823529,1.0,RFC,MISO,IN,39.902556,-86.24405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.971556333410998 -7760,Tilton,1,1999.0,47.0,45.5,50.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9680851063829787,1.0,SERC,MISO,IL,40.106125,-87.653818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.406751814377284 -7760,Tilton,2,1999.0,47.0,45.5,50.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9680851063829787,1.0,SERC,MISO,IL,40.106125,-87.653818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.536531652275256 -7760,Tilton,3,1999.0,47.0,45.5,50.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9680851063829787,1.0,SERC,MISO,IL,40.106125,-87.653818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.606416273772316 -7760,Tilton,4,1999.0,47.0,45.5,50.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9680851063829787,1.0,SERC,MISO,IL,40.106125,-87.653818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240144196641415 -7763,Henry County,1,2001.0,60.5,40.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.6611570247933884,RFC,MISO,IN,39.9528,-85.5039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.561861872462364 -7763,Henry County,2,2001.0,60.5,43.0,47.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107438016528926,0.7768595041322314,RFC,MISO,IN,39.9528,-85.5039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.318142204232696 -7763,Henry County,3,2001.0,60.5,43.0,47.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107438016528926,0.7768595041322314,RFC,MISO,IN,39.9528,-85.5039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.467073880828465 -7764,MPC Generating,1,2000.0,185.4,147.5,169.0,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7955771305285868,0.9115426105717368,SERC,SOCO,GA,33.8119,-83.6953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.322198439407547 -7764,MPC Generating,2,2001.0,200.7,155.0,182.0,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7722969606377679,0.9068261086198306,SERC,SOCO,GA,33.8119,-83.6953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028047790616277 -7766,Erie Energy Center,1,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,2,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,3,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,4,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,5,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,6,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,7,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7766,Erie Energy Center,8,1999.0,2.5,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.574167,-95.237222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96556712962963 -7767,Bloomington Power Plant,1,1999.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,WECC,PACE,UT,37.041997,-113.626736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240122401224012 -7767,Bloomington Power Plant,2,1999.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,WECC,PACE,UT,37.041997,-113.626736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240122401224012 -7767,Bloomington Power Plant,3,1999.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,WECC,PACE,UT,37.041997,-113.626736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240122401224012 -7767,Bloomington Power Plant,4,1999.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,WECC,PACE,UT,37.041997,-113.626736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240122401224012 -7767,Bloomington Power Plant,5,1999.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,WECC,PACE,UT,37.041997,-113.626736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240122401224012 -7767,Bloomington Power Plant,6,1999.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,WECC,PACE,UT,37.041997,-113.626736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.240122401224012 -7768,Sowega Power,CTG2,1999.0,49.8,48.5,48.5,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9738955823293173,0.9738955823293173,SERC,SOCO,GA,31.3869,-84.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7768,Sowega Power,CTG3,1999.0,49.8,48.5,48.5,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9738955823293173,0.9738955823293173,SERC,SOCO,GA,31.3869,-84.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7771,Springview,3,2011.0,1.5,1.5,1.5,1.5,WND,Onshore Wind Turbine,OP,WT,6.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.82579,-99.777467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7771,Springview,4,2011.0,1.5,1.5,1.5,1.5,WND,Onshore Wind Turbine,OP,WT,6.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.82579,-99.777467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7774,Cleveland Peaking,1,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.556714,-81.588233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39390909090909 -7774,Cleveland Peaking,2,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.556714,-81.588233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39390909090909 -7774,Cleveland Peaking,3,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.556714,-81.588233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39390909090909 -7774,Cleveland Peaking,4,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.556714,-81.588233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39390909090909 -7774,Cleveland Peaking,5,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.556714,-81.588233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39390909090909 -7774,Cleveland Peaking,6,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.556714,-81.588233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39390909090909 -7775,Versailles Peaking,1,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.2247,-84.4769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.183223679325145 -7775,Versailles Peaking,2,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.2247,-84.4769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.183223679325145 -7775,Versailles Peaking,3,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.2247,-84.4769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.183223679325145 -7776,Napoleon Peaking,4,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4079,-84.1095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.88757429733936 -7776,Napoleon Peaking,5,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4079,-84.1095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.88757429733936 -7776,Napoleon Peaking,6,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4079,-84.1095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.88757429733936 -7777,Dover Peaking,1,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5416,-81.4985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764331210191083 -7777,Dover Peaking,2,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5416,-81.4985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764331210191083 -7777,Dover Peaking,3,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5416,-81.4985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764331210191083 -7777,Dover Peaking,4,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5416,-81.4985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764331210191083 -7777,Dover Peaking,5,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5416,-81.4985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764331210191083 -7777,Dover Peaking,6,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.5416,-81.4985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764331210191083 -7778,Orrville Peaking,1,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.86,-81.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.753075923384305 -7778,Orrville Peaking,2,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.86,-81.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.753075923384305 -7778,Orrville Peaking,3,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.86,-81.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.753075923384305 -7779,Bryan Peaking,1,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4609,-84.527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512548387096773 -7779,Bryan Peaking,2,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4609,-84.527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512548387096773 -7779,Bryan Peaking,3,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4609,-84.527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512548387096773 -7779,Bryan Peaking,4,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4609,-84.527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512548387096773 -7779,Bryan Peaking,5,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4609,-84.527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512548387096773 -7779,Bryan Peaking,6,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4609,-84.527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.512548387096773 -7780,Jackson Cntr Peaking,1,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.4597,-84.0401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.014285714285714 -7781,Arcanum Peaking,1,1999.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.9867,-84.5513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.862068965517242 -7782,Hamilton Peaking,1,2000.0,32.0,29.0,32.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.90625,1.0,RFC,PJM,OH,39.3528,-84.5183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7783,Bowling Green Peaking,1,2000.0,32.0,29.0,32.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.90625,1.0,RFC,PJM,OH,41.3884,-83.6402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7784,Allegany Cogen,1,1994.0,42.0,40.0,40.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9523809523809523,0.9523809523809523,NPCC,NYIS,NY,42.5027,-78.0686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7784,Allegany Cogen,2,1994.0,25.0,20.0,20.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8,0.8,NPCC,NYIS,NY,42.5027,-78.0686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7789,Abiquiu Dam,1,1989.0,6.3,6.9,6.9,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,36.239886,-106.423043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7789,Abiquiu Dam,2,1989.0,6.3,6.9,6.9,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,36.239886,-106.423043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7789,Abiquiu Dam,3,2011.0,3.0,3.0,3.0,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,NM,36.239886,-106.423043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7790,Bonanza,1,1986.0,499.5,458.0,458.0,210,BIT,Conventional Steam Coal,OP,ST,5.0,1986.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9169169169169169,0.9169169169169169,WECC,PACE,UT,40.0864,-109.2844,Bonanza,ST-Col,False,48.0,108.0,-1.0,16.03,16.03,53582.09,6412.0,1.0,2.4,458.0,12.39814628623265,-576.4131630150783,0.035211674298939274,-10.709998810821416,3052.188245028956,10.504353743564241,#TRUE#,#1986-05-01#,#2050-12-31#,Existing,PAUT,BS_PACE,214.98,458.0,490.0,UT,Coal,,#FALSE#,214.98,458, -7791,Montpelier,1,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5855,-84.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.125 -7791,Montpelier,2,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5855,-84.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.125 -7791,Montpelier,3,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5855,-84.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.125 -7791,Montpelier,4,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5855,-84.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.125 -7791,Montpelier,5,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5855,-84.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.125 -7791,Montpelier,6,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5855,-84.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.125 -7795,Custer Energy Center,1,1999.0,24.5,22.0,24.0,9.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8979591836734694,0.9795918367346939,MRO,MISO,WI,44.085437,-87.726102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.90091001011122 -7797,Dominion/Lo Mar,DOM1,1997.0,12.0,9.0,9.0,3,DFO,Petroleum Liquids,OP,GT,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.75,0.75,SERC,PJM,VA,38.7443,-77.4974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541666666666666 -7797,Dominion/Lo Mar,DOM2,1997.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.7443,-77.4974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.024096385542169 -7797,Dominion/Lo Mar,LOM1,1997.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.7443,-77.4974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.024096385542169 -7797,Dominion/Lo Mar,LOM2,1997.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.7443,-77.4974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.024096385542169 -7797,Dominion/Lo Mar,LOM3,1997.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,8.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.7443,-77.4974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.024096385542169 -7798,Gateway Gen,1,1996.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,3.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.725278,-77.509722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.045714285714286 -7798,Gateway Gen,2,2009.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.725278,-77.509722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.045714285714286 -7799,West Marinette 34,34,2000.0,83.0,70.2,70.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8457831325301205,0.8457831325301205,MRO,MISO,WI,45.0869,-87.6892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7805,Sherwood H Smith Jr Energy Complex,001,2001.0,199.4,157.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7873620862587762,0.9628886659979939,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7805,Sherwood H Smith Jr Energy Complex,002,2001.0,199.4,156.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7823470411233701,0.9628886659979939,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7805,Sherwood H Smith Jr Energy Complex,003,2001.0,199.4,155.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7773319959879639,0.9628886659979939,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7805,Sherwood H Smith Jr Energy Complex,004,2001.0,199.4,159.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7973921765295887,0.9628886659979939,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7805,Sherwood H Smith Jr Energy Complex,10,2011.0,191.2,178.0,215.0,178,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9309623430962344,1.0,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.939306622654808 -7805,Sherwood H Smith Jr Energy Complex,6,2002.0,199.4,145.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7271815446339016,0.9628886659979939,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.61563223385112 -7805,Sherwood H Smith Jr Energy Complex,7,2002.0,199.4,152.0,193.0,152,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7622868605817452,0.9679037111334001,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.803738152199928 -7805,Sherwood H Smith Jr Energy Complex,8,2002.0,199.4,152.0,193.0,152,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7622868605817452,0.9679037111334001,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.801740477915637 -7805,Sherwood H Smith Jr Energy Complex,9,2011.0,191.2,178.0,215.0,178,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9309623430962344,1.0,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.000272141835527 -7805,Sherwood H Smith Jr Energy Complex,ST4,2002.0,195.5,171.0,184.0,171,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8746803069053708,0.9411764705882353,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7805,Sherwood H Smith Jr Energy Complex,ST5,2011.0,271.1,252.0,250.0,252,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9295462928808557,0.9221689413500552,SERC,CPLE,NC,34.8392,-79.7406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7806,Pine Street,7,2020.0,4.4,4.4,4.4,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.740164,-83.449953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.09006638288081 -7806,Pine Street,8,2020.0,3.3,3.3,3.3,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.740164,-83.449953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.090066421230249 -7807,Hamilton Hydro,3,1994.0,1.1,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,RFC,PJM,OH,39.4128,-84.5558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7807,Hamilton Hydro,4,1994.0,1.1,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,RFC,PJM,OH,39.4128,-84.5558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7810,Argyle,5,2004.0,2.2,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,7.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,WI,42.7019,-89.8697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.875 -7813,Sewell Creek Energy,1,2000.0,121.0,97.2,109.1,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.803305785123967,0.9016528925619834,SERC,SOCO,GA,33.9486,-85.2769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.858026966648348 -7813,Sewell Creek Energy,2,2000.0,121.0,98.6,112.1,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8148760330578512,0.9264462809917355,SERC,SOCO,GA,33.9486,-85.2769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.647869291491185 -7813,Sewell Creek Energy,3,2000.0,164.0,129.8,147.4,69,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7914634146341464,0.8987804878048781,SERC,SOCO,GA,33.9486,-85.2769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.396667704023 -7813,Sewell Creek Energy,4,2000.0,164.0,126.7,142.8,69,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7725609756097561,0.8707317073170733,SERC,SOCO,GA,33.9486,-85.2769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.862320505762934 -7814,Webb Forging,1,2003.0,2.9,2.4,2.4,2,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8275862068965517,0.8275862068965517,SERC,DUK,SC,34.5567,-81.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333333333333334 -7814,Webb Forging,2,2003.0,2.9,2.4,2.4,2,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8275862068965517,0.8275862068965517,SERC,DUK,SC,34.5567,-81.4919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.333333333333334 -7818,Alsey,1,1999.0,30.0,30.0,34.7,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,IL,39.569771,-90.43602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7818,Alsey,2,1999.0,30.0,30.0,34.7,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,IL,39.569771,-90.43602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7818,Alsey,3,1999.0,20.0,19.3,20.3,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9650000000000001,1.0,SERC,MISO,IL,39.569771,-90.43602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7818,Alsey,4,1999.0,20.0,18.0,19.4,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,0.97,SERC,MISO,IL,39.569771,-90.43602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7818,Alsey,5,1999.0,25.0,25.0,26.7,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,IL,39.569771,-90.43602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7818,Alsey,6,2016.0,48.0,42.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.875,0.9375,SERC,MISO,IL,39.569771,-90.43602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7820,Big Quinnesec 92,1,1949.0,8.0,8.0,8.0,5.4,WAT,Conventional Hydroelectric,OP,HY,11.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.7881,-88.0408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7820,Big Quinnesec 92,2,1949.0,8.0,8.0,8.0,5.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.7881,-88.0408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7821,Big Quinnesec 61,4,1914.0,2.2,2.2,2.2,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.7883,-88.0415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7821,Big Quinnesec 61,5,1914.0,2.2,2.2,2.2,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.7883,-88.0415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7822,Kaukauna City Hydro,1,1940.0,2.4,2.4,2.4,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.274582,-88.319074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7822,Kaukauna City Hydro,2,1942.0,2.4,2.4,2.4,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.274582,-88.319074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7824,Rockwood,1,1979.0,24.9,21.2,21.1,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8514056224899599,0.8473895582329318,WECC,IID,CA,32.9553,-115.5364,Rockwood 1,GT Old,False,1.0,1.0,-1.0,22.5,22.5,748.951,2.5,1.0,0.45,25.0,-1.3748001876427656,236.99500339330922,-8.03594664178231e-06,-1.3745082920314005,236.9924558785961,12.25281830312317,#TRUE#,#1979-06-01#,#2050-12-31#,Existing,IID,CA_IID,12.5,25.0,0.0,CA,Oil,,#FALSE#,12.5,25,13.783737024221454 -7824,Rockwood,2,1980.0,24.9,21.1,21.9,1.5,DFO,Petroleum Liquids,OP,GT,4.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8473895582329318,0.8795180722891566,WECC,IID,CA,32.9553,-115.5364,Rockwood 2,GT Old,False,1.0,1.0,-1.0,22.5,22.5,748.951,2.5,1.0,0.45,25.0,-1.3709601876561603,236.3990033935459,-7.026318441139444e-06,-1.3707054828078107,236.39678569747116,12.22238728261998,#TRUE#,#1980-04-01#,#2050-12-31#,Existing,IID,CA_IID,12.5,25.0,0.0,CA,Oil,,#FALSE#,12.5,25,13.783737024221454 -7825,Fulton (AR),1,2001.0,154.8,153.0,153.0,125,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9883720930232558,0.9883720930232558,SERC,SWPP,AR,33.6094,-93.7924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7826,Rowan,001,2001.0,199.4,156.4,185.2,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7843530591775326,0.9287863590772316,SERC,DUK,NC,35.7314,-80.6019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7826,Rowan,002,2001.0,199.4,162.9,184.4,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.816950852557673,0.9247743229689067,SERC,DUK,NC,35.7314,-80.6019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7826,Rowan,003,2001.0,199.4,156.1,184.6,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7828485456369106,0.9257773319959879,SERC,DUK,NC,35.7314,-80.6019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7826,Rowan,4,2003.0,199.4,155.5,188.5,58,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.779839518555667,0.9453360080240721,SERC,DUK,NC,35.7314,-80.6019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.705452636805333 -7826,Rowan,5,2003.0,199.4,155.5,188.5,58,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.779839518555667,0.9453360080240721,SERC,DUK,NC,35.7314,-80.6019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.613206170759035 -7826,Rowan,STG,2003.0,195.0,188.0,188.0,59,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9641025641025641,0.9641025641025641,SERC,DUK,NC,35.7314,-80.6019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7827,Shelby North,1,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.8969,-82.6625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.26595744680851 -7828,Shelby South,1,2000.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.908889,-82.653333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.30379746835443 -7829,Smarr Energy Center,1,1999.0,121.0,96.0,109.1,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.9016528925619834,SERC,SOCO,GA,32.9842,-83.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.722551069928482 -7829,Smarr Energy Center,2,1999.0,121.0,95.6,109.1,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7900826446280991,0.9016528925619834,SERC,SOCO,GA,32.9842,-83.8464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.771471258088319 -7831,Beaver Island,1,2000.0,1.2,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,MISO,MI,45.7291,-85.5244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.20838121819077 -7831,Beaver Island,2,2000.0,1.2,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,RFC,MISO,MI,45.7291,-85.5244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.20838121819077 -7831,Beaver Island,3,2001.0,0.9,0.8,0.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,RFC,MISO,MI,45.7291,-85.5244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.208394899578614 -7834,John S Rainey,CT1A,2001.0,165.0,150.0,170.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909091,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.17753036633289 -7834,John S Rainey,CT1B,2001.0,165.0,150.0,170.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909091,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.060076098080621 -7834,John S Rainey,CT2A,2002.0,165.0,146.0,180.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8848484848484849,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.677785011597035 -7834,John S Rainey,CT2B,2002.0,165.0,146.0,180.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8848484848484849,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.593467153282564 -7834,John S Rainey,CT3A,2004.0,84.0,75.0,90.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8928571428571429,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7834,John S Rainey,CT3B,2004.0,84.0,75.0,90.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8928571428571429,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7834,John S Rainey,CT4A,2004.0,84.0,75.0,90.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8928571428571429,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7834,John S Rainey,ST1S,2001.0,190.0,160.0,190.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8421052631578947,1.0,SERC,SC,SC,34.347734,-82.774478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7835,Essential Power Rock Springs LLC,1,2003.0,198.9,167.5,167.5,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8421317244846657,0.8421317244846657,RFC,PJM,MD,39.71901,-76.15976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.987832371523265 -7835,Essential Power Rock Springs LLC,2,2003.0,175.9,166.5,166.5,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.946560545764639,0.946560545764639,RFC,PJM,MD,39.71901,-76.15976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.199578661408763 -7835,Essential Power Rock Springs LLC,3,2003.0,198.9,169.0,169.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8496732026143791,0.8496732026143791,RFC,PJM,MD,39.71901,-76.15976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.756003184587367 -7835,Essential Power Rock Springs LLC,4,2003.0,198.9,169.0,169.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8496732026143791,0.8496732026143791,RFC,PJM,MD,39.71901,-76.15976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.868404324240263 -7836,Marsh Run Generation Facility,1,2004.0,171.1,161.0,192.0,96,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9409701928696669,1.0,SERC,PJM,VA,38.5283,-77.7681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7836,Marsh Run Generation Facility,2,2004.0,171.1,159.3,192.0,96,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9310344827586208,1.0,SERC,PJM,VA,38.5283,-77.7681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7836,Marsh Run Generation Facility,3,2004.0,171.1,161.0,192.0,96,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9409701928696669,1.0,SERC,PJM,VA,38.5283,-77.7681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7837,Louisa Generation Facility,1,2003.0,84.5,76.5,92.0,46,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9053254437869822,1.0,SERC,PJM,VA,38.1181,-78.2139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7837,Louisa Generation Facility,2,2003.0,84.5,77.0,92.0,46,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9112426035502958,1.0,SERC,PJM,VA,38.1181,-78.2139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7837,Louisa Generation Facility,3,2003.0,84.5,77.3,92.0,46,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.914792899408284,1.0,SERC,PJM,VA,38.1181,-78.2139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7837,Louisa Generation Facility,4,2003.0,84.5,77.2,92.0,46,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9136094674556213,1.0,SERC,PJM,VA,38.1181,-78.2139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7837,Louisa Generation Facility,5,2003.0,171.1,158.0,187.0,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9234365867913501,1.0,SERC,PJM,VA,38.1181,-78.2139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7838,Remington,1,2000.0,178.5,153.0,187.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,SERC,PJM,VA,38.5442,-77.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96085853068077 -7838,Remington,2,2000.0,170.0,151.0,187.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.888235294117647,1.0,SERC,PJM,VA,38.5442,-77.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.963773809526542 -7838,Remington,3,2000.0,178.5,152.0,187.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8515406162464986,1.0,SERC,PJM,VA,38.5442,-77.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.478281258527002 -7838,Remington,4,2000.0,178.5,152.0,188.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8515406162464986,1.0,SERC,PJM,VA,38.5442,-77.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.628698292117944 -7839,Ladysmith,1,2001.0,178.5,151.0,183.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.84593837535014,1.0,SERC,PJM,VA,38.0722,-77.5133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.498679577887174 -7839,Ladysmith,2,2001.0,178.5,151.0,183.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.84593837535014,1.0,SERC,PJM,VA,38.0722,-77.5133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.965470421370231 -7839,Ladysmith,3,2008.0,178.5,161.0,183.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9019607843137255,1.0,SERC,PJM,VA,38.0722,-77.5133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.41396555053004 -7839,Ladysmith,4,2008.0,178.5,160.0,183.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.896358543417367,1.0,SERC,PJM,VA,38.0722,-77.5133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.416934649513143 -7839,Ladysmith,5,2009.0,178.5,160.0,183.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.896358543417367,1.0,SERC,PJM,VA,38.0722,-77.5133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.874360473020445 -7841,Valdez Cogen,1,2000.0,5.3,5.1,5.3,1,WO,Petroleum Liquids,OP,GT,4.0,2000.0, , ,,,,,oil,oil,Waste/Other Oil ,Combustion (Gas) Turbine,0.9622641509433962,1.0,non-conus,non-conus,AK,61.0839,-146.2529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.473341863936874 -7842,Freedom Power Project,CT1,2000.0,71.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6338028169014085,0.6338028169014085,SERC,MISO,IL,39.103333,-88.85898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.209781097229765 -7843,Pleasant Valley (MN),11,2001.0,167.5,151.2,177.6,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.902686567164179,1.0,MRO,MISO,MN,43.799446,-92.682874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.209451031422873 -7843,Pleasant Valley (MN),12,2001.0,167.5,148.4,178.3,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8859701492537314,1.0,MRO,MISO,MN,43.799446,-92.682874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.518321155342008 -7843,Pleasant Valley (MN),13,2002.0,132.8,113.3,128.6,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8531626506024095,0.9683734939759034,MRO,MISO,MN,43.799446,-92.682874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.890402127206862 -7844,Minnesota River,UOO1,2001.0,49.0,39.0,39.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7959183673469388,0.7959183673469388,MRO,MISO,MN,44.795231,-93.581013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,CTG1,2010.0,173.4,160.0,190.0,78.2,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.922722029988466,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,CTG2,2010.0,173.4,160.0,190.0,78.2,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.922722029988466,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT1,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT10,2002.0,86.2,72.7,92.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8433874709976799,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT11,2002.0,86.2,72.7,92.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8433874709976799,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT12,2002.0,86.2,72.7,92.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8433874709976799,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT2,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT3,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT4,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT5,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT6,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT7,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT8,2001.0,84.5,73.9,94.3,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8745562130177515,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,GT9,2002.0,86.2,72.7,92.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8433874709976799,1.0,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7845,Lagoon Creek,STG1,2010.0,257.6,205.0,235.0,96.8,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.795807453416149,0.9122670807453416,SERC,TVA,TN,35.6578,-89.3964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7846,Brandy Branch,001,2001.0,185.0,178.6,191.2,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9654054054054054,1.0,SERC,JEA,FL,30.320556,-81.947222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7846,Brandy Branch,002,2001.0,185.0,189.8,211.1,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,JEA,FL,30.320556,-81.947222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7846,Brandy Branch,003,2001.0,185.0,189.8,211.1,65,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,JEA,FL,30.320556,-81.947222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7846,Brandy Branch,004,2005.0,228.1,185.0,190.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8110477860587462,0.8329679964927663,SERC,JEA,FL,30.320556,-81.947222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7847,Coon Rapids II,1,2001.0,1.8,1.7,1.8,0.2,DFO,Petroleum Liquids,SB,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,SWPP,IA,41.871043,-94.680777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.508439111088703 -7847,Coon Rapids II,2,2001.0,1.8,1.7,1.8,0.2,DFO,Petroleum Liquids,SB,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,SWPP,IA,41.871043,-94.680777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.508439111088703 -7847,Coon Rapids II,3,2001.0,1.8,1.7,1.8,0.2,DFO,Petroleum Liquids,SB,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,SWPP,IA,41.871043,-94.680777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.508439111088703 -7848,Holden,11,2002.0,107.1,90.0,113.0,69,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8403361344537815,1.0,SERC,AECI,MO,38.7538,-93.9983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7848,Holden,12,2002.0,107.1,89.0,107.0,69,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.830999066293184,0.9990662931839402,SERC,AECI,MO,38.7538,-93.9983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7848,Holden,13,2002.0,107.1,88.0,115.0,69,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8216619981325864,1.0,SERC,AECI,MO,38.7538,-93.9983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7849,Knoxville Industrial,1,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,2,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,3,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,4,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,5,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,6,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,7,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7849,Knoxville Industrial,8,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.945205479452055 -7850,Shenandoah,1,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,10,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,2,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,3,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,4,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,5,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,6,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,7,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,8,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7850,Shenandoah,9,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,40.77069,-95.37683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.175824175824175 -7851,Waterloo Lundquist,1,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,2,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,3,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,4,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,5,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,6,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,7,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,8,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7851,Waterloo Lundquist,9,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.506156,-92.34558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.937189462829286 -7853,West Receiving,1,1998.0,1.8,1.8,1.8,1.4,DFO,Petroleum Liquids,OP,IC,4.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,IA,42.021667,-95.363333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5 -7854,Avenue A Generator Sets,1,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.780735,-89.689416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.514450867052023 -7854,Avenue A Generator Sets,2,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.780735,-89.689416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.514450867052023 -7855,Moorhead Wind Turbine,8,1999.0,0.7,0.7,0.7,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,MN,46.895,-96.7347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7855,Moorhead Wind Turbine,9,2001.0,0.7,0.7,0.7,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,MN,46.895,-96.7347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7856,North Generation Plant,1,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3164,-94.455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43835616438356 -7856,North Generation Plant,2,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3164,-94.455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.43835616438356 -7856,North Generation Plant,3,2011.0,2.2,2.2,2.2,0.6,DFO,Petroleum Liquids,OP,IC,11.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3164,-94.455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.438356164383563 -7856,North Generation Plant,4,2011.0,2.2,2.2,2.2,0.6,DFO,Petroleum Liquids,OP,IC,11.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.3164,-94.455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.438356164383563 -7857,Gilliam South,1,2001.0,1.8,1.7,1.8,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,1.0,MRO,MISO,IA,41.496111,-94.327222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.00023889154324 -7857,Gilliam South,7,2012.0,2.5,2.3,2.3,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9199999999999999,0.9199999999999999,MRO,MISO,IA,41.496111,-94.327222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.999828001375988 -7860,Shelbina Power #3,G7,2002.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.69755,-92.053456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.25 -7860,Shelbina Power #3,G8,2002.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.69755,-92.053456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.25 -7862,Power Creek,4,2001.0,3.0,2.8,2.7,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9,non-conus,non-conus,AK,60.588686,-145.604539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7862,Power Creek,5,2001.0,3.0,2.8,2.7,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9,non-conus,non-conus,AK,60.588686,-145.604539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7863,Elk Mound,1,2001.0,35.5,30.7,40.4,20.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8647887323943662,1.0,MRO,MISO,WI,44.902814,-91.568096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.52299851692059 -7863,Elk Mound,2,2001.0,35.5,33.9,44.3,21.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9549295774647887,1.0,MRO,MISO,WI,44.902814,-91.568096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.40481596332749 -7865,Earlville,1,2001.0,1.8,1.8,1.8,0,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.4942,-91.2725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.705882352941177 -7867,Snoqualmie 2,6A,2013.0,14.4,12.6,12.6,5.2,WAT,Conventional Hydroelectric,OP,HY,2.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.875,0.875,WECC,PSEI,WA,47.5445,-121.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7867,Snoqualmie 2,7,1957.0,24.3,21.0,21.0,5,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8641975308641975,0.8641975308641975,WECC,PSEI,WA,47.5445,-121.8414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7869,Glenwood Landing,GT1,1967.0,16.0,12.6,17.6,10,DFO,Petroleum Liquids,SB,GT,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7875,1.0,NPCC,NYIS,NY,40.8275,-73.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7869,Glenwood Landing,GT4,2002.0,53.0,42.6,47.0,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8037735849056604,0.8867924528301887,NPCC,NYIS,NY,40.8275,-73.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7869,Glenwood Landing,GT5,2002.0,53.0,42.5,47.0,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8018867924528301,0.8867924528301887,NPCC,NYIS,NY,40.8275,-73.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7870,Encogen,CTG1,1993.0,39.4,34.5,42.2,21,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756345177664975,1.0,WECC,PSEI,WA,48.746,-122.486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7870,Encogen,CTG2,1993.0,39.4,34.5,42.2,21,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756345177664975,1.0,WECC,PSEI,WA,48.746,-122.486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7870,Encogen,CTG3,1993.0,39.4,34.5,42.2,22,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756345177664975,1.0,WECC,PSEI,WA,48.746,-122.486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7870,Encogen,STG,1993.0,58.2,55.9,55.9,30,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9604810996563573,0.9604810996563573,WECC,PSEI,WA,48.746,-122.486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7872,Robert P Mone Plant,1,2002.0,198.0,145.0,180.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7323232323232323,0.9090909090909091,RFC,PJM,OH,40.9297,-84.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.279287891587762 -7872,Robert P Mone Plant,2,2002.0,198.0,145.0,180.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7323232323232323,0.9090909090909091,RFC,PJM,OH,40.9297,-84.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.849411399245874 -7872,Robert P Mone Plant,3,2002.0,198.0,145.0,180.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7323232323232323,0.9090909090909091,RFC,PJM,OH,40.9297,-84.7392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.222962220283327 -7873,H L Culbreath Bayside Power Station,1A,2003.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,1B,2003.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,1C,2003.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,1ST,1965.0,239.4,233.0,243.0,47,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1965.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9732664995822891,1.0,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,2A,2004.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,2B,2004.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,2C,2004.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,2D,2004.0,189.9,156.0,183.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8214849921011058,0.9636650868878357,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,2ST,1967.0,445.7,305.0,315.0,52,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1967.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6843168050258022,0.7067534215840252,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,3,2009.0,69.9,56.0,61.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8011444921316165,0.8726752503576537,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,4,2009.0,69.9,56.0,61.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8011444921316165,0.8726752503576537,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,5,2009.0,69.9,56.0,61.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8011444921316165,0.8726752503576537,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7873,H L Culbreath Bayside Power Station,6,2009.0,69.9,56.0,61.0,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8011444921316165,0.8726752503576537,SERC,TEC,FL,27.9072,-82.4231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7874,Edgerton,1,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.449992,-84.767208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.471590909090908 -7874,Edgerton,2,2000.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.449992,-84.767208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.471590909090908 -7878,Wellington,1,1998.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.163069,-82.227208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.708333333333334 -7883,Powell Valley,1,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,10,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,11,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,2,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,3,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,4,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,5,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,6,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,7,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,8,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7883,Powell Valley,9,2000.0,2.0,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.5748,-83.0321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.226153684982451 -7884,Dakota Magic,1,2000.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,45.938611,-96.835833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7886,Wind Turbine,1,1999.0,11.0,11.0,11.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,44.6694,-87.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,1,2004.0,28.2,27.3,28.6,10,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9680851063829787,1.0,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,2,2003.0,60.5,46.0,48.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7603305785123967,0.7933884297520661,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,3,2004.0,60.5,45.2,48.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.747107438016529,0.7933884297520661,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,4,2003.0,60.5,45.4,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7504132231404959,0.7933884297520661,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,BSU,2004.0,1.8,1.6,1.6,0,DFO,Petroleum Liquids,OP,IC,7.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,LFG1,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,1.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,LFG2,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,1.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7887,Terry Bundy Generating Station,LFG3,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,1.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,40.909653,-96.613086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7897,E B Harris Electric Generating Plant,CT1A,2003.0,185.0,182.6,194.9,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.987027027027027,1.0,SERC,SOCO,AL,32.381352,-86.574366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7897,E B Harris Electric Generating Plant,CT1B,2003.0,185.0,182.6,194.9,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.987027027027027,1.0,SERC,SOCO,AL,32.381352,-86.574366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7897,E B Harris Electric Generating Plant,CT2A,2003.0,185.0,178.3,192.5,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9637837837837838,1.0,SERC,SOCO,AL,32.381352,-86.574366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7897,E B Harris Electric Generating Plant,CT2B,2003.0,185.0,178.3,192.5,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9637837837837838,1.0,SERC,SOCO,AL,32.381352,-86.574366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7897,E B Harris Electric Generating Plant,ST1,2003.0,282.0,293.0,293.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.381352,-86.574366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7897,E B Harris Electric Generating Plant,ST2,2003.0,282.0,300.0,300.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.381352,-86.574366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7900,Sand Hill,5A,2004.0,198.0,161.0,180.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8131313131313131,0.9090909090909091,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7900,Sand Hill,5C,2004.0,190.0,151.0,164.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7947368421052632,0.8631578947368421,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7900,Sand Hill,SH1,2001.0,51.4,47.3,47.3,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9202334630350194,0.9202334630350194,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.948055412569301 -7900,Sand Hill,SH2,2001.0,51.4,47.3,47.3,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9202334630350194,0.9202334630350194,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.712737544996001 -7900,Sand Hill,SH3,2001.0,51.4,47.3,47.3,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9202334630350194,0.9202334630350194,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.20869430079395 -7900,Sand Hill,SH4,2001.0,51.4,47.3,47.3,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9202334630350194,0.9202334630350194,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.230635920356725 -7900,Sand Hill,SH6,2010.0,51.4,47.3,47.3,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9202334630350194,0.9202334630350194,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.366208068066832 -7900,Sand Hill,SH7,2010.0,51.4,47.3,47.3,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9202334630350194,0.9202334630350194,TRE,ERCO,TX,30.2098,-97.6129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310323026498738 -7902,Pirkey,1,1985.0,721.0,650.0,650.0,300,LIG,Conventional Steam Coal,OP,ST,1.0,1985.0,3,2023,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9015256588072122,0.9015256588072122,MRO,SWPP,TX,32.4607,-94.4852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.366391892627469 -7903,McCartney,MGS1,2002.0,58.9,50.0,50.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.8488964346349746,MRO,SWPP,MO,37.248431,-93.170839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7903,McCartney,MSG2,2002.0,58.9,50.0,50.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.8488964346349746,MRO,SWPP,MO,37.248431,-93.170839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7907,Pine Flat,1,1984.0,55.0,55.0,55.0,5,WAT,Conventional Hydroelectric,OP,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.8326,-119.327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7907,Pine Flat,2,1984.0,55.0,55.0,55.0,5,WAT,Conventional Hydroelectric,OP,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.8326,-119.327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7907,Pine Flat,3,1984.0,55.0,55.0,55.0,5,WAT,Conventional Hydroelectric,OP,HY,4.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.8326,-119.327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7909,Vernon Boulevard,VG02,2001.0,47.0,40.0,40.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,NPCC,NYIS,NY,40.7537,-73.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7909,Vernon Boulevard,VG03,2001.0,47.0,39.9,39.9,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8489361702127659,0.8489361702127659,NPCC,NYIS,NY,40.7537,-73.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7910,Joseph J Seymour Power Project,1,2001.0,47.0,40.0,40.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,NPCC,NYIS,NY,40.6631,-74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7910,Joseph J Seymour Power Project,2,2001.0,47.0,39.9,39.9,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8489361702127659,0.8489361702127659,NPCC,NYIS,NY,40.6631,-74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7911,Kern Canyon,1,1921.0,11.5,11.5,11.5,0,WAT,Conventional Hydroelectric,OS,HY,8.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.44072,-118.796498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7912,Brentwood,1,2001.0,47.0,45.0,46.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106383,0.9787234042553191,NPCC,NYIS,NY,40.787062,-73.293412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7913,Hell Gate,HG01,2001.0,47.0,39.9,39.9,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8489361702127659,0.8489361702127659,NPCC,NYIS,NY,40.799,-73.9094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.976643436407391 -7913,Hell Gate,HG02,2001.0,47.0,40.0,40.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,NPCC,NYIS,NY,40.799,-73.9094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.527727593879126 -7914,Harlem River Yard,HR01,2001.0,47.0,39.9,39.9,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8489361702127659,0.8489361702127659,NPCC,NYIS,NY,40.7991,-73.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.610579085918152 -7914,Harlem River Yard,HR02,2001.0,47.0,40.0,40.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,NPCC,NYIS,NY,40.7991,-73.9156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.102833480542422 -7915,North 1st,N01,2001.0,47.0,46.0,46.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9787234042553191,0.9787234042553191,NPCC,NYIS,NY,40.7171,-73.9664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7916,Talbot County Energy,1,2002.0,121.0,97.0,114.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8016528925619835,0.9421487603305785,SERC,SOCO,GA,32.5892,-84.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.225383981090095 -7916,Talbot County Energy,2,2002.0,121.0,95.8,114.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7917355371900826,0.9421487603305785,SERC,SOCO,GA,32.5892,-84.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.919584061367994 -7916,Talbot County Energy,3,2002.0,121.0,96.2,114.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7950413223140496,0.9421487603305785,SERC,SOCO,GA,32.5892,-84.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.181183325982785 -7916,Talbot County Energy,4,2002.0,121.0,97.3,114.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8041322314049586,0.9421487603305785,SERC,SOCO,GA,32.5892,-84.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.74231498669468 -7916,Talbot County Energy,5,2003.0,121.0,96.5,114.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7975206611570248,0.9421487603305785,SERC,SOCO,GA,32.5892,-84.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.066089257132095 -7916,Talbot County Energy,6,2003.0,121.0,96.3,114.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7958677685950413,0.9421487603305785,SERC,SOCO,GA,32.5892,-84.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.922574125738977 -7917,Chattahoochee Energy Facility,1,2003.0,176.0,145.5,169.5,65,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8267045454545454,0.9630681818181818,SERC,SOCO,GA,33.4072,-85.0386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7917,Chattahoochee Energy Facility,2,2003.0,176.0,141.5,167.5,130,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8039772727272727,0.9517045454545454,SERC,SOCO,GA,33.4072,-85.0386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7917,Chattahoochee Energy Facility,3,2003.0,187.7,179.0,189.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9536494405966969,1.0,SERC,SOCO,GA,33.4072,-85.0386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7918,Galion,1,2001.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.7303,-82.7939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.116632617378022 -7918,Galion,2,2001.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.7303,-82.7939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.116632617378022 -7918,Galion,3,2001.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.7303,-82.7939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.116632617378022 -7919,Seville,1,2001.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.0317,-81.8714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.101883000567959 -7919,Seville,2,2001.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.0317,-81.8714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.101883000567959 -7919,Seville,3,2001.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.0317,-81.8714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.101883000567959 -7920,Traer South,5,2001.0,2.0,1.8,1.8,1.6,DFO,Petroleum Liquids,SB,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,42.1925,-92.4747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7921,Maquoketa 2,11,2001.0,2.0,1.2,1.2,0.6,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6,0.6,MRO,MISO,IA,42.07,-90.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7921,Maquoketa 2,12,2001.0,2.0,1.3,1.3,0.6,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.65,MRO,MISO,IA,42.07,-90.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7921,Maquoketa 2,13,2002.0,2.0,1.3,1.3,0.6,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.65,MRO,MISO,IA,42.07,-90.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7921,Maquoketa 2,14,2002.0,2.0,1.3,1.3,0.6,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.65,MRO,MISO,IA,42.07,-90.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7922,Brooklyn City North Plant,7,2012.0,2.3,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,MISO,IA,41.7394,-92.4394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.85472972972973 -7924,Albertville,DG1,2000.0,1.0,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,2.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,AL,34.363389,-86.223889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7924,Albertville,DG2,2000.0,1.0,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,2.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,AL,34.363389,-86.223889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7924,Albertville,DG3,2000.0,1.0,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,2.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,AL,34.363389,-86.223889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7924,Albertville,DG4,2000.0,1.0,0.9,0.9,0.3,DFO,Petroleum Liquids,OP,IC,2.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,AL,34.363389,-86.223889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,1,2001.0,89.3,76.9,91.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8611422172452409,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,2,2001.0,89.3,76.7,91.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8589025755879061,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,3,2001.0,89.3,76.5,91.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8566629339305711,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,4,2001.0,89.3,76.8,91.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8600223964165734,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,5,2001.0,89.3,77.4,91.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.866741321388578,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,6,2001.0,89.3,76.5,91.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8566629339305711,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7925,Lakefield Junction,7,2002.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,43.798439,-94.841451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7926,South Strawberry,1A,2002.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7114,-91.5469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.6 -7926,South Strawberry,2A,2002.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.7114,-91.5469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.6 -7927,Buffalo Mountain,1,2000.0,0.6,0.7,0.7,0,WND,Onshore Wind Turbine,OP,WT,10.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,TVA,TN,36.120994,-84.338733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7927,Buffalo Mountain,2,2000.0,0.6,0.7,0.7,0,WND,Onshore Wind Turbine,OP,WT,10.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,TVA,TN,36.120994,-84.338733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7927,Buffalo Mountain,3,2000.0,0.6,0.7,0.7,0,WND,Onshore Wind Turbine,OP,WT,10.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,TVA,TN,36.120994,-84.338733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7928,Osawatomie,1,2003.0,102.0,75.4,,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7392156862745098,,MRO,SWPP,KS,38.532161,-94.902633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.225277207216825 -7929,West Gardner,1,2003.0,102.0,77.4,,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7588235294117648,,MRO,SWPP,KS,38.7875,-94.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.318591122370306 -7929,West Gardner,2,2003.0,102.0,77.5,,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7598039215686274,,MRO,SWPP,KS,38.7875,-94.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.679123956382863 -7929,West Gardner,3,2003.0,102.0,75.0,,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7352941176470589,,MRO,SWPP,KS,38.7875,-94.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.947200418548297 -7929,West Gardner,4,2003.0,102.0,79.2,,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7764705882352941,,MRO,SWPP,KS,38.7875,-94.9861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.176901641149907 -7930,Russell Energy Center,T-1,2002.0,7.5,6.0,7.9,4.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,MRO,SWPP,KS,38.899722,-98.839444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.085836909871245 -7930,Russell Energy Center,T-2,2002.0,7.5,6.0,7.9,4.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,MRO,SWPP,KS,38.899722,-98.839444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.085836909871245 -7931,Coyote Springs II,1,2003.0,170.0,173.0,207.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,BPAT,OR,45.848039,-119.673965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.607782344753838 -7931,Coyote Springs II,2,2003.0,117.0,117.0,117.0,57,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,BPAT,OR,45.848039,-119.673965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7932,Gaylord - Wolverine,1,2001.0,23.4,20.2,27.1,11.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8632478632478633,1.0,RFC,MISO,MI,45.0046,-84.7218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.390758813070933 -7932,Gaylord - Wolverine,2,2001.0,23.4,20.2,27.1,11.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8632478632478633,1.0,RFC,MISO,MI,45.0046,-84.7218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.390758813070933 -7932,Gaylord - Wolverine,3,2001.0,23.4,20.2,27.1,11.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8632478632478633,1.0,RFC,MISO,MI,45.0046,-84.7218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.390758813070933 -7934,Industrial Park,3,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289336699040202 -7934,Industrial Park,4,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289336699040202 -7934,Industrial Park,5,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289336699040202 -7934,Industrial Park,6,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289336699040202 -7934,Industrial Park,7,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289336699040202 -7934,Industrial Park,8,2011.0,2.2,2.2,2.2,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289331513051192 -7934,Industrial Park,9,2011.0,2.2,2.2,2.2,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IL,41.768199,-89.674385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289331513051192 -7935,Trenton South,1,2000.0,2.0,1.8,1.8,0.7,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7935,Trenton South,2,2000.0,2.0,1.8,1.8,0.7,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7935,Trenton South,3,2000.0,2.0,1.8,1.8,0.7,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7935,Trenton South,4,2000.0,2.0,1.8,1.8,0.7,DFO,Petroleum Liquids,OP,IC,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7935,Trenton South,5,2004.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7935,Trenton South,6,2004.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7935,Trenton South,7,2004.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SWPP,MO,40.067218,-93.604363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.624787688506872 -7936,Nine Canyon,1,2002.0,95.9,95.0,95.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9906152241918664,0.9906152241918664,WECC,BPAT,WA,46.0958,-119.0964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7940,Ponton Diesel Generating Facility,1,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,12.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.2953,-77.9862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.672348484848484 -7940,Ponton Diesel Generating Facility,2,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,12.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.2953,-77.9862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.672348484848484 -7941,Nottoway Diesel Generating Facility,1,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.697222,-77.105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.633587786259541 -7941,Nottoway Diesel Generating Facility,2,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.697222,-77.105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.633587786259541 -7942,Diamond Valley Lake,10,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,11,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,12,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,2,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,5.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,3,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,5.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,4,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,5.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,6,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,7,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7942,Diamond Valley Lake,8,2001.0,3.3,3.3,3.3,2,WAT,Conventional Hydroelectric,OP,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.6808,-117.0698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7946,Wansley Unit 9,CT1,2004.0,183.6,137.2,161.6,110,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.747276688453159,0.8801742919389979,SERC,SOCO,GA,33.4083,-85.0403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7946,Wansley Unit 9,CT2,2004.0,183.6,140.3,164.7,110,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.764161220043573,0.8970588235294117,SERC,SOCO,GA,33.4083,-85.0403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7946,Wansley Unit 9,ST1,2004.0,226.9,197.3,212.6,65,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.869546055531071,0.9369766416923755,SERC,SOCO,GA,33.4083,-85.0403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7947,Solway CT,1,2003.0,50.0,43.1,47.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.862,0.94,MRO,MISO,MN,47.544582,-95.129652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.472332270363136 -7947,Solway CT,D1,2005.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,47.544582,-95.129652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7948,Lawrence County Station,1,2005.0,67.0,43.8,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6537313432835821,0.7462686567164178,RFC,MISO,IN,38.8003,-86.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.202334720872733 -7948,Lawrence County Station,2,2005.0,67.0,43.8,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6537313432835821,0.7462686567164178,RFC,MISO,IN,38.8003,-86.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.611009498293603 -7948,Lawrence County Station,3,2005.0,67.0,43.8,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6537313432835821,0.7462686567164178,RFC,MISO,IN,38.8003,-86.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.61949688879857 -7948,Lawrence County Station,4,2005.0,67.0,43.8,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6537313432835821,0.7462686567164178,RFC,MISO,IN,38.8003,-86.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.909113070724542 -7948,Lawrence County Station,5,2005.0,67.0,43.8,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6537313432835821,0.7462686567164178,RFC,MISO,IN,38.8003,-86.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.890761719660702 -7948,Lawrence County Station,6,2005.0,67.0,43.8,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6537313432835821,0.7462686567164178,RFC,MISO,IN,38.8003,-86.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.579062753241516 -7953,Evander Andrews Power Complex,1,2008.0,179.1,189.2,187.1,125.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,IPCO,ID,43.179176,-115.734315,EvanderAndrews1,GT B_W251B12A,False,1.0,1.0,-1.0,153.9,153.9,5122.825,774.63,1.0,0.45,50.0,-6.938231757633682,743.7615782068176,-0.0005424994637468935,-6.889949303354233,742.6917691754735,9.845663036201675,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,IPTV,BS_IPCO,40.0,50.0,160.7,ID,NG,Areo,#FALSE#,40,50, -7953,Evander Andrews Power Complex,2,2001.0,45.9,49.1,49.0,31,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,IPCO,ID,43.179176,-115.734315,EvanderAndrews2,GT B_W251B12A,False,1.0,1.0,-1.0,40.86,40.86,1360.095,205.662,1.0,0.45,50.0,-4.369583234558704,633.7791531513927,-0.00035067503778888964,-4.338671968160798,633.1014429470409,10.126091458897225,#TRUE#,#2001-09-01#,#2050-12-31#,Existing,IPTV,BS_IPCO,39.0,50.0,41.2,ID,NG,Areo,#FALSE#,39,50, -7953,Evander Andrews Power Complex,3,2001.0,45.9,48.9,48.3,29.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,IPCO,ID,43.179176,-115.734315,EvanderAndrews3,GT F_501F,False,1.0,1.0,-1.0,40.5,40.5,1348.112,203.85,1.0,0.45,45.7,-51.364621622301236,2497.7429139674427,10.960950583062456,-857.2277720224849,17036.6450974753,17.88192970779154,#TRUE#,#2001-09-01#,#2050-12-31#,Existing,IPTV,BS_IPCO,28.4,45.7,41.5,ID,NG,Areo,#FALSE#,28.4,45.7, -7954,Field Street,1,2001.0,24.0,22.0,24.0,12,DFO,Petroleum Liquids,OS,GT,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9166666666666666,1.0,SERC,FPL,FL,29.0213,-80.9949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7954,Field Street,2,2001.0,24.0,22.0,24.0,12,DFO,Petroleum Liquids,OP,GT,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9166666666666666,1.0,SERC,FPL,FL,29.0213,-80.9949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7955,Elk City Station,1,2002.0,0.8,0.8,0.8,0.8,LFG,Landfill Gas,OP,IC,4.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,2,2002.0,0.8,0.8,0.8,0.8,LFG,Landfill Gas,OP,IC,4.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,3,2002.0,0.8,0.8,0.8,0.8,LFG,Landfill Gas,OP,IC,4.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,4,2002.0,0.8,0.8,0.8,0.8,LFG,Landfill Gas,OP,IC,4.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,5,2006.0,0.8,0.8,0.8,0.8,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,6,2006.0,0.8,0.7,0.7,0.7,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,7,2006.0,0.8,0.7,0.7,0.7,LFG,Landfill Gas,OP,IC,8.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7955,Elk City Station,8,2009.0,0.8,0.8,0.8,0.8,LFG,Landfill Gas,OP,IC,8.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.383889,-96.254444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.969777067453487 -7957,Sediver,1,2003.0,2.9,2.4,2.4,2,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8275862068965517,0.8275862068965517,SERC,DUK,SC,34.965278,-81.1872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.30188679245283 -7958,Horry Land Fill Gas Site,HG1,2001.0,1.0,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SC,SC,33.8125,-78.967222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.472799419766938 -7958,Horry Land Fill Gas Site,HG2,2001.0,1.0,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SC,SC,33.8125,-78.967222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.472799419766938 -7958,Horry Land Fill Gas Site,HG3,2003.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SC,SC,33.8125,-78.967222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.47279717172687 -7960,Kemper County,GT1,2002.0,93.0,73.3,93.6,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7881720430107526,1.0,SERC,TVA,MS,32.7976,-88.606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7960,Kemper County,GT2,2002.0,93.0,73.3,93.6,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7881720430107526,1.0,SERC,TVA,MS,32.7976,-88.606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7960,Kemper County,GT3,2002.0,93.0,73.3,93.6,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7881720430107526,1.0,SERC,TVA,MS,32.7976,-88.606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7960,Kemper County,GT4,2002.0,93.0,73.3,93.6,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7881720430107526,1.0,SERC,TVA,MS,32.7976,-88.606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7962,Warren F Sam Beasley Generation Station,001,2002.0,45.0,48.0,48.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,DE,39.279179,-75.623928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7962,Warren F Sam Beasley Generation Station,002,2012.0,51.0,50.0,50.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9803921568627451,0.9803921568627451,RFC,PJM,DE,39.279179,-75.623928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7964,Peno Creek,GT1,2002.0,60.0,42.0,53.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.8833333333333333,SERC,MISO,MO,39.3531,-91.2295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7964,Peno Creek,GT2,2002.0,60.0,42.0,53.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.8833333333333333,SERC,MISO,MO,39.3531,-91.2295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7964,Peno Creek,GT3,2002.0,60.0,42.0,53.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.8833333333333333,SERC,MISO,MO,39.3531,-91.2295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7964,Peno Creek,GT4,2002.0,60.0,42.0,53.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.8833333333333333,SERC,MISO,MO,39.3531,-91.2295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7965,Salt Valley Wind Plant,G1,1998.0,0.6,0.7,0.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,1998.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.9044,-96.6231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7965,Salt Valley Wind Plant,G2,1999.0,0.6,0.7,0.7,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.9044,-96.6231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7966,Iowa Distributed Wind Generation Project,IDWG,2000.0,2.3,2.3,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,IA,43.034722,-94.140556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7967,Lordsburg Generating,GT1,2002.0,44.0,41.3,42.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9386363636363636,0.9704545454545456,WECC,PNM,NM,32.35051,-108.69799,Lordsburg 1,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,43.0,4.969835466336651,92.53561894978337,0.3366443656133229,-14.037058981339507,339.938367685494,8.750468775875987,#TRUE#,#2002-07-01#,#2050-12-31#,Existing,PNM,SW_PNM,16.0,43.0,0.0,NM,NG,Areo,#FALSE#,16,43, -7967,Lordsburg Generating,GT2,2002.0,44.0,41.3,42.7,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9386363636363636,0.9704545454545456,WECC,PNM,NM,32.35051,-108.69799,Lordsburg 2,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,43.0,5.342956135111855,76.67496602386774,0.3109560247674674,-11.533188283019266,283.4011431250675,8.703325903060144,#TRUE#,#2002-07-01#,#2050-12-31#,Existing,PNM,SW_PNM,14.0,43.0,0.0,NM,NG,Areo,#FALSE#,14,43, -7971,Pella Peaking,10,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,11,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,12,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,13,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,14,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,15,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,16,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,3,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,4,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,5,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,6,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,7,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OA,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,8,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7971,Pella Peaking,9,2003.0,2.0,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,IA,41.4106,-92.9378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.29407774025934 -7972,Sumpter,1,2002.0,85.0,77.0,93.9,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9058823529411765,1.0,RFC,MISO,MI,42.167,-83.5318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.16607820099077 -7972,Sumpter,2,2002.0,85.0,77.5,94.2,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9117647058823529,1.0,RFC,MISO,MI,42.167,-83.5318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.420568710559312 -7972,Sumpter,3,2002.0,85.0,76.6,93.1,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9011764705882352,1.0,RFC,MISO,MI,42.167,-83.5318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.74200596106806 -7972,Sumpter,4,2002.0,85.0,77.3,93.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9094117647058824,1.0,RFC,MISO,MI,42.167,-83.5318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.556271874036465 -7973,Sharpe,1,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,10,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,2,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,3,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,4,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,5,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,6,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,7,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,8,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7973,Sharpe,9,2002.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.275,-95.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66224286662243 -7974,Chamberlain Wind Project,WTC1,2001.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,11.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.848529,-99.24757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7974,Chamberlain Wind Project,WTC2,2001.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,11.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.848529,-99.24757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7975,Pyramid,1,2003.0,46.5,39.5,45.6,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8494623655913979,0.9806451612903226,WECC,PNM,NM,32.2363,-108.5494,Pyramid 1,GT LM_LM6000,False,1.0,1.0,-1.0,36.36,36.36,1210.305,183.012,1.0,0.45,46.0,6.0794862458688135,77.9483293436186,0.5600461095987288,-32.57732659436616,724.0013824053838,8.500175672716361,#TRUE#,#2003-06-01#,#2050-12-31#,Existing,PNM,SW_PNM,20.2,46.0,25.0,NM,NG,Areo,#FALSE#,25,46,4.637800651678959 -7975,Pyramid,2,2003.0,46.5,39.5,45.6,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8494623655913979,0.9806451612903226,WECC,PNM,NM,32.2363,-108.5494,Pyramid 2,GT LM_LM6000,False,1.0,1.0,-1.0,36.36,36.36,1210.305,183.012,1.0,0.45,46.0,6.797236049569817,66.42709468565079,0.32741787876462924,-15.802566661379418,444.12691986494616,8.860132934157377,#TRUE#,#2003-06-01#,#2050-12-31#,Existing,PNM,SW_PNM,20.2,46.0,25.0,NM,NG,Areo,#FALSE#,25,46,14.908917694856097 -7975,Pyramid,3,2003.0,46.5,39.5,45.6,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8494623655913979,0.9806451612903226,WECC,PNM,NM,32.2363,-108.5494,Pyramid 3,GT LM_LM6000,False,1.0,1.0,-1.0,36.36,36.36,1210.305,183.012,1.0,0.45,46.0,6.797236049569817,66.42709468565079,0.32741787876462924,-15.802566661379418,444.12691986494616,8.860132934157377,#TRUE#,#2003-06-01#,#2050-12-31#,Existing,PNM,SW_PNM,20.2,46.0,0.0,NM,NG,Areo,#FALSE#,25,46,5.355580089708108 -7975,Pyramid,4,2003.0,46.5,39.5,45.6,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8494623655913979,0.9806451612903226,WECC,PNM,NM,32.2363,-108.5494,Pyramid 4,GT LM_LM6000,False,1.0,1.0,-1.0,36.36,36.36,1210.305,183.012,1.0,0.45,46.0,6.797236049569817,66.42709468565079,0.32741787876462924,-15.802566661379418,444.12691986494616,8.860132934157377,#TRUE#,#2003-06-01#,#2050-12-31#,Existing,PNM,SW_PNM,20.2,46.0,0.0,NM,NG,Areo,#FALSE#,25,46,15.646599517375835 -7976,Mulvane 2,10,2003.0,4.1,3.8,3.8,1.5,DFO,Petroleum Liquids,OP,IC,9.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.926829268292683,0.926829268292683,MRO,SWPP,KS,37.4908,-97.2216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7976,Mulvane 2,11,2003.0,4.1,3.8,3.8,1.5,DFO,Petroleum Liquids,OS,IC,9.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.926829268292683,0.926829268292683,MRO,SWPP,KS,37.4908,-97.2216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7976,Mulvane 2,9,2003.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,OP,IC,9.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.4908,-97.2216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -7977,Granite Falls 2,1,2003.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,5.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8047,-95.557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7977,Granite Falls 2,2,2003.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,5.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8047,-95.557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7977,Granite Falls 2,3,2003.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,5.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8047,-95.557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7981,Mill Creek (SC),1,2002.0,99.9,71.0,94.0,71,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107107107107107,0.9409409409409408,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.666110640144442 -7981,Mill Creek (SC),2,2002.0,99.9,70.0,94.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7007007007007007,0.9409409409409408,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.876024517818813 -7981,Mill Creek (SC),3,2002.0,99.9,71.0,95.0,71,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107107107107107,0.950950950950951,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.92180576370216 -7981,Mill Creek (SC),4,2002.0,99.9,70.0,94.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7007007007007007,0.9409409409409408,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.264823749118552 -7981,Mill Creek (SC),5,2003.0,99.9,69.0,94.0,69,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6906906906906907,0.9409409409409408,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.28249963967175 -7981,Mill Creek (SC),6,2003.0,99.9,71.0,92.0,71,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107107107107107,0.9209209209209208,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.175828220288418 -7981,Mill Creek (SC),7,2003.0,99.9,70.0,95.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7007007007007007,0.950950950950951,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.903683531061844 -7981,Mill Creek (SC),8,2003.0,99.9,71.0,93.0,71,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107107107107107,0.9309309309309308,SERC,DUK,SC,35.1597,-81.4306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.899000844640407 -7982,South Generation,3,2003.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,44.5331,-95.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.751429565909204 -7982,South Generation,4,2003.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,44.5331,-95.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.751429565909204 -7982,South Generation,5,2003.0,2.2,2.2,2.0,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,0.9090909090909091,MRO,MISO,MN,44.5331,-95.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.751429565909204 -7984,Kalkaska CT #1,001,2002.0,60.5,48.3,60.5,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7983471074380165,1.0,RFC,MISO,MI,44.6889,-85.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7985,Greater Des Moines,GT1,2003.0,190.4,163.4,210.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8581932773109244,1.0,MRO,MISO,IA,41.5563,-93.5283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7985,Greater Des Moines,GT2,2003.0,190.4,164.2,210.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8623949579831932,1.0,MRO,MISO,IA,41.5563,-93.5283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7985,Greater Des Moines,ST1,2004.0,195.5,183.2,183.2,55,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.937084398976982,0.937084398976982,MRO,MISO,IA,41.5563,-93.5283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7987,Lake One,L1,2002.0,60.5,48.0,48.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.7933884297520661,WECC,LDWP,CA,34.1772,-118.3147,Lake,GT LM_LM6000,False,1.0,1.0,-1.0,45.9,45.9,1527.86,231.03,1.0,0.45,48.0,4.783142077233514,88.077932156463,0.18244971986147543,-5.146699879138243,200.77216372708364,9.111956868184445,#TRUE#,#2014-12-31#,#2050-12-31#,Existing,LDWP,CA_LDWP,10.0,48.0,20.0,CA,NG,Areo,#FALSE#,10,48, -7988,Silver Creek,1,2003.0,83.5,75.0,83.5,53,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8982035928143712,1.0,SERC,MISO,MS,31.6004,-89.9468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.03035042035027 -7988,Silver Creek,2,2004.0,83.5,75.0,83.5,53,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8982035928143712,1.0,SERC,MISO,MS,31.6004,-89.9468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.930922707498695 -7988,Silver Creek,3,2005.0,83.5,75.0,83.5,53,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8982035928143712,1.0,SERC,MISO,MS,31.6004,-89.9468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.484587908477558 -7989,Sylvarena,1,2003.0,47.0,43.0,47.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9148936170212766,1.0,SERC,MISO,MS,31.982076,-89.412714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.969256278986384 -7989,Sylvarena,2,2003.0,47.0,43.0,47.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9148936170212766,1.0,SERC,MISO,MS,31.982076,-89.412714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7989,Sylvarena,3,2003.0,47.0,43.0,47.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9148936170212766,1.0,SERC,MISO,MS,31.982076,-89.412714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.77043019414558 -7990,Altamont,1,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.068747,-88.755547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.704225352112676 -7990,Altamont,2,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.068747,-88.755547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.704225352112676 -7990,Altamont,3,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.068747,-88.755547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.704225352112676 -7990,Altamont,4,2006.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,11.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.068747,-88.755547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.704225352112676 -7991,West Campus Cogeneration Facility,1,2005.0,54.0,30.9,30.9,27,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.5722222222222222,0.5722222222222222,MRO,MISO,WI,43.075071,-89.4251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7991,West Campus Cogeneration Facility,CT2,2005.0,54.0,32.6,32.6,27,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6037037037037037,0.6037037037037037,MRO,MISO,WI,43.075071,-89.4251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7991,West Campus Cogeneration Facility,STG1,2005.0,61.3,66.1,66.1,11,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,MISO,WI,43.075071,-89.4251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7995,Airport Industrial,IC1,2002.0,2.5,2.5,2.5,2,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2844,-104.5308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7995,Airport Industrial,IC2,2002.0,2.5,2.5,2.5,2,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2844,-104.5308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7995,Airport Industrial,IC3,2002.0,2.5,2.5,2.5,2,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2844,-104.5308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7995,Airport Industrial,IC4,2002.0,2.5,2.5,2.5,2,DFO,Petroleum Liquids,OP,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,38.2844,-104.5308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD01,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD02,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD03,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD04,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD05,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD06,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD07,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD08,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD09,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD10,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD11,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD12,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD13,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD14,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD15,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD16,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD17,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD18,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD19,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7997,Winston,WD20,2001.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FMPP,FL,28.0274,-82.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7999,Grays Harbor Energy Facility,CT1,2008.0,198.9,151.0,188.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.759175465057818,0.9451985922574158,WECC,BPAT,WA,46.9692,-123.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7999,Grays Harbor Energy Facility,CT2,2008.0,198.9,153.0,190.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7692307692307692,0.955253896430367,WECC,BPAT,WA,46.9692,-123.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7999,Grays Harbor Energy Facility,ST1,2008.0,317.1,291.0,291.0,100,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9176915799432355,0.9176915799432355,WECC,BPAT,WA,46.9692,-123.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8000,Beatrice,CT1,2005.0,76.6,70.1,70.1,0,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9151436031331592,0.9151436031331592,MRO,SWPP,NE,40.330184,-96.808153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8000,Beatrice,CT2,2005.0,76.6,66.2,66.2,0,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8642297650130549,0.8642297650130549,MRO,SWPP,NE,40.330184,-96.808153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8000,Beatrice,ST1,2005.0,93.9,83.2,83.2,0,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.88604898828541,0.88604898828541,MRO,SWPP,NE,40.330184,-96.808153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8002,Newington,1,1974.0,414.0,400.2,400.2,60,RFO,Petroleum Liquids,OP,ST,6.0,1974.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9666666666666667,0.9666666666666667,NPCC,ISNE,NH,43.1,-70.790833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.863075921577751 -8004,Fife Brook,GEN1,1974.0,11.2,11.2,11.2,3,WAT,Conventional Hydroelectric,OP,HY,10.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.685681,-72.977634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8005,Bear Swamp,GEN1,1974.0,300.0,300.0,300.0,220,WAT,Hydroelectric Pumped Storage,OA,PS,9.0,1974.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,MA,42.6839,-72.9599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8005,Bear Swamp,GEN2,1974.0,300.0,333.0,333.0,220,WAT,Hydroelectric Pumped Storage,OP,PS,10.0,1974.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,NPCC,ISNE,MA,42.6839,-72.9599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8006,Roseton Generating Facility,1,1974.0,621.0,599.0,602.8,140,RFO,Petroleum Liquids,OP,ST,12.0,1974.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.964573268921095,0.9706924315619967,NPCC,NYIS,NY,41.573783,-73.966269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.580048482155743 -8006,Roseton Generating Facility,2,1974.0,621.0,605.7,607.7,140,NG,Natural Gas Steam Turbine,OP,ST,9.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9753623188405798,0.9785829307568439,NPCC,NYIS,NY,41.573783,-73.966269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394349076933123 -8007,Holtsville,1,1974.0,56.7,55.5,62.1,37.6,KER,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9788359788359788,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,10,1975.0,56.7,54.1,65.6,40.1,KER,Petroleum Liquids,OP,GT,7.0,1975.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9541446208112875,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,2,1974.0,56.7,55.6,61.3,35.1,KER,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9805996472663139,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,3,1974.0,56.7,51.0,64.8,35.8,KER,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8994708994708994,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,4,1974.0,56.7,52.4,64.3,35.9,KER,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9241622574955908,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,5,1974.0,56.7,53.4,65.0,40.3,KER,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9417989417989417,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,6,1975.0,56.7,50.4,65.4,38.5,KER,Petroleum Liquids,OP,GT,7.0,1975.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8888888888888888,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,7,1975.0,56.7,49.2,64.8,36.8,KER,Petroleum Liquids,OP,GT,7.0,1975.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8677248677248677,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,8,1975.0,56.7,55.4,66.8,41.8,KER,Petroleum Liquids,OP,GT,7.0,1975.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9770723104056437,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8007,Holtsville,9,1975.0,56.7,55.3,69.1,40.4,KER,Petroleum Liquids,OP,GT,7.0,1975.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9753086419753085,1.0,NPCC,NYIS,NY,40.817037,-73.066265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8008,Mickleton Station,MICK,1974.0,71.2,63.7,78.0,57.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1974.0,6,2024,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8946629213483146,1.0,RFC,PJM,NJ,39.8119,-75.249031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8010,Murray Turbine,1,2001.0,14.0,12.0,13.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9285714285714286,WECC,PACE,UT,40.67,-111.89,Murray GT 1,GT LM_LM6000,False,1.0,1.0,1.0,35.1,35.1,266.0,99.33,0.0,0.45,12.0,2.1111664909755357,65.56600153005475,-6.312360441407816e-06,2.1112763262435617,65.56554248449508,9.965660977702154,#TRUE#,#2002-01-01#,#2050-12-31#,Existing,PAUT,BS_PACE,3.0,12.0,0.0,UT,NG,Areo,#FALSE#,3,12,13.767764039922538 -8010,Murray Turbine,2,2001.0,14.0,12.0,13.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9285714285714286,WECC,PACE,UT,40.67,-111.89,Murray GT 2,GT LM_LM6000,False,1.0,1.0,1.0,35.1,35.1,266.0,99.33,0.0,0.45,12.0,2.1111664909755357,65.56600153005475,-6.312360441407816e-06,2.1112763262435617,65.56554248449508,9.965660977702154,#TRUE#,#2002-01-01#,#2050-12-31#,Existing,PAUT,BS_PACE,3.0,12.0,0.0,UT,NG,Areo,#FALSE#,3,12,13.767764039922538 -8010,Murray Turbine,3,2002.0,14.0,12.0,13.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9285714285714286,WECC,PACE,UT,40.67,-111.89,Murray GT 3,GT LM_LM6000,False,1.0,1.0,1.0,35.1,35.1,266.0,99.33,0.0,0.45,12.0,2.1111664909755357,65.56600153005475,-6.312360441407816e-06,2.1112763262435617,65.56554248449508,9.965660977702154,#TRUE#,#2002-01-01#,#2050-12-31#,Existing,PAUT,BS_PACE,3.0,12.0,0.0,UT,NG,Areo,#FALSE#,3,12,13.767764039922538 -8012,Croydon CT Generating Station,11,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.714430021241444 -8012,Croydon CT Generating Station,12,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.78219494925655 -8012,Croydon CT Generating Station,21,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.66705687986783 -8012,Croydon CT Generating Station,22,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,6.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.825886240264339 -8012,Croydon CT Generating Station,31,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.580174651876327 -8012,Croydon CT Generating Station,32,1974.0,68.3,48.0,64.0,10,DFO,Petroleum Liquids,OP,GT,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7027818448023426,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.316403115411848 -8012,Croydon CT Generating Station,41,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.211206042010856 -8012,Croydon CT Generating Station,42,1974.0,68.3,49.0,64.0,10,DFO,Petroleum Liquids,OP,GT,7.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7174231332357248,0.9370424597364568,RFC,PJM,PA,40.08,-74.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.664658956809063 -8013,Winter,IC 1,2002.0,2.8,2.8,2.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.836675,-90.97352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8013,Winter,IC 2,2002.0,2.8,2.8,2.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.836675,-90.97352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8015,Paragould Reciprocating,011,2001.0,6.4,6.0,6.0,6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SPA,AR,36.0242,-90.5094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.004028064184498 -8015,Paragould Reciprocating,021,2001.0,6.4,6.0,6.0,6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SPA,AR,36.0242,-90.5094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.004028064184498 -8015,Paragould Reciprocating,031,2001.0,6.4,6.0,6.0,6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SPA,AR,36.0242,-90.5094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.004028064184498 -8016,Factory,1,1973.0,26.6,14.8,25.1,1,DFO,Petroleum Liquids,OP,GT,8.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5563909774436091,0.943609022556391,SERC,MISO,IL,39.825934,-89.637282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8020,Baldwin City Plant No 2,7,2004.0,3.2,3.0,3.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,KS,38.764905,-95.192006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19954128440367 -8020,Baldwin City Plant No 2,8,2004.0,3.2,3.0,3.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,KS,38.764905,-95.192006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19954128440367 -8022,Boulder Park,1,2002.0,4.1,4.1,4.1,4.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,47.697222,-117.147222,BoulderPark1,IC_Utility owned IC,False,1.0,1.0,-1.0,3.895,3.895,41.0,0.41,1.0,0.0,4.1,7.378109722895258,9.732950068744149,-4.0843696852768674e-07,7.378111599911922,9.732948274982999,12.666066037228427,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,0.82,4.1,4.0,WA,NG,,#FALSE#,.82,4.1,9.121973409948943 -8022,Boulder Park,2,2002.0,4.1,4.1,4.1,4.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,47.697222,-117.147222,BoulderPark2,IC_Utility owned IC,False,1.0,1.0,-1.0,3.895,3.895,41.0,0.41,1.0,0.0,4.1,7.378109722895258,9.732950068744149,-4.0843696852768674e-07,7.378111599911922,9.732948274982999,12.666066037228427,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,0.82,4.1,4.0,WA,NG,,#FALSE#,.82,4.1,9.121973409948943 -8022,Boulder Park,3,2002.0,4.1,4.1,4.1,4.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,47.697222,-117.147222,BoulderPark3,IC_Utility owned IC,False,1.0,1.0,-1.0,3.895,3.895,41.0,0.41,1.0,0.0,4.1,7.378109722895258,9.732950068744149,-4.0843696852768674e-07,7.378111599911922,9.732948274982999,12.666066037228427,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,0.82,4.1,4.0,WA,NG,,#FALSE#,.82,4.1,9.121973409948943 -8022,Boulder Park,4,2002.0,4.1,4.1,4.1,4.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,47.697222,-117.147222,BoulderPark4,IC_Utility owned IC,False,1.0,1.0,-1.0,3.895,3.895,41.0,0.41,1.0,0.0,4.1,7.378109722895258,9.732950068744149,-4.0843696852768674e-07,7.378111599911922,9.732948274982999,12.666066037228427,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,0.82,4.1,4.0,WA,NG,,#FALSE#,.82,4.1,9.121973409948943 -8022,Boulder Park,5,2002.0,4.1,4.1,4.1,4.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,47.697222,-117.147222,BoulderPark5,IC_Utility owned IC,False,1.0,1.0,-1.0,3.895,3.895,41.0,0.41,1.0,0.0,4.1,7.378109722895258,9.732950068744149,-4.0843696852768674e-07,7.378111599911922,9.732948274982999,12.666066037228427,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,0.82,4.1,4.0,WA,NG,,#FALSE#,.82,4.1,9.121973409948943 -8022,Boulder Park,6,2002.0,4.1,4.1,4.1,4.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,47.697222,-117.147222,BoulderPark6,IC_Utility owned IC,False,1.0,1.0,-1.0,3.895,3.895,41.0,0.41,1.0,0.0,4.1,7.378109722895258,9.732950068744149,-4.0843696852768674e-07,7.378111599911922,9.732948274982999,12.666066037228427,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AVA,NW_AVA,0.82,4.1,4.0,WA,NG,,#FALSE#,.82,4.1,9.121973409948943 -8023,Columbia (WI),1,1975.0,556.0,579.3,582.3,130,RC,Conventional Steam Coal,OP,ST,5.0,1975.0,6,2026,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,43.4864,-89.4203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.577973944294296 -8023,Columbia (WI),2,1978.0,556.0,568.8,578.8,130,SUB,Conventional Steam Coal,OP,ST,5.0,1978.0,6,2026,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,43.4864,-89.4203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.491036472773743 -8026,Hartzog,1,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,43.8294,-105.5322,Hartzog 1,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-08-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,0.0,WY,NG,Industrial,#FALSE#,2.88,7.2,16.353883561643833 -8026,Hartzog,2,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,43.8294,-105.5322,Hartzog 2,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-08-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,0.0,WY,NG,Industrial,#FALSE#,2.88,7.2,16.353883561643833 -8026,Hartzog,3,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,43.8294,-105.5322,Hartzog 3,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-08-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,7.2,WY,NG,Industrial,#FALSE#,2.88,7.2,16.353883561643833 -8027,Blue Lake,1,1974.0,56.7,39.0,50.0,19,DFO,Petroleum Liquids,OP,GT,3.0,1974.0,12,2025,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6878306878306878,0.8818342151675485,MRO,MISO,MN,44.7855,-93.4315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8027,Blue Lake,2,1974.0,56.7,39.0,50.0,19,DFO,Petroleum Liquids,OP,GT,3.0,1974.0,12,2025,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6878306878306878,0.8818342151675485,MRO,MISO,MN,44.7855,-93.4315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8027,Blue Lake,3,1974.0,56.7,36.0,46.0,19,DFO,Petroleum Liquids,OP,GT,3.0,1974.0,12,2025,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6349206349206349,0.8112874779541446,MRO,MISO,MN,44.7855,-93.4315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8027,Blue Lake,4,1974.0,56.7,39.0,48.0,32,DFO,Petroleum Liquids,OP,GT,4.0,1974.0,12,2025,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6878306878306878,0.8465608465608465,MRO,MISO,MN,44.7855,-93.4315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8027,Blue Lake,7,2005.0,166.3,150.0,174.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9019843656043295,1.0,MRO,MISO,MN,44.7855,-93.4315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.437763888309448 -8027,Blue Lake,8,2005.0,166.3,150.0,177.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9019843656043295,1.0,MRO,MISO,MN,44.7855,-93.4315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.348047230316613 -8028,Arvada,1,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,44.69,-106.1092,Arvada 1,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-09-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,7.2,WY,NG,Industrial,#FALSE#,2.88,7.2,16.727002967359052 -8028,Arvada,2,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,44.69,-106.1092,Arvada 2,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-09-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,7.2,WY,NG,Industrial,#FALSE#,2.88,7.2,16.727002967359052 -8029,Sycamore (IA),1,1974.0,78.8,75.0,95.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9517766497461929,1.0,MRO,MISO,IA,41.6722,-93.6769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.332532098505578 -8029,Sycamore (IA),2,1974.0,78.8,73.9,95.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9378172588832488,1.0,MRO,MISO,IA,41.6722,-93.6769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.162405809303305 -8030,Barber Creek,1,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,43.7219,-105.7689,Barber Creek 1,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-09-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,7.2,WY,NG,Industrial,#FALSE#,2.88,7.2,18.067535947712418 -8030,Barber Creek,2,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,43.7219,-105.7689,Barber Creek 2,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-09-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,7.2,WY,NG,Industrial,#FALSE#,2.88,7.2,18.067535947712418 -8030,Barber Creek,3,2002.0,7.5,5.0,6.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6666666666666667,0.8,WECC,WACM,WY,43.7219,-105.7689,Barber Creek 3,GT,False,1.0,1.0,-1.0,0.72,0.72,425.0134,1.584,1.0,0.56,7.2,5.361481385120158,27.622933790640023,-2.0203988751466007e-07,5.361482864994295,27.62293183961528,11.518209168681862,#TRUE#,#2002-09-01#,#2050-12-31#,Existing,WACM,RM_WACM,2.88,7.2,7.2,WY,NG,Industrial,#FALSE#,2.88,7.2,18.067535947712418 -8031,Emery Station,11,2004.0,173.4,144.1,171.5,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8310265282583621,0.989042675893887,MRO,MISO,IA,43.094,-93.292222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.90707489890518 -8031,Emery Station,12,2004.0,173.4,146.5,174.3,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8448673587081892,1.0,MRO,MISO,IA,43.094,-93.292222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.851304384414089 -8031,Emery Station,ST1,2004.0,256.0,239.9,256.1,63,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.937109375,1.0,MRO,MISO,IA,43.094,-93.292222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8034,Yankton,1,1974.0,2.2,2.2,2.2,1,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,42.893333,-97.353333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8034,Yankton,2,1974.0,2.7,2.8,2.8,1.2,DFO,Petroleum Liquids,SB,IC,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,42.893333,-97.353333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8034,Yankton,3,1975.0,6.5,6.5,6.5,3,NG,Natural Gas Internal Combustion Engine,SB,IC,3.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,42.893333,-97.353333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8034,Yankton,4,1963.0,2.0,2.0,2.0,0.9,DFO,Petroleum Liquids,SB,IC,2.0,1963.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,42.893333,-97.353333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8036,Cooper Nuclear Station,1,1974.0,801.0,770.0,770.0,0,NUC,Nuclear,OP,ST,3.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9612983770287141,0.9612983770287141,MRO,SWPP,NE,40.3628,-95.6408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8037,Clifton,1,1974.0,85.0,75.6,75.6,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8894117647058823,0.8894117647058823,MRO,SWPP,KS,39.6125,-97.2778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8037,Clifton,2,1974.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,8.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.6125,-97.2778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8042,Belews Creek,1,1974.0,1245.6,1110.0,1110.0,300,NG,Natural Gas Steam Turbine,OP,ST,8.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8911368015414258,0.8911368015414258,SERC,DUK,NC,36.2811,-80.0603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.52281219385251 -8042,Belews Creek,2,1975.0,1245.6,1110.0,1110.0,675,NG,Natural Gas Steam Turbine,OP,ST,12.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8911368015414258,0.8911368015414258,SERC,DUK,NC,36.2811,-80.0603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.530984590751698 -8048,Anclote,1,1974.0,556.2,508.0,521.0,80,NG,Natural Gas Steam Turbine,OP,ST,10.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9133405249910104,0.9367134124415677,SERC,FPC,FL,28.184444,-82.788611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.088527644504905 -8048,Anclote,2,1978.0,556.2,505.0,514.0,80,NG,Natural Gas Steam Turbine,OP,ST,10.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9079467817331894,0.9241280115066522,SERC,FPC,FL,28.184444,-82.788611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.274096955674453 -8049,Intercession City,P1,1974.0,56.7,45.0,61.0,30,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7936507936507936,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P10,1993.0,103.5,74.0,86.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7149758454106281,0.8309178743961353,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P11,1997.0,148.5,140.0,161.0,60,DFO,Petroleum Liquids,OP,GT,1.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9427609427609428,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P12,2000.0,98.2,73.0,89.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7433808553971486,0.9063136456211812,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P13,2000.0,98.2,73.0,91.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7433808553971486,0.9266802443991853,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P14,2000.0,98.2,73.0,90.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7433808553971486,0.9164969450101833,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P2,1974.0,56.7,46.0,60.0,25,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8112874779541446,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P3,1974.0,56.7,46.0,61.0,25,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8112874779541446,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P4,1974.0,56.7,46.0,62.0,30,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8112874779541446,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P5,1974.0,56.7,45.0,59.0,30,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7936507936507936,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P6,1974.0,56.7,47.0,60.0,30,DFO,Petroleum Liquids,OP,GT,5.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8289241622574955,1.0,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P7,1993.0,103.5,78.0,90.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7536231884057971,0.8695652173913043,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P8,1993.0,103.5,77.0,88.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7439613526570048,0.8502415458937198,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8049,Intercession City,P9,1993.0,103.5,77.0,88.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7439613526570048,0.8502415458937198,SERC,FPC,FL,28.262778,-81.548611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8053,Pouch,N01,2001.0,47.0,45.2,45.6,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9617021276595745,0.9702127659574469,NPCC,NYIS,NY,40.6182,-74.06849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8054,Gerald Andrus,1,1975.0,781.4,706.5,727.7,205,NG,Natural Gas Steam Turbine,OP,ST,1.0,1975.0,6,2035,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9041464038904531,0.9312771947786026,SERC,MISO,MS,33.35,-91.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.6378012345777 -8055,Arkansas Nuclear One,1,1974.0,902.5,833.0,855.0,250,NUC,Nuclear,OP,ST,12.0,1974.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9229916897506926,0.9473684210526316,SERC,MISO,AR,35.311,-93.2351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8055,Arkansas Nuclear One,2,1980.0,942.5,989.0,1004.7,250,NUC,Nuclear,OP,ST,3.0,1980.0, , ,,,,,nuclear,nuclear,Nuclear,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,AR,35.311,-93.2351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8056,Waterford 1 & 2,1,1975.0,445.5,409.5,411.1,125,NG,Natural Gas Steam Turbine,OP,ST,7.0,1975.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9191919191919192,0.9227833894500561,SERC,MISO,LA,29.998884,-90.47684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8056,Waterford 1 & 2,2,1975.0,445.5,417.0,417.2,125,NG,Natural Gas Steam Turbine,OP,ST,10.0,1975.0,6,2025,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.936026936026936,0.9364758698092032,SERC,MISO,LA,29.998884,-90.47684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.845998274008107 -8056,Waterford 1 & 2,4,2009.0,41.0,32.1,35.7,31.9,DFO,Petroleum Liquids,SB,GT,9.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7829268292682927,0.8707317073170733,SERC,MISO,LA,29.998884,-90.47684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.38344386005031 -8059,Comanche (OK),1G1,1973.0,85.0,78.0,78.0,30,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1973.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9176470588235294,0.9176470588235294,MRO,SWPP,OK,34.5431,-98.3244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8059,Comanche (OK),1G2,1973.0,85.0,78.0,78.0,30,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1973.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9176470588235294,0.9176470588235294,MRO,SWPP,OK,34.5431,-98.3244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8059,Comanche (OK),1S,1974.0,120.0,104.0,114.0,34,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8666666666666667,0.95,MRO,SWPP,OK,34.5431,-98.3244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8059,Comanche (OK),IC1,1962.0,4.0,4.0,4.0,2,DFO,Petroleum Liquids,OS,IC,5.0,1962.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,34.5431,-98.3244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8063,DeCordova Steam Electric Station,BESS,2022.0,269.1,260.0,260.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,263.0,263.0,263.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.966183574879227,0.966183574879227,TRE,ERCO,TX,32.403056,-97.700556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8063,DeCordova Steam Electric Station,CT1,1990.0,89.4,69.0,88.0,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7718120805369126,0.9843400447427293,TRE,ERCO,TX,32.403056,-97.700556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.752521373440274 -8063,DeCordova Steam Electric Station,CT2,1990.0,89.4,68.0,87.0,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7606263982102908,0.9731543624161073,TRE,ERCO,TX,32.403056,-97.700556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.612281386535047 -8063,DeCordova Steam Electric Station,CT3,1990.0,89.4,68.0,86.0,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7606263982102908,0.9619686800894854,TRE,ERCO,TX,32.403056,-97.700556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.906520945341912 -8063,DeCordova Steam Electric Station,CT4,1990.0,89.4,69.0,86.0,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7718120805369126,0.9619686800894854,TRE,ERCO,TX,32.403056,-97.700556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.409226778811648 -8066,Jim Bridger,1,1974.0,608.3,531.0,531.0,50,SUB,Conventional Steam Coal,OP,ST,11.0,1974.0,12,2037,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8729245438106198,0.8729245438106198,WECC,PACE,WY,41.7378,-108.7875,Jim_Bridger_1,ST-Col,False,48.0,108.0,-1.0,18.585,18.585,62122.46,7434.0,1.0,2.4,531.0,10.12643633489426,-80.1514473185999,0.005600695911692632,6.52010794173713,421.9989074934161,9.832226123851184,#TRUE#,#2024-01-01#,#2037-12-31#,Existing,PAWY,BS_PACE,121.105,531.0,565.0,WY,NatGas,,#FALSE#,121.105,531, -8066,Jim Bridger,2,1975.0,617.0,539.0,539.0,40,SUB,Conventional Steam Coal,OP,ST,12.0,1975.0,12,2037,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.873581847649919,0.873581847649919,WECC,PACE,WY,41.7378,-108.7875,Jim_Bridger_2,ST-Col,False,48.0,108.0,-1.0,18.445,18.445,61654.5,7378.0,1.0,2.4,527.0,11.609836967011173,-384.68232246438157,0.01322416726374501,3.1867881034545915,772.4065381630568,10.177221697035229,#TRUE#,#2024-01-01#,#2037-12-31#,Existing,PAWY,BS_PACE,118.121,527.0,570.0,WY,NatGas,,#FALSE#,118.121,527, -8066,Jim Bridger,3,1976.0,608.3,523.0,523.0,65,SUB,Conventional Steam Coal,OP,ST,9.0,1976.0,12,2037,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8597731382541509,0.8597731382541509,WECC,PACE,WY,41.7378,-108.7875,Jim_Bridger_3,ST-Col,False,48.0,108.0,-1.0,18.305,18.305,61186.53,7322.0,1.0,2.4,523.0,11.16630872899418,-101.41801994887643,0.009688703634680005,4.816913695751538,820.4469673823623,10.811953486932337,#TRUE#,#1976-09-01#,#2037-12-31#,Existing,PAWY,BS_PACE,140.0,523.0,557.0,WY,Coal,,#FALSE#,140,523, -8066,Jim Bridger,4,1979.0,608.3,526.0,526.0,65,SUB,Conventional Steam Coal,OP,ST,11.0,1979.0,12,2037,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8647049153378268,0.8647049153378268,WECC,PACE,WY,41.7378,-108.7875,Jim_Bridger_4,ST-Col,False,48.0,108.0,-1.0,18.55,18.55,62005.47,7420.0,1.0,2.4,530.0,9.875586568684149,-89.21029401700112,0.008424074966335621,4.297163583522465,727.5653031251011,9.566330213589145,#TRUE#,#1979-11-01#,#2037-12-31#,Existing,PAWY,BS_PACE,140.0,530.0,557.0,WY,Coal,,#FALSE#,140,530, -8067,Fort Lupton,1,1972.0,50.4,44.0,50.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.873015873015873,0.9920634920634921,WECC,PSCO,CO,40.0922,-104.796,Fort Lupton 1,GT,False,1.0,1.0,-1.0,5.0,5.0,2951.482,11.0,1.0,0.56,50.0,-1.3407201930074846,462.1860069884139,-6.422101119951673e-06,-1.3402557956764625,462.1779446379798,11.947523197836933,#TRUE#,#1971-12-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,25.0,50.0,40.0,CO,NG,Industrial,#FALSE#,25,50,15.221112999150382 -8067,Fort Lupton,2,1972.0,50.4,44.0,50.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1972.0,12,2026,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.873015873015873,0.9920634920634921,WECC,PSCO,CO,40.0922,-104.796,Fort Lupton 2,GT,False,1.0,1.0,-1.0,5.0,5.0,2951.482,11.0,1.0,0.56,50.0,-1.3407201930074846,462.1860069884139,-6.422101119951673e-06,-1.3402557956764625,462.1779446379798,11.947523197836933,#TRUE#,#1971-12-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,25.0,50.0,40.0,CO,NG,Industrial,#FALSE#,25,50,15.221112999150382 -8068,Santan,ST1,1974.0,103.5,92.0,103.5,80,NG,Natural Gas Fired Combined Cycle,OP,CS,10.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8888888888888888,1.0,WECC,SRP,AZ,33.3325,-111.7503,Santan 1,CC E_7E,False,6.0,2.0,-1.0,5.64,5.64,7317.11,22.56,1.0,2.1,94.0,2.855003108990538,311.86697330239826,0.5313839212851367,-77.916235974939,3332.2650849202205,7.1365542503622095,#TRUE#,#1974-10-01#,#2050-12-31#,Existing,SRP,SW_SRP,61.1,94.0,91.0,AZ,NG,Single shaft,#FALSE#,61.1,94, -8068,Santan,ST2,1974.0,103.5,92.0,103.5,80,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8888888888888888,1.0,WECC,SRP,AZ,33.3325,-111.7503,Santan 2,CC E_7E,False,6.0,2.0,-1.0,5.64,5.64,7317.11,22.56,1.0,2.1,94.0,2.855003108990538,311.86697330239826,0.5313839212851367,-77.916235974939,3332.2650849202205,7.1365542503622095,#TRUE#,#1974-12-01#,#2050-12-31#,Existing,SRP,SW_SRP,61.1,94.0,90.0,AZ,NG,Single shaft,#FALSE#,61.1,94, -8068,Santan,ST3,1974.0,103.5,92.0,103.5,80,NG,Natural Gas Fired Combined Cycle,OP,CS,10.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8888888888888888,1.0,WECC,SRP,AZ,33.3325,-111.7503,Santan 3,CC E_7E,False,6.0,2.0,-1.0,5.64,5.64,7317.11,22.56,1.0,2.1,94.0,2.855003108990538,311.86697330239826,0.5313839212851367,-77.916235974939,3332.2650849202205,7.1365542503622095,#TRUE#,#1974-10-01#,#2050-12-31#,Existing,SRP,SW_SRP,61.1,94.0,90.0,AZ,NG,Single shaft,#FALSE#,61.1,94, -8068,Santan,ST4,1975.0,103.5,92.0,103.5,80,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,1975.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8888888888888888,1.0,WECC,SRP,AZ,33.3325,-111.7503,Santan 4,CC E_7E,False,6.0,2.0,-1.0,5.64,5.64,7317.11,22.56,1.0,2.1,94.0,2.855003108990538,311.86697330239826,0.5313839212851367,-77.916235974939,3332.2650849202205,7.1365542503622095,#TRUE#,#1975-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,61.1,94.0,90.0,AZ,NG,Single shaft,#FALSE#,61.1,94, -8068,Santan,ST5A,2005.0,153.8,151.0,203.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9817945383615084,1.0,WECC,SRP,AZ,33.3325,-111.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8068,Santan,ST5B,2005.0,153.8,151.0,203.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9817945383615084,1.0,WECC,SRP,AZ,33.3325,-111.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8068,Santan,ST5S,2005.0,314.5,280.0,318.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.890302066772655,1.0,WECC,SRP,AZ,33.3325,-111.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8068,Santan,ST6A,2006.0,153.8,151.0,195.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9817945383615084,1.0,WECC,SRP,AZ,33.3325,-111.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8068,Santan,ST6S,2006.0,136.1,126.0,135.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9257898603967671,0.9919177075679648,WECC,SRP,AZ,33.3325,-111.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8069,Huntington,1,1977.0,541.3,459.0,459.0,60,BIT,Conventional Steam Coal,OP,ST,6.0,1977.0,12,2036,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8479586181415113,0.8479586181415113,WECC,PACE,UT,39.3792,-111.0781,Huntington_1,ST-Col,False,48.0,108.0,-1.0,16.065,16.065,53699.07,6426.0,1.0,2.4,459.0001,9.09217962346648,12.404308437216063,0.007806683028330939,4.760080132333707,531.0016522436039,9.145185982423895,#TRUE#,#1977-06-01#,#2036-12-31#,Existing,PAUT,BS_PACE,103.041,459.0,480.0,UT,Coal,,#FALSE#,103.041,459.0001,10.666872113105455 -8069,Huntington,2,1974.0,496.0,450.0,450.0,60,BIT,Conventional Steam Coal,OP,ST,7.0,1974.0,12,2036,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.907258064516129,0.907258064516129,WECC,PACE,UT,39.3792,-111.0781,Huntington_2,ST-Col,False,48.0,108.0,-1.0,15.75,15.75,52646.15,6300.0,1.0,2.4,450.0,10.028207171860688,-77.99547523918501,0.010102848924637392,4.336261465627742,632.0685051142834,9.7109885629226,#TRUE#,#1974-07-01#,#2036-12-31#,Existing,PAUT,BS_PACE,120.0,450.0,480.0,UT,Coal,,#FALSE#,120,450,10.79542460825661 -8073,Beaver,1,1974.0,68.3,55.3,63.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8096632503660322,0.9224011713030748,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.480389416233477 -8073,Beaver,2,1974.0,68.3,55.3,63.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8096632503660322,0.9224011713030748,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.580680043975796 -8073,Beaver,3,1974.0,68.3,55.3,63.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8096632503660322,0.9224011713030748,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.445371155213653 -8073,Beaver,4,1974.0,68.3,55.3,63.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8096632503660322,0.9224011713030748,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.53344143849932 -8073,Beaver,5,1974.0,68.3,55.3,63.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8096632503660322,0.9224011713030748,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.4436711643035 -8073,Beaver,6,1974.0,68.3,55.3,63.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1974.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8096632503660322,0.9224011713030748,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.563610363312659 -8073,Beaver,7,1977.0,176.4,137.0,139.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1977.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7766439909297052,0.7879818594104309,WECC,PGE,OR,46.172401,-123.17392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8073,Beaver,8,2001.0,24.5,24.0,24.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9795918367346939,0.9795918367346939,WECC,PGE,OR,46.172401,-123.17392,Beaver8,GT B_10B,False,1.0,1.0,-1.0,2.45,2.45,1446.226,5.39,1.0,0.56,24.5,5.097020221186432,112.74850331402111,-6.869080035498687e-06,5.097264167664966,112.74642254641927,11.712563072855684,#TRUE#,#1999-09-01#,#2050-12-31#,Existing,PGE,NW_PGE,12.25,24.5,0.0,OR,NG,Industrial,#FALSE#,12.25,24.5,14.63562412342216 -8076,Ellwood,01,1974.0,58.0,54.0,54.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1974.0,1,2027,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9310344827586207,0.9310344827586207,WECC,CISO,CA,34.431419,-119.900055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.924333026678934 -8083,Keahole,2,1989.0,17.6,15.9,15.9,5,DFO,Petroleum Liquids,OP,GT,11.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.9034090909090908,0.9034090909090908,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.018432500184325 -8083,Keahole,21,1984.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35650623885918 -8083,Keahole,22,1984.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35650623885918 -8083,Keahole,23,1988.0,2.5,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,3.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35650623885918 -8083,Keahole,7,2009.0,18.0,16.0,16.0,3.5,DFO,Petroleum Liquids,OP,CA,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Steam Part,0.8888888888888888,0.8888888888888888,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8083,Keahole,CT4,2004.0,23.0,19.8,21.6,7,DFO,Petroleum Liquids,OP,CT,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.8608695652173913,0.9391304347826087,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.985025392198576 -8083,Keahole,CT5,2004.0,23.0,19.8,21.6,7,DFO,Petroleum Liquids,OP,CT,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.8608695652173913,0.9391304347826087,non-conus,non-conus,HI,19.7317,-156.0283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.452506878773935 -8100,Springfield (CO),1,1965.0,1.2,1.2,1.2,1,DFO,Petroleum Liquids,SB,IC,8.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.4028,-102.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8100,Springfield (CO),2,1950.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.4028,-102.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8100,Springfield (CO),IC4,1950.0,0.5,0.5,0.5,0.4,DFO,Petroleum Liquids,SB,IC,9.0,1950.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.4028,-102.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8100,Springfield (CO),IC5,1960.0,0.8,0.8,0.8,0.7,DFO,Petroleum Liquids,SB,IC,9.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,37.4028,-102.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8102,"Gavin Power, LLC",1,1974.0,1300.0,1348.0,1348.0,485,BIT,Conventional Steam Coal,OP,ST,10.0,1974.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,38.9347,-82.1158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.451782984568137 -8102,"Gavin Power, LLC",2,1975.0,1300.0,1361.0,1361.0,485,BIT,Conventional Steam Coal,OP,ST,7.0,1975.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,38.9347,-82.1158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.57272314439486 -8105,Halstad,4,2007.0,2.0,1.9,1.9,1.6,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,MN,47.350064,-96.831911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.882352941176471 -8105,Halstad,5,2007.0,2.0,1.9,1.9,1.6,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,MN,47.350064,-96.831911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.882352941176471 -8106,Tipton,1A,2001.0,2.0,2.0,2.0,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7717,-91.1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.07359835347029 -8106,Tipton,2,1971.0,1.3,1.2,1.2,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,0.923076923076923,MRO,MISO,IA,41.7717,-91.1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.073648410929987 -8106,Tipton,5,2011.0,2.0,2.0,2.0,1.4,DFO,Petroleum Liquids,OP,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7717,-91.1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.07359835347029 -8106,Tipton,6,2011.0,2.0,2.0,2.0,1.4,DFO,Petroleum Liquids,OP,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7717,-91.1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.07359835347029 -8106,Tipton,7,2019.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,1.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7717,-91.1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.07359835347029 -8108,Hopkinton,1,1973.0,1.6,1.6,1.6,0.4,DFO,Petroleum Liquids,OP,IC,9.0,1973.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.343542,-91.2471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.440139401394013 -8108,Hopkinton,CAT,2011.0,2.5,2.2,2.2,0.4,DFO,Petroleum Liquids,OP,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,MISO,IA,42.343542,-91.2471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.439910784570978 -8110,Stanberry,1,1963.0,1.1,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.212746,-94.542359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8110,Stanberry,2,1967.0,1.1,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.212746,-94.542359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8110,Stanberry,IC5,1958.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1958.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.212746,-94.542359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8110,Stanberry,IC6,1979.0,1.8,1.8,1.8,0.7,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,40.212746,-94.542359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8219,Ray D Nixon,1,1980.0,207.0,208.0,208.0,110,SUB,Conventional Steam Coal,OP,ST,4.0,1980.0,12,2029,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,WACM,CO,38.633451,-104.70577,Ray D Nixon 1,ST-Col,False,48.0,108.0,-1.0,4.16,4.16,30838.81,1940.64,1.0,1.79,208.0,10.42200245451706,-9.607110700061469,0.03505790939217262,0.00017698896216854205,730.860944309216,10.350997054930584,#TRUE#,#1980-04-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,100.0,208.0,225.0,CO,Subbituminous Coal,Steam Turbine,#FALSE#,100,208,10.61232044211569 -8219,Ray D Nixon,GT1,1999.0,37.8,30.0,32.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7936507936507937,0.8465608465608466,WECC,WACM,CO,38.633451,-104.70577,Ray D Nixon GT1,GT B_PG6541,False,1.0,1.0,-1.0,2.7,2.7,1593.8,5.94,1.0,0.56,30.0,-1.7529895680823027,310.6796836730201,-8.341591080348686e-05,-1.7488104313554664,310.6278974177618,10.78402495425046,#TRUE#,#1999-07-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,21.0,30.0,0.0,CO,Natural Gas,Gas Turbine,#FALSE#,21,30, -8219,Ray D Nixon,GT2,1999.0,37.8,30.0,32.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7936507936507937,0.8465608465608466,WECC,WACM,CO,38.633451,-104.70577,Ray D Nixon GT2,GT B_PG6541,False,1.0,1.0,-1.0,2.7,2.7,1593.8,5.94,1.0,0.56,35.0,2.4591457467439675,227.87989594574438,-3.053930224943685e-05,2.460846729131905,227.85663635394744,10.793512181578988,#TRUE#,#1999-07-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,22.0,35.0,0.0,CO,Natural Gas,Gas Turbine,#FALSE#,22,35, -8222,Coyote,1,1981.0,450.0,427.0,427.0,200,LIG,Conventional Steam Coal,OP,ST,5.0,1981.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9488888888888889,0.9488888888888889,MRO,MISO,ND,47.221447,-101.815722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8223,Springerville,1,1985.0,424.8,381.0,381.0,123,SUB,Conventional Steam Coal,OP,ST,6.0,1985.0,12,2027,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8968926553672316,0.8968926553672316,WECC,TEPC,AZ,34.3186,-109.1639,Springerville 1,ST-Col,False,48.0,108.0,-1.0,13.545,13.545,45275.69,5418.0,1.0,2.4,387.0,9.032321068836756,-29.593880142990606,0.01826998327093444,-1.553715175400893,1456.1659314094948,8.922497008150554,#TRUE#,#1985-06-01#,#2027-12-31#,Existing,TEPC,SW_TEPC,210.0,387.0,393.7457,AZ,Coal,,#FALSE#,210,387,10.69126977015805 -8223,Springerville,2,1990.0,424.8,406.0,406.0,124,SUB,Conventional Steam Coal,OP,ST,6.0,1990.0,12,2032,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.955743879472693,0.955743879472693,WECC,TEPC,AZ,34.3186,-109.1639,Springerville 2,ST-Col,False,48.0,108.0,-1.0,14.21,14.21,47498.53,5684.0,1.0,2.4,406.0,8.9184536697156,-55.34173130201376,0.02042029473017844,-4.273141612640673,2036.3239111034977,8.738429824750002,#TRUE#,#1990-06-01#,#2032-08-31#,Existing,TEPC,SW_TEPC,255.0,406.0,400.0,AZ,Coal,,#FALSE#,255,406,10.46163008488272 -8223,Springerville,3,2006.0,458.1,417.0,417.0,132,SUB,Conventional Steam Coal,OP,ST,7.0,2006.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9102815979043877,0.9102815979043877,WECC,TEPC,AZ,34.3186,-109.1639,Springerville 3,ST-Col,False,48.0,108.0,-1.0,14.595,14.595,48785.43,5838.0,1.0,2.4,417.0,8.08579142221437,480.27406231486293,0.03537595635596565,-15.769220353790626,4439.62422239576,9.574640943186088,#TRUE#,#2006-07-28#,#2036-09-30#,Existing,TEPC,SW_TEPC,271.753,417.0,452.0,AZ,Coal,,#FALSE#,271.753,417, -8223,Springerville,4,2009.0,458.1,415.0,415.0,170,SUB,Conventional Steam Coal,OP,ST,12.0,2009.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9059157389216328,0.9059157389216328,WECC,TEPC,AZ,34.3186,-109.1639,Springerville 4,ST-Col,False,48.0,108.0,-1.0,14.525,14.525,48551.45,5810.0,1.0,2.4,415.0,8.06172725096526,459.98017215812934,0.03298809356346435,-13.845806457169195,4034.6129296584218,9.514490111496945,#TRUE#,#2009-12-17#,#2050-12-31#,Existing,TEPC,SW_TEPC,264.091,415.0,420.0,AZ,Coal,,#FALSE#,264.091,415,11.329053352446069 -8223,Springerville,SGSS,2001.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2001.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,34.3186,-109.1639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8223,Springerville,SGSS1,2010.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,34.3186,-109.1639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8223,Springerville,WMS,2014.0,8.3,8.3,8.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,34.3186,-109.1639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8224,North Valmy,1,1981.0,277.2,254.0,254.0,90,BIT,Conventional Steam Coal,OP,ST,12.0,1981.0,12,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9163059163059164,0.9163059163059164,WECC,NEVP,NV,40.881317,-117.151605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.941438480410872 -8224,North Valmy,2,1985.0,289.8,268.0,268.0,90,BIT,Conventional Steam Coal,OP,ST,5.0,1985.0,12,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.924775707384403,0.924775707384403,WECC,NEVP,NV,40.881317,-117.151605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.863215299597734 -8225,Seneca Generation LLC,1,1970.0,205.9,229.6,229.6,75,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1970.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,41.8389,-79.0056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8225,Seneca Generation LLC,2,1970.0,205.9,214.8,214.8,75,WAT,Hydroelectric Pumped Storage,OP,PS,6.0,1970.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,RFC,PJM,PA,41.8389,-79.0056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8225,Seneca Generation LLC,3,1970.0,26.1,30.0,30.0,30,WAT,Conventional Hydroelectric,OP,HY,6.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,41.8389,-79.0056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A0,1936.0,2.4,2.7,2.7,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A1,1941.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A2,1942.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1942.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A3,1952.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A4,1952.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A5,1943.0,127.0,127.0,127.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A6,1939.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A7,1939.0,130.0,130.0,130.0,0,WAT,Conventional Hydroelectric,OP,HY,6.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A8,1937.0,61.5,61.5,61.5,0,WAT,Conventional Hydroelectric,OP,HY,8.0,1937.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8902,Hoover Dam (AZ),A9,1952.0,68.5,68.5,68.5,0,WAT,Conventional Hydroelectric,OP,HY,4.0,1952.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,AZ,36.01551,-114.738006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8906,Astoria Generating Station,1,1967.0,15.0,15.7,20.5,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.787674,-73.912561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8906,Astoria Generating Station,2,1954.0,180.0,177.0,177.0,60,NG,Natural Gas Steam Turbine,OP,ST,3.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9833333333333333,0.9833333333333333,NPCC,NYIS,NY,40.787674,-73.912561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8906,Astoria Generating Station,3,1958.0,376.0,369.9,369.9,75,NG,Natural Gas Steam Turbine,OP,ST,9.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9837765957446808,0.9837765957446808,NPCC,NYIS,NY,40.787674,-73.912561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8906,Astoria Generating Station,4,1961.0,387.0,376.3,376.3,75,NG,Natural Gas Steam Turbine,OS,ST,12.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9723514211886305,0.9723514211886305,NPCC,NYIS,NY,40.787674,-73.912561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8906,Astoria Generating Station,ST5,1962.0,387.0,376.3,376.3,75,NG,Natural Gas Steam Turbine,OP,ST,5.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9723514211886305,0.9723514211886305,NPCC,NYIS,NY,40.787674,-73.912561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9038,Cherry Street,10,1962.0,2.2,1.9,1.9,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1962.0,5,2030,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8636363636363635,0.8636363636363635,NPCC,ISNE,MA,42.388611,-71.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270184135977336 -9038,Cherry Street,11,1962.0,2.2,1.9,1.9,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1962.0,5,2030,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8636363636363635,0.8636363636363635,NPCC,ISNE,MA,42.388611,-71.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270184135977336 -9038,Cherry Street,12,1972.0,5.6,4.9,4.9,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8750000000000001,0.8750000000000001,NPCC,ISNE,MA,42.388611,-71.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270207519835749 -9038,Cherry Street,7,1951.0,3.3,2.5,2.5,0.5,DFO,Petroleum Liquids,OP,IC,5.0,1951.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7575757575757576,0.7575757575757576,NPCC,ISNE,MA,42.388611,-71.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270180065774479 -9038,Cherry Street,8,1956.0,4.0,3.4,3.4,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.85,0.85,NPCC,ISNE,MA,42.388611,-71.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270164269116602 -9095,Monroe Street,6,1992.0,14.8,15.0,15.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.653611,-117.420556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9096,Upper Falls,1,1922.0,10.0,10.2,10.2,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,AVA,WA,47.654444,-117.418889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9674,Nine Springs,GT1,1964.0,16.2,12.6,12.6,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7777777777777778,0.7777777777777778,MRO,MISO,WI,43.0386,-89.3586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.25 -9842,Newhalem,20,1970.0,2.3,2.3,2.3,0,WAT,Conventional Hydroelectric,OS,HY,2.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,SCL,WA,48.675944,-121.240826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9864,Cabot Holyoke,1,1893.0,0.8,0.6,0.6,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1893.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,ISNE,MA,42.2,-72.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9864,Cabot Holyoke,2,1938.0,0.8,0.6,0.6,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,ISNE,MA,42.2,-72.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9864,Cabot Holyoke,3,1939.0,0.4,0.4,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.2,-72.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -9864,Cabot Holyoke,4,1907.0,0.6,0.5,0.5,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1907.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,NPCC,ISNE,MA,42.2,-72.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10003,Colorado Energy Nations Company,GEN1,1976.0,7.5,10.0,10.0,3,NG,Natural Gas Steam Turbine,OP,ST,9.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PSCO,CO,39.7606,-105.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10003,Colorado Energy Nations Company,GEN2,1977.0,7.5,10.0,10.0,3,NG,Natural Gas Steam Turbine,OP,ST,5.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PSCO,CO,39.7606,-105.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10003,Colorado Energy Nations Company,GEN3,1983.0,20.0,20.0,20.0,3,NG,Natural Gas Steam Turbine,OP,ST,6.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PSCO,CO,39.7606,-105.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10004,Mosaic South Pierce Operations,TG1,1978.0,7.5,4.0,4.0,2,WH,All Other,OP,ST,1.0,1978.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5333333333333333,0.5333333333333333,SERC,TEC,FL,27.76522,-81.938787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10004,Mosaic South Pierce Operations,TG2,1992.0,38.0,33.0,33.0,2,WH,All Other,OP,ST,1.0,1992.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.868421052631579,0.868421052631579,SERC,TEC,FL,27.76522,-81.938787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10005,Dinosaur Point,WTGS,1988.0,17.4,17.0,16.0,15,WND,Onshore Wind Turbine,OP,WT,5.0,1988.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9770114942528736,0.9195402298850576,WECC,CISO,CA,37.0478,-121.1708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10008,Baptist Medical Center,TG-2,1983.0,2.5,2.2,2.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8800000000000001,1.0,SERC,JEA,FL,30.314467,-81.662705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.604782341273248 -10008,Baptist Medical Center,TG-3,1986.0,3.0,2.7,3.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,1.0,SERC,JEA,FL,30.314467,-81.662705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.604783007527434 -10008,Baptist Medical Center,TG-4,1993.0,3.5,3.2,3.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9142857142857144,1.0,SERC,JEA,FL,30.314467,-81.662705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.604780628048461 -10013,Covanta Hennepin Energy,GEN1,1989.0,39.5,33.7,33.7,6,MSW,Municipal Solid Waste,OP,ST,10.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8531645569620254,0.8531645569620254,MRO,MISO,MN,44.9833,-93.280382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10014,Lucky Peak Power Plant Project,U131,1988.0,45.0,36.2,19.2,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8044444444444445,0.42666666666666664,WECC,IPCO,ID,43.528,-116.0583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10014,Lucky Peak Power Plant Project,U132,1988.0,45.0,36.2,19.2,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8044444444444445,0.42666666666666664,WECC,IPCO,ID,43.528,-116.0583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10014,Lucky Peak Power Plant Project,U133,1988.0,11.2,10.6,10.3,0,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9464285714285715,0.9196428571428572,WECC,IPCO,ID,43.528,-116.0583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10017,WestRock-West Point Mill,GEN8,1954.0,5.0,5.0,5.0,1.8,BLQ,Wood/Wood Waste Biomass,OS,ST,1.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,37.5392,-76.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10017,WestRock-West Point Mill,GEN9,1960.0,10.0,10.0,10.0,4,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1960.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,37.5392,-76.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10017,WestRock-West Point Mill,GN10,1968.0,25.0,25.0,25.0,7,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1968.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,37.5392,-76.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10017,WestRock-West Point Mill,GN11,1977.0,15.0,15.0,15.0,7,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,37.5392,-76.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10017,WestRock-West Point Mill,GN12,1985.0,46.0,46.0,46.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1985.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,37.5392,-76.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10018,Desert Peak Power Plant,GEN2,2006.0,15.0,10.0,15.0,10,GEO,Geothermal,OP,BT,6.0,2006.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.753999,-118.953497,Desert Peak 2,GEO,True,6.0,16.0,-1.0,5.0,5.0,0.0,0.0,1.0,3.098312,13.5,-1.7614224001511278,79.26420173402857,-5.994926112917742e-06,-1.7613050671608246,79.26365011412224,6.678998563100414,#TRUE#,#2007-05-01#,#2050-12-31#,Existing,SPPC,SW_NVE,4.0,13.5,4.5,NV,Geo,Binary,#FALSE#,6.75,13.5, -10018,Desert Peak Power Plant,OEC2,2006.0,11.0,7.3,11.0,7.3,GEO,Geothermal,OP,BT,6.0,2006.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6636363636363636,1.0,WECC,NEVP,NV,39.753999,-118.953497,DESRT P2,GEO,True,6.0,16.0,-1.0,0.4587,0.4587,0.0,0.0,1.0,0.0,11.0,-1.7614547189747085,64.58600137637272,-6.191929674359433e-06,-1.761355958280817,64.58562302092541,6.679012705531754,#TRUE#,#1985-12-01#,#2050-12-31#,Existing,SPPC,SW_NVE,5.5,11.0,4.5,NV,Geo,,#FALSE#,5.5,11, -10020,Cutrale Citrus Juices USA I,GEN3,2016.0,4.1,4.3,3.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.951219512195122,SERC,FPC,FL,28.811828,-81.865273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.908238969152674 -10025,"RED-Rochester, LLC",17TG,1968.0,15.0,15.0,15.0,4,NG,Natural Gas Steam Turbine,OP,ST,12.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10025,"RED-Rochester, LLC",41TG,1964.0,25.6,25.6,25.6,5,NG,Natural Gas Steam Turbine,OP,ST,5.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10025,"RED-Rochester, LLC",42TG,1967.0,25.6,25.6,25.6,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10025,"RED-Rochester, LLC",43TG,1969.0,25.6,25.6,25.6,5,NG,Natural Gas Steam Turbine,OP,ST,4.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10025,"RED-Rochester, LLC",44TG,1987.0,25.6,25.6,25.6,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10025,"RED-Rochester, LLC",75TG,2015.0,3.0,2.2,2.2,0.4,NG,Natural Gas Steam Turbine,OP,ST,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7333333333333334,0.7333333333333334,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10025,"RED-Rochester, LLC",KPR1,1957.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1989,-77.6319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10026,Encina Water Pollution Control,EG10,2008.0,0.8,0.8,0.8,0.6,OBG,Other Waste Biomass,OP,IC,11.0,2008.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.1165,-117.3215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.828070663513701 -10026,Encina Water Pollution Control,EG20,2008.0,0.8,0.8,0.8,0.6,OBG,Other Waste Biomass,OP,IC,11.0,2008.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.1165,-117.3215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.828070663513701 -10026,Encina Water Pollution Control,EG30,2009.0,0.8,0.8,0.8,0.6,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.1165,-117.3215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.828070663513701 -10026,Encina Water Pollution Control,EG40,2009.0,0.8,0.8,0.8,0.6,OBG,Other Waste Biomass,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.1165,-117.3215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.828070663513701 -10029,General Electric Aircraft Engines,PV,2017.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.45,-70.9739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10030,Energy Center Dover,COG1,1985.0,18.0,15.0,15.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1985.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8333333333333334,0.8333333333333334,RFC,PJM,DE,39.149549,-75.547335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10030,Energy Center Dover,KD-1,2001.0,50.0,44.0,50.0,30,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.88,1.0,RFC,PJM,DE,39.149549,-75.547335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10030,Energy Center Dover,KD-2,2001.0,50.0,44.0,50.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.88,1.0,RFC,PJM,DE,39.149549,-75.547335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10034,Gilroy Power Plant,GEN1,1987.0,90.0,85.0,85.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,0.9444444444444444,WECC,CISO,CA,37.0001,-121.5367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10034,Gilroy Power Plant,GEN2,1987.0,40.0,30.0,35.0,20,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.75,0.875,WECC,CISO,CA,37.0001,-121.5367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10036,Hillsborough Hosiery,GEN1,1989.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.11391,-71.894001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10036,Hillsborough Hosiery,GEN2,1989.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.11391,-71.894001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10042,Kaweah Delta District Hospital,KDHT1,2008.0,3.5,3.5,3.5,1.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.3275,-119.2947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.94256791653755 -10049,Little Mac Project,1,1984.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.629637,-114.66162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10049,Little Mac Project,2,1984.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.629637,-114.66162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10049,Little Mac Project,3,1984.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.629637,-114.66162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10049,Little Mac Project,4,1984.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.629637,-114.66162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10050,Fourche Creek Wastewater,4,2009.0,1.3,1.3,1.3,0.8,OBG,Other Waste Biomass,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.6968,-92.165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.118663594470046 -10051,Lockville Hydropower,GEN1,1985.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6184,-79.0912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10051,Lockville Hydropower,GEN2,1985.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6184,-79.0912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10052,Fairhaven Power,GEN1,1986.0,18.8,16.0,16.0,1,WDS,Wood/Wood Waste Biomass,OA,ST,9.0,1986.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.851063829787234,0.851063829787234,WECC,CISO,CA,40.7995,-124.2028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10058,General Electric Diesel Engine Plant,REGN,1984.0,4.4,4.3,4.2,0,DFO,Petroleum Liquids,OP,IC,6.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9772727272727272,0.9545454545454545,RFC,PJM,PA,41.1694,-80.1055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.10762862211709 -10059,General Electric Great Falls Upper Hydro,1575,1984.0,1.6,1.6,1.6,0.4,WAT,Conventional Hydroelectric,OS,HY,12.0,1984.0,10,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.2597,-70.8597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10059,General Electric Great Falls Upper Hydro,500,1988.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OS,HY,8.0,1988.0,10,2023,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.2597,-70.8597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10061,"Mars Wrigley Confectionery US, LLC",GEN1,1989.0,10.9,8.8,10.7,6,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8073394495412844,0.9816513761467889,RFC,PJM,NJ,40.8625,-74.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.668153928879958 -10061,"Mars Wrigley Confectionery US, LLC",GEN2,1984.0,1.4,0.7,1.2,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1984.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.5,0.8571428571428572,RFC,PJM,NJ,40.8625,-74.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10062,Miami Dade County Resource Recovery Fac,GEN1,1981.0,38.5,35.8,36.2,5,MSW,Municipal Solid Waste,OP,ST,12.0,1981.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9298701298701297,0.9402597402597404,SERC,FPL,FL,25.8356,-80.3566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10062,Miami Dade County Resource Recovery Fac,GEN2,1981.0,38.5,35.8,36.2,5,MSW,Municipal Solid Waste,OP,ST,12.0,1981.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9298701298701297,0.9402597402597404,SERC,FPL,FL,25.8356,-80.3566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10063,Derby Hydro,GEN1,1989.0,4.0,4.0,4.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.324308,-73.102111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10063,Derby Hydro,GEN2,1989.0,4.0,4.0,4.0,2.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.324308,-73.102111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10063,Derby Hydro,GEN3,1989.0,0.3,0.3,0.3,0.2,WAT,Conventional Hydroelectric,SB,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.324308,-73.102111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10063,Derby Hydro,GEN4,1989.0,0.3,0.3,0.3,0.2,WAT,Conventional Hydroelectric,SB,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.324308,-73.102111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN1,1985.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN2,1985.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN3,1985.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN4,1985.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN5,1985.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN6,1985.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10066,Lockwood Hydroelectric Facility,GEN7,1988.0,2.4,2.2,2.2,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,NPCC,ISNE,ME,44.5467,-69.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10070,Foothills Hydro Plant,GEN1,1985.0,3.1,3.1,3.1,0.4,WAT,Conventional Hydroelectric,OP,HY,5.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,39.4588,-105.0657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10072,Engineered Carbons Borger Cogen,GEN1,1982.0,20.0,18.8,18.8,5,OG,Other Gases,OP,ST,10.0,1982.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.9400000000000001,MRO,SWPP,TX,35.66704,-101.432004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10075,Taconite Harbor Energy Center,GEN1,1957.0,84.0,79.0,79.0,32,SUB,Conventional Steam Coal,SB,ST,1.0,1957.0,3,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9404761904761905,0.9404761904761905,MRO,MISO,MN,47.5314,-90.9114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10075,Taconite Harbor Energy Center,GEN2,1957.0,84.0,75.9,75.9,32,SUB,Conventional Steam Coal,SB,ST,1.0,1957.0,3,2023,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9035714285714287,0.9035714285714287,MRO,MISO,MN,47.5314,-90.9114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10081,Strontia Springs Hydro Plant,GEN1,1986.0,1.0,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.4326,-105.1263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10091,Total Energy Facilities,G2,2003.0,9.9,8.0,9.0,5,OBG,Other Waste Biomass,OP,CT,2.0,2003.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combined Cycle Combustion Turbine Part,0.8080808080808081,0.9090909090909091,WECC,CISO,CA,33.7683,-118.2836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.913685109289617 -10091,Total Energy Facilities,G3,2001.0,9.9,8.0,9.0,5,OBG,Other Waste Biomass,OP,CT,12.0,2001.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combined Cycle Combustion Turbine Part,0.8080808080808081,0.9090909090909091,WECC,CISO,CA,33.7683,-118.2836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.790892246358756 -10091,Total Energy Facilities,GEN1,1986.0,9.9,8.0,9.0,5,OBG,Other Waste Biomass,OP,CT,1.0,1986.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combined Cycle Combustion Turbine Part,0.8080808080808081,0.9090909090909091,WECC,CISO,CA,33.7683,-118.2836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.191379071379071 -10091,Total Energy Facilities,GEN4,1986.0,8.7,7.4,7.4,2,OBG,Other Waste Biomass,OP,CA,11.0,1986.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combined Cycle Steam Part,0.8505747126436782,0.8505747126436782,WECC,CISO,CA,33.7683,-118.2836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10093,Tesoro Hawaii,GEN1,1982.0,20.0,20.0,20.0,5,WO,Petroleum Liquids,OP,GT,12.0,1982.0, , ,,,,,oil,oil,Waste/Other Oil ,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,HI,21.303229,-158.091438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.636834423689972 -10108,Hampton Facility,GEN8,2000.0,5.0,3.8,5.0,1.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.76,1.0,NPCC,ISNE,NH,42.9383,-70.8406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.110366939793373 -10109,Stevens Mills Dam,1G,1985.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.446107,-71.644646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10109,Stevens Mills Dam,3G,1985.0,1.7,1.8,1.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.446107,-71.644646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10113,John B Rich Memorial Power Station,GEN1,1988.0,88.4,80.0,80.0,50,WC,Conventional Steam Coal,OP,ST,2.0,1988.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9049773755656108,0.9049773755656108,RFC,PJM,PA,40.7903,-76.1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10115,Grossmont Hospital,GEN3,2016.0,4.5,4.2,4.4,2.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333333,0.9777777777777779,WECC,CISO,CA,32.77973,-117.006397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.541747104247104 -10116,Hampshire Paper,05,1987.0,3.4,1.8,2.7,0.4,WAT,Conventional Hydroelectric,OP,HY,5.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5294117647058824,0.7941176470588236,NPCC,NYIS,NY,44.296544,-75.36645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10118,Harrisburg Facility,GEN3,2006.0,24.1,16.7,16.7,4,MSW,Municipal Solid Waste,OP,ST,4.0,2006.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6929460580912863,0.6929460580912863,RFC,PJM,PA,40.244242,-76.853872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10120,Pinova Inc.,GEN5,1980.0,7.1,7.1,7.1,1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1980.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,31.164772,-81.478724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -10121,High Shoals Hydro (GA),GEN1,1988.0,1.4,1.4,1.4,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.816547,-83.504932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10122,CIP II/AR Bridgewater Holdings - NJCOE,02,2002.0,5.0,4.1,4.2,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.82,0.8400000000000001,RFC,PJM,NJ,40.624,-74.634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.241860815235801 -10123,Hoffmann LaRoche,TG01,2004.0,5.3,4.1,5.3,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7735849056603773,1.0,RFC,PJM,NJ,40.8359,-74.155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.429896323486343 -10123,Hoffmann LaRoche,TG03,2004.0,5.3,4.1,5.3,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7735849056603773,1.0,RFC,PJM,NJ,40.8359,-74.155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.429896323486343 -10124,Hollow Dam Power Partnership,HY1,1987.0,0.5,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OS,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,NPCC,NYIS,NY,44.296453,-75.336142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10124,Hollow Dam Power Partnership,HY2,1987.0,0.5,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,0.6,NPCC,NYIS,NY,44.296453,-75.336142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10128,Gosselin Hydro Plant,GEN1,1983.0,1.0,0.2,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.19999999999999996,0.30000000000000004,WECC,CISO,CA,40.37,-123.4347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10128,Gosselin Hydro Plant,GEN2,1983.0,1.0,0.2,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.19999999999999996,0.30000000000000004,WECC,CISO,CA,40.37,-123.4347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10129,Indiana University of Pennsylvania,GEN1,1988.0,6.1,6.0,6.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,RFC,PJM,PA,40.6144,-79.1594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.629828023681984 -10129,Indiana University of Pennsylvania,GEN2,1988.0,6.1,6.0,6.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,RFC,PJM,PA,40.6144,-79.1594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.629828023681984 -10129,Indiana University of Pennsylvania,GEN3,1988.0,6.1,6.0,6.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,RFC,PJM,PA,40.6144,-79.1594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.629828023681984 -10129,Indiana University of Pennsylvania,GEN4,1988.0,6.1,6.0,6.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,RFC,PJM,PA,40.6144,-79.1594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.629828023681984 -10137,Deweys Mill,GEN1,1989.0,2.5,2.4,2.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.9199999999999999,NPCC,ISNE,VT,43.6411,-72.4061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10137,Deweys Mill,GEN2,1989.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.6411,-72.4061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10138,South Dry Creek Hydro,1,1985.0,2.0,2.0,,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,NWMT,MT,45.206341,-109.1652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10139,Isabella Hydro Project,GEN1,1990.0,5.9,5.9,5.9,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.64414,-118.48199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10139,Isabella Hydro Project,GEN2,1990.0,5.9,5.9,5.9,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,35.64414,-118.48199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10140,Birch Creek Power,GEN1,1986.0,2.6,2.6,2.6,0.2,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,ID,44.027444,-112.719439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10143,Colver Green Energy,COLV,1995.0,118.0,110.0,110.0,77,WC,Conventional Steam Coal,OP,ST,2.0,1995.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9322033898305084,0.9322033898305084,RFC,PJM,PA,40.55108,-78.79794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10144,Sierra Pacific Lincoln Facility,GEN4,2004.0,19.2,17.5,16.9,1,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,2004.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9114583333333334,0.8802083333333333,WECC,CISO,CA,38.9032,-121.3097,Lincoln4,OT ST,True,8.0,8.0,-1.0,1.8,1.8,103.0893,1.83,1.0,2.027986,18.3,11.377142786177082,-2.9855134944805255,-1.247829762799496e-06,11.377170878932507,-2.9856547168631815,11.076553484749102,#TRUE#,#1986-06-03#,#2050-12-31#,Existing,CIPV,CA_CISO,5.49,18.3,14.1,CA,Bio,,#FALSE#,5.49,18.3, -10149,Decorative Panels Intl,GEN1,1957.0,7.5,7.0,7.5,1,NG,Natural Gas Steam Turbine,OP,ST,11.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,1.0,RFC,MISO,MI,45.062836,-83.423333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50.43259557344064 -10151,Grant Town Power Plant,GEN1,1992.0,95.7,80.0,80.0,32,WC,Conventional Steam Coal,OP,ST,7.0,1992.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8359456635318704,0.8359456635318704,RFC,PJM,WV,39.561831,-80.163138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10152,Warrior Ridge Hydro,L-1,1985.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.540042,-78.034628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10152,Warrior Ridge Hydro,L-2,1985.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.540042,-78.034628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10152,Warrior Ridge Hydro,L-4,1985.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.540042,-78.034628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10152,Warrior Ridge Hydro,L-5,1985.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.540042,-78.034628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10154,Power Island,GEN1,1985.0,41.0,30.0,38.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7317073170731707,0.926829268292683,TRE,ERCO,TX,29.2293,-95.1952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10154,Power Island,GEN2,2020.0,50.0,40.0,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,TRE,ERCO,TX,29.2293,-95.1952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10154,Power Island,GEN3,2020.0,50.0,40.0,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,TRE,ERCO,TX,29.2293,-95.1952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10155,Brasfield,1,1993.0,2.9,2.9,2.9,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,37.220833,-77.524504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10156,Fresno Cogen Partners,GEN2,1990.0,10.0,6.0,6.5,1.5,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6,0.65,WECC,CISO,CA,36.617022,-120.099846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10156,Fresno Cogen Partners,GEN3,2001.0,18.6,18.6,18.6,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.617022,-120.099846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10156,Fresno Cogen Partners,GEN4,2004.0,52.2,52.2,52.2,1.5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,36.617022,-120.099846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10162,Whitewater Hydro Plant,WWHI,1986.0,1.3,1.3,1.3,0.8,WAT,Conventional Hydroelectric,SB,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,33.934725,-116.640548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10167,Seadrift Coke LP,GEN1,1983.0,7.6,7.6,7.6,1,PC,Petroleum Coke,OP,ST,11.0,1983.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.513929,-96.794154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.77733572044294 -10169,Carson Cogeneration,GEN1,1989.0,45.3,41.3,41.1,28,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9116997792494481,0.9072847682119206,WECC,CISO,CA,33.8759,-118.2491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10169,Carson Cogeneration,GEN2,1990.0,10.5,8.0,8.1,8,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7619047619047619,0.7714285714285714,WECC,CISO,CA,33.8759,-118.2491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10173,Cherokee Falls,T-1,1985.0,4.3,1.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2325581395348837,0.4651162790697675,SERC,DUK,SC,35.0642,-81.5458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10175,Childrens Hospital,0799,2000.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.7992,-117.1517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.88791374122367 -10175,Childrens Hospital,1711,2004.0,4.8,4.8,4.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.7992,-117.1517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.664853816111252 -10175,Childrens Hospital,5083,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.7992,-117.1517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.887662988966898 -10175,Childrens Hospital,5084,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.7992,-117.1517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.887662988966898 -10175,Childrens Hospital,5085,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.7992,-117.1517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.887662988966898 -10176,M Street Jet,NO.6,1979.0,69.0,50.0,68.0,5,KER,Petroleum Liquids,OP,GT,5.0,1979.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.7246376811594203,0.9855072463768116,NPCC,ISNE,MA,42.339387,-71.031407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10180,Metro Wastewater Reclamation District,1,1985.0,2.0,1.2,1.2,0.6,OBG,Other Waste Biomass,OS,IC,4.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.6,0.6,WECC,PSCO,CO,39.8078,-104.9542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.128700128700128 -10180,Metro Wastewater Reclamation District,2,1985.0,2.0,1.2,1.2,0.6,OBG,Other Waste Biomass,OS,IC,4.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.6,0.6,WECC,PSCO,CO,39.8078,-104.9542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.128700128700128 -10180,Metro Wastewater Reclamation District,3,1985.0,2.0,1.2,1.2,0.6,OBG,Other Waste Biomass,SB,IC,4.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.6,0.6,WECC,PSCO,CO,39.8078,-104.9542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.128700128700128 -10180,Metro Wastewater Reclamation District,4,1985.0,2.0,1.2,1.2,0.6,OBG,Other Waste Biomass,SB,IC,4.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.6,0.6,WECC,PSCO,CO,39.8078,-104.9542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.128700128700128 -10180,Metro Wastewater Reclamation District,5,2000.0,3.5,2.5,3.1,0.6,OBG,Other Waste Biomass,OP,GT,8.0,2000.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.7142857142857143,0.8857142857142858,WECC,PSCO,CO,39.8078,-104.9542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.48087142743833 -10180,Metro Wastewater Reclamation District,6,2000.0,3.5,2.5,3.1,0.6,OBG,Other Waste Biomass,OP,GT,9.0,2000.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.7142857142857143,0.8857142857142858,WECC,PSCO,CO,39.8078,-104.9542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.48087142743833 -10181,Metropolitan Sewerage District,GEN1,1988.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,SB,HY,9.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6497,-82.5992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10181,Metropolitan Sewerage District,GEN2,1988.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,9.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6497,-82.5992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10181,Metropolitan Sewerage District,GEN3,1988.0,0.8,0.8,0.8,0.8,WAT,Conventional Hydroelectric,OP,HY,9.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.6497,-82.5992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10183,Mine Falls Generating Station,GEN1,1985.0,1.5,1.5,1.5,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,42.750278,-71.505278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10183,Mine Falls Generating Station,GEN2,1985.0,1.5,1.7,1.7,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,42.750278,-71.505278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10184,Central Utility Plant,EG1,1988.0,6.0,3.6,4.1,1.8,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.6000000000000001,0.6833333333333333,TRE,ERCO,TX,30.397351,-97.842586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10184,Central Utility Plant,EG2,1988.0,6.0,2.5,2.4,1.8,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.41666666666666663,0.4,TRE,ERCO,TX,30.397351,-97.842586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10184,Central Utility Plant,TG1,1988.0,2.3,2.2,2.3,0.2,NG,Natural Gas Steam Turbine,SB,ST,7.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9565217391304349,1.0,TRE,ERCO,TX,30.397351,-97.842586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB1,1983.0,3.0,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7333333333333334,0.7333333333333334,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB2,1980.0,2.7,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8148148148148149,0.8148148148148149,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB3,1983.0,3.0,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7333333333333334,0.7333333333333334,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB4,1983.0,3.0,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7333333333333334,0.7333333333333334,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB5,1961.0,2.5,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1961.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8800000000000001,0.8800000000000001,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB6,2008.0,3.0,2.6,2.6,2.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8666666666666667,0.8666666666666667,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB7,1950.0,2.5,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8800000000000001,0.8800000000000001,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AB8,1989.0,0.3,0.3,0.3,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AN1,1984.0,1.8,1.8,1.8,0.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AN2,1984.0,1.8,1.8,1.8,0.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AN3,1984.0,1.8,1.8,1.8,0.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AN4,1984.0,1.8,1.8,1.8,0.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10186,Anson Abenaki Hydros,AN5,1984.0,1.8,1.8,1.8,0.6,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.7975,-69.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10188,Cutrale Citrus Juices USA II,GEN6,2015.0,4.1,4.3,3.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.951219512195122,SERC,TEC,FL,28.05485,-81.798166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.074362150111469 -10188,Cutrale Citrus Juices USA II,GEN7,2015.0,4.1,4.3,3.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.951219512195122,SERC,TEC,FL,28.05485,-81.798166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.074362150111469 -10190,Castleton Energy Center,GEN1,1992.0,47.0,67.7,76.6,50,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,42.5375,-73.7433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10190,Castleton Energy Center,GEN2,1992.0,25.0,,,0,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,NPCC,NYIS,NY,42.5375,-73.7433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10191,Tehachapi Wind Resource I,EXIS,1984.0,8.7,8.7,8.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,1984.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.060556,-118.389722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10194,Hawaii Cogen,GEN1,1990.0,3.0,3.2,3.2,2,WO,Petroleum Liquids,OS,GT,8.0,1990.0, , ,,,,,oil,oil,Waste/Other Oil ,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,HI,21.311667,-158.113889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10194,Hawaii Cogen,GEN2,1990.0,3.0,3.2,3.2,2,WO,Petroleum Liquids,OS,GT,8.0,1990.0, , ,,,,,oil,oil,Waste/Other Oil ,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,HI,21.311667,-158.113889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10194,Hawaii Cogen,GEN3,1990.0,3.0,3.2,3.2,2,WO,Petroleum Liquids,OS,GT,8.0,1990.0, , ,,,,,oil,oil,Waste/Other Oil ,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,HI,21.311667,-158.113889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10194,Hawaii Cogen,GEN4,2011.0,3.2,3.2,3.2,2,WO,Petroleum Liquids,OS,GT,6.0,2011.0, , ,,,,,oil,oil,Waste/Other Oil ,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,HI,21.311667,-158.113889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10195,CF Industries Yazoo City Complex,EXIS,1984.0,25.0,20.0,22.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.88,SERC,MISO,MS,32.90411,-90.3781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.586714420508459 -10196,Moose River,GEN1,1987.0,12.6,12.3,12.3,2.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9761904761904763,0.9761904761904763,NPCC,NYIS,NY,43.610664,-75.341325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10197,Philadlephia,GEN1,1986.0,3.6,,2.5,0.6,WAT,Conventional Hydroelectric,OP,HY,10.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,0.6944444444444444,NPCC,NYIS,NY,44.158611,-75.708778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10198,Mosaic Phosphates Uncle Sam,GEN2,1968.0,11.0,11.0,11.0,4,WH,All Other,OP,ST,1.0,1968.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.038649,-90.828312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10198,Mosaic Phosphates Uncle Sam,GEN3,2016.0,15.0,15.0,15.0,4,WH,All Other,OP,ST,8.0,2016.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.038649,-90.828312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10202,Fernandina Beach Mill,GEN5,1988.0,37.4,30.0,30.0,2.5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1988.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8021390374331552,0.8021390374331552,SERC,JEA,FL,30.681823,-81.455413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10202,Fernandina Beach Mill,GEN6,1982.0,59.5,50.0,50.0,2.5,BLQ,Wood/Wood Waste Biomass,OP,ST,9.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8403361344537815,0.8403361344537815,SERC,JEA,FL,30.681823,-81.455413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10204,Mosaic Co Tampa Facility,GEN1,1988.0,37.8,34.4,34.4,2,WH,All Other,OP,ST,8.0,1988.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9100529100529101,0.9100529100529101,SERC,TEC,FL,27.8605,-82.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10204,Mosaic Co Tampa Facility,GEN3,1999.0,34.6,33.6,33.6,4,WH,All Other,OP,ST,11.0,1999.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9710982658959537,0.9710982658959537,SERC,TEC,FL,27.8605,-82.3903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10206,Loma Linda University Cogen,GEN1,1989.0,5.2,4.8,4.8,2.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.923076923076923,0.923076923076923,WECC,CISO,CA,34.050391,-117.248417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.71922675378035 -10206,Loma Linda University Cogen,GEN2,1989.0,5.2,4.8,4.8,2.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.923076923076923,0.923076923076923,WECC,CISO,CA,34.050391,-117.248417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.71922675378035 -10206,Loma Linda University Cogen,GEN4,1986.0,1.7,1.7,1.7,0.9,DFO,Petroleum Liquids,SB,IC,6.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.050391,-117.248417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10206,Loma Linda University Cogen,GEN5,2018.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.050391,-117.248417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10208,Escanaba Mill,NO.7,1969.0,38.6,32.0,32.0,27.2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1969.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8290155440414507,0.8290155440414507,RFC,MISO,MI,45.8044,-87.0891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10208,Escanaba Mill,NO.8,1972.0,29.8,23.0,23.0,22.1,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1972.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7718120805369127,0.7718120805369127,RFC,MISO,MI,45.8044,-87.0891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10208,Escanaba Mill,NO9,1982.0,54.0,45.0,45.0,45,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,RFC,MISO,MI,45.8044,-87.0891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10213,El Segundo Cogen,GEN1,1987.0,42.4,38.7,38.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9127358490566039,0.9127358490566039,WECC,CISO,CA,33.9058,-118.4031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.538358205580428 -10213,El Segundo Cogen,GEN2,1987.0,42.4,38.7,38.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9127358490566039,0.9127358490566039,WECC,CISO,CA,33.9058,-118.4031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.085511095401076 -10213,El Segundo Cogen,GEN5,1996.0,40.3,39.2,39.2,20,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9727047146401987,0.9727047146401987,WECC,CISO,CA,33.9058,-118.4031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.881127363656757 -10213,El Segundo Cogen,GEN6,1996.0,9.1,9.1,9.1,2,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,33.9058,-118.4031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10213,El Segundo Cogen,GEN7,2013.0,40.7,40.7,40.7,25,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.9058,-118.4031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.773247008813364 -10213,El Segundo Cogen,GEN8,2013.0,5.2,5.2,5.2,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,33.9058,-118.4031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10214,Lower Saranac Hydroelectric Facility,GEN1,1990.0,3.2,3.0,2.9,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9062499999999999,NPCC,NYIS,NY,44.6694,-73.5075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10214,Lower Saranac Hydroelectric Facility,GEN2,1990.0,3.2,3.0,2.9,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9062499999999999,NPCC,NYIS,NY,44.6694,-73.5075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10214,Lower Saranac Hydroelectric Facility,GEN3,1990.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.6694,-73.5075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10215,Snowbird Power Plant,1138,2022.0,1.5,1.3,1.3,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,WECC,PACE,UT,40.58337,-111.653903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.12726032416282 -10215,Snowbird Power Plant,1258,2022.0,2.5,2.1,2.1,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8400000000000001,0.8400000000000001,WECC,PACE,UT,40.58337,-111.653903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.127259969788991 -10215,Snowbird Power Plant,1260,2022.0,2.5,2.1,2.1,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8400000000000001,0.8400000000000001,WECC,PACE,UT,40.58337,-111.653903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.127259969788991 -10216,Alabama River Pulp,GEN1,1978.0,48.0,43.5,48.5,5,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1978.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.90625,1.0,SERC,SOCO,AL,31.5825,-87.4889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10218,Warrensburg Hydroelectric,HY1,1988.0,2.9,2.9,2.9,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.4833,-73.7986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10219,Middle Falls Hydro,HY1,1989.0,1.1,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.098711,-73.525271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10219,Middle Falls Hydro,HY2,1989.0,1.1,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.098711,-73.525271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10220,Sissonville Hydro,HY1,1990.0,3.0,3.0,3.0,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.685589,-75.002868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10221,New York State Dam Hydro,GEN1,1990.0,5.7,5.7,5.7,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.781779,-73.696096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10221,New York State Dam Hydro,GEN2,1990.0,5.7,5.7,5.7,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.781779,-73.696096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10222,Tulare Success Power Project,SPP1,1989.0,1.4,1.4,1.4,0.8,WAT,Conventional Hydroelectric,SB,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.058635,-118.924097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10224,Merck Rahway Power Plant,GEN8,1977.0,5.0,5.0,5.0,2,NG,Natural Gas Steam Turbine,OS,ST,1.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,NJ,40.615616,-74.26529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10224,Merck Rahway Power Plant,GEN9,2004.0,10.8,10.8,10.8,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,NJ,40.615616,-74.26529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10224,Merck Rahway Power Plant,GEN9A,2017.0,4.5,5.1,5.1,1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,NJ,40.615616,-74.26529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10224,Merck Rahway Power Plant,SOLAR,2005.0,0.5,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2005.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,RFC,PJM,NJ,40.615616,-74.26529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10233,Leaf River Cellulose LLC,GEN1,1984.0,25.2,26.1,26.7,4,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1984.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,MS,31.2434,-89.0456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10233,Leaf River Cellulose LLC,GEN2,1984.0,25.2,26.1,26.7,4,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1984.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,MS,31.2434,-89.0456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10234,Biron Mill,GEN1,1964.0,17.0,15.3,15.3,15.3,BIT,Conventional Steam Coal,OP,ST,9.0,1964.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,MRO,MISO,WI,44.43,-89.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10234,Biron Mill,GEN3,1947.0,7.5,7.5,7.5,7.5,NG,Natural Gas Steam Turbine,OP,ST,9.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.43,-89.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10234,Biron Mill,GEN4,1957.0,15.6,12.5,12.5,12.5,NG,Natural Gas Steam Turbine,OP,ST,10.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8012820512820513,0.8012820512820513,MRO,MISO,WI,44.43,-89.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10234,Biron Mill,GEN5,1987.0,21.5,20.0,20.0,20,SUB,Conventional Steam Coal,OP,ST,2.0,1987.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9302325581395349,0.9302325581395349,MRO,MISO,WI,44.43,-89.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10237,Diana Hydroelectric,GEN1,1985.0,1.8,1.7,1.7,0.4,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,NPCC,NYIS,NY,44.151944,-75.321725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10238,Dolgeville Hydro,GEN1,1985.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.090635,-74.766961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10243,Ticona Polymers Inc,GEN5,1989.0,44.2,32.5,38.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7352941176470588,0.8597285067873303,TRE,ERCO,TX,27.5697,-97.8228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.513141475136862 -10244,Pixelle Specialty Solutions LLC - Chillicothe Facility,T-10,1952.0,10.6,7.3,4.5,5,BLQ,Wood/Wood Waste Biomass,OS,ST,2.0,1952.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6886792452830188,0.42452830188679247,RFC,PJM,OH,39.324611,-82.974039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10244,Pixelle Specialty Solutions LLC - Chillicothe Facility,T-11,1958.0,24.0,10.2,10.8,8,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1958.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.42499999999999993,0.45000000000000007,RFC,PJM,OH,39.324611,-82.974039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10244,Pixelle Specialty Solutions LLC - Chillicothe Facility,T-12,1967.0,31.0,15.8,19.5,10,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1967.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5096774193548388,0.6290322580645161,RFC,PJM,OH,39.324611,-82.974039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10244,Pixelle Specialty Solutions LLC - Chillicothe Facility,T-13,1978.0,27.2,10.6,13.3,7,NG,Natural Gas Steam Turbine,OP,ST,7.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.3897058823529411,0.48897058823529416,RFC,PJM,OH,39.324611,-82.974039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10245,ArcelorMittal Burns Harbor,GEN5,1970.0,62.0,60.5,60.5,2,OG,Other Gases,OP,ST,1.0,1970.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9758064516129032,0.9758064516129032,RFC,MISO,IN,41.635,-87.1387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10245,ArcelorMittal Burns Harbor,GEN6,1969.0,51.0,51.0,51.0,10,OG,Other Gases,OP,ST,1.0,1969.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,41.635,-87.1387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10245,ArcelorMittal Burns Harbor,GEN7,1969.0,63.2,63.2,63.2,10,OG,Other Gases,OP,ST,1.0,1969.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,41.635,-87.1387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10252,Domtar Kingsport Mill,NO.1,2006.0,50.0,46.5,47.0,18,NG,Natural Gas Steam Turbine,OA,ST,10.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9299999999999999,0.94,SERC,TVA,TN,36.5489,-82.5667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10253,Haypress,LGEN,1989.0,5.0,5.0,5.0,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.565677,-120.581684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10253,Haypress,UGEN,1988.0,5.0,5.0,5.0,0.7,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.565677,-120.581684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10255,West Enfield Hydro,GEN1,1988.0,6.5,4.4,4.4,2,WAT,Conventional Hydroelectric,OP,HY,4.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.676923076923077,0.676923076923077,NPCC,ISNE,ME,45.2497,-68.6483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10255,West Enfield Hydro,GEN2,1988.0,6.5,5.1,5.1,2,WAT,Conventional Hydroelectric,OP,HY,4.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7846153846153845,0.7846153846153845,NPCC,ISNE,ME,45.2497,-68.6483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10258,Haw River Hydro,1,1981.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.9483,-79.3244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10258,Haw River Hydro,2,1982.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.9483,-79.3244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10261,Enterprise Products Operating,GEN3,1991.0,3.4,3.0,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,0.8235294117647058,TRE,ERCO,TX,29.8247,-94.9197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.678486459336648 -10261,Enterprise Products Operating,GEN4,1991.0,3.4,3.0,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,0.8235294117647058,TRE,ERCO,TX,29.8247,-94.9197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.678486459336648 -10261,Enterprise Products Operating,GEN5,1991.0,3.4,3.0,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,0.8235294117647058,TRE,ERCO,TX,29.8247,-94.9197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.678486459336648 -10261,Enterprise Products Operating,GEN6,1996.0,3.5,3.0,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.7999999999999999,TRE,ERCO,TX,29.8247,-94.9197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.67848655635863 -10261,Enterprise Products Operating,GEN7,1996.0,3.5,3.0,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.7999999999999999,TRE,ERCO,TX,29.8247,-94.9197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.67848655635863 -10261,Enterprise Products Operating,GEN8,1996.0,3.5,3.0,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.7999999999999999,TRE,ERCO,TX,29.8247,-94.9197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.67848655635863 -10262,California Institute of Technology,GEN6,2003.0,10.5,9.0,9.9,9,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8571428571428572,0.9428571428571428,WECC,CISO,CA,34.138467,-118.1256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.156255882873317 -10262,California Institute of Technology,GEN7,2003.0,2.5,2.1,2.1,2,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8400000000000001,0.8400000000000001,WECC,CISO,CA,34.138467,-118.1256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.423933338193171 -10275,Florida's Natural Growers,CE50,1989.0,3.5,3.4,2.0,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9714285714285714,0.5714285714285714,SERC,FPC,FL,27.9114,-81.6006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.110010344542735 -10275,Florida's Natural Growers,TA70,2000.0,7.2,5.9,5.8,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8194444444444444,0.8055555555555556,SERC,FPC,FL,27.9114,-81.6006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.110010307946812 -10276,Clement Dam Hydro LLC,0049,1984.0,2.4,2.3,2.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9583333333333333,NPCC,ISNE,NH,43.440538,-71.595975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,1,1920.0,0.3,0.3,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,10,2012.0,1.3,1.3,1.3,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,11,2012.0,1.0,1.0,1.0,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,2,1922.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,3,1922.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,4,1922.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,5,1922.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,6,1925.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,7,1925.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,8,2012.0,1.0,1.0,1.0,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10279,Kansas River Project,9,2012.0,1.3,1.3,1.3,0.9,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,SWPP,KS,38.974022,-95.235078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10280,Central Plant,ENG1,1978.0,1.1,1.1,1.1,0.4,DFO,Petroleum Liquids,SB,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.871811,-82.366035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10280,Central Plant,ENG5,2008.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.871811,-82.366035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10280,Central Plant,ENG6,2008.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.871811,-82.366035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10280,Central Plant,ENG7,2008.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,10.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.871811,-82.366035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10282,Big Creek Water Works,BCHY,1987.0,5.0,4.8,4.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.9199999999999999,WECC,CISO,CA,40.646733,-123.498008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10285,Townsend Hydro,GEN1,1987.0,2.6,2.1,2.1,0.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8076923076923077,0.8076923076923077,RFC,PJM,PA,40.733545,-80.314795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10285,Townsend Hydro,GEN2,1987.0,2.6,2.1,2.1,0.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8076923076923077,0.8076923076923077,RFC,PJM,PA,40.733545,-80.314795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10286,Cornell Hydro,1,1981.0,0.8,0.5,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.8749999999999999,NPCC,NYIS,NY,42.451922,-76.485092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10286,Cornell Hydro,2,1981.0,1.1,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.451922,-76.485092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10287,Beowawe,GEN1,1985.0,17.0,12.8,13.1,5,GEO,Geothermal,OP,ST,12.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7529411764705882,0.7705882352941176,WECC,NEVP,NV,40.5547,-116.6175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10287,Beowawe,GEN2,2011.0,3.6,1.3,2.0,1,GEO,Geothermal,OP,BT,2.0,2011.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.36111111111111116,0.5555555555555556,WECC,NEVP,NV,40.5547,-116.6175,Beowawe Power 2,GEO,True,6.0,16.0,-1.0,18.77,18.77,0.0,0.0,1.0,3.098312,1.7,-1.761412132830255,9.981400459821609,-2.7136195799031698e-06,-1.7614048664575934,9.981395617170246,6.678994001477792,#TRUE#,#2011-02-01#,#2050-12-31#,Existing,SPPC,SW_NVE,0.0,1.7,0.0,NV,Geo,Binary,#FALSE#,.85,1.7, -10288,Big Valley Power LLC,IS27,1983.0,9.3,8.7,8.7,8.7,WDS,Wood/Wood Waste Biomass,OS,ST,8.0,1983.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9354838709677418,0.9354838709677418,WECC,CISO,CA,41.1325,-121.137222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10290,Bridgewater Power LP,GEN1,1987.0,20.0,16.0,16.5,2,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.825,NPCC,ISNE,NH,43.7155,-71.6585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10294,King City Power Plant,GTG,1989.0,90.8,77.0,80.0,62,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8480176211453745,0.881057268722467,WECC,CISO,CA,36.225,-121.1278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72444885976977 -10294,King City Power Plant,STG,1989.0,42.4,38.0,38.0,28,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8962264150943396,0.8962264150943396,WECC,CISO,CA,36.225,-121.1278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10296,South Forks Hydro,GEN1,1984.0,4.0,4.0,4.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.4937,-114.3102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10296,South Forks Hydro,GEN2,1984.0,4.0,4.0,4.0,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.4937,-114.3102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10298,Bayou Cogen Plant,GT1,2014.0,79.6,75.0,93.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9422110552763819,1.0,TRE,ERCO,TX,29.6225,-95.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10298,Bayou Cogen Plant,GT2,2016.0,79.6,75.0,93.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9422110552763819,1.0,TRE,ERCO,TX,29.6225,-95.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10298,Bayou Cogen Plant,GT3,2015.0,79.6,75.0,93.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9422110552763819,1.0,TRE,ERCO,TX,29.6225,-95.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10298,Bayou Cogen Plant,GT4,2015.0,79.6,75.0,93.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9422110552763819,1.0,TRE,ERCO,TX,29.6225,-95.0458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10300,Desert View Power,GEN1,1991.0,55.5,47.0,47.0,30,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,1991.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8468468468468469,0.8468468468468469,WECC,IID,CA,33.586,-116.0873,Desert View,OT ST,True,8.0,8.0,-1.0,1.8,1.8,281.6648,5.0,1.0,2.027986,50.0,11.93333329857502,9.333334203530638,-3.631932909923391e-07,11.933351641023068,9.333163283061712,12.507896345125308,#TRUE#,#1991-11-01#,#2050-12-31#,Existing,IID,CA_IID,5.0,50.0,45.0,CA,Bio,,#FALSE#,5,50, -10301,Louisiana Sugar Refining,GEN2,1977.0,2.5,1.7,1.7,0.2,NG,Natural Gas Steam Turbine,OP,ST,3.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6799999999999999,0.6799999999999999,SERC,MISO,LA,30.0497,-90.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -10301,Louisiana Sugar Refining,GEN3,1957.0,1.7,1.5,1.5,0.1,NG,Natural Gas Steam Turbine,SB,ST,2.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8823529411764706,0.8823529411764706,SERC,MISO,LA,30.0497,-90.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10301,Louisiana Sugar Refining,GEN4,1969.0,2.5,2.1,2.0,0.2,NG,Natural Gas Steam Turbine,OP,ST,9.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8400000000000001,0.8,SERC,MISO,LA,30.0497,-90.6839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88.88726527825196 -10302,Juniata Locomotive Shop,GEN3,2015.0,1.5,1.5,1.5,0.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,40.533299,-78.384125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10305,Dutchess Cnty Resource Recovery Facility,GEN1,1987.0,9.2,7.2,7.4,4,MSW,Municipal Solid Waste,OP,ST,11.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7826086956521741,0.8043478260869567,NPCC,NYIS,NY,41.647,-73.943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.08660631548934 -10307,Bellingham Cogeneration Facility,CT1,1991.0,128.7,102.0,126.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7925407925407926,0.9790209790209791,NPCC,ISNE,MA,42.0925,-71.4833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10307,Bellingham Cogeneration Facility,CT2,1991.0,128.7,102.0,126.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7925407925407926,0.9790209790209791,NPCC,ISNE,MA,42.0925,-71.4833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10307,Bellingham Cogeneration Facility,ST1,1991.0,128.7,60.0,84.0,30,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.4662004662004663,0.6526806526806528,NPCC,ISNE,MA,42.0925,-71.4833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10308,Sayreville Cogeneration Facility,CT1,1991.0,143.4,112.0,127.8,86,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7810320781032077,0.8912133891213389,RFC,PJM,NJ,40.439,-74.3444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10308,Sayreville Cogeneration Facility,CT2,1991.0,143.4,112.0,127.8,86,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7810320781032077,0.8912133891213389,RFC,PJM,NJ,40.439,-74.3444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10308,Sayreville Cogeneration Facility,ST1,1991.0,143.4,68.0,77.5,26,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.47419804741980476,0.5404463040446303,RFC,PJM,NJ,40.439,-74.3444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10319,Geismar,GEN1,1985.0,35.7,33.7,37.7,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9439775910364145,1.0,SERC,MISO,LA,30.2,-91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.575400364248592 -10319,Geismar,GEN2,1998.0,41.2,39.2,43.2,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9514563106796117,1.0,SERC,MISO,LA,30.2,-91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.57540031228582 -10319,Geismar,GEN3,2005.0,7.2,7.2,7.2,0.7,NG,Natural Gas Steam Turbine,OP,ST,10.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.2,-91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10323,Copper Dam Plant,TURGO,2015.0,2.6,1.0,2.6,0.5,WAT,Conventional Hydroelectric,OP,HY,9.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3846153846153846,1.0,WECC,PACW,OR,45.66523,-121.523761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10324,Peters Drive Plant,GEN3,1987.0,1.8,0.3,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,11.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.16666666666666674,0.6666666666666666,WECC,PACW,OR,45.66764,-121.548455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10325,Mink Creek Hydro,GEN1,1986.0,3.1,2.0,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6451612903225806,0.19354838709677424,WECC,PACE,ID,42.260844,-111.665589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN1,1965.0,12.5,12.5,12.5,2.5,NG,Natural Gas Steam Turbine,OP,ST,12.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN2,1966.0,12.5,12.5,12.5,2.5,NG,Natural Gas Steam Turbine,OP,ST,9.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN3,1974.0,15.0,15.0,15.0,2.5,NG,Natural Gas Steam Turbine,OP,ST,12.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN4,1993.0,21.0,21.0,21.0,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN5,2006.0,24.0,23.8,23.8,5,NG,Natural Gas Steam Turbine,OP,ST,5.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9916666666666667,0.9916666666666667,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN6,2006.0,14.3,12.6,14.3,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.881118881118881,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN7,2022.0,9.4,9.4,9.4,6.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN8,2022.0,9.4,9.4,9.4,6.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10328,T B Simon Power Plant,GEN9,2022.0,9.4,9.4,9.4,6.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7178,-84.4836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10334,H Power,GEN1,1989.0,63.7,58.0,58.0,5,MSW,Municipal Solid Waste,OP,ST,11.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9105180533751962,0.9105180533751962,non-conus,non-conus,HI,21.300036,-158.098615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10334,H Power,GEN2,2013.0,33.6,28.0,28.0,5,MSW,Municipal Solid Waste,OP,ST,2.0,2013.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333333,0.8333333333333333,non-conus,non-conus,HI,21.300036,-158.098615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10334,H Power,PV1,2020.0,2.9,3.6,3.3,0.2,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.300036,-158.098615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10339,Southside Water Reclamation Plant,GEN1,2002.0,2.2,2.1,2.2,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,1.0,WECC,PNM,NM,35.016111,-106.669722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.171145592450822 -10339,Southside Water Reclamation Plant,GEN2,2002.0,2.2,2.1,2.2,0,OBG,Other Waste Biomass,OP,IC,11.0,2002.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9545454545454545,1.0,WECC,PNM,NM,35.016111,-106.669722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.171145592450822 -10339,Southside Water Reclamation Plant,GEN3,1987.0,1.1,1.1,1.1,0,OBG,Other Waste Biomass,OP,IC,2.0,1987.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,PNM,NM,35.016111,-106.669722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.171147286888859 -10339,Southside Water Reclamation Plant,GEN4,1987.0,1.1,1.1,1.1,0,OBG,Other Waste Biomass,OP,IC,2.0,1987.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,PNM,NM,35.016111,-106.669722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.171147286888859 -10342,Marathon Bay Area Cogen,TG1,1987.0,40.0,35.0,37.0,29,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.875,0.925,WECC,CISO,CA,38.0244,-122.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.652997015842857 -10342,Marathon Bay Area Cogen,TG2,1987.0,40.0,35.0,37.0,29,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.875,0.925,WECC,CISO,CA,38.0244,-122.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.832128192628339 -10342,Marathon Bay Area Cogen,TG3,1987.0,33.5,33.5,33.5,5,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,38.0244,-122.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10343,Foster Wheeler Mt Carmel Cogen,TG1,1990.0,47.3,43.0,40.0,25,WC,Conventional Steam Coal,OP,ST,1.0,1990.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909092,0.8456659619450317,RFC,PJM,PA,40.811189,-76.452951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10349,Greenleaf 2 Power Plant,GEN1,1989.0,49.5,49.5,49.5,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,39.1365,-121.6397,Greenleaf2,GT Aero,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,49.5,-563.2116927632727,28156.03007168808,-11.61015636272058,579.8088927570748,23.658361589892085,8.779566442674177,#TRUE#,#2020-06-01#,#2050-12-31#,Existing,CIPV,CA_CISO,49.0,49.5,34.45,CA,NG,Areo,#FALSE#,49,49.5, -10350,Greenleaf 1,CTGA,2022.0,34.9,30.0,30.0,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8595988538681949,0.8595988538681949,WECC,CISO,CA,39.052922,-121.696072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10350,Greenleaf 1,CTGB,2022.0,34.9,30.0,30.0,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8595988538681949,0.8595988538681949,WECC,CISO,CA,39.052922,-121.696072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10354,ReEnergy Livermore Falls,GEN1,1992.0,39.6,38.0,38.0,18,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1992.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9595959595959596,0.9595959595959596,NPCC,ISNE,ME,44.431667,-70.1619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10360,Consumer Operations LLC,GEN6,1963.0,18.7,18.0,18.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1963.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9625668449197862,0.9625668449197862,MRO,MISO,WI,44.4936,-88.0303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10360,Consumer Operations LLC,GEN7,1969.0,28.9,23.0,23.0,3,NG,Natural Gas Steam Turbine,OP,ST,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7958477508650519,0.7958477508650519,MRO,MISO,WI,44.4936,-88.0303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10361,Savannah River Mill,GEN1,1986.0,25.2,21.4,24.7,2,NG,Natural Gas Fired Combustion Turbine,SB,GT,12.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8492063492063492,0.9801587301587301,SERC,SOCO,GA,32.331274,-81.201496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -10361,Savannah River Mill,GEN2,1986.0,25.2,21.4,24.7,2,NG,Natural Gas Fired Combustion Turbine,OS,GT,12.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8492063492063492,0.9801587301587301,SERC,SOCO,GA,32.331274,-81.201496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -10361,Savannah River Mill,GEN3,1988.0,45.0,41.9,42.3,2,PC,Petroleum Coke,OP,ST,2.0,1988.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9311111111111111,0.94,SERC,SOCO,GA,32.331274,-81.201496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10361,Savannah River Mill,GEN4,1989.0,45.0,41.9,42.3,2,PC,Petroleum Coke,OP,ST,9.0,1989.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9311111111111111,0.94,SERC,SOCO,GA,32.331274,-81.201496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10362,Georgia-Pacific Muskogee,GEN1,1979.0,25.0,11.6,15.2,3,NG,Natural Gas Steam Turbine,OP,ST,6.0,1979.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.46399999999999997,0.608,MRO,SWPP,OK,35.7322,-95.2939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10362,Georgia-Pacific Muskogee,GEN2,1980.0,44.5,21.6,22.4,5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.48539325842696635,0.503370786516854,MRO,SWPP,OK,35.7322,-95.2939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10362,Georgia-Pacific Muskogee,GEN3,1982.0,44.5,34.3,33.8,5,NG,Natural Gas Steam Turbine,OP,ST,11.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7707865168539325,0.7595505617977527,MRO,SWPP,OK,35.7322,-95.2939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10382,Lumberton,GEN1,1985.0,34.7,34.7,34.7,5,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,34.59,-78.9968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10387,Sycamore Energy LLC,1A,2011.0,1.2,1.2,1.2,0.9,LFG,Landfill Gas,OP,GT,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.857709,-117.028847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.730202891149993 -10387,Sycamore Energy LLC,2A,2011.0,1.2,1.2,1.2,0.9,LFG,Landfill Gas,OP,GT,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.857709,-117.028847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.730202891149993 -10387,Sycamore Energy LLC,3,2004.0,3.0,2.8,3.0,2.4,LFG,Landfill Gas,OP,GT,4.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9333333333333332,1.0,WECC,CISO,CA,32.857709,-117.028847,Sycamore1-3,OT IC,True,6.0,6.0,-1.0,4.0,4.0,16.89989,0.3,1.0,2.027986,3.0,12.11999996054569,6.535785449508276e-08,-6.380043844521211e-07,12.120002355460837,-2.005458211622093e-06,12.120000000686128,#TRUE#,#2011-05-19#,#2050-12-31#,Existing,CISD,CA_CISO,0.9,3.0,2.0,CA,Bio,,#FALSE#,.9,3,25.730203911170197 -10397,Indiana Harbor West,GEN5,1939.0,12.5,3.1,4.9,2,NG,Natural Gas Steam Turbine,SB,ST,10.0,1939.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.248,0.392,RFC,MISO,IN,41.663765,-87.452325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10397,Indiana Harbor West,GEN6,1953.0,12.5,3.1,4.9,2,NG,Natural Gas Steam Turbine,SB,ST,5.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.248,0.392,RFC,MISO,IN,41.663765,-87.452325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10397,Indiana Harbor West,GEN7,1959.0,32.0,16.0,16.0,3,NG,Natural Gas Steam Turbine,OP,ST,5.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5,0.5,RFC,MISO,IN,41.663765,-87.452325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10397,Indiana Harbor West,GEN8,1961.0,40.0,24.0,29.0,4,NG,Natural Gas Steam Turbine,OP,ST,6.0,1961.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.725,RFC,MISO,IN,41.663765,-87.452325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10397,Indiana Harbor West,GEN9,2002.0,55.0,28.0,29.0,2,NG,Natural Gas Steam Turbine,OP,ST,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.509090909090909,0.5272727272727273,RFC,MISO,IN,41.663765,-87.452325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10398,Arcelormittal Cleveland Inc,GEN3,1965.0,10.0,10.0,10.0,3,BFG,Other Gases,OP,ST,1.0,1965.0,3,2023,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.4739,-81.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10398,Arcelormittal Cleveland Inc,GEN5,1965.0,10.0,8.0,9.0,3,BFG,Other Gases,OP,ST,1.0,1965.0,3,2023,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.9,RFC,PJM,OH,41.4739,-81.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10398,Arcelormittal Cleveland Inc,GENA,1950.0,15.0,12.0,14.0,3,BFG,Other Gases,OP,ST,1.0,1950.0,3,2023,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.9333333333333333,RFC,PJM,OH,41.4739,-81.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10398,Arcelormittal Cleveland Inc,GENB,1965.0,10.0,8.0,9.0,3,BFG,Other Gases,OP,ST,1.0,1965.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.9,RFC,PJM,OH,41.4739,-81.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10398,Arcelormittal Cleveland Inc,GENC,2010.0,22.0,22.0,22.0,4,BFG,Other Gases,OP,ST,2.0,2010.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.4739,-81.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10398,Arcelormittal Cleveland Inc,GENG,2022.0,70.0,69.3,60.0,14,BFG,Other Gases,OP,ST,3.0,2022.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.99,0.8571428571428572,RFC,PJM,OH,41.4739,-81.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10405,Kingsburg Cogen,GEN1,1990.0,23.1,22.0,23.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9523809523809523,0.9956709956709956,WECC,CISO,CA,36.5397,-119.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10405,Kingsburg Cogen,GEN2,1990.0,13.1,11.8,11.8,4,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.900763358778626,0.900763358778626,WECC,CISO,CA,36.5397,-119.5794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10408,Clark University,GEN2,2013.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.2508,-71.8226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.728989263235839 -10412,Kalaheo Hydro,KPH1,2016.0,2.0,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,21.936075,-159.528581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10413,Wainiha Hydro,WAIA,1906.0,1.8,1.7,1.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,non-conus,non-conus,HI,22.196292,-159.556142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10413,Wainiha Hydro,WAIB,1910.0,1.8,1.7,1.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,non-conus,non-conus,HI,22.196292,-159.556142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10416,Pensacola Florida Plant,GEN1,1953.0,5.0,5.0,5.0,1,NG,Natural Gas Steam Turbine,OP,ST,9.0,1953.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,FL,30.5958,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10416,Pensacola Florida Plant,GEN2,1957.0,5.0,5.0,5.0,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,FL,30.5958,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10416,Pensacola Florida Plant,GEN3,1958.0,6.0,6.0,6.0,1,NG,Natural Gas Steam Turbine,OP,ST,3.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,FL,30.5958,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10416,Pensacola Florida Plant,GEN4,1993.0,86.0,82.0,100.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9534883720930233,1.0,SERC,SOCO,FL,30.5958,-87.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.6573700887199 -10417,Indian Orchard Plant 1,TG,1985.0,5.7,3.2,4.1,1,NG,Natural Gas Steam Turbine,OP,ST,5.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5614035087719298,0.719298245614035,NPCC,ISNE,MA,42.156898,-72.524153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96.39681280169279 -10418,Ascend Performance Materials Texas Inc.,GEN1,1993.0,6.0,5.2,5.2,2.3,NG,Natural Gas Steam Turbine,OP,ST,6.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8666666666666667,0.8666666666666667,TRE,ERCO,TX,29.2558,-95.2103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10418,Ascend Performance Materials Texas Inc.,GEN4,2000.0,46.1,42.5,42.5,8,NG,Natural Gas Steam Turbine,OP,ST,10.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9219088937093275,0.9219088937093275,TRE,ERCO,TX,29.2558,-95.2103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10421,Dillon Hydro Plant,GEN1,1987.0,1.8,1.8,1.8,0.8,WAT,Conventional Hydroelectric,OP,HY,10.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.6208,-106.0662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10422,Williams Fork Hydro Plant,GEN1,1959.0,3.0,3.0,3.0,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.035,-106.2053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10422,Williams Fork Hydro Plant,GEN2,2012.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,9.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,40.035,-106.2053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10423,North Fork Hydro Plant,GEN1,1988.0,5.5,5.5,5.5,0.8,WAT,Conventional Hydroelectric,OA,HY,1.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,39.4616,-105.677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10424,Gross Hydro Plant,GEN1,2007.0,4.0,4.0,4.0,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,2007.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.9456,-105.3565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10424,Gross Hydro Plant,GEN2,2007.0,4.0,4.0,4.0,0.7,WAT,Conventional Hydroelectric,OP,HY,8.0,2007.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.9456,-105.3565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10425,International Paper - Orange,TG,1967.0,48.0,33.2,33.8,5,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1967.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6916666666666667,0.7041666666666666,SERC,MISO,TX,30.2178,-93.7422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10426,Inland Paperboard Packaging Rome,GEN2,1954.0,5.0,5.0,5.0,5,RFO,Petroleum Liquids,OP,ST,10.0,1954.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,34.2528,-85.3275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10426,Inland Paperboard Packaging Rome,GEN3,1954.0,5.0,5.0,5.0,5,RFO,Petroleum Liquids,OP,ST,10.0,1954.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,34.2528,-85.3275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10426,Inland Paperboard Packaging Rome,GEN4,1961.0,22.0,20.0,20.0,20,RFO,Petroleum Liquids,OP,ST,4.0,1961.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.9090909090909091,SERC,SOCO,GA,34.2528,-85.3275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10426,Inland Paperboard Packaging Rome,GEN5,1989.0,38.4,31.0,30.0,30,RFO,Petroleum Liquids,OP,ST,4.0,1989.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8072916666666667,0.78125,SERC,SOCO,GA,34.2528,-85.3275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10427,New-Indy Ontario Mill,GEN2,2019.0,16.5,14.7,14.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8909090909090909,0.896969696969697,WECC,CISO,CA,34.045361,-117.540193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.531475219862209 -10427,New-Indy Ontario Mill,GEN3,2019.0,16.5,14.7,14.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8909090909090909,0.896969696969697,WECC,CISO,CA,34.045361,-117.540193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.531475219862209 -10430,Anheuser-Busch St Louis,GEN1,1947.0,11.0,11.0,11.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.597755,-90.210671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10430,Anheuser-Busch St Louis,GEN3,1948.0,11.0,11.0,11.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.597755,-90.210671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10430,Anheuser-Busch St Louis,GEN4,1939.0,4.1,4.1,4.1,0.5,NG,Natural Gas Steam Turbine,OS,ST,1.0,1939.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.597755,-90.210671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10431,Anheuser-Busch Jacksonville,GEN1,1987.0,8.7,8.7,8.7,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,JEA,FL,30.43424,-81.645351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.498408065799946 -10434,Mosaic New Wales Operations,TG1,1981.0,10.0,8.0,8.0,2,WH,All Other,OS,ST,8.0,1981.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,SERC,TEC,FL,27.833642,-82.051937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10434,Mosaic New Wales Operations,TG2,1984.0,58.5,48.0,48.0,2,WH,All Other,OP,ST,12.0,1984.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8205128205128205,0.8205128205128205,SERC,TEC,FL,27.833642,-82.051937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10434,Mosaic New Wales Operations,TG3,1982.0,32.0,32.0,32.0,2,WH,All Other,OP,ST,12.0,1982.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TEC,FL,27.833642,-82.051937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10434,Mosaic New Wales Operations,TG4,2014.0,35.0,24.0,24.0,3.5,WH,All Other,OP,ST,5.0,2014.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6857142857142857,0.6857142857142857,SERC,TEC,FL,27.833642,-82.051937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10435,Camden Resource Recovery Facility,TGA,1991.0,17.5,16.5,16.5,4,MSW,Municipal Solid Waste,OP,ST,3.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9428571428571428,0.9428571428571428,RFC,PJM,NJ,39.9092,-75.1169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10435,Camden Resource Recovery Facility,TGB,1991.0,17.5,16.5,16.5,4,MSW,Municipal Solid Waste,OP,ST,3.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9428571428571428,0.9428571428571428,RFC,PJM,NJ,39.9092,-75.1169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10436,ExxonMobil Baytown Refinery,GT38,1989.0,45.7,31.0,35.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6783369803063457,0.7658643326039387,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.832240171426466 -10436,ExxonMobil Baytown Refinery,GT41,1977.0,27.6,18.0,24.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6521739130434783,0.8695652173913043,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.832240191835721 -10436,ExxonMobil Baytown Refinery,GT42,1977.0,27.6,18.0,24.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6521739130434783,0.8695652173913043,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.832240191835721 -10436,ExxonMobil Baytown Refinery,GT43,1977.0,27.6,18.0,24.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6521739130434783,0.8695652173913043,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.832240191835721 -10436,ExxonMobil Baytown Refinery,GT44,1977.0,27.6,18.0,24.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6521739130434783,0.8695652173913043,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.832240191835721 -10436,ExxonMobil Baytown Refinery,GT45,1988.0,45.7,31.0,35.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6783369803063457,0.7658643326039387,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.832240171426466 -10436,ExxonMobil Baytown Refinery,ST34,1952.0,7.5,7.5,7.5,0.5,WH,All Other,OP,ST,1.0,1952.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,29.753517,-94.997277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10437,Sunray 2,SUN2,2017.0,20.0,20.0,18.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.925,WECC,CISO,CA,34.863356,-116.827627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10438,Sunray 3,SUN3,2017.0,13.8,13.8,13.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9420289855072463,WECC,CISO,CA,34.863356,-116.827627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10446,SEGS IX,GEN1,1990.0,92.0,88.0,64.0,7,SUN,Solar Thermal without Energy Storage,OP,ST,9.0,1990.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9565217391304348,0.6956521739130435,WECC,CISO,CA,35.033,-117.338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10453,LAC Courte Oreilles Hydroelect,U1,1986.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.888333,-91.076944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10453,LAC Courte Oreilles Hydroelect,U2,1986.0,1.6,1.5,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,MRO,MISO,WI,45.888333,-91.076944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10453,LAC Courte Oreilles Hydroelect,U3,1986.0,1.6,1.5,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,MRO,MISO,WI,45.888333,-91.076944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10458,Muck Valley Hydroelectric,GEN1,1988.0,29.9,29.9,29.9,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.976389,-121.255833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10464,ReEnergy Black River,GEN1,1989.0,55.5,55.0,56.0,15,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.990990990990991,1.0,NPCC,NYIS,NY,44.03647,-75.77204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10467,Fourth Branch Hydroelectric Facility,1,1987.0,3.3,3.3,3.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.787575,-73.691676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10472,Puente Hills Energy Recovery,GEN1,1986.0,50.0,45.0,45.0,13,LFG,Landfill Gas,OP,ST,10.0,1986.0, , ,,,,,biomass,biomass,Landfill Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,WECC,CISO,CA,34.0233,-118.0241,Puente_Hills1,OT ST,True,4.0,8.0,-1.0,1.8,1.8,281.6648,5.0,1.0,2.027986,50.0,8.768421023319586,156.57894806077786,2.2848998138098942e-09,8.768420744077332,156.5789606003063,22.431400202351494,#TRUE#,#2017-06-01#,#2050-12-31#,Existing,CISC,CA_CISO,2.5,50.0,50.0,CA,Bio,,#FALSE#,2.5,50, -10475,Expander Turbine,16TG,1981.0,20.0,18.8,18.8,5,BFG,Other Gases,OP,OT,5.0,1981.0, , ,,,,,other,gas,Blast Furnace Gas,Other,0.9400000000000001,0.9400000000000001,RFC,MISO,IN,41.6836,-87.4233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10477,Wisconsin Rapids Pulp Mill,GEN1,1968.0,32.0,27.2,32.0,27.2,BLQ,Wood/Wood Waste Biomass,OS,ST,9.0,1968.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.85,1.0,MRO,MISO,WI,44.3953,-89.826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10477,Wisconsin Rapids Pulp Mill,GEN2,1991.0,40.3,37.5,40.3,37.5,BLQ,Wood/Wood Waste Biomass,OS,ST,9.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9305210918114144,1.0,MRO,MISO,WI,44.3953,-89.826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10479,Mammoth G3,T101,1990.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6455,-118.9096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10479,Mammoth G3,T102,1990.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6455,-118.9096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10479,Mammoth G3,T103,1990.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6455,-118.9096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10480,Mammoth G1,GEN1,1984.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1984.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6451,-118.9143,CONTROL QFS,GEO,True,6.0,16.0,-1.0,6.51,6.51,0.0,0.0,1.0,3.098312,13.4,-1.7614330136050405,78.67720171972239,-6.452350357449825e-06,-1.761307644435815,78.67661663476984,6.679003206992131,#TRUE#,#1982-01-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,9.0,13.4,0.0,CA,Geo,Binary,#FALSE#,9,13.4, -10480,Mammoth G1,GEN2,1984.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1984.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6451,-118.9143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10481,Mammoth G2,1,1990.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6464,-118.9092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10481,Mammoth G2,2,1990.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6464,-118.9092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10481,Mammoth G2,3,1990.0,5.0,3.3,5.0,3.3,GEO,Geothermal,OP,BT,12.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6599999999999999,1.0,WECC,CISO,CA,37.6464,-118.9092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10486,Boise Cascade International Falls,GEN 6,2015.0,52.3,40.0,40.0,1,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,2015.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7648183556405355,0.7648183556405355,MRO,MISO,MN,48.6067,-93.4066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN1,1946.0,2.2,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN2,1946.0,2.2,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN3,1946.0,2.2,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN4,1946.0,2.2,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN5,1946.0,2.2,2.2,2.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN6,1924.0,1.6,1.6,1.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10487,International Falls Power,GEN7,1924.0,1.6,1.6,1.6,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,48.608054,-93.404313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10488,DeRidder Mill,TG,1969.0,61.5,61.5,61.5,16,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1969.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.8606,-93.3756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10490,Upper Beaver Falls Project,1G,1985.0,1.5,1.5,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.883611,-75.428056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10493,Rumford Falls Hydro Facility,GEN1,1918.0,8.1,8.1,8.1,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5486,-70.6283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10493,Rumford Falls Hydro Facility,GEN2,1918.0,8.1,8.1,8.1,4,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5486,-70.6283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10493,Rumford Falls Hydro Facility,GEN3,1926.0,8.8,8.8,8.8,8,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5486,-70.6283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10493,Rumford Falls Hydro Facility,GEN4,1950.0,4.3,4.3,4.3,2,WAT,Conventional Hydroelectric,SB,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5486,-70.6283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10493,Rumford Falls Hydro Facility,GEN5,1954.0,7.6,7.6,7.6,3.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5486,-70.6283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10493,Rumford Falls Hydro Facility,GEN6,1954.0,7.6,7.6,7.6,3.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1954.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.5486,-70.6283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10494,Sheldon Springs Hydroelectric,IG-1,1988.0,1.8,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,NPCC,ISNE,VT,44.9108,-72.9736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10494,Sheldon Springs Hydroelectric,IG-2,1988.0,1.8,1.7,1.7,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,NPCC,ISNE,VT,44.9108,-72.9736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10494,Sheldon Springs Hydroelectric,IG-3,1988.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.9108,-72.9736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10494,Sheldon Springs Hydroelectric,SG-1,1988.0,10.2,9.7,9.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9509803921568627,0.9215686274509804,NPCC,ISNE,VT,44.9108,-72.9736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10494,Sheldon Springs Hydroelectric,SG-2,1988.0,10.2,9.7,9.4,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9509803921568627,0.9215686274509804,NPCC,ISNE,VT,44.9108,-72.9736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10494,Sheldon Springs Hydroelectric,SG-3,1988.0,1.0,1.0,0.9,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,ISNE,VT,44.9108,-72.9736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10495,Rumford Cogeneration,GEN1,1990.0,102.6,85.0,95.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1990.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8284600389863548,0.9259259259259259,NPCC,ISNE,ME,44.5513,-70.5414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10496,Kern River Cogeneration,GTAG,1985.0,75.0,72.0,77.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.96,1.0,WECC,CISO,CA,35.4515,-118.9849,KernRiverCgn1,GT E_7EA,True,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,10.5243675872279,-18.631826260415345,0.012507308249004702,9.278952362069983,10.830178306074323,10.12968194894788,#TRUE#,#1985-05-01#,#2050-12-31#,Existing,CISC,CA_CISO,31.5,70.0,85.0,CA,NG,Industrial,#FALSE#,31.5,70,12.3762838974915 -10496,Kern River Cogeneration,GTBG,1985.0,75.0,72.0,77.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.96,1.0,WECC,CISO,CA,35.4515,-118.9849,KernRiverCgn2,GT E_7EA,True,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,10.5243675872279,-18.631826260415345,0.012507308249004702,9.278952362069983,10.830178306074323,10.12968194894788,#TRUE#,#1985-05-01#,#2050-12-31#,Existing,CISC,CA_CISO,31.5,70.0,85.0,CA,NG,Industrial,#FALSE#,31.5,70,12.3762838974915 -10496,Kern River Cogeneration,GTCG,1985.0,75.0,72.0,77.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.96,1.0,WECC,CISO,CA,35.4515,-118.9849,KernRiverCgn3,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,10.5243675872279,-18.631826260415345,0.012507308249004702,9.278952362069983,10.830178306074323,10.12968194894788,#TRUE#,#1985-05-01#,#2050-12-31#,Existing,CISC,CA_CISO,31.5,70.0,85.0,CA,NG,Industrial,#FALSE#,31.5,70,12.3762838974915 -10496,Kern River Cogeneration,GTDG,1985.0,75.0,72.0,77.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.96,1.0,WECC,CISO,CA,35.4515,-118.9849,KernRiverCgn4,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,70.0,10.5243675872279,-18.631826260415345,0.012507308249004702,9.278952362069983,10.830178306074323,10.12968194894788,#TRUE#,#1985-05-01#,#2050-12-31#,Existing,CISC,CA_CISO,31.5,70.0,85.0,CA,NG,Industrial,#FALSE#,31.5,70,12.3762838974915 -10501,Mid-Set Cogeneration,K100,1989.0,39.1,36.0,34.0,36,NG,Natural Gas Fired Combustion Turbine,OS,GT,4.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9207161125319693,0.8695652173913043,WECC,CISO,CA,35.19456,-119.57097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10503,Wheelabrator Hudson Falls,GEN1,1991.0,14.4,11.5,11.5,2,MSW,Municipal Solid Waste,OP,ST,11.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7986111111111112,0.7986111111111112,NPCC,NYIS,NY,43.3056,-73.591447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10504,Amalgamated Sugar Twin Falls,1500,1948.0,1.5,1.2,1.2,0.2,NG,Natural Gas Steam Turbine,OA,ST,12.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7999999999999999,0.7999999999999999,WECC,IPCO,ID,42.5328,-114.4328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10504,Amalgamated Sugar Twin Falls,2500,1948.0,2.5,2.3,2.3,0.2,NG,Natural Gas Steam Turbine,OA,ST,12.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9199999999999999,0.9199999999999999,WECC,IPCO,ID,42.5328,-114.4328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10504,Amalgamated Sugar Twin Falls,4000,1994.0,6.2,5.0,5.0,0.4,NG,Natural Gas Steam Turbine,OP,ST,9.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8064516129032258,0.8064516129032258,WECC,IPCO,ID,42.5328,-114.4328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10511,Finch Paper,GEN6,1987.0,29.0,23.0,27.0,3,WDL,Wood/Wood Waste Biomass,OP,ST,6.0,1987.0, , ,,,,,biomass,biomass,Wood Waste Liquids excluding Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7931034482758621,0.9310344827586207,NPCC,NYIS,NY,43.3084,-73.6376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10519,Milton Hydro,1,1914.0,0.2,0.1,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,NPCC,ISNE,NH,43.403087,-70.98647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10519,Milton Hydro,2,1914.0,0.4,0.2,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,NPCC,ISNE,NH,43.403087,-70.98647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10519,Milton Hydro,3,1984.0,0.3,0.1,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,1.0,NPCC,ISNE,NH,43.403087,-70.98647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10519,Milton Hydro,4,1987.0,0.5,0.3,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6,1.0,NPCC,ISNE,NH,43.403087,-70.98647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10520,Dayton Hydro,1,1925.0,1.6,1.6,1.6,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IL,41.387792,-88.789656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10520,Dayton Hydro,2,1925.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IL,41.387792,-88.789656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10520,Dayton Hydro,3,1925.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,IL,41.387792,-88.789656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10521,Lederle Laboratories,3A,1998.0,1.5,1.5,1.5,0.1,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,NYIS,NY,41.0772,-74.0181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10521,Lederle Laboratories,GEN1,1991.0,8.3,8.3,8.3,4.5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,41.0772,-74.0181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96106150290397 -10521,Lederle Laboratories,GEN2,1991.0,8.3,8.3,8.3,4.5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,41.0772,-74.0181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.229690862947075 -10521,Lederle Laboratories,GEN3,1990.0,2.2,2.2,2.2,0.1,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,NYIS,NY,41.0772,-74.0181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10521,Lederle Laboratories,TG4,1997.0,3.1,1.4,1.4,0.1,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.4516129032258064,0.4516129032258064,NPCC,NYIS,NY,41.0772,-74.0181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10523,Benton Falls Associates,GEN1,1987.0,3.5,3.3,3.2,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9428571428571428,0.9142857142857144,NPCC,ISNE,ME,44.580175,-69.55452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10523,Benton Falls Associates,GEN2,1987.0,0.7,0.7,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8571428571428572,NPCC,ISNE,ME,44.580175,-69.55452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10525,Craven County Wood Energy LP,1UNI,1990.0,50.0,47.0,47.0,25,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,1990.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.94,0.94,SERC,CPLE,NC,35.130193,-77.167883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10526,Dodge Falls Associates,1UNI,1990.0,5.0,5.0,5.0,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.2081,-72.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10530,Feeder Dam Hydro Plant,1,1924.0,1.0,0.9,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.289874,-73.665834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10530,Feeder Dam Hydro Plant,2,1924.0,1.0,0.9,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.289874,-73.665834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10530,Feeder Dam Hydro Plant,3,1924.0,1.0,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.289874,-73.665834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10530,Feeder Dam Hydro Plant,4,1924.0,1.0,0.9,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,1.0,NPCC,NYIS,NY,43.289874,-73.665834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10530,Feeder Dam Hydro Plant,5,1924.0,1.0,1.0,1.0,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.289874,-73.665834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10531,Beebee Island Hydro Plant,1,1931.0,4.0,4.3,4.4,2.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.9767,-75.9072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10531,Beebee Island Hydro Plant,2,1931.0,5.0,4.3,4.4,2.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.86,0.8800000000000001,NPCC,NYIS,NY,43.9767,-75.9072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10532,Grand River,2-1,1991.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,4.0,1991.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.791028,-84.695682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.124113475177305 -10532,Grand River,2-3,1991.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,4.0,1991.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.791028,-84.695682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.124113475177305 -10532,Grand River,2-4,1996.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,1.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.791028,-84.695682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.124113475177305 -10532,Grand River,2-5,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.791028,-84.695682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.124113475177305 -10538,Dexter Plant,GEN1,1931.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10538,Dexter Plant,GEN2,1931.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10538,Dexter Plant,GEN3,1958.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10538,Dexter Plant,GEN4,1986.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10538,Dexter Plant,GEN5,1986.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10538,Dexter Plant,GEN6,1988.0,1.3,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10538,Dexter Plant,GEN7,1988.0,1.3,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,NYIS,NY,44.003984,-76.041277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10539,Theresa Plant,GEN1,1929.0,1.0,1.0,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,NYIS,NY,44.21742,-75.795173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10539,Theresa Plant,GEN2,1927.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.21742,-75.795173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10540,Diamond Island Plant,GEN1,1914.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.978626,-75.886102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10540,Diamond Island Plant,GEN2,1914.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.978626,-75.886102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10540,Diamond Island Plant,GEN3,1914.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.978626,-75.886102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10544,Hailesboro 4 Plant,GEN1,1922.0,0.8,0.8,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NYIS,NY,44.311681,-75.444992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10544,Hailesboro 4 Plant,GEN2,1922.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.311681,-75.444992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10545,Copenhagen Plant,GEN1,1984.0,1.5,1.4,1.4,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,NPCC,NYIS,NY,43.899745,-75.660268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10545,Copenhagen Plant,GEN2,1984.0,1.5,1.4,1.4,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,NPCC,NYIS,NY,43.899745,-75.660268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10545,Copenhagen Plant,GEN3,1984.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.899745,-75.660268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10546,Beaver Valley Patterson Dam,GEN1,1982.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,9.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.744105,-80.317839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10546,Beaver Valley Patterson Dam,GEN2,1982.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.744105,-80.317839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10546,Beaver Valley Patterson Dam,GEN3,1982.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.744105,-80.317839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10547,Pyrites Plant,GEN1,1949.0,1.2,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,NPCC,NYIS,NY,44.522043,-75.188108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10547,Pyrites Plant,GEN2,1985.0,3.5,3.3,3.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9428571428571428,0.9142857142857144,NPCC,NYIS,NY,44.522043,-75.188108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10547,Pyrites Plant,GEN3,1985.0,3.5,3.3,3.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9428571428571428,0.9142857142857144,NPCC,NYIS,NY,44.522043,-75.188108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10548,San Jose Cogeneration,GEN1,1984.0,6.0,5.6,5.6,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1984.0,6,2030,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333332,0.9333333333333332,WECC,CISO,CA,37.336113,-121.878332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.947486033519553 -10550,High Shoals Hydro (NC),GEN1,1934.0,1.8,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1934.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.394254,-81.201002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10554,Formosa Utility Venture Ltd,BO3,1987.0,36.2,32.0,32.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8839779005524862,0.8839779005524862,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.673471221059696 -10554,Formosa Utility Venture Ltd,ST1,1994.0,33.5,28.5,28.5,14,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8507462686567164,0.8507462686567164,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10554,Formosa Utility Venture Ltd,ST2,1994.0,66.3,58.0,58.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8748114630467572,0.8748114630467572,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10554,Formosa Utility Venture Ltd,ST3,2002.0,55.0,47.3,51.7,14,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.86,0.9400000000000001,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10554,Formosa Utility Venture Ltd,TBG1,1993.0,82.5,72.0,90.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8727272727272728,1.0,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.264441733119188 -10554,Formosa Utility Venture Ltd,TBG2,1993.0,82.5,72.0,90.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8727272727272728,1.0,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.394139034588436 -10554,Formosa Utility Venture Ltd,TBG3,1993.0,82.5,72.0,90.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8727272727272728,1.0,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.697185230667678 -10554,Formosa Utility Venture Ltd,TBG4,1994.0,82.5,72.0,90.0,63,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8727272727272728,1.0,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.505008607862283 -10554,Formosa Utility Venture Ltd,TBG5,1994.0,82.5,72.0,90.0,63,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8727272727272728,1.0,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.932016581355345 -10554,Formosa Utility Venture Ltd,TBG6,2003.0,85.9,72.0,90.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8381839348079161,1.0,TRE,ERCO,TX,28.6917,-96.5417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.494662550116837 -10555,Brassua Hydroelectric Project,1,1989.0,3.6,3.6,3.6,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.6603,-69.812168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10556,Boott Hydropower,GEN1,1985.0,7.5,7.1,6.9,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9466666666666667,0.92,NPCC,ISNE,MA,42.652454,-71.322383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10556,Boott Hydropower,GEN2,1985.0,7.5,7.1,6.9,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9466666666666667,0.92,NPCC,ISNE,MA,42.652454,-71.322383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10556,Boott Hydropower,GEN3,1985.0,7.9,7.5,7.3,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9493670886075949,0.9240506329113923,NPCC,ISNE,MA,42.652454,-71.322383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10560,Jesup Plant,GEN2,1954.0,5.0,4.7,4.7,2.5,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.9400000000000001,SERC,SOCO,GA,31.6593,-81.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10560,Jesup Plant,GEN4,1957.0,7.5,7.0,7.1,3,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1957.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9466666666666667,SERC,SOCO,GA,31.6593,-81.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10560,Jesup Plant,GEN5,1971.0,30.0,27.9,28.2,8,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1971.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9299999999999999,0.94,SERC,SOCO,GA,31.6593,-81.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10560,Jesup Plant,GEN6,1982.0,27.0,25.1,25.4,8,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9296296296296297,0.9407407407407407,SERC,SOCO,GA,31.6593,-81.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10562,Fernandina Plant,GEN4,1950.0,20.0,21.0,21.0,6,WDL,Wood/Wood Waste Biomass,OP,ST,9.0,1950.0, , ,,,,,biomass,biomass,Wood Waste Liquids excluding Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,JEA,FL,30.6612,-81.473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10562,Fernandina Plant,GEN5,2012.0,22.0,21.0,21.0,3.5,WDL,Wood/Wood Waste Biomass,OP,ST,10.0,2012.0, , ,,,,,biomass,biomass,Wood Waste Liquids excluding Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9545454545454546,0.9545454545454546,SERC,JEA,FL,30.6612,-81.473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10567,Algonquin Windsor Locks,GTG,1990.0,40.0,35.0,45.0,15,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.875,1.0,NPCC,ISNE,CT,41.9227,-72.6255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10567,Algonquin Windsor Locks,GTG2,2012.0,15.0,13.0,15.0,9,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8666666666666667,1.0,NPCC,ISNE,CT,41.9227,-72.6255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10567,Algonquin Windsor Locks,STG,1990.0,16.0,16.0,16.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,CT,41.9227,-72.6255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10568,Port Arthur Texas Refinery,GEN1,1988.0,38.4,30.3,35.8,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7890625,0.9322916666666666,SERC,MISO,TX,29.964938,-93.891283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.001670748695723 -10570,Errol Hydroelectric Project,1,1986.0,3.0,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,11.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.786648,-71.12433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10586,Cameron Ridge LLC,EXIS,1984.0,59.6,59.6,59.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,1984.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.075,-118.3158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10593,Agrilectric Power Partners Ltd,GEN1,1984.0,12.1,11.1,11.1,3,AB,Other Waste Biomass,OP,ST,7.0,1984.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9173553719008265,0.9173553719008265,SERC,MISO,LA,30.2012,-93.1269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10597,Ridgetop Energy LLC,WGN1,1984.0,29.0,29.0,29.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,1984.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0697,-118.3167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10603,Ebensburg Power,GEN1,1990.0,57.6,50.0,50.0,20,WC,Conventional Steam Coal,OP,ST,11.0,1990.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8680555555555556,0.8680555555555556,RFC,PJM,PA,40.455,-78.7472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10605,Brunswick Cellulose,GEN3,1954.0,9.2,9.2,9.2,0.1,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,31.175406,-81.521637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10605,Brunswick Cellulose,GEN4,1960.0,50.0,50.0,50.0,0.1,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1960.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,31.175406,-81.521637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10605,Brunswick Cellulose,GEN5,1996.0,13.0,13.0,13.0,0.1,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1996.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,31.175406,-81.521637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10606,Georgia-Pacific Crossett LLC,GEN4,1962.0,25.0,28.0,28.0,2,NG,Natural Gas Steam Turbine,OP,ST,5.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,AR,33.1421,-91.975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10608,Gilman Mill,GEN1,1986.0,2.2,2.1,2.1,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454545,0.9545454545454545,NPCC,ISNE,VT,44.4122,-71.7228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10608,Gilman Mill,GEN2,1966.0,1.0,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,NPCC,ISNE,VT,44.4122,-71.7228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10608,Gilman Mill,GEN3,1941.0,0.8,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,VT,44.4122,-71.7228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10608,Gilman Mill,GEN4,1941.0,0.8,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,ISNE,VT,44.4122,-71.7228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10610,Georgia-Pacific Monticello Paper,GEN1,1968.0,49.3,49.3,49.3,5,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1968.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MS,31.6285,-90.0809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10610,Georgia-Pacific Monticello Paper,GEN2,1968.0,32.2,32.2,32.2,5,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1968.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MS,31.6285,-90.0809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10611,Georgia-Pacific Palatka Operations,GEN4,1965.0,47.8,44.6,45.1,5,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1965.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9330543933054394,0.9435146443514645,SERC,FPL,FL,29.6807,-81.6809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10611,Georgia-Pacific Palatka Operations,GEN8,1993.0,32.0,25.1,25.4,3,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,1993.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.784375,0.79375,SERC,FPL,FL,29.6807,-81.6809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG1,1912.0,3.0,2.9,2.8,1.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,0.9333333333333332,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG10,1970.0,1.2,1.1,1.1,0.7,WAT,Conventional Hydroelectric,SB,HY,6.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG2,1912.0,3.0,2.9,2.8,0.7,WAT,Conventional Hydroelectric,SB,HY,6.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,0.9333333333333332,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG3,1929.0,3.3,3.1,3.0,1.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9393939393939394,0.9090909090909092,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG4,1906.0,0.8,0.8,0.7,0.7,WAT,Conventional Hydroelectric,SB,HY,6.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG5,1906.0,0.8,0.8,0.7,0.7,WAT,Conventional Hydroelectric,SB,HY,6.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG6,1906.0,0.8,0.8,0.7,0.7,WAT,Conventional Hydroelectric,SB,HY,6.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG7,1970.0,1.6,1.5,1.5,0.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG8,1970.0,2.0,1.9,1.8,0.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.9,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",HG9,1970.0,2.0,1.9,1.8,0.7,WAT,Conventional Hydroelectric,OP,HY,6.0,1970.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.9,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",TG10,1966.0,23.0,26.0,26.0,7,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1966.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10613,"Woodland Pulp, LLC",TG11,1970.0,26.8,20.0,20.0,7,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1970.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7462686567164178,0.7462686567164178,NPCC,NBSO,ME,45.1554,-67.4012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10617,CH Resources Beaver Falls,GEN1,1995.0,65.5,49.7,59.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7587786259541985,0.9114503816793893,NPCC,NYIS,NY,43.8861,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10617,CH Resources Beaver Falls,GEN2,1995.0,42.3,30.6,31.8,15,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7234042553191491,0.7517730496453902,NPCC,NYIS,NY,43.8861,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10620,Carthage Energy LLC,GEN1,1991.0,40.9,40.1,45.0,25,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.980440097799511,1.0,NPCC,NYIS,NY,43.9842,-75.6225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10620,Carthage Energy LLC,GEN2,1991.0,22.0,21.0,21.5,10,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9545454545454546,0.9772727272727273,NPCC,NYIS,NY,43.9842,-75.6225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10621,CH Resources Syracuse,GEN1,1994.0,65.5,58.3,73.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8900763358778625,1.0,NPCC,NYIS,NY,43.0667,-76.2246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10621,CH Resources Syracuse,GEN2,1994.0,37.2,28.8,28.8,15,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7741935483870968,0.7741935483870968,NPCC,NYIS,NY,43.0667,-76.2246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10623,Civic Center,GEN1,1989.0,22.1,22.1,22.1,16,NG,Natural Gas Fired Combined Cycle,OS,CT,8.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,LDWP,CA,34.0564,-118.2436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10623,Civic Center,GEN2,1989.0,12.4,1.5,0.5,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.12096774193548387,0.040322580645161255,WECC,LDWP,CA,34.0564,-118.2436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10627,Pine Bluff Mill,1TG1,1958.0,40.0,32.0,31.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,1958.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.775,SERC,MISO,AR,34.221213,-91.907365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10627,Pine Bluff Mill,2TG1,1958.0,20.0,15.9,18.4,7,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,1958.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.795,0.9199999999999999,SERC,MISO,AR,34.221213,-91.907365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10627,Pine Bluff Mill,3TG1,1962.0,25.0,13.0,13.0,7,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1962.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.52,0.52,SERC,MISO,AR,34.221213,-91.907365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10629,Wheelabrator Baltimore Refuse,GEN1,1984.0,60.2,57.0,57.0,10,MSW,Municipal Solid Waste,OP,ST,11.0,1984.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.946843853820598,0.946843853820598,RFC,PJM,MD,39.266041,-76.629653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10629,Wheelabrator Baltimore Refuse,GEN2,2001.0,4.3,4.3,4.3,2,MSW,Municipal Solid Waste,OP,ST,1.0,2001.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,MD,39.266041,-76.629653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10631,CE Leathers,GEN1,1989.0,45.5,42.0,42.0,2,GEO,Geothermal,OP,ST,11.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9230769230769231,0.9230769230769231,WECC,IID,CA,33.1779,-115.565,Leathers,GEO,True,6.0,16.0,-1.0,1.88,1.88,0.0,0.0,1.0,3.098312,42.0,-1.7614287625212464,246.60000581132132,-5.211662529988135e-06,-1.761114403237606,246.59546018942186,6.679001342244092,#TRUE#,#1989-11-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,42.0,42.0,CA,Geo,Double flash,#FALSE#,21,42, -10632,Del Ranch Company,GEN1,1988.0,45.5,42.0,42.0,2,GEO,Geothermal,OP,ST,10.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9230769230769231,0.9230769230769231,WECC,IID,CA,33.1646,-115.616,Del Ranch Company,GEO,True,6.0,16.0,-1.0,1.88,1.88,0.0,0.0,1.0,3.098312,42.0,-1.7614287625212464,246.60000581132132,-5.211662529988135e-06,-1.761114403237606,246.59546018942186,6.679001342244092,#TRUE#,#1990-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,42.0,37.0,CA,Geo,Double flash,#FALSE#,21,42, -10633,Hopewell Cogeneration,GT1,1990.0,101.0,94.1,101.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9316831683168316,1.0,SERC,PJM,VA,37.291667,-77.281111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10633,Hopewell Cogeneration,GT2,1990.0,101.0,94.1,101.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9316831683168316,1.0,SERC,PJM,VA,37.291667,-77.281111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10633,Hopewell Cogeneration,GT3,1990.0,101.0,94.1,101.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9316831683168316,1.0,SERC,PJM,VA,37.291667,-77.281111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10633,Hopewell Cogeneration,ST1,1990.0,96.0,96.0,96.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,PJM,VA,37.291667,-77.281111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10634,Elmore Company,GEN1,1988.0,45.5,49.0,49.0,2,GEO,Geothermal,OP,ST,11.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,IID,CA,33.1777,-115.6033,JJ Elmore,GEO,True,6.0,16.0,-1.0,1.83,1.83,0.0,0.0,1.0,3.098312,42.0,-1.7614287625212464,246.60000581132132,-5.211662529988135e-06,-1.761114403237606,246.59546018942186,6.679001342244092,#TRUE#,#1988-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,42.0,42.0,CA,Geo,Double flash,#FALSE#,21,42, -10642,Covanta Hempstead,GEN1,1989.0,78.6,71.8,71.8,24,MSW,Municipal Solid Waste,OP,ST,4.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9134860050890585,0.9134860050890585,NPCC,NYIS,NY,40.7389,-73.5906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10643,Covanta Essex Company,GEN1,1990.0,34.9,30.0,30.0,5,MSW,Municipal Solid Waste,OP,ST,11.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8595988538681949,0.8595988538681949,RFC,PJM,NJ,40.7376,-74.1255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10643,Covanta Essex Company,GEN2,1990.0,34.9,30.0,30.0,5,MSW,Municipal Solid Waste,OP,ST,11.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8595988538681949,0.8595988538681949,RFC,PJM,NJ,40.7376,-74.1255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10646,Covanta Southeastern Connecticut Company,GEN1,1991.0,18.3,16.3,18.1,3,MSW,Municipal Solid Waste,OP,ST,12.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8907103825136612,0.9890710382513661,NPCC,ISNE,CT,41.475,-72.0688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10649,Bear Mountain Limited,GEN1,1995.0,46.0,46.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.419181,-118.926643,BearMountain_CA,GT LM_LM5000,False,1.0,1.0,-1.0,41.4,41.4,1378.07,208.38,1.0,0.45,48.0,8.71414653890754,136.52073550487475,0.31573799212531023,-8.696501742495773,339.07747861617594,15.218770696363544,#TRUE#,#1995-04-03#,#2050-12-31#,Existing,CIPV,CA_CISO,10.656,48.0,46.5,CA,NG,Areo,#FALSE#,10.656,48, -10650,Badger Creek Limited,GEN1,1991.0,46.0,46.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.483736,-119.029856,Badger_Creek,GT LM_LM5000,False,1.0,1.0,-1.0,41.4,41.4,1378.07,10.12,1.0,0.45,48.0,8.52490719749964,133.5494979456565,0.3088811883456448,-8.507639200310798,331.7073906264997,14.887964701847906,#TRUE#,#1991-04-01#,#2050-12-31#,Existing,CIPV,CA_CISO,10.656,48.0,46.4,CA,NG,Industrial,#FALSE#,10.656,48, -10652,Burney Forest Products,GEN1,1989.0,31.0,31.0,31.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.879719,-121.720342,Burney_Forest,OT ST,True,8.0,6.0,-1.0,1.8,1.8,163.3656,2.9,1.0,2.027986,29.0,-2.85013286367525,408.12084913047147,-0.00015693867465699132,-2.84233650237427,408.02476548669847,13.713917961461906,#TRUE#,#2018-08-17#,#2050-12-31#,Existing,CIPV,CA_CISO,21.42,29.0,25.35,CA,Bio,,#FALSE#,21.42,29, -10656,French Paper Hydro,1,1922.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.8203,-86.2592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10656,French Paper Hydro,2,1927.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.8203,-86.2592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10656,French Paper Hydro,3,1930.0,0.4,0.3,0.3,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,RFC,PJM,MI,41.8203,-86.2592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10656,French Paper Hydro,4,1921.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,MI,41.8203,-86.2592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10661,Collins Pine Project,GEN5,2021.0,5.0,5.0,5.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,2021.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.303422,-121.244431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10671,River Valley,GEN1,1990.0,175.0,161.0,161.0,80,SUB,Conventional Steam Coal,OP,ST,9.0,1990.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.92,0.92,MRO,SWPP,OK,35.1931,-94.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10671,River Valley,GEN2,1990.0,175.0,157.0,157.0,80,SUB,Conventional Steam Coal,OP,ST,11.0,1990.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8971428571428571,0.8971428571428571,MRO,SWPP,OK,35.1931,-94.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10677,CES Placerita Power Plant,UNT2,1988.0,60.0,46.0,50.0,23,NG,Natural Gas Fired Combined Cycle,OS,CT,6.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7666666666666666,0.8333333333333334,WECC,CISO,CA,34.3801,-118.4999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10677,CES Placerita Power Plant,UNT3,1988.0,30.0,23.0,25.0,5,NG,Natural Gas Fired Combined Cycle,OS,CA,6.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7666666666666666,0.8333333333333334,WECC,CISO,CA,34.3801,-118.4999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10678,AES Warrior Run Cogeneration Facility,GEN1,1999.0,229.0,180.0,180.0,72,BIT,Conventional Steam Coal,OP,ST,8.0,1999.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7860262008733625,0.7860262008733625,RFC,PJM,MD,39.595171,-78.745333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10682,Brush Generation Facility,GT1,1990.0,23.8,25.0,30.0,25,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10682,Brush Generation Facility,GT2,1990.0,23.8,25.0,30.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.212566815144765 -10682,Brush Generation Facility,GT3,1994.0,37.0,32.0,38.0,32,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8648648648648649,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10682,Brush Generation Facility,GT4,1999.0,23.8,25.0,30.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.01815218712029 -10682,Brush Generation Facility,GT5,1999.0,23.8,25.0,30.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.801025292929296 -10682,Brush Generation Facility,ST1,1990.0,38.0,30.0,30.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7894736842105263,0.7894736842105263,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10682,Brush Generation Facility,ST2,1994.0,37.0,40.0,40.0,15,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10682,Brush Generation Facility,ST4,2002.0,90.0,90.0,90.0,30,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,PSCO,CO,40.2415,-103.631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10684,Argus Cogen Plant,TG5,1947.0,7.5,7.0,7.0,1,BIT,Conventional Steam Coal,SB,ST,12.0,1947.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9333333333333333,WECC,CISO,CA,35.765,-117.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10684,Argus Cogen Plant,TG8,1978.0,27.5,25.0,25.0,10,BIT,Conventional Steam Coal,OP,ST,7.0,1978.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.9090909090909091,WECC,CISO,CA,35.765,-117.3833,Argus_Cogen8-9,OT ST,True,48.0,108.0,-1.0,1.375,1.375,4554.52,513.15,1.0,3.177179,55.0,-3.5296365570265653,710.8000077034148,-6.733025488980804e-06,-3.5291004096749674,710.7897557423668,15.04864413075847,#TRUE#,#2013-11-15#,#2050-12-31#,Existing,CISC,CA_CISO,27.5,55.0,40.0,CA,Coal,,#FALSE#,27.5,55, -10684,Argus Cogen Plant,TG9,1978.0,27.5,25.0,25.0,10,BIT,Conventional Steam Coal,OP,ST,7.0,1978.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.9090909090909091,WECC,CISO,CA,35.765,-117.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10685,Westend Facility,PINA,1969.0,20.0,15.0,15.0,1,NG,Natural Gas Fired Combustion Turbine,OS,GT,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.75,0.75,WECC,CISO,CA,35.7075,-117.3956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10686,Rapids Energy Center,6,1969.0,12.5,13.1,13.1,4,NG,Natural Gas Steam Turbine,OP,ST,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.234825,-93.537169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10686,Rapids Energy Center,7,1980.0,14.0,9.5,9.5,6,NG,Natural Gas Steam Turbine,OP,ST,1.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6785714285714286,0.6785714285714286,MRO,MISO,MN,47.234825,-93.537169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10686,Rapids Energy Center,HYD,1943.0,1.9,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.42105263157894746,0.42105263157894746,MRO,MISO,MN,47.234825,-93.537169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10687,Black River Hydro Associates,DE1,1984.0,1.6,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,NYIS,NY,43.591246,-75.344207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10687,Black River Hydro Associates,PL1,1984.0,2.2,2.1,2.0,0.1,WAT,Conventional Hydroelectric,OA,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454545,0.9090909090909091,NPCC,NYIS,NY,43.591246,-75.344207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10687,Black River Hydro Associates,RI1,1984.0,1.9,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9473684210526316,0.9473684210526316,NPCC,NYIS,NY,43.591246,-75.344207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10690,ExxonMobil Baton Rouge Turbine Generator,CTG1,1990.0,85.3,73.7,82.5,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8640093786635406,0.9671746776084408,SERC,MISO,LA,30.489722,-91.187222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.201870051091637 -10692,ExxonMobil Baytown Turbine,GEN1,1989.0,39.7,29.0,35.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7304785894206549,0.8816120906801007,TRE,ERCO,TX,29.759124,-95.009648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.434869499921852 -10692,ExxonMobil Baytown Turbine,GEN2,1989.0,39.7,29.0,35.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7304785894206549,0.8816120906801007,TRE,ERCO,TX,29.759124,-95.009648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.434869499921852 -10692,ExxonMobil Baytown Turbine,GEN3,1989.0,39.7,29.0,35.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7304785894206549,0.8816120906801007,TRE,ERCO,TX,29.759124,-95.009648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.434869499921852 -10692,ExxonMobil Baytown Turbine,GEN4,1997.0,98.9,78.0,89.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7886754297269969,0.8998988877654196,TRE,ERCO,TX,29.759124,-95.009648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.43486949044375 -10692,ExxonMobil Baytown Turbine,GEN5,2004.0,163.8,140.0,180.1,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8547008547008547,1.0,TRE,ERCO,TX,29.759124,-95.009648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.434869502502593 -10693,Eastern Correctional Institute,1147,1987.0,1.9,1.3,0.8,0.5,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6842105263157896,0.42105263157894746,RFC,PJM,MD,38.159,-75.704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -10693,Eastern Correctional Institute,1148,1987.0,1.9,1.3,0.8,0.5,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6842105263157896,0.42105263157894746,RFC,PJM,MD,38.159,-75.704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -10693,Eastern Correctional Institute,DG1,1988.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,11.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.159,-75.704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.789473684210526 -10693,Eastern Correctional Institute,DG2,1988.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,SB,IC,11.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.159,-75.704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.789473684210526 -10694,Pepperell Hydro Power Plant,2121,1920.0,0.8,0.8,0.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,ISNE,MA,42.668889,-71.575556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10694,Pepperell Hydro Power Plant,8281,1920.0,0.8,0.8,0.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,ISNE,MA,42.668889,-71.575556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10694,Pepperell Hydro Power Plant,G3,2006.0,0.6,0.6,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8333333333333334,NPCC,ISNE,MA,42.668889,-71.575556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10697,St Francisville Mill,GEN2,1966.0,12.5,16.0,16.5,3,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1966.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.7108,-91.3236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10699,Georgia-Pacific Consr Prods LP-Naheola,GT3,1993.0,47.2,37.4,37.7,3,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1993.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7923728813559321,0.798728813559322,SERC,SOCO,AL,32.2268,-88.0252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10699,Georgia-Pacific Consr Prods LP-Naheola,TG4,2019.0,40.3,29.4,29.7,2.6,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,2019.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7295285359801489,0.7369727047146402,SERC,SOCO,AL,32.2268,-88.0252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10700,Red Shield Envir Old Town Facility,TG4,1965.0,12.5,7.5,12.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1965.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,1.0,NPCC,ISNE,ME,44.918063,-68.63554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10700,Red Shield Envir Old Town Facility,TG6,1987.0,16.0,14.0,14.0,2,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.875,0.875,NPCC,ISNE,ME,44.918063,-68.63554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10706,Burney Creek,GEN1,1990.0,3.0,3.0,3.0,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.8579,-121.7225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10707,Cove Hydroelectric,GEN1,1990.0,5.0,5.0,5.0,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.8713,-121.9487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10708,Lost Creek I,GEN1,1989.0,1.1,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.7576,-121.4145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10709,Ponderosa Bailey Creek,GEN1,1990.0,1.1,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.4579,-121.8427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10718,Karen Avenue Wind Farm,WND,1985.0,11.7,11.7,11.7,0,WND,Onshore Wind Turbine,OP,WT,1.0,1985.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.92194,-116.56222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10720,Kyocera International Inc.(San Diego),0287,2012.0,1.7,1.7,1.7,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.819675,-117.140548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.307022100624389 -10720,Kyocera International Inc.(San Diego),0333,2012.0,2.1,2.1,2.1,1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.819675,-117.140548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.30702424606412 -10725,Selkirk Cogen,GEN1,1992.0,95.2,76.9,105.5,45,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8077731092436975,1.0,NPCC,NYIS,NY,42.5744,-73.8592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10725,Selkirk Cogen,GEN2,1992.0,12.0,,,11,NG,Natural Gas Fired Combined Cycle,SB,CA,4.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,NPCC,NYIS,NY,42.5744,-73.8592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10725,Selkirk Cogen,GEN3,1994.0,95.2,272.3,333.1,45,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,42.5744,-73.8592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10725,Selkirk Cogen,GEN4,1994.0,95.2,,,45,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,NPCC,NYIS,NY,42.5744,-73.8592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10725,Selkirk Cogen,GEN5,1994.0,148.4,,,11,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,NPCC,NYIS,NY,42.5744,-73.8592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10726,Masspower,GEN1,1993.0,90.0,83.0,95.0,64,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9222222222222223,1.0,NPCC,ISNE,MA,42.1575,-72.5225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10726,Masspower,GEN2,1993.0,90.0,83.0,95.0,64,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9222222222222223,1.0,NPCC,ISNE,MA,42.1575,-72.5225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10726,Masspower,GEN3,1993.0,80.9,79.0,90.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9765142150803461,1.0,NPCC,ISNE,MA,42.1575,-72.5225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10728,Barker Lower,GEN1,1986.0,1.5,1.5,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.0867,-70.2297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10735,Barber Dam,GEN1,1990.0,4.1,4.0,4.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9756097560975611,0.9756097560975611,WECC,IPCO,ID,43.561001,-116.121269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10737,Sprague Hydro,GEN1,1989.0,1.2,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,WECC,PACW,OR,42.50136,-120.98944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10740,Magic Dam Hydroelectric Project,GEN1,1989.0,3.0,2.9,2.8,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,0.9333333333333332,WECC,IPCO,ID,43.2547,-114.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10740,Magic Dam Hydroelectric Project,GEN2,1989.0,3.0,2.9,2.8,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,0.9333333333333332,WECC,IPCO,ID,43.2547,-114.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10740,Magic Dam Hydroelectric Project,GEN3,1989.0,3.0,2.9,2.8,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9666666666666667,0.9333333333333332,WECC,IPCO,ID,43.2547,-114.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10743,Morgantown Energy Facility,GEN1,1991.0,68.9,50.0,50.0,20,WC,Conventional Steam Coal,OS,ST,11.0,1991.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7256894049346879,0.7256894049346879,RFC,PJM,WV,39.6397,-79.960556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,1G12,1990.0,5.2,5.2,5.2,1,DFO,Petroleum Liquids,SB,IC,2.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,BP15,1998.0,13.4,13.4,13.4,1,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT10,1990.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT11,1990.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT12,1990.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT13,1990.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT14,1990.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT3,1989.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT4,1989.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT5,1989.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT6,1989.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT7,1989.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT8,1989.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,GT9,1990.0,87.1,88.0,103.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,ST1,1990.0,410.0,410.0,410.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10745,Midland Cogeneration Venture,ST2,1990.0,380.0,380.0,380.0,40,NG,Natural Gas Fired Combined Cycle,SB,CA,9.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,MI,43.5861,-84.2242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10746,Covanta Delaware Valley,GEN1,1991.0,90.0,80.0,80.0,20,MSW,Municipal Solid Waste,OP,ST,4.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8888888888888888,0.8888888888888888,RFC,PJM,PA,39.8265,-75.3882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10748,Marina Landfill Gas,U1C06,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.7131,-121.7686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.63306164612931 -10748,Marina Landfill Gas,U2J18,2018.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OP,IC,7.0,2018.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.7131,-121.7686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.633061297557127 -10748,Marina Landfill Gas,U3J17,2017.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,8.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.7131,-121.7686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.633060954949421 -10748,Marina Landfill Gas,U4J16,2016.0,1.4,1.2,1.2,0.7,LFG,Landfill Gas,OP,IC,7.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,WECC,CISO,CA,36.7131,-121.7686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.633061098373034 -10751,Camden Plant Holdings LLC,GEN1,1993.0,95.2,145.0,144.7,72,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,39.9175,-75.1192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10751,Camden Plant Holdings LLC,GEN2,1993.0,77.7,,,32,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,RFC,PJM,NJ,39.9175,-75.1192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10752,Lachute Hydro Lower,GEN1,1987.0,3.8,3.6,3.5,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9473684210526316,0.9210526315789475,NPCC,NYIS,NY,43.849029,-73.420701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10753,Lachute Hydro Upper,GEN1,1987.0,5.2,4.9,4.8,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9423076923076923,0.923076923076923,NPCC,NYIS,NY,43.843869,-73.431207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10759,Salton Sea Power Gen Co - Unit 3,GEN1,1989.0,53.9,50.0,50.0,2,GEO,Geothermal,OP,ST,2.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.927643784786642,0.927643784786642,WECC,IID,CA,33.158153,-115.638656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN1,1994.0,49.8,41.0,43.0,21,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8232931726907631,0.8634538152610443,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN2,1994.0,11.5,9.0,10.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.782608695652174,0.8695652173913043,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN3,2003.0,60.5,45.0,47.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.743801652892562,0.7768595041322314,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN4,2003.0,60.5,45.0,47.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.743801652892562,0.7768595041322314,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN5,2003.0,60.5,45.0,47.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.743801652892562,0.7768595041322314,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN6,2003.0,60.5,45.0,47.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.743801652892562,0.7768595041322314,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN7,2003.0,27.8,26.0,26.0,13,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.935251798561151,0.935251798561151,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10761,Las Vegas Generating Station,GEN8,2003.0,27.8,26.0,26.0,13,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.935251798561151,0.935251798561151,WECC,NEVP,NV,36.2319,-115.1222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10763,Ormesa III,GBU,2007.0,8.0,5.3,8.0,5.3,GEO,Geothermal,OP,BT,4.0,2007.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6625,1.0,WECC,IID,CA,32.7757,-115.2637,Geo East Mesa 3-1,GEO,True,6.0,16.0,-1.0,12.51,12.51,0.0,0.0,1.0,3.098312,22.0,-1.7614274581512617,129.17140295006203,-6.934088472206049e-06,-1.7612062607282022,129.16970812014478,6.679000773535529,#TRUE#,#1989-05-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,22.0,7.5,CA,Geo,Binary,#FALSE#,11,22, -10763,Ormesa III,GEN1,1989.0,21.6,14.4,21.6,14.4,GEO,Geothermal,OS,ST,5.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666666,1.0,WECC,IID,CA,32.7757,-115.2637,Geo East Mesa 3-2,GEO,True,6.0,16.0,-1.0,13.14,13.14,0.0,0.0,1.0,3.098312,10.0,-1.7614201711394954,58.71420123331075,-5.9933302115492995e-06,-1.761333073353733,58.71389614074483,6.678997590218747,#TRUE#,#2007-03-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,10.0,7.4,CA,Geo,Double flash,#FALSE#,5,10, -10763,Ormesa III,OE301,2020.0,16.0,10.7,16.0,10.7,GEO,Geothermal,OP,BT,4.0,2020.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,IID,CA,32.7757,-115.2637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10764,Blue Lake Power LLC,GEN1,1985.0,13.8,11.5,10.0,10,WDS,Wood/Wood Waste Biomass,OS,ST,7.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333333,0.7246376811594202,WECC,CISO,CA,40.8786,-123.9942,BlueLake,ST-OT,True,8.0,8.0,-1.0,1.8,1.8,77.73948,1.38,1.0,2.027986,13.8,13.159999823365558,1.7598576284028056e-06,-6.485636196090225e-06,13.16012959986389,-0.0006219611166236939,13.16000000668952,#TRUE#,#2017-11-01#,#2050-12-31#,Existing,CIPV,CA_CISO,6.9,13.8,0.61,CA,Bio,,#FALSE#,6.9,13.8, -10765,Indeck Jonesboro Energy Center,GEN1,1987.0,27.5,20.2,20.2,6,WDS,Wood/Wood Waste Biomass,SB,ST,12.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7345454545454545,0.7345454545454545,NPCC,ISNE,ME,44.6781,-67.5477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10766,Indeck West Enfield Energy Center,GEN1,1987.0,27.5,20.4,21.4,6,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7418181818181817,0.7781818181818181,NPCC,ISNE,ME,45.2537,-68.62792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10767,Rio Bravo Fresno,GEN1,1988.0,28.0,24.3,24.3,12.2,WDS,Wood/Wood Waste Biomass,OP,ST,7.0,1988.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8678571428571429,0.8678571428571429,WECC,CISO,CA,36.688915,-119.723218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10771,Hopewell Power Station,1,1992.0,71.1,51.0,51.0,20,WDS,Wood/Wood Waste Biomass,OP,ST,7.0,1992.0,1,2028,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7172995780590719,0.7172995780590719,SERC,PJM,VA,37.297834,-77.282982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.53321700230004 -10772,Rio Bravo Rocklin,GEN1,1989.0,27.9,24.4,24.4,12.2,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8745519713261649,0.8745519713261649,WECC,CISO,CA,38.8319,-121.313652,RioBravoRocklin,OT ST,True,8.0,5.0,-1.0,1.8,1.8,162.2389,2.88,1.0,2.027986,28.8,13.499999926733693,1.2895358731015848e-06,-1.2958329555967565e-06,13.50004583152407,-0.0003618037469284019,13.50000000923228,#TRUE#,#2017-09-07#,#2050-12-31#,Existing,CIPV,CA_CISO,8.64,28.8,17.7,CA,Bio,,#FALSE#,8.64,28.8, -10773,Altavista Power Station,1,1992.0,71.1,51.0,51.0,20,WDS,Wood/Wood Waste Biomass,OP,ST,2.0,1992.0,1,2028,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7172995780590719,0.7172995780590719,SERC,PJM,VA,37.118674,-79.273551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.556171336384289 -10774,Southampton Power Station,1,1992.0,71.1,51.0,51.0,20,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,1992.0,1,2028,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7172995780590719,0.7172995780590719,SERC,PJM,VA,36.6525,-76.9953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.669100907195213 -10776,E F Oxnard Energy Facility,GTG,1990.0,48.5,48.5,48.5,29.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,34.1958,-119.1664,EF_Oxnard,GT,False,1.0,1.0,-1.0,42.93,42.93,1428.999,216.081,1.0,0.45,47.7,-908.3889250751959,43597.12839658572,-19.35732244546773,928.1403371666732,37.23514009006452,10.65938502454414,#TRUE#,#1990-04-13#,#2050-12-31#,Existing,CISC,CA_CISO,47.223,47.7,45.0,CA,NG,Areo,#FALSE#,47.223,47.7,9.157034765333997 -10777,HL Power,GEN1,1989.0,36.2,30.0,30.0,16,WDS,Wood/Wood Waste Biomass,OP,ST,7.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8287292817679557,0.8287292817679557,WECC,CISO,CA,40.368338,-120.264848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10781,Koyle Ranch Hydroelectric Project,GEN1,1983.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.945664,-114.795698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10781,Koyle Ranch Hydroelectric Project,GEN2,1983.0,0.3,0.3,0.3,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.945664,-114.795698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10781,Koyle Ranch Hydroelectric Project,GEN3,1983.0,0.8,0.8,0.7,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,WECC,IPCO,ID,42.945664,-114.795698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10784,Colstrip Energy LP,GEN1,1990.0,46.1,38.0,40.5,23,WC,Conventional Steam Coal,OP,ST,2.0,1990.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.824295010845987,0.878524945770065,WECC,NWMT,MT,45.9752,-106.6547,Colstrip_Energy,OT ST,True,48.0,108.0,-1.0,0.874,0.874,6479.115,387.2,1.0,1.79,41.5,9.647894989733045,25.6686284104267,0.17540214294642809,-0.3377545363796908,159.3051847108514,10.650541094349853,#TRUE#,#1990-02-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,17.48,41.5,40.0,MT,Coal,,#FALSE#,17.48,41.5, -10787,Piedmont Hydro Power Project,GEN1,1989.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.702021,-82.462102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10789,Sabine River Operations,GEN1,1987.0,89.9,82.0,98.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9121245828698553,1.0,SERC,MISO,TX,30.0552,-93.7579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10789,Sabine River Operations,GEN3,1948.0,6.2,5.0,5.0,2.5,NG,Natural Gas Fired Combined Cycle,OS,CA,1.0,1948.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8064516129032258,0.8064516129032258,SERC,MISO,TX,30.0552,-93.7579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10789,Sabine River Operations,GT1A,2001.0,180.0,160.0,175.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,0.9722222222222222,SERC,MISO,TX,30.0552,-93.7579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10789,Sabine River Operations,GT1B,2001.0,180.0,160.0,175.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,0.9722222222222222,SERC,MISO,TX,30.0552,-93.7579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10789,Sabine River Operations,ST1A,2001.0,145.0,100.0,100.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6896551724137931,0.6896551724137931,SERC,MISO,TX,30.0552,-93.7579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10790,Victoria Texas Plant,GEN1,1987.0,102.4,75.0,88.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.732421875,0.859375,TRE,ERCO,TX,28.675088,-96.956014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.121323444998048 -10795,Camden South Carolina,GEN3,1993.0,19.0,17.5,18.0,1,NG,Natural Gas Steam Turbine,OP,ST,7.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9210526315789473,0.9473684210526316,SERC,CPLE,SC,34.2338,-80.6558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10798,Fries Hydroelectric Project,GEN1,1933.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1933.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.715103,-80.985621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10798,Fries Hydroelectric Project,GEN2,1933.0,0.8,0.8,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1933.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,RFC,PJM,VA,36.715103,-80.985621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10798,Fries Hydroelectric Project,GEN3,1933.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1933.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,36.715103,-80.985621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10798,Fries Hydroelectric Project,GEN4,1981.0,2.4,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,RFC,PJM,VA,36.715103,-80.985621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10799,Pelzer Upper,GEN1,1989.0,2.0,1.9,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.9,SERC,DUK,SC,34.642371,-82.45444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10800,Pelzer Lower,GEN1,1989.0,3.3,3.1,3.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9393939393939394,0.9090909090909092,SERC,DUK,SC,34.616522,-82.447913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10801,Ware Shoals Hydro Project,GEN1,1939.0,3.0,3.0,3.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.404006,-82.233581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10801,Ware Shoals Hydro Project,GEN2,1986.0,3.2,3.0,3.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,SERC,DUK,SC,34.404006,-82.233581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10803,Ogdensburg Power,GEN3,1993.0,26.9,23.0,25.0,5,NG,Natural Gas Steam Turbine,OS,ST,10.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8550185873605949,0.9293680297397771,NPCC,NYIS,NY,44.7258,-75.4417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10805,Kenilworth Energy Facility,GEN1,1989.0,22.0,20.0,22.0,12,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909091,1.0,RFC,PJM,NJ,40.6781,-74.2744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10805,Kenilworth Energy Facility,GEN2,1989.0,6.8,4.5,5.5,1.2,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.661764705882353,0.8088235294117647,RFC,PJM,NJ,40.6781,-74.2744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10806,Crystal Springs,GEN1,1988.0,2.3,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,0.8695652173913044,WECC,IPCO,ID,42.622513,-114.50093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10807,Dietrich Drop,GEN1,1990.0,4.8,4.8,4.8,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.836046,-114.267952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10808,Low Line Rapids,GEN1,1990.0,2.8,2.7,2.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9642857142857144,0.9285714285714286,WECC,IPCO,ID,42.47711,-114.380118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10809,Rock Creek II,GEN1,1990.0,1.9,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9473684210526316,0.9473684210526316,WECC,IPCO,ID,42.620724,-114.531489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10817,Port Leyden Hydroelectric Project,GEN1,1985.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.583611,-75.339167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10817,Port Leyden Hydroelectric Project,GEN2,1985.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.583611,-75.339167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10819,Ada Cogeneration LP,GEN1,1990.0,23.0,22.0,23.0,14,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9565217391304348,1.0,RFC,MISO,MI,42.962672,-85.494071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.321357090390956 -10819,Ada Cogeneration LP,GEN2,1990.0,10.1,8.0,9.0,3,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7920792079207921,0.8910891089108911,RFC,MISO,MI,42.962672,-85.494071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10822,Grayling Generating Station,GEN1,1992.0,38.6,38.6,38.6,10,WDS,Wood/Wood Waste Biomass,OP,ST,5.0,1992.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,44.604921,-84.690578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,G101,1995.0,26.0,22.0,27.0,8,DFO,Petroleum Liquids,SB,GT,8.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8461538461538461,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,G201,1995.0,26.0,22.0,27.0,8,DFO,Petroleum Liquids,SB,GT,8.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8461538461538461,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,H101,2001.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,H201,2001.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,PV101,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,S101,1998.0,17.5,9.0,17.5,1,OBG,Other Waste Biomass,OP,ST,7.0,1998.0, , ,,,,,biomass,biomass,Other Biomass Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5142857142857142,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,WT101,2009.0,0.6,0.6,0.6,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10823,Deer Island Treatment Plant,WT102,2009.0,0.6,0.6,0.6,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.353333,-70.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10824,Oakdale Power Station,OAKD,1951.0,3.5,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1951.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,NPCC,ISNE,MA,42.38697,-71.802462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10825,Cosgrove Intake and Power Station,UNI1,1969.0,1.6,1.0,1.0,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,NPCC,ISNE,MA,42.40439,-71.687218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10825,Cosgrove Intake and Power Station,UNI2,1969.0,1.6,1.0,1.0,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1969.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,NPCC,ISNE,MA,42.40439,-71.687218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10836,Woodland Biomass Power Ltd,GEN1,1989.0,28.0,25.0,25.0,4,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8928571428571429,0.8928571428571429,WECC,CISO,CA,38.6905,-121.7371,Woodland_Bio,ST-OT,True,8.0,8.0,-1.0,1.8,1.8,157.7323,2.8,1.0,2.027986,28.0,12.299999854741511,2.829447701728862e-06,-4.406199266426478e-06,12.300171960811797,-0.0015915752484395584,12.300000007809086,#TRUE#,#1989-08-31#,#2050-12-31#,Existing,CIPV,CA_CISO,12.6,28.0,25.0,CA,Bio,,#FALSE#,12.6,28, -10837,Covanta Mendota,GEN1,1989.0,28.0,25.0,25.0,12,WDS,Wood/Wood Waste Biomass,OS,ST,7.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8928571428571429,0.8928571428571429,WECC,CISO,CA,36.755896,-120.365422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10838,"NE Renewable Springfield, LLC",GEN1,1987.0,20.0,16.1,16.3,14,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.805,0.8150000000000001,NPCC,ISNE,NH,43.442871,-72.056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10839,"NE Renewable Whitefield, LLC",GEN1,1988.0,19.9,17.0,17.5,10,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,1988.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8542713567839196,0.8793969849246231,NPCC,ISNE,NH,44.358047,-71.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10840,Covanta Delano Energy,GEN1,1990.0,31.8,27.0,27.0,22,WDS,Wood/Wood Waste Biomass,OS,ST,6.0,1990.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8490566037735849,0.8490566037735849,WECC,CISO,CA,35.7144,-119.2337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10840,Covanta Delano Energy,GEN2,1993.0,25.2,22.0,22.0,18,WDS,Wood/Wood Waste Biomass,OS,ST,7.0,1993.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.873015873015873,0.873015873015873,WECC,CISO,CA,35.7144,-119.2337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10848,Walden,GEN1,1986.0,1.2,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,NPCC,NYIS,NY,41.55998,-74.195154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10848,Walden,GEN2,1986.0,0.8,0.8,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NYIS,NY,41.55998,-74.195154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10848,Walden,GEN3,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,41.55998,-74.195154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10849,Silver Bay Power,GEN1,1955.0,50.0,36.0,36.0,10,SUB,Conventional Steam Coal,OS,ST,10.0,1955.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.72,MRO,MISO,MN,47.286573,-91.260531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10849,Silver Bay Power,GEN2,1962.0,81.6,69.0,69.0,10,SUB,Conventional Steam Coal,OS,ST,1.0,1962.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8455882352941178,0.8455882352941178,MRO,MISO,MN,47.286573,-91.260531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10853,Center Falls,1,1984.0,0.4,0.3,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,43.096677,-73.460172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10853,Center Falls,2,1984.0,0.4,0.3,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,43.096677,-73.460172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10853,Center Falls,3,1984.0,0.3,0.2,0.3,0.1,WAT,Conventional Hydroelectric,OS,HY,1.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,1.0,NPCC,NYIS,NY,43.096677,-73.460172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10855,Cargill Corn Milling Division,GEN1,1952.0,20.0,18.7,18.8,5,NG,Natural Gas Steam Turbine,SB,ST,12.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9349999999999999,0.9400000000000001,MRO,MISO,IA,41.1386,-92.6467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10855,Cargill Corn Milling Division,GEN2,1952.0,20.0,18.0,18.0,5,NG,Natural Gas Steam Turbine,OP,ST,12.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,MRO,MISO,IA,41.1386,-92.6467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10860,Archer Daniels Midland Clinton,1A,2009.0,75.0,75.0,75.0,0,SUB,Conventional Steam Coal,OP,ST,2.0,2009.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.8206,-90.2097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10860,Archer Daniels Midland Clinton,2A,2009.0,105.0,105.0,105.0,20,SUB,Conventional Steam Coal,OP,ST,4.0,2009.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.8206,-90.2097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10861,Archer Daniels Midland Des Moines,GEN1,1988.0,7.9,7.9,7.9,0.8,SUB,Conventional Steam Coal,OP,ST,5.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.624438,-93.584515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -10862,Archer Daniels Midland Lincoln,GEN1,1988.0,7.9,7.9,7.9,0.8,SUB,Conventional Steam Coal,OP,ST,7.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,NE,40.866463,-96.614486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -10863,Archer Daniels Midland Mankato,GEN1,1987.0,6.1,6.2,6.2,0.8,SUB,Conventional Steam Coal,OP,ST,10.0,1987.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,44.187066,-93.99242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -10864,Archer Daniels Midland Cedar Rapids,GEN1,1988.0,31.0,31.0,31.0,0,SUB,Conventional Steam Coal,OP,ST,11.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10864,Archer Daniels Midland Cedar Rapids,GEN2,1988.0,31.0,31.0,31.0,0,SUB,Conventional Steam Coal,OP,ST,11.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10864,Archer Daniels Midland Cedar Rapids,GEN3,1988.0,31.0,31.0,31.0,0,SUB,Conventional Steam Coal,OP,ST,11.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10864,Archer Daniels Midland Cedar Rapids,GEN4,1988.0,31.0,31.0,31.0,0,SUB,Conventional Steam Coal,OP,ST,11.0,1988.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10864,Archer Daniels Midland Cedar Rapids,GEN5,1995.0,31.0,31.0,31.0,0,SUB,Conventional Steam Coal,OP,ST,2.0,1995.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10864,Archer Daniels Midland Cedar Rapids,GEN6,2000.0,101.1,105.0,105.0,20,SUB,Conventional Steam Coal,OP,ST,11.0,2000.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10864,Archer Daniels Midland Cedar Rapids,GEN7,2016.0,38.5,35.0,41.0,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,1.0,MRO,MISO,IA,41.9221,-91.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.138844929929101 -10865,Archer Daniels Midland Decatur,GEN2,1987.0,31.0,31.0,31.0,0,BIT,Conventional Steam Coal,OP,ST,4.0,1987.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10865,Archer Daniels Midland Decatur,GEN3,1987.0,31.0,31.0,31.0,0,BIT,Conventional Steam Coal,OP,ST,4.0,1987.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10865,Archer Daniels Midland Decatur,GEN4,1987.0,31.0,31.0,31.0,0,BIT,Conventional Steam Coal,OP,ST,5.0,1987.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10865,Archer Daniels Midland Decatur,GEN5,1987.0,31.0,31.0,31.0,0,BIT,Conventional Steam Coal,OP,ST,12.0,1987.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10865,Archer Daniels Midland Decatur,GEN6,1994.0,31.0,31.0,31.0,0,BIT,Conventional Steam Coal,OP,ST,9.0,1994.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10865,Archer Daniels Midland Decatur,GEN7,1997.0,75.0,75.0,75.0,0,BIT,Conventional Steam Coal,OP,ST,4.0,1997.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10865,Archer Daniels Midland Decatur,GEN8,2005.0,105.0,105.0,105.0,32,BIT,Conventional Steam Coal,OP,ST,4.0,2005.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,39.870074,-88.890756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10866,Archer Daniels Midland Peoria,GEN6,1988.0,18.0,15.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,SERC,MISO,IL,40.677188,-89.604911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10866,Archer Daniels Midland Peoria,GEN7,1988.0,18.0,15.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,SERC,MISO,IL,40.677188,-89.604911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10867,Primient Decatur Plant Cogen,GEN1,1989.0,64.8,62.0,62.0,3,NG,Natural Gas Steam Turbine,OP,ST,1.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9567901234567902,0.9567901234567902,SERC,MISO,IL,39.84919,-88.931944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10869,Biomass One LP,BBC,1985.0,10.0,8.5,8.5,6,WDS,Wood/Wood Waste Biomass,SB,ST,12.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.85,0.85,WECC,PACW,OR,42.436111,-122.849958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10869,Biomass One LP,GE,1985.0,15.0,14.0,14.0,5,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9333333333333333,WECC,PACW,OR,42.436111,-122.849958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10869,Biomass One LP,GE-2,2009.0,15.0,14.0,14.0,5,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,2009.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9333333333333333,WECC,PACW,OR,42.436111,-122.849958,BiomassOneGE2,OT ST,True,8.0,6.0,-1.0,1.8,1.8,84.49943,1.5,1.0,2.027986,20.001,12.803895743634287,1.4315909445224173,0.5070574769533972,0.642477112000119,64.21062700864158,12.945867226235952,#TRUE#,#1985-12-01#,#2026-12-31#,Existing,PACW,NW_PACW,4.5,20.001,9.9,OR,,,#FALSE#,4.5,15, -10870,Hazelton,GEN1,1989.0,72.5,58.9,58.9,12,NG,Natural Gas Fired Combustion Turbine,SB,GT,1.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8124137931034483,0.8124137931034483,RFC,PJM,PA,40.928161,-76.040929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10870,Hazelton,GEN2,2002.0,33.0,28.3,29.8,12,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8575757575757577,0.9030303030303031,RFC,PJM,PA,40.928161,-76.040929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10870,Hazelton,GEN3,2002.0,33.0,29.3,31.0,12,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8878787878787879,0.9393939393939394,RFC,PJM,PA,40.928161,-76.040929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10870,Hazelton,GEN4,2002.0,33.0,29.1,31.2,12,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8818181818181818,0.9454545454545454,RFC,PJM,PA,40.928161,-76.040929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10872,Kings Falls Hydroelectric,1,1988.0,1.6,0.2,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.125,0.0625,NPCC,NYIS,NY,43.917267,-75.633822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10873,Coso Finance Partners,GEN1,1987.0,32.2,27.5,27.5,3,GEO,Geothermal,OP,ST,7.0,1987.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8540372670807452,0.8540372670807452,WECC,CISO,CA,36.0372,-117.7981,Coso1_Navy1,GEO,True,6.0,16.0,-1.0,0.25,0.25,0.0,0.0,1.0,3.098312,19.0,-1.7614317624917646,111.55720252087346,-6.813770041001722e-06,-1.7612440431262324,111.5559603365137,6.67900265753493,#TRUE#,#1987-07-13#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,19.0,25.0,CA,Geo,Binary,#FALSE#,9.5,19, -10873,Coso Finance Partners,GEN2,1988.0,30.0,27.0,27.0,3,GEO,Geothermal,OP,ST,11.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,WECC,CISO,CA,36.0372,-117.7981,Coso2_Navy1,GEO,True,6.0,16.0,-1.0,0.29,0.29,0.0,0.0,1.0,3.098312,19.0,-1.7614317624917646,111.55720252087346,-6.813770041001722e-06,-1.7612440431262324,111.5559603365137,6.67900265753493,#TRUE#,#1987-07-13#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,19.0,25.0,CA,Geo,Binary,#FALSE#,9.5,19, -10873,Coso Finance Partners,GEN3,1988.0,30.0,26.7,27.2,3,GEO,Geothermal,OP,ST,11.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.89,0.9066666666666666,WECC,CISO,CA,36.0372,-117.7981,Coso3_Navy1,GEO,True,6.0,16.0,-1.0,0.33,0.33,0.0,0.0,1.0,3.098312,19.0,-1.7614317624917646,111.55720252087346,-6.813770041001722e-06,-1.7612440431262324,111.5559603365137,6.67900265753493,#TRUE#,#1987-07-13#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,19.0,25.0,CA,Geo,Binary,#FALSE#,9.5,19, -10874,Coso Power Developers,GEN4,1989.0,30.0,30.0,30.0,3,GEO,Geothermal,OP,ST,11.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,36.0192,-117.7917,Coso4_Navy2,GEO,True,6.0,16.0,-1.0,14.01,14.01,0.0,0.0,1.0,3.098312,19.0,-1.7614317624917646,111.55720252087346,-6.813770041001722e-06,-1.7612440431262324,111.5559603365137,6.67900265753493,#TRUE#,#1989-12-23#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,19.0,29.0,CA,Geo,Binary,#FALSE#,9.5,19, -10874,Coso Power Developers,GEN5,1989.0,30.0,23.4,27.0,3,GEO,Geothermal,OP,ST,12.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7799999999999999,0.9,WECC,CISO,CA,36.0192,-117.7917,Coso5_Navy2,GEO,True,6.0,16.0,-1.0,0.79,0.79,0.0,0.0,1.0,3.098312,19.0,-1.7614317624917646,111.55720252087346,-6.813770041001722e-06,-1.7612440431262324,111.5559603365137,6.67900265753493,#TRUE#,#1989-12-23#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,19.0,29.0,CA,Geo,Binary,#FALSE#,9.5,19, -10874,Coso Power Developers,GEN6,1989.0,30.0,26.9,29.0,3,GEO,Geothermal,OP,ST,12.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8966666666666666,0.9666666666666667,WECC,CISO,CA,36.0192,-117.7917,Coso6_Navy2,GEO,True,6.0,16.0,-1.0,0.67,0.67,0.0,0.0,1.0,3.098312,19.0,-1.7614317624917646,111.55720252087346,-6.813770041001722e-06,-1.7612440431262324,111.5559603365137,6.67900265753493,#TRUE#,#1989-12-23#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,19.0,29.0,CA,Geo,Binary,#FALSE#,9.5,19, -10875,Coso Energy Developers,GEN7,1988.0,30.0,21.8,26.1,3,GEO,Geothermal,OP,ST,12.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7266666666666667,0.8700000000000001,WECC,CISO,CA,36.0019,-117.7886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10875,Coso Energy Developers,GEN8,1988.0,30.0,22.5,28.5,3,GEO,Geothermal,OP,ST,12.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.75,0.95,WECC,CISO,CA,36.0019,-117.7886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10875,Coso Energy Developers,GEN9,1989.0,30.0,23.5,28.7,3,GEO,Geothermal,OP,ST,8.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7833333333333333,0.9566666666666667,WECC,CISO,CA,36.0019,-117.7886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10878,Salton Sea Power Gen Co Unit 1,EE11,1982.0,10.0,10.0,10.0,2,GEO,Geothermal,OP,ST,7.0,1982.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,IID,CA,33.158,-115.6475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10879,Salton Sea Power Gen Co - Unit 2,GEN1,1990.0,11.5,17.0,17.0,2,GEO,Geothermal,OP,ST,3.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,IID,CA,33.1589,-115.6455,Salton Sea Unit 2 G1,GEO,True,6.0,16.0,-1.0,0.23,0.23,0.0,0.0,1.0,3.098312,10.0,-1.7614201711394954,58.71420123331075,-5.9933302115492995e-06,-1.761333073353733,58.71389614074483,6.678997590218747,#TRUE#,#1989-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,10.0,10.0,CA,Geo,Double flash,#FALSE#,5,10, -10879,Salton Sea Power Gen Co - Unit 2,GEN2,1990.0,5.0,4.0,4.0,2,GEO,Geothermal,OP,ST,3.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,WECC,IID,CA,33.1589,-115.6455,Salton Sea Unit 2 G2,GEO,True,6.0,16.0,-1.0,5.61,5.61,0.0,0.0,1.0,3.098312,5.0,-1.7614401449632362,29.357200518041328,-4.685583703128912e-06,-1.7614061523892883,29.357141304868676,6.67900633889875,#TRUE#,#1990-01-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,5.0,3.9,CA,Geo,Double flash,#FALSE#,2.5,5, -10879,Salton Sea Power Gen Co - Unit 2,GEN3,1990.0,3.5,2.1,2.1,1,GEO,Geothermal,OP,ST,3.0,1990.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6000000000000001,0.6000000000000001,WECC,IID,CA,33.1589,-115.6455,Salton Sea Unit 2 G3,GEO,True,6.0,16.0,-1.0,0.42,0.42,0.0,0.0,1.0,3.098312,5.0,-1.7614401449632362,29.357200518041328,-4.685583703128912e-06,-1.7614061523892883,29.357141304868676,6.67900633889875,#TRUE#,#1989-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,5.0,3.9,CA,Geo,Double flash,#FALSE#,2.5,5, -10880,Bidwell Ditch Project,GEN1,1987.0,1.8,1.8,1.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.8014,-121.4481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10881,Roaring Creek Water Power,GEN1,1986.0,2.0,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.882061,-121.948353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10882,Hatchet Creek Project,GEN1,1986.0,6.8,6.8,6.8,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.874144,-121.920428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10883,Medical Area Total Energy Plant,CT1,2003.0,12.5,12.5,12.5,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.317393163815408 -10883,Medical Area Total Energy Plant,CT2,2003.0,12.5,12.5,12.5,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.317393163815408 -10883,Medical Area Total Energy Plant,CT3,2017.0,13.8,13.5,14.9,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9782608695652173,1.0,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.317393153969437 -10883,Medical Area Total Energy Plant,DEG1,1985.0,6.8,6.0,6.7,2,DFO,Petroleum Liquids,SB,IC,6.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.9852941176470589,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.357907253269918 -10883,Medical Area Total Energy Plant,DEG2,1985.0,6.8,6.0,6.7,2,DFO,Petroleum Liquids,SB,IC,7.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.9852941176470589,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.357907253269918 -10883,Medical Area Total Energy Plant,DEG3,1985.0,6.8,6.0,6.7,2,DFO,Petroleum Liquids,SB,IC,10.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.9852941176470589,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.357907253269918 -10883,Medical Area Total Energy Plant,DEG4,1985.0,6.8,6.0,6.7,2,DFO,Petroleum Liquids,SB,IC,10.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.9852941176470589,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.357907253269918 -10883,Medical Area Total Energy Plant,DEG5,1985.0,6.8,6.0,6.7,2,DFO,Petroleum Liquids,SB,IC,11.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.9852941176470589,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.357907253269918 -10883,Medical Area Total Energy Plant,STG2,1980.0,11.0,11.0,10.3,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9363636363636364,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10883,Medical Area Total Energy Plant,STG3,1980.0,11.0,11.0,10.3,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1980.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9363636363636364,NPCC,ISNE,MA,42.33685,-71.10815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10884,Olive View Medical Center,CTC1,1987.0,2.8,2.7,2.7,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9642857142857144,0.9642857142857144,WECC,LDWP,CA,34.326242,-118.44477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.636440998487142 -10884,Olive View Medical Center,CTC2,1987.0,2.8,2.7,2.7,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9642857142857144,0.9642857142857144,WECC,LDWP,CA,34.326242,-118.44477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.636440998487142 -10902,Victory Mills,GEN1,1986.0,1.7,1.6,1.6,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9411764705882354,0.9411764705882354,NPCC,NYIS,NY,42.9197,-76.5477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10903,Lockport Powerhouse,1GEN,1999.0,8.0,6.0,6.0,2.5,WAT,Conventional Hydroelectric,OA,HY,2.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,RFC,PJM,IL,41.5697,-88.0789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -10903,Lockport Powerhouse,2GEN,2001.0,8.0,6.0,6.0,2.5,WAT,Conventional Hydroelectric,OA,HY,12.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,RFC,PJM,IL,41.5697,-88.0789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50002,Pittsfield Generating LP,GEN1,1990.0,40.7,36.7,45.0,25,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9017199017199017,1.0,NPCC,ISNE,MA,42.4564,-73.2181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50002,Pittsfield Generating LP,GEN2,1990.0,40.7,35.2,44.1,25,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8648648648648649,1.0,NPCC,ISNE,MA,42.4564,-73.2181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50002,Pittsfield Generating LP,GEN3,1990.0,40.7,38.2,45.2,25,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9385749385749386,1.0,NPCC,ISNE,MA,42.4564,-73.2181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50002,Pittsfield Generating LP,GEN4,1990.0,53.4,47.6,51.5,6,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8913857677902622,0.9644194756554307,NPCC,ISNE,MA,42.4564,-73.2181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50003,Chalk Cliff Limited,GEN1,1990.0,46.0,46.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.0968,-119.4299,Chalk_Cliff,GT LM_LM5000,False,1.0,1.0,-1.0,41.4,41.4,1378.07,208.38,1.0,0.45,46.0,-287.05517633452376,13462.000012819248,-6.510443967841807,304.7526927311884,13.50982854808277,9.15027352546505,#TRUE#,#1990-03-20#,#2050-12-31#,Existing,CIPV,CA_CISO,45.0,46.0,47.2,CA,NG,Areo,#FALSE#,45,46,10.013772409017465 -50006,Linden Cogen Plant,GTG1,1992.0,95.2,98.7,99.8,47.6,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,GTG2,1992.0,95.2,98.7,99.8,47.6,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,GTG3,1992.0,95.2,98.7,99.8,47.6,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,GTG4,1992.0,95.2,98.7,99.8,47.6,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,GTG5,1992.0,95.2,98.7,99.8,47.6,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,GTG6,2002.0,212.5,162.6,192.5,80,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7651764705882352,0.9058823529411765,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,STG1,1992.0,95.2,98.7,99.7,25,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,STG2,1992.0,95.2,98.7,99.7,25,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50006,Linden Cogen Plant,STG3,1992.0,95.2,98.6,99.6,25,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,NYIS,NJ,40.6322,-74.2156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN1,1912.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN2,1912.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN3,1912.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN4,1912.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN5,1912.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN6,1912.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN7,1917.0,1.9,1.9,1.9,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50010,Glen Ferris Hydro,GEN8,1917.0,1.9,1.9,1.9,0.7,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,38.1483,-81.2147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50011,Hawks Nest Hydro,GEN1,1936.0,25.5,24.2,23.5,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9490196078431372,0.9215686274509804,RFC,PJM,WV,38.1478,-81.1753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50011,Hawks Nest Hydro,GEN2,1936.0,25.5,24.2,23.5,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9490196078431372,0.9215686274509804,RFC,PJM,WV,38.1478,-81.1753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50011,Hawks Nest Hydro,GEN3,1936.0,25.5,24.2,23.5,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9490196078431372,0.9215686274509804,RFC,PJM,WV,38.1478,-81.1753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50011,Hawks Nest Hydro,GEN4,1936.0,25.5,24.2,23.5,2,WAT,Conventional Hydroelectric,OP,HY,6.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9490196078431372,0.9215686274509804,RFC,PJM,WV,38.1478,-81.1753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50026,Corpus Refinery,FR6,1988.0,47.0,32.0,41.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6808510638297872,0.8723404255319149,TRE,ERCO,TX,27.8322,-97.5281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.246368224098369 -50028,Plant 31 Paper Mill,GEN5,1964.0,25.0,25.0,25.0,3,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1964.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,32.486787,-92.149597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50028,Plant 31 Paper Mill,GEN6,1977.0,20.0,20.0,20.0,3,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,32.486787,-92.149597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50028,Plant 31 Paper Mill,GEN7,2016.0,39.2,32.0,39.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8163265306122448,0.9948979591836734,SERC,MISO,LA,32.486787,-92.149597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.47867993836288 -50031,Mt Ida Hydroelectric,3983,1992.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.721326,-73.680608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50031,Mt Ida Hydroelectric,3986,1992.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.721326,-73.680608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50034,Valley Falls Hydroelectric Facility,GEN1,1985.0,2.5,2.5,2.5,0.4,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.9044,-73.5625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50035,MMWAC Resource Recovery Facility,ST1,1992.0,5.0,2.7,2.7,1.9,MSW,Municipal Solid Waste,OP,ST,6.0,1992.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.54,0.54,NPCC,ISNE,ME,44.067792,-70.260831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.7656050955414 -50036,New Martinsville Hannibal Hydro,UNT1,1988.0,18.7,9.5,9.5,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5080213903743316,0.5080213903743316,RFC,PJM,WV,39.6672,-80.8642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50036,New Martinsville Hannibal Hydro,UNT2,1988.0,18.7,9.5,9.5,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5080213903743316,0.5080213903743316,RFC,PJM,WV,39.6672,-80.8642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50037,Rio Bravo Hydro Project,UNT1,1989.0,7.0,6.7,6.4,1.5,WAT,Conventional Hydroelectric,SB,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9571428571428572,0.9142857142857144,WECC,CISO,CA,35.43,-118.8222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50037,Rio Bravo Hydro Project,UNT2,1989.0,7.0,6.7,6.4,1.5,WAT,Conventional Hydroelectric,SB,HY,6.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9571428571428572,0.9142857142857144,WECC,CISO,CA,35.43,-118.8222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50041,Norton Powerhouse,GEN1,1939.0,2.5,2.5,2.5,0.4,NG,Natural Gas Steam Turbine,OP,ST,1.0,1939.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.309555,-71.805218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.086499162852995 -50041,Norton Powerhouse,GEN2,1954.0,3.1,3.1,3.1,0.4,NG,Natural Gas Steam Turbine,OP,ST,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.309555,-71.805218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.294491890639485 -50043,Houston Chemical Complex Battleground,GT1,1982.0,104.2,66.0,74.0,52,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1982.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6333973128598849,0.710172744721689,TRE,ERCO,TX,29.7314,-95.0839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.67480240690878 -50043,Houston Chemical Complex Battleground,GT2,1982.0,104.2,66.0,74.0,52,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1982.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6333973128598849,0.710172744721689,TRE,ERCO,TX,29.7314,-95.0839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.9391485701957 -50043,Houston Chemical Complex Battleground,GT3,2005.0,84.9,69.0,78.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8127208480565371,0.9187279151943463,TRE,ERCO,TX,29.7314,-95.0839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.537975677291463 -50043,Houston Chemical Complex Battleground,ST,1982.0,87.4,62.0,74.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1982.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7093821510297482,0.8466819221967963,TRE,ERCO,TX,29.7314,-95.0839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50047,International Paper Jay Hydro,GEN1,1912.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503704,-70.220971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50047,International Paper Jay Hydro,GEN2,1912.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503704,-70.220971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50047,International Paper Jay Hydro,GEN3,1912.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503704,-70.220971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50047,International Paper Jay Hydro,GEN4,1912.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503704,-70.220971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50047,International Paper Jay Hydro,GEN5,1912.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503704,-70.220971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50047,International Paper Jay Hydro,GEN6,1912.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503704,-70.220971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50049,Humboldt Sawmill Company,GEN1,1988.0,12.5,13.0,13.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,1988.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.4728,-124.1014,Humboldt Redwood 1,Bio-ST,True,8.0,6.0,-1.0,1.8,1.8,84.49943,1.5,1.0,2.027986,12.5,-431.24520010567517,5542.06500087166,-2.5476461618657007e-06,-431.24515741560646,5542.064833772939,280.25372454882256,#TRUE#,#2017-06-01#,#2050-12-31#,Existing,CIPV,CA_CISO,3.75,12.5,8.42,CA,Bio,,#FALSE#,3.75,12.5, -50049,Humboldt Sawmill Company,GEN2,1988.0,12.5,13.0,13.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,1988.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.4728,-124.1014,Humboldt Redwood 2,Bio-ST,True,8.0,6.0,-1.0,1.8,1.8,84.49943,1.5,1.0,2.027986,12.5,-431.24520010567517,5542.06500087166,-2.5476461618657007e-06,-431.24515741560646,5542.064833772939,280.25372454882256,#TRUE#,#2017-06-01#,#2050-12-31#,Existing,CIPV,CA_CISO,3.75,12.5,8.42,CA,Bio,,#FALSE#,3.75,12.5, -50049,Humboldt Sawmill Company,GEN3,1938.0,7.5,7.5,7.5,1,WDS,Wood/Wood Waste Biomass,OS,ST,1.0,1938.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.4728,-124.1014,Humboldt Redwood 3,Bio-ST,True,8.0,6.0,-1.0,1.8,1.8,84.49943,1.5,1.0,2.027986,7.5,-1317.9756004501796,9975.717002747357,-3.959576094818314e-05,-1317.9751154026608,9975.715537711874,333.660530949237,#TRUE#,#2017-06-01#,#2050-12-31#,Existing,CIPV,CA_CISO,3.75,7.5,5.03,CA,Bio,,#FALSE#,3.75,7.5, -50051,Penobscot Energy Recovery,GEN1,1987.0,25.3,21.2,21.2,5,MSW,Municipal Solid Waste,OP,ST,11.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8379446640316205,0.8379446640316205,NPCC,ISNE,ME,44.7383,-68.8258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50054,Rice University,GEN1,1986.0,3.1,3.1,2.8,2.8,NG,Natural Gas Fired Combustion Turbine,SB,GT,1.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9032258064516128,TRE,ERCO,TX,29.721048,-95.39536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.21368713316038 -50054,Rice University,GEN2,1989.0,3.8,3.8,3.8,3.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,29.721048,-95.39536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.213686792296972 -50060,Brown Station Road Plant I,3972,1987.0,0.9,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,10.0,1987.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,RFC,PJM,MD,38.824863,-76.773149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50060,Brown Station Road Plant I,9314,1987.0,0.9,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,10.0,1987.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,RFC,PJM,MD,38.824863,-76.773149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50060,Brown Station Road Plant I,9340,1987.0,0.9,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,10.0,1987.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,RFC,PJM,MD,38.824863,-76.773149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50061,San Diego State University,GEN2,2002.0,5.1,4.6,4.8,3.4,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9019607843137255,0.9411764705882353,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.966770670826833 -50061,San Diego State University,GEN3,2002.0,5.1,4.6,4.8,3.4,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9019607843137255,0.9411764705882353,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.495072719858639 -50061,San Diego State University,GEN4,2002.0,4.1,4.1,4.1,1,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50061,San Diego State University,GEN5,2009.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50061,San Diego State University,GEN6,2011.0,0.3,0.3,0.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6666666666666667,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50061,San Diego State University,GEN7,2012.0,0.3,0.3,0.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6666666666666667,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50061,San Diego State University,GEN8,2014.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.778225,-117.070114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50064,Univ of Calif Santa Cruz Cogeneration,003,2015.0,4.4,4.4,4.4,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.9997,-122.0622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.999910270981635 -50066,Calistoga Power Plant,UNT1,1984.0,88.2,50.0,55.0,15,GEO,Geothermal,OP,ST,3.0,1984.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5668934240362812,0.6235827664399093,WECC,CISO,CA,38.7879,-122.7434,Calistoga1,GEO,True,6.0,16.0,-1.0,15.97,15.97,0.0,0.0,1.0,3.098312,31.5,-1.761428760442753,184.95000430916076,-7.167161408830355e-06,-1.7611014003476768,184.94641294317933,6.679001342071338,#TRUE#,#1984-03-14#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,31.5,31.5,CA,Geo,Binary,#FALSE#,25.95,31.5, -50066,Calistoga Power Plant,UNT2,1984.0,88.2,50.0,55.0,15,GEO,Geothermal,OP,ST,3.0,1984.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5668934240362812,0.6235827664399093,WECC,CISO,CA,38.7879,-122.7434,Calistoga2,GEO,True,6.0,16.0,-1.0,2.25,2.25,0.0,0.0,1.0,3.098312,31.5,-1.761428760442753,184.95000430916076,-7.167161408830355e-06,-1.7611014003476768,184.94641294317933,6.679001342071338,#TRUE#,#1984-03-14#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,31.5,31.5,CA,Geo,Binary,#FALSE#,25.95,31.5, -50067,Borger Plant,GEN1,1985.0,30.0,20.0,20.0,2.5,NG,Natural Gas Steam Turbine,OP,ST,2.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,0.6666666666666667,MRO,SWPP,TX,35.6647,-101.4354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50071,Palm Beach Renewable Energy Facility 1,GEN1,1989.0,62.3,50.0,50.0,0,MSW,Municipal Solid Waste,OP,ST,5.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8025682182985554,0.8025682182985554,SERC,FPL,FL,26.771389,-80.141944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50076,Santa Felicia Dam,UNT1,1987.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.461667,-118.7511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50076,Santa Felicia Dam,UNT2,1987.0,1.1,1.1,1.0,0.8,WAT,Conventional Hydroelectric,OP,HY,6.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9090909090909091,WECC,CISO,CA,34.461667,-118.7511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50079,Goodyear Lake Plant,GEN1,1980.0,0.8,0.8,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,NYIS,NY,42.502473,-74.98356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50079,Goodyear Lake Plant,GEN2,1980.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.502473,-74.98356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50080,Otis Hydro,GEN1,1985.0,5.1,5.1,5.1,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.477807,-70.200759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50080,Otis Hydro,GEN2,1985.0,5.1,5.1,5.1,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.477807,-70.200759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50081,International Paper Riley Hydro,GEN1,1981.0,1.1,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503431,-70.249137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50081,International Paper Riley Hydro,GEN2,1981.0,1.1,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503431,-70.249137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50081,International Paper Riley Hydro,GEN3,1981.0,1.1,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503431,-70.249137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50081,International Paper Riley Hydro,GEN4,1981.0,1.1,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503431,-70.249137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50081,International Paper Riley Hydro,GEN5,1981.0,1.1,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503431,-70.249137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50081,International Paper Riley Hydro,GEN6,1981.0,1.1,1.1,1.1,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.503431,-70.249137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN1,1910.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN2,1910.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN3,1910.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN4,1910.0,1.2,1.2,1.2,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN5,1910.0,1.1,1.1,1.1,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN6,1910.0,0.7,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN7,1910.0,0.9,0.9,0.9,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN8,1910.0,1.0,1.0,1.0,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50082,International Paper Livermore Hydro,GEN9,2004.0,1.0,1.0,0.9,0.7,WAT,Conventional Hydroelectric,OP,HY,9.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,ISNE,ME,44.470511,-70.187333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50087,Univ of Massachusetts Medical Center,GEN1,1974.0,2.5,1.5,1.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.6,NPCC,ISNE,MA,42.279015,-71.759772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50087,Univ of Massachusetts Medical Center,GEN2,1974.0,2.5,1.5,1.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.6,NPCC,ISNE,MA,42.279015,-71.759772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50087,Univ of Massachusetts Medical Center,GEN3,2002.0,5.0,3.0,3.0,1.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.6,NPCC,ISNE,MA,42.279015,-71.759772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50087,Univ of Massachusetts Medical Center,GEN4,2013.0,7.5,6.0,7.5,4.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,NPCC,ISNE,MA,42.279015,-71.759772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.560968155980685 -50088,University of Northern Iowa,GEN1,1982.0,7.5,7.5,7.5,2.6,PC,Petroleum Coke,OP,ST,11.0,1982.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.513608,-92.459122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.94149328331116 -50089,Univ of San Francisco Cogen,S-17,1987.0,1.5,1.4,1.4,1,NG,Natural Gas Internal Combustion Engine,OA,IC,9.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,WECC,CISO,CA,37.77656,-122.451878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50091,Sheep Creek Hydro,TB1,1986.0,1.3,1.3,0.8,0.4,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.6153846153846154,WECC,AVA,WA,48.947741,-117.795376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50091,Sheep Creek Hydro,TB2,1986.0,0.3,0.3,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.6666666666666667,WECC,AVA,WA,48.947741,-117.795376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50093,Chateaugay High Falls Hydro,WT,1988.0,1.7,1.6,1.6,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9411764705882354,0.9411764705882354,NPCC,NYIS,NY,44.909915,-74.085798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50094,"Vicinity Energy Trenton, L.P.",7214,1983.0,6.0,5.8,5.8,2.8,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,RFC,PJM,NJ,40.2167,-74.7667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.63157894736842 -50099,Tamarack Energy Partnership,GEN1,1983.0,6.2,5.8,6.2,3,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1983.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9354838709677419,1.0,WECC,IPCO,ID,44.954853,-116.387134,Tamarack,OT ST,False,8.0,8.0,-1.0,1.8,1.8,28.16648,0.5,1.0,2.027986,5.0,15.42545448429375,-16.527272428154266,-2.8745190297843462e-06,15.42547448417639,-16.527305515798577,10.418533471657597,#TRUE#,#1983-06-01#,#2050-12-31#,Existing,IPTV,BS_IPCO,2.25,5.0,2.1,ID,Bio,,#FALSE#,2.25,5,38.91081690550666 -50101,WestRock (TX),GEN1,1954.0,7.5,9.5,9.5,4.8,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,MISO,TX,30.3419,-94.0656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50101,WestRock (TX),GEN2,1965.0,32.6,32.0,33.0,16.3,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,1965.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9815950920245399,1.0,TRE,MISO,TX,30.3419,-94.0656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50101,WestRock (TX),GEN3,1986.0,17.6,18.0,18.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1986.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,MISO,TX,30.3419,-94.0656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50103,China Mill Hydro,GEN 1,1981.0,1.7,1.7,1.7,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.128712,-71.459866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50109,Paris Energy Center,GEN1,1989.0,87.8,78.0,91.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8883826879271071,1.0,TRE,ERCO,TX,33.6968,-95.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50109,Paris Energy Center,GEN2,1989.0,87.8,80.0,94.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9111617312072893,1.0,TRE,ERCO,TX,33.6968,-95.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50109,Paris Energy Center,GEN3,1989.0,90.0,78.0,90.0,20,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8666666666666667,1.0,TRE,ERCO,TX,33.6968,-95.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50110,Sierra Pacific Burney Facility,GEN1,1986.0,20.0,18.9,17.9,1,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,1986.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.945,0.8949999999999999,WECC,CISO,CA,40.8767,-121.7016,Burney,OT ST,True,8.0,8.0,-1.0,1.8,1.8,123.9325,2.2,1.0,2.027986,22.0,11.582077850070363,-3.653713318902569,-1.2664375230687572e-06,11.582112121679991,-3.653920399860832,11.27608071679135,#TRUE#,#1982-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,6.6,22.0,15.93,CA,Bio,,#FALSE#,6.6,22, -50112,Sierra Pacific Quincy Facility,GEN3,2018.0,35.2,24.0,24.0,3.2,WDS,Wood/Wood Waste Biomass,OP,ST,5.0,2018.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6818181818181818,0.6818181818181818,WECC,CISO,CA,39.941165,-120.909211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50115,US Borax,GEN1,1984.0,48.2,39.0,42.0,39,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8091286307053942,0.8713692946058091,WECC,CISO,CA,35.0329,-117.701,US_Borax_GEN1,OT GT,False,1.0,1.0,-1.0,43.2,43.2,1437.986,217.44,1.0,0.45,48.0,-2.0718155592405,368.10314465628863,-3.5729199487778533e-06,-2.0715790881911054,368.0994442478917,9.496992893958623,#TRUE#,#1984-06-01#,#2050-12-31#,Existing,CISC,CA_CISO,21.78,48.0,47.0,CA,NG,Areo,#FALSE#,21.78,48,14.285617197603527 -50118,Hal C Weaver Power Plant,GEN10,2010.0,34.4,33.0,32.5,21,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9593023255813954,0.9447674418604651,TRE,ERCO,TX,30.2867,-97.7356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.170803256743897 -50118,Hal C Weaver Power Plant,GEN4,1951.0,7.6,7.6,7.6,2,NG,Natural Gas Fired Combined Cycle,SB,CA,10.0,1951.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,30.2867,-97.7356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50118,Hal C Weaver Power Plant,GEN5,1959.0,6.0,6.0,6.0,2,NG,Natural Gas Fired Combined Cycle,SB,CA,9.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,30.2867,-97.7356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50118,Hal C Weaver Power Plant,GEN7,1979.0,28.8,27.6,27.2,12.5,NG,Natural Gas Fired Combined Cycle,SB,CA,1.0,1979.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9583333333333334,0.9444444444444444,TRE,ERCO,TX,30.2867,-97.7356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50118,Hal C Weaver Power Plant,GEN8,1987.0,48.5,46.5,45.8,23,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9587628865979382,0.9443298969072165,TRE,ERCO,TX,30.2867,-97.7356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.676265992310304 -50118,Hal C Weaver Power Plant,GEN9,2004.0,27.2,26.1,25.7,11,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9595588235294118,0.9448529411764706,TRE,ERCO,TX,30.2867,-97.7356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50119,Phillips 66 Rodeo Refinery,GENA,1987.0,18.3,15.3,16.5,12,OG,Other Gases,OP,GT,5.0,1987.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,0.8360655737704918,0.9016393442622951,WECC,CISO,CA,38.0417,-122.2583,Phillips_RodeoA,OT GT,False,1.0,1.0,-1.0,19.4409,19.4409,647.1236,97.848,1.0,0.45,21.601,648.9356498323754,-13733.614368654153,-264.4691385887243,12017.11690631156,-135897.48668415836,9.826273341761258,#TRUE#,#1987-05-21#,#2050-12-31#,Existing,CIPB,CA_CISO,21.384,21.601,0.27,CA,NG,Areo,#FALSE#,21.384,21.601,20.376814748661573 -50119,Phillips 66 Rodeo Refinery,GENB,1987.0,18.3,15.4,16.6,12,OG,Other Gases,OP,GT,5.0,1987.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,0.8415300546448088,0.907103825136612,WECC,CISO,CA,38.0417,-122.2583,Phillips_RodeoB,OT GT,False,1.0,1.0,-1.0,19.4409,19.4409,647.1236,97.848,1.0,0.45,21.601,648.9356498323754,-13733.614368654153,-264.4691385887243,12017.11690631156,-135897.48668415836,9.826273341761258,#TRUE#,#1987-05-21#,#2050-12-31#,Existing,CIPB,CA_CISO,21.384,21.601,0.27,CA,NG,Areo,#FALSE#,21.384,21.601,20.376814748661573 -50119,Phillips 66 Rodeo Refinery,GENC,1987.0,18.3,14.9,16.4,12,OG,Other Gases,OP,GT,5.0,1987.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,0.8142076502732241,0.896174863387978,WECC,CISO,CA,38.0417,-122.2583,Phillips_RodeoC,OT GT,False,1.0,1.0,-1.0,19.4409,19.4409,647.1236,97.848,1.0,0.45,21.601,648.9356498323754,-13733.614368654153,-264.4691385887243,12017.11690631156,-135897.48668415836,9.826273341761258,#TRUE#,#1987-05-21#,#2050-12-31#,Existing,CIPB,CA_CISO,21.384,21.601,0.27,CA,NG,Areo,#FALSE#,21.384,21.601,20.376814748661573 -50121,Valero Refinery Corpus Christi West,PRU,1983.0,12.0,12.0,12.0,0,WH,All Other,OP,ST,9.0,1983.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,27.8175,-97.4814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.607190250486751 -50121,Valero Refinery Corpus Christi West,TG1,1983.0,28.6,26.6,26.9,5,PC,Petroleum Coke,OP,ST,11.0,1983.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9300699300699301,0.9405594405594404,TRE,ERCO,TX,27.8175,-97.4814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50121,Valero Refinery Corpus Christi West,TG2,1983.0,28.6,26.6,26.9,5,PC,Petroleum Coke,OP,ST,11.0,1983.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9300699300699301,0.9405594405594404,TRE,ERCO,TX,27.8175,-97.4814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50123,Normanskill Hydro Project,GEN1,1983.0,1.2,1.2,1.2,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.712356,-73.957324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50126,Ottauquechee Hydro,1,1987.0,1.2,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,NPCC,ISNE,VT,43.5933,-72.3506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50126,Ottauquechee Hydro,2,1983.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.5933,-72.3506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50127,Signal Hill Generating LLC,GTA,1987.0,20.0,19.7,19.7,2,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.985,0.985,TRE,ERCO,TX,33.8625,-98.5894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.146444515306122 -50127,Signal Hill Generating LLC,GTB,1987.0,20.0,19.7,19.7,2,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.985,0.985,TRE,ERCO,TX,33.8625,-98.5894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.151896214896215 -50127,Signal Hill Generating LLC,GTC,1987.0,20.0,19.7,19.7,2,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.985,0.985,TRE,ERCO,TX,33.8625,-98.5894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.49257124600639 -50127,Signal Hill Generating LLC,STD,1987.0,20.0,17.0,16.0,2,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.85,0.8,TRE,ERCO,TX,33.8625,-98.5894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50128,Clear Lake Hydro Project,3381,1985.0,2.5,2.4,2.3,0.1,WAT,Conventional Hydroelectric,OS,HY,9.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.9199999999999999,WECC,CISO,CA,38.923556,-122.56668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50129,Indian Valley Dam Hydro Project,1641,1983.0,1.4,1.3,1.3,1,WAT,Conventional Hydroelectric,OA,HY,10.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,WECC,CISO,CA,39.0788,-122.535556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50129,Indian Valley Dam Hydro Project,1642,1983.0,1.4,1.3,1.3,1,WAT,Conventional Hydroelectric,OA,HY,10.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,WECC,CISO,CA,39.0788,-122.535556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50129,Indian Valley Dam Hydro Project,8332,1983.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OA,HY,10.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.0788,-122.535556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50131,Coalinga Cogeneration,K100,1991.0,38.4,36.0,38.0,36,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,0.9895833333333334,WECC,CISO,CA,36.1807,-120.3885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50134,Sycamore Cogeneration,GTAG,1987.0,75.0,75.0,78.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.452577,-118.985313,Sycamore_CgnAB,GT E_7EA,True,1.0,1.0,-1.0,7.5,7.5,4427.223,16.5,1.0,0.56,75.0,10.551115594949152,-30.95132544403357,0.046044536346013944,5.581758943969962,96.6017708857494,9.946893479075818,#TRUE#,#1987-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,33.75,75.0,60.0,CA,NG,Industrial,#FALSE#,33.75,75,12.381113668462625 -50134,Sycamore Cogeneration,GTBG,1987.0,75.0,75.0,78.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.452577,-118.985313,Sycamore_CgnBG,GT E_7EA,True,1.0,1.0,-1.0,7.5,7.5,4427.223,16.5,1.0,0.56,75.0,10.551115594949152,-30.95132544403357,0.046044536346013944,5.581758943969962,96.6017708857494,9.946893479075818,#TRUE#,#1987-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,33.75,75.0,60.0,CA,NG,Industrial,#FALSE#,33.75,75,12.381113668462625 -50134,Sycamore Cogeneration,GTCG,1987.0,75.0,75.0,78.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.452577,-118.985313,Sycamore_CgnCG,GT E_7EA,False,1.0,1.0,-1.0,7.5,7.5,4427.223,16.5,1.0,0.56,75.0,10.551115594949152,-30.95132544403357,0.046044536346013944,5.581758943969962,96.6017708857494,9.946893479075818,#TRUE#,#1987-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,33.75,75.0,60.0,CA,NG,Industrial,#FALSE#,33.75,75,12.381113668462625 -50134,Sycamore Cogeneration,GTDG,1987.0,75.0,75.0,78.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.452577,-118.985313,Sycamore_CgnDG,GT E_7EA,False,1.0,1.0,-1.0,7.5,7.5,4427.223,16.5,1.0,0.56,75.0,10.551115594949152,-30.95132544403357,0.046044536346013944,5.581758943969962,96.6017708857494,9.946893479075818,#TRUE#,#1987-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,33.75,75.0,60.0,CA,NG,Industrial,#FALSE#,33.75,75,12.381113668462625 -50136,South Oaks Hospital,CG1,2008.0,0.2,0.1,0.1,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.5,NPCC,NYIS,NY,40.6853,-73.4258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.730438931297712 -50136,South Oaks Hospital,CG2,2008.0,0.2,0.1,0.1,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.5,NPCC,NYIS,NY,40.6853,-73.4258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.730438931297712 -50136,South Oaks Hospital,CG3,2008.0,0.2,0.1,0.1,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.5,NPCC,NYIS,NY,40.6853,-73.4258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.730438931297712 -50136,South Oaks Hospital,CG4,2008.0,0.2,0.1,0.1,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.5,NPCC,NYIS,NY,40.6853,-73.4258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.730438931297712 -50136,South Oaks Hospital,CG5,2008.0,0.2,0.1,0.1,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.5,NPCC,NYIS,NY,40.6853,-73.4258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.730438931297712 -50137,Newgulf Cogen,GEN1,1984.0,101.9,69.0,84.0,60,NG,Natural Gas Fired Combustion Turbine,OA,GT,4.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.677134445534838,0.8243375858684985,TRE,ERCO,TX,29.2639,-95.8997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50141,Snider Industries,WGN1,1983.0,5.0,5.0,5.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1983.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,TX,32.574722,-94.373889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -50146,Imperial Savannah LP,GENA,1948.0,2.7,2.7,2.7,0.5,NG,Natural Gas Steam Turbine,OP,ST,3.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.143989,-81.14655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50146,Imperial Savannah LP,GENB,1959.0,3.0,3.0,3.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,2.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.143989,-81.14655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50146,Imperial Savannah LP,GENC,1946.0,1.0,1.0,1.0,0.3,NG,Natural Gas Steam Turbine,OP,ST,8.0,1946.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.143989,-81.14655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50146,Imperial Savannah LP,GEND,1985.0,5.0,4.5,4.5,1,NG,Natural Gas Steam Turbine,OP,ST,3.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,SERC,SOCO,GA,32.143989,-81.14655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50147,R E Badger Filtration Plant,1,1987.0,1.4,1.0,0.5,0.5,WAT,Conventional Hydroelectric,OS,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7142857142857144,0.3571428571428572,WECC,CISO,CA,33.051,-117.175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50148,Linde Wilmington,GEN1,1988.0,25.0,21.0,21.0,18,NG,Natural Gas Fired Combined Cycle,SB,CT,12.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.84,0.84,WECC,LDWP,CA,33.78856,-118.229392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50148,Linde Wilmington,GEN2,1988.0,6.0,6.0,6.0,4,NG,Natural Gas Fired Combined Cycle,SB,CA,12.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,LDWP,CA,33.78856,-118.229392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50150,Union Carbide Seadrift Cogen,GE10,1964.0,15.0,15.0,15.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50150,Union Carbide Seadrift Cogen,GE11,2000.0,35.0,30.0,38.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.665087658560642 -50150,Union Carbide Seadrift Cogen,GEN5,1987.0,15.0,15.0,15.0,2,NG,Natural Gas Steam Turbine,OP,ST,11.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50150,Union Carbide Seadrift Cogen,GEN6,1987.0,35.0,30.0,38.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.665087658560642 -50150,Union Carbide Seadrift Cogen,GEN7,1987.0,6.0,6.0,6.0,1.5,NG,Natural Gas Steam Turbine,OA,ST,11.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50150,Union Carbide Seadrift Cogen,GEN8,1987.0,35.0,30.0,38.0,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.665087658560642 -50150,Union Carbide Seadrift Cogen,GEN9,1987.0,15.0,15.0,15.0,2,NG,Natural Gas Steam Turbine,OP,ST,11.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50150,Union Carbide Seadrift Cogen,IGT,1969.0,12.0,12.0,12.0, ,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,28.5105,-96.7706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.66508772364871 -50152,Dow St Charles Operations,CGN1,1996.0,125.8,100.0,116.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.794912559618442,0.9220985691573927,SERC,MISO,LA,29.9861,-90.4414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.435554899850343 -50152,Dow St Charles Operations,CGN2,1997.0,125.8,100.0,116.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.794912559618442,0.9220985691573927,SERC,MISO,LA,29.9861,-90.4414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11005200947882 -50152,Dow St Charles Operations,CSTG,2002.0,50.0,50.0,50.0,15,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,29.9861,-90.4414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50152,Dow St Charles Operations,STG,1997.0,22.0,20.0,20.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9090909090909091,0.9090909090909091,SERC,MISO,LA,29.9861,-90.4414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50153,Texas City Plant Union Carbide,STG,1996.0,45.0,38.0,38.0,10,PUR,All Other,OP,ST,3.0,1996.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8444444444444444,0.8444444444444444,TRE,ERCO,TX,29.37612,-94.946477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50156,Bear Creek,GEN1,1990.0,3.2,3.0,2.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9062499999999999,WECC,CISO,CA,40.534454,-121.959109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50166,International Paper Woronoco Mill,GEN1,1916.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,ISNE,MA,42.163378,-72.827509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50166,International Paper Woronoco Mill,GEN2,1913.0,1.8,1.7,1.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444444,0.9444444444444444,NPCC,ISNE,MA,42.163378,-72.827509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50166,International Paper Woronoco Mill,GEN2A,1916.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,NPCC,ISNE,MA,42.163378,-72.827509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50169,Wichita Plant,GEN1,1982.0,43.7,27.0,33.0,13,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6178489702517163,0.7551487414187643,MRO,SWPP,KS,37.581339,-97.424133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.21212121212121 -50170,Berry Cogen,GEN1,1986.0,38.7,35.0,37.5,33.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9043927648578811,0.9689922480620154,WECC,CISO,CA,35.093046,-119.443617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.3616343808613 -50175,Emporia,GEN1,1986.0,2.0,2.0,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.696,-77.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50175,Emporia,GEN2,1986.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.696,-77.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50176,Union Falls,GEN1,1987.0,1.3,1.3,1.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.510739,-73.913079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50176,Union Falls,GEN2,1987.0,1.3,1.3,1.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.510739,-73.913079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50177,Blackstone/Tupperware,GEN1,1981.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,RI,42.014467,-71.5444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50177,Blackstone/Tupperware,GEN2,1981.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,RI,42.014467,-71.5444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50177,Blackstone/Tupperware,GEN3,1981.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,RI,42.014467,-71.5444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50177,Blackstone/Tupperware,GEN4,1981.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,RI,42.014467,-71.5444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50178,Halifax,GEN1,1915.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.7817,-78.9236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50178,Halifax,GEN2,1915.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.7817,-78.9236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50178,Halifax,GEN3,1915.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.7817,-78.9236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50179,Box Canyon Dam,GEN1,1986.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.2792,-122.3292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50179,Box Canyon Dam,GEN2,1986.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,CA,41.2792,-122.3292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50180,Olsen,GEN1,1990.0,5.0,4.8,4.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.96,0.9199999999999999,WECC,CISO,CA,40.63722,-121.92805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50184,Columbus MS,TG1,1990.0,64.0,64.0,64.0,2,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1990.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,MS,33.3602,-88.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50184,Columbus MS,TG2,1982.0,46.0,46.0,46.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,MS,33.3602,-88.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50184,Columbus MS,TG3,1982.0,14.6,14.6,14.6,3,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,MS,33.3602,-88.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50184,Columbus MS,TG4,1987.0,4.0,4.0,4.0,1,BLQ,Wood/Wood Waste Biomass,SB,ST,8.0,1987.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,MS,33.3602,-88.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50185,Cosmo Specialty Fibers Plant,TG1,1957.0,7.5,8.5,9.0,1,WDL,Wood/Wood Waste Biomass,OA,ST,1.0,1957.0, , ,,,,,biomass,biomass,Wood Waste Liquids excluding Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,WA,46.954071,-123.761086,Cosmo 1-2,OT ST,True,8.0,8.0,-1.0,1.8,1.8,96.89268,1.72,1.0,2.027986,18.8,12.119941282150844,0.001103354422301202,-1.0338056461707632e-06,12.119964645166103,0.0009872593778908478,12.120054057219503,#TRUE#,#1957-01-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,5.16,18.8,15.8,WA,Bio,,#FALSE#,5.16,17.2, -50185,Cosmo Specialty Fibers Plant,TG2,1957.0,7.5,8.5,9.0,1,WDL,Wood/Wood Waste Biomass,OA,ST,1.0,1957.0, , ,,,,,biomass,biomass,Wood Waste Liquids excluding Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,WA,46.954071,-123.761086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50187,Nippon Dynawave Packaging Longview WA,TG1,1948.0,8.0,7.4,7.5,2.3,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1948.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.925,0.9375,WECC,BPAT,WA,46.1236,-122.9728,WeyerhaeuserWA1,OT ST,True,8.0,8.0,1.0,1.8,1.8,28.16648,0.5,0.0,2.027986,5.0,12.119999978703268,1.4211844034939247e-07,-5.785371777755621e-07,12.120003467694055,-4.607457650518398e-06,12.120000031073682,#TRUE#,#1948-01-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,1.5,5.0,0.0,WA,Bio,,#FALSE#,1.5,5, -50187,Nippon Dynawave Packaging Longview WA,TG2,1948.0,5.0,4.7,4.7,2.3,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1948.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.9400000000000001,WECC,BPAT,WA,46.1236,-122.9728,WeyerhaeuserWA2,OT ST,True,8.0,8.0,-1.0,1.8,1.8,28.16648,0.5,1.0,2.027986,5.0,12.119999978703268,1.4211844034939247e-07,-5.785371777755621e-07,12.120003467694055,-4.607457650518398e-06,12.120000031073682,#TRUE#,#1948-01-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,1.5,5.0,7.8,WA,Bio,,#FALSE#,1.5,7.8, -50187,Nippon Dynawave Packaging Longview WA,TG4,1954.0,18.0,16.7,16.9,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9277777777777777,0.9388888888888888,WECC,BPAT,WA,46.1236,-122.9728,WeyerhaeuserWA4,OT ST,True,8.0,8.0,-1.0,1.8,1.8,101.3993,1.8,1.0,2.027986,31.3,10.826494493343464,29.531721478067844,-1.2155665520714731e-06,10.826541031768615,29.53132494748914,12.580006259376747,#TRUE#,#1976-01-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,9.22,31.3,37.2,WA,Bio,,#FALSE#,1,4, -50187,Nippon Dynawave Packaging Longview WA,TG5,1976.0,31.4,29.2,29.5,6,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1976.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9299363057324841,0.9394904458598726,WECC,BPAT,WA,46.1236,-122.9728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50188,International Paper Co. - New Bern Mill,TG2,2014.0,38.1,29.0,33.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,2014.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7611548556430445,0.8661417322834646,SERC,CPLE,NC,35.212,-77.1144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50189,Domtar Paper Co LLC Plymouth NC,TG10,1978.0,72.0,74.0,74.0,14,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1978.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,NC,35.8628,-76.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50189,Domtar Paper Co LLC Plymouth NC,TG9,1976.0,42.0,40.8,40.8,14,BLQ,Wood/Wood Waste Biomass,OP,ST,9.0,1976.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9714285714285713,0.9714285714285713,SERC,PJM,NC,35.8628,-76.7831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50190,Domtar Paper Company Rothschild,HG3,1910.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.8867,-89.6272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50190,Domtar Paper Company Rothschild,HG7,1910.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1910.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.8867,-89.6272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50191,IP Springfield Oregon,TG1,1949.0,7.5,7.5,7.5,2,BLQ,Wood/Wood Waste Biomass,OS,ST,1.0,1949.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,OR,44.0569,-122.9555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50191,IP Springfield Oregon,TG2,1949.0,5.0,5.0,5.0,1,BLQ,Wood/Wood Waste Biomass,OS,ST,1.0,1949.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,OR,44.0569,-122.9555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50191,IP Springfield Oregon,TG3,1953.0,12.5,12.5,12.5,2.5,BLQ,Wood/Wood Waste Biomass,OS,ST,1.0,1953.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,OR,44.0569,-122.9555,InternationalPaperEnergyCenter,OT ST,True,8.0,8.0,-1.0,1.8,1.8,70.41619,1.25,1.0,2.027986,25.0,15.684705816668238,-89.11764610819215,-1.1573124625574582e-06,15.684741831760837,-89.11789863721455,9.315176678014495,#TRUE#,#1976-10-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,8.0,25.0,0.0,OR,Bio,,#FALSE#,8,12.5, -50191,IP Springfield Oregon,TG4,1976.0,40.0,33.0,33.0,8,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1976.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.825,0.825,WECC,BPAT,OR,44.0569,-122.9555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50192,International Paper Valliant OK,TG1,1971.0,68.0,57.8,57.8,25,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1971.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.85,0.85,MRO,SWPP,OK,33.9961,-95.1114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50200,B Braun Medical,GEN1,1982.0,2.8,2.7,2.6,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1982.0,12,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9642857142857144,0.9285714285714286,WECC,CISO,CA,33.688721,-117.834793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.34311414482335 -50200,B Braun Medical,GEN2,1995.0,3.3,3.0,2.9,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1995.0,12,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909092,0.8787878787878788,WECC,CISO,CA,33.688721,-117.834793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.343114710795405 -50201,"Multitrade Rabun Gap, LLC",ST2,2010.0,17.9,18.0,18.0,1.5,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,2010.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,34.9536,-83.3786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50203,US Gypsum Oakfield,GEN1,1986.0,5.8,4.9,5.7,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8448275862068966,0.9827586206896552,NPCC,NYIS,NY,43.0647,-78.2972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.747371506026303 -50205,Williams Ignacio Natural Gas Plant,7101,1984.0,6.1,6.1,6.1,4.5,WH,All Other,OP,ST,12.0,1984.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,WACM,CO,37.145556,-107.784722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50206,Vallecito Hydroelectric,GEN1,1989.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,37.377715,-107.578745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50206,Vallecito Hydroelectric,GEN2,1989.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,37.377715,-107.578745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50206,Vallecito Hydroelectric,GEN3,1989.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,37.377715,-107.578745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50208,"NE Renewable Bethlehem, LLC",GEN1,1986.0,17.5,15.0,15.0,11.4,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1986.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,0.8571428571428572,NPCC,ISNE,NH,44.3274,-71.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50210,Vulcan-BN Geothermal Power Company,GEN1,1985.0,30.1,29.0,29.0,2,GEO,Geothermal,OP,ST,12.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9634551495016611,0.9634551495016611,WECC,IID,CA,33.1633,-115.6167,Vulcan 1,GEO,True,6.0,16.0,-1.0,2.17,2.17,0.0,0.0,1.0,3.098312,38.0,-1.7614265062257608,223.11420523906907,-6.547845683376629e-06,-1.761074487767668,223.109689581301,6.679000355250876,#TRUE#,#1985-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,38.0,25.0,CA,Geo,Double flash,#FALSE#,19,38, -50210,Vulcan-BN Geothermal Power Company,GEN2,1985.0,9.5,9.0,9.0,2,GEO,Geothermal,OP,ST,12.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9473684210526316,0.9473684210526316,WECC,IID,CA,33.1633,-115.6167,Vulcan 2,GEO,True,6.0,16.0,-1.0,0.32,0.32,0.0,0.0,1.0,3.098312,10.74,-1.7614340649363853,63.059201339176575,-6.157171307091671e-06,-1.7613381793055005,63.05884268061888,6.679003668710126,#TRUE#,#1985-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,10.74,8.4,CA,Geo,Double flash,#FALSE#,5.37,10.74, -50215,York County Resource Recovery,GEN1,1989.0,36.5,30.0,30.0,11.7,MSW,Municipal Solid Waste,OP,ST,11.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.821917808219178,0.821917808219178,RFC,PJM,PA,40.0017,-76.7183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50216,Watson Cogeneration,GN91,1988.0,82.0,82.0,82.0,68,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.816647,-118.244841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72817965680875 -50216,Watson Cogeneration,GN92,1988.0,82.0,82.0,82.0,68,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.816647,-118.244841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.549016087509836 -50216,Watson Cogeneration,GN93,1988.0,82.0,82.0,82.0,68,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.816647,-118.244841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.456689853426553 -50216,Watson Cogeneration,GN94,1987.0,82.0,82.0,82.0,68,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.816647,-118.244841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.459274009781762 -50216,Watson Cogeneration,GN95,1988.0,38.5,35.0,35.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,33.816647,-118.244841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50216,Watson Cogeneration,GN96,1987.0,38.5,35.0,35.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,33.816647,-118.244841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50218,Woodward Power Plant,U1,1982.0,2.8,2.7,2.6,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9642857142857144,0.9285714285714286,WECC,TIDC,CA,37.860653,-120.879153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50219,Frankenheimer Power Plant,U1,1983.0,5.3,4.0,4.3,0.5,WAT,Conventional Hydroelectric,OP,HY,3.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7547169811320755,0.8113207547169812,WECC,CISO,CA,37.830378,-120.806972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50223,Nelson Creek,1296,1989.0,1.2,0.5,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.41666666666666663,0.75,WECC,CISO,CA,41.028893,-121.892351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50224,Oxnard Wastewater Treatment Plant,7610,1981.0,0.5,0.4,0.4,0.4,OBG,Other Waste Biomass,OP,IC,8.0,1981.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8,0.8,WECC,CISO,CA,34.140501,-119.184529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.485685091582102 -50224,Oxnard Wastewater Treatment Plant,7710,1981.0,0.5,0.4,0.4,0.4,OBG,Other Waste Biomass,OP,IC,8.0,1981.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8,0.8,WECC,CISO,CA,34.140501,-119.184529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.485685091582102 -50224,Oxnard Wastewater Treatment Plant,7810,1981.0,0.5,0.4,0.4,0.4,OBG,Other Waste Biomass,OP,IC,8.0,1981.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8,0.8,WECC,CISO,CA,34.140501,-119.184529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.485685091582102 -50225,Regional Waste Systems,TG1,1988.0,13.3,11.5,11.5,3,MSW,Municipal Solid Waste,OP,ST,6.0,1988.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8646616541353382,0.8646616541353382,NPCC,ISNE,ME,43.6556,-70.3347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50228,Rocky Brook Hydroelectric,GEN1,1985.0,1.6,0.1,1.2,0.1,WAT,Conventional Hydroelectric,SB,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.0625,0.75,WECC,BPAT,WA,47.7197,-122.9431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50229,Texas Petrochemicals,TG2,1972.0,35.0,35.0,35.0,8,NG,Natural Gas Steam Turbine,OP,ST,6.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,29.6981,-95.2547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50230,Robbins Lumber,CAT,1987.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,NPCC,ISNE,ME,44.3331,-69.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.760683760683761 -50230,Robbins Lumber,WEST,1981.0,1.2,1.1,1.1,0.4,WDS,Wood/Wood Waste Biomass,OS,ST,1.0,1981.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9166666666666667,0.9166666666666667,NPCC,ISNE,ME,44.3331,-69.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50233,San Dimas Wash Generating Station,4011,1986.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,SB,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.124171,-117.805091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50234,San Antonio Regional Hospital,2074,1985.0,0.9,0.9,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.888888888888889,WECC,CISO,CA,34.1019,-117.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50234,San Antonio Regional Hospital,2075,1985.0,0.9,0.9,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.888888888888889,WECC,CISO,CA,34.1019,-117.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50234,San Antonio Regional Hospital,2076,2001.0,0.9,0.9,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.888888888888889,WECC,CISO,CA,34.1019,-117.6381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50240,Purdue University,GEN1,1995.0,30.8,30.8,30.8,5,NG,Natural Gas Steam Turbine,OP,ST,7.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,40.4172,-86.9122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50240,Purdue University,GEN2,1969.0,10.6,7.0,10.6,3,NG,Natural Gas Steam Turbine,OP,ST,1.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6603773584905661,1.0,RFC,MISO,IN,40.4172,-86.9122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50240,Purdue University,GEN3,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.4172,-86.9122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50241,Tenet Hospital,9541,1987.0,2.1,2.1,2.1,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,EPE,TX,31.7697,-106.5014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50241,Tenet Hospital,9542,1987.0,2.1,2.1,2.1,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,EPE,TX,31.7697,-106.5014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50243,Bucksport Generation LLC,GEN4,2001.0,186.8,178.0,183.1,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9528907922912205,0.9801927194860813,NPCC,ISNE,ME,44.5738,-68.8046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.651231554421392 -50244,Canton North Carolina,GEN8,1937.0,7.5,7.5,7.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1937.0,5,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.535,-82.8411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50244,Canton North Carolina,GEN9,1941.0,7.5,7.5,7.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1941.0,5,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.535,-82.8411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50244,Canton North Carolina,GN10,1946.0,7.5,7.5,7.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1946.0,6,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.535,-82.8411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50244,Canton North Carolina,GN11,1949.0,7.5,7.5,7.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1949.0,5,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.535,-82.8411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50244,Canton North Carolina,GN12,1952.0,10.0,10.0,10.0,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1952.0,5,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.535,-82.8411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50244,Canton North Carolina,GN13,1979.0,12.5,12.5,12.5,6.8,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1979.0,5,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.535,-82.8411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50250,International Paper Pensacola,GEN1,1981.0,39.6,36.0,36.0,22,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.9090909090909091,SERC,SOCO,FL,30.5966,-87.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50250,International Paper Pensacola,GEN2,1981.0,43.2,40.0,40.0,30,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9259259259259258,0.9259259259259258,SERC,SOCO,FL,30.5966,-87.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50251,Billerud Quinnesec Mill,GEN1,1985.0,28.0,28.0,28.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1985.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.7956,-87.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50251,Billerud Quinnesec Mill,GEN2,2011.0,28.0,31.0,31.0,1.6,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2011.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.7956,-87.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG10,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG11,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG12,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG2,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG3,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG4,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG5,1985.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG6,1985.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG7,1985.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG8,1985.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50252,Sartell Dam,HG9,1985.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.617996,-94.200786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50254,KapStone Kraft Paper Corp,GEN1,1966.0,28.3,30.0,30.0,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1966.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,NC,36.4769,-77.6414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50260,Beaumont Hospital Dearborn Campus,1 2M,2006.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2917,-83.2119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.603498047206656 -50260,Beaumont Hospital Dearborn Campus,2 2M,2006.0,2.0,2.0,2.0,0,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2917,-83.2119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.603498047206656 -50260,Beaumont Hospital Dearborn Campus,500A,2006.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,SB,IC,2.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.2917,-83.2119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.603498047206656 -50261,New Lahontan,GEN1,1989.0,4.0,3.8,3.7,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.925,WECC,NEVP,NV,39.463569,-119.065227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50267,Redlands Water & Power,RED1,1931.0,1.4,1.4,1.4,1.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1931.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.067347,-108.592791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50268,Hewittville Hydroelectric,HY1,1984.0,3.0,2.2,2.2,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7333333333333334,0.7333333333333334,NPCC,NYIS,NY,44.705167,-75.007933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50269,Unionville Hydro Project 2499 NY,HY1,1984.0,3.0,2.2,2.2,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7333333333333334,0.7333333333333334,NPCC,NYIS,NY,44.714518,-74.996581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50270,ExxonMobil Santa Ynez Facility,GTG1,1993.0,39.5,40.2,39.2,21,NG,Natural Gas Fired Combined Cycle,OS,CT,9.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,0.9924050632911393,WECC,CISO,CA,34.464819,-120.044365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50270,ExxonMobil Santa Ynez Facility,STG1,1993.0,9.8,8.9,8.8,5,NG,Natural Gas Fired Combined Cycle,OS,CA,10.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9081632653061225,0.8979591836734694,WECC,CISO,CA,34.464819,-120.044365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50274,Simplot Leasing Don Plant,GEN1,1986.0,15.9,14.8,15.0,5,WH,All Other,OP,ST,2.0,1986.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9308176100628931,0.9433962264150944,WECC,IPCO,ID,42.908412,-112.52944,Simplot_Leasing,ST-NG,False,48.0,168.0,-1.0,0.15,0.15,1343.541,141.828,1.0,1.036526,15.9,10.532772807589163,-3.834428154037717,0.6948287473409754,-4.801541862215106,75.50190501214078,10.160843837281682,#TRUE#,#1986-02-01#,#2050-12-31#,Existing,IPFE,BS_IPCO,6.36,15.9,6.5,ID,WH,,#FALSE#,6.36,15.9, -50275,Park 500 Philip Morris USA,TG3,1983.0,13.0,10.5,11.5,4.5,NG,Natural Gas Steam Turbine,OP,ST,9.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8076923076923077,0.8846153846153846,SERC,PJM,VA,37.3389,-77.2806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50278,Worumbo Hydro Station,GEN1,1989.0,9.7,4.6,9.3,2,WAT,Conventional Hydroelectric,OP,HY,2.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4742268041237113,0.9587628865979383,NPCC,ISNE,ME,43.994729,-70.061921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50278,Worumbo Hydro Station,GEN2,1989.0,9.7,4.6,9.3,2,WAT,Conventional Hydroelectric,OP,HY,3.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4742268041237113,0.9587628865979383,NPCC,ISNE,ME,43.994729,-70.061921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50279,Archbald Power Station,GEN1,1988.0,23.2,20.0,20.0,10,LFG,Landfill Gas,OP,ST,9.0,1988.0, , ,,,,,biomass,biomass,Landfill Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8620689655172414,0.8620689655172414,RFC,PJM,PA,41.485,-75.5406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50279,Archbald Power Station,GEN5,2010.0,4.6,4.0,4.6,2,LFG,Landfill Gas,OP,GT,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,1.0,RFC,PJM,PA,41.485,-75.5406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50279,Archbald Power Station,GEN6,2010.0,4.6,4.0,4.6,2,LFG,Landfill Gas,OP,GT,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,1.0,RFC,PJM,PA,41.485,-75.5406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50279,Archbald Power Station,Gen2,2001.0,60.5,43.7,50.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7223140495867769,0.8264462809917356,RFC,PJM,PA,41.485,-75.5406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50280,Dahowa Hydro,GEN1,1987.0,10.5,1.5,4.4,1.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.1428571428571429,0.4190476190476191,NPCC,NYIS,NY,43.1033,-73.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50281,San Gorgonio Farms Wind Farm,WGEN,1983.0,31.0,31.0,31.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,1983.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.926111,-116.615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50285,Lower Village Water Power Project,0001,1995.0,0.6,0.6,0.6,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.374292,-72.347603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50285,Lower Village Water Power Project,0002,1995.0,0.6,0.6,0.6,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.374292,-72.347603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50290,SEMASS Resource Recovery,GEN1,1988.0,64.5,53.3,53.3,6,MSW,Municipal Solid Waste,OP,ST,7.0,1988.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8263565891472868,0.8263565891472868,NPCC,ISNE,MA,41.8022,-70.7875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50290,SEMASS Resource Recovery,GEN2,1993.0,34.0,26.7,26.7,9,MSW,Municipal Solid Waste,OP,ST,4.0,1993.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7852941176470588,0.7852941176470588,NPCC,ISNE,MA,41.8022,-70.7875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN1,1989.0,33.7,22.2,23.8,15,NG,Natural Gas Fired Combined Cycle,OA,CT,8.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6587537091988129,0.7062314540059347,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN2,1989.0,33.7,22.2,23.8,15,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6587537091988129,0.7062314540059347,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN3,1989.0,16.2,10.6,11.4,5,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.654320987654321,0.7037037037037037,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN4,1989.0,0.4,0.4,0.4,0.4,DFO,Petroleum Liquids,SB,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN5,2002.0,60.0,47.0,49.6,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7833333333333333,0.8266666666666667,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN6,2005.0,60.0,49.0,50.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8166666666666667,0.8333333333333334,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50292,Bethpage Power Plant,GEN7,2005.0,36.0,33.0,34.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9166666666666666,0.9444444444444444,NPCC,NYIS,NY,40.7469,-73.4994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50293,Wadham Energy LP,GEN1,1989.0,29.1,26.5,26.5,15,AB,Other Waste Biomass,OP,ST,3.0,1989.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9106529209621993,0.9106529209621993,WECC,CISO,CA,39.1062,-122.1096,WadhamEnrgy,OT ST,True,4.0,8.0,-1.0,1.8,1.8,180.2655,3.2,1.0,2.027986,30.5,14.012931737576062,-8.235435819285545,0.17329830427745438,8.594295519779076,24.373958572670023,13.170116549507581,#TRUE#,#1989-03-24#,#2050-12-31#,Existing,CIPV,CA_CISO,3.2,30.5,23.06,CA,Bio,,#FALSE#,3.2,30.5, -50296,Packaging Corp of America,GEN1,1985.0,50.0,50.0,50.0,2,WDS,Wood/Wood Waste Biomass,OP,ST,2.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,TN,35.0471,-88.2661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50296,Packaging Corp of America,GEN2,2010.0,22.5,22.5,22.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,2010.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,TN,35.0471,-88.2661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50299,AltaGas Ripon Energy Inc.,GEN1,1988.0,49.5,46.1,46.1,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9313131313131313,0.9313131313131313,WECC,CISO,CA,37.732533,-121.116006,Ripon_Mill_GEN1,GT_NA,False,1.0,1.0,-1.0,44.55,44.55,1482.923,10.89,1.0,0.45,49.5,394.6751438349405,-19017.362855282412,7.841325928918955,-377.2956169550775,-17.585646338166022,8.336398682534263,#TRUE#,#1988-04-19#,#2050-12-31#,Existing,CIPV,CA_CISO,49.0,49.5,46.05,CA,NG,Industrial,#FALSE#,49,49.5,9.646728016359917 -50300,VESI Pomona,BESS1,2016.0,20.0,20.0,20.0,20,MWH,Batteries,OP,BA,12.0,2016.0, , ,20.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.059444,-117.774167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50304,Shell Deer Park,GEN1,1979.0,45.9,45.0,50.0,10,PUR,All Other,OP,ST,10.0,1979.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9803921568627452,1.0,TRE,ERCO,TX,29.723185,-95.128856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50304,Shell Deer Park,GEN2,1979.0,45.9,45.0,50.0,10,PUR,All Other,OP,ST,10.0,1979.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9803921568627452,1.0,TRE,ERCO,TX,29.723185,-95.128856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50304,Shell Deer Park,GEN4,1995.0,88.2,75.0,85.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8503401360544217,0.9637188208616779,TRE,ERCO,TX,29.723185,-95.128856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.410494887713662 -50304,Shell Deer Park,GEN5,1995.0,94.0,78.0,92.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8297872340425532,0.9787234042553191,TRE,ERCO,TX,29.723185,-95.128856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.410494866462036 -50305,Alpena Cement Plant,GE10,1999.0,3.2,3.2,3.2,0.5,PC,Petroleum Coke,OP,ST,2.0,1999.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.069929,-83.408182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50305,Alpena Cement Plant,GEN6,1952.0,12.0,12.0,12.0,3,PC,Petroleum Coke,OP,ST,1.0,1952.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.069929,-83.408182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50305,Alpena Cement Plant,GEN7,1955.0,10.0,10.0,10.0,4,PC,Petroleum Coke,OP,ST,1.0,1955.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.069929,-83.408182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50305,Alpena Cement Plant,GEN8,1991.0,11.0,11.0,11.0,3,PC,Petroleum Coke,OP,ST,4.0,1991.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.069929,-83.408182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50305,Alpena Cement Plant,GEN9,1994.0,11.0,11.0,11.0,3,PC,Petroleum Coke,OP,ST,4.0,1994.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,45.069929,-83.408182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50307,University of Oklahoma,GEN1,1964.0,7.5,7.5,7.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,9.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,35.2089,-97.4424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50307,University of Oklahoma,GEN2,1949.0,2.5,2.5,2.5,0.6,NG,Natural Gas Steam Turbine,OP,ST,9.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,35.2089,-97.4424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50307,University of Oklahoma,GEN3,1949.0,2.5,2.5,2.5,0.6,NG,Natural Gas Steam Turbine,OP,ST,8.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,35.2089,-97.4424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50307,University of Oklahoma,GEN4,1985.0,4.3,4.3,4.3,0.3,NG,Natural Gas Steam Turbine,OP,ST,1.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,OK,35.2089,-97.4424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50307,University of Oklahoma,GEN5,2001.0,1.8,1.8,1.8,0.4,DFO,Petroleum Liquids,OP,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,35.2089,-97.4424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50308,Utility Plants Section,GEN1,1955.0,5.0,3.5,4.3,1.5,SUB,Conventional Steam Coal,OP,ST,1.0,1955.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7,0.86,non-conus,non-conus,AK,64.825601,-147.648627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50308,Utility Plants Section,GEN3,1955.0,5.0,6.2,6.2,1.5,SUB,Conventional Steam Coal,OP,ST,1.0,1955.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,AK,64.825601,-147.648627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50308,Utility Plants Section,GEN4,1955.0,5.0,6.2,6.2,1.5,SUB,Conventional Steam Coal,OP,ST,1.0,1955.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,AK,64.825601,-147.648627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50308,Utility Plants Section,GEN5,1989.0,5.0,6.2,6.2,1.5,SUB,Conventional Steam Coal,OP,ST,1.0,1989.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,AK,64.825601,-147.648627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50310,Standby Generation Plant,1,1988.0,1.1,1.1,1.1,0,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.882411559541605 -50310,Standby Generation Plant,1SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,2,1988.0,1.1,1.1,1.1,0,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.882411559541605 -50310,Standby Generation Plant,2SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,3,1988.0,1.1,1.1,1.1,0,NG,Natural Gas Internal Combustion Engine,SB,IC,10.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.882411559541605 -50310,Standby Generation Plant,3SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,4SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,5SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,6SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,7SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50310,Standby Generation Plant,8SB,2006.0,1.3,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.4736,-87.2361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88195615514334 -50311,Passaic Valley Water Commission,GEN1,1935.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OS,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,NJ,40.883345,-74.22999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50311,Passaic Valley Water Commission,GEN2,1935.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OS,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,NJ,40.883345,-74.22999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50311,Passaic Valley Water Commission,GEN3,1935.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OS,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,NJ,40.883345,-74.22999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50311,Passaic Valley Water Commission,GEN4,1935.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OS,HY,1.0,1935.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,NJ,40.883345,-74.22999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50312,Pembroke Hydro,1,1985.0,2.7,0.6,1.2,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2222222222222222,0.4444444444444444,NPCC,ISNE,NH,43.130362,-71.453632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50315,Chasm Hydro Partnership,1100,1982.0,1.0,0.5,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.8,NPCC,NYIS,NY,44.9318,-74.1125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50315,Chasm Hydro Partnership,2600,1984.0,0.6,0.5,0.6,0.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,1.0,NPCC,NYIS,NY,44.9318,-74.1125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50316,Bunge North America East LLC,3516,1950.0,2.0,2.2,2.2,1,NG,Natural Gas Steam Turbine,OP,ST,12.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,40.846525,-84.933264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64.58247019738128 -50322,Site 980 65,GEN1,1985.0,2.1,2.1,2.1,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,37.056803,-119.899706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50323,Marco Ranch,1,1985.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.636558,-114.557764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50323,Marco Ranch,2,1985.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.636558,-114.557764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50323,Marco Ranch,3,1985.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.636558,-114.557764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50323,Marco Ranch,4,1985.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.636558,-114.557764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50324,Newfound Hydroelectric,1,1983.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.59,-71.73295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50324,Newfound Hydroelectric,2,1983.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.59,-71.73295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50326,Nalco,AT1,1985.0,4.0,3.0,3.5,0,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1985.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.75,0.875,RFC,PJM,IL,41.800909,-88.197156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.169908100021372 -50326,Nalco,DPOX,1985.0,0.7,0.7,0.7,0,NG,Natural Gas Fired Combined Cycle,OS,CA,11.0,1985.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,IL,41.800909,-88.197156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50329,West Point Treatment Plant,4,2012.0,2.3,2.3,2.3,1.7,OBG,Other Waste Biomass,OP,IC,6.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.661111,-122.446389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.093162813575995 -50329,West Point Treatment Plant,5,2012.0,2.3,2.3,2.3,1.7,OBG,Other Waste Biomass,OP,IC,6.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.661111,-122.446389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.093162813575995 -50333,Gay Robinson,DSL5,2010.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.9178,-159.6294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50333,Gay Robinson,DSL6,2010.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,SB,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.9178,-159.6294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50333,Gay Robinson,HYD2,1982.0,1.2,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,non-conus,non-conus,HI,21.9178,-159.6294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50333,Gay Robinson,HYD3,2019.0,6.5,6.5,6.5,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,2019.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,21.9178,-159.6294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50337,Mooseheart Power House,GEN1,1986.0,0.5,0.5,0.5,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8244,-88.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50337,Mooseheart Power House,GEN2,1986.0,0.5,0.5,0.5,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8244,-88.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50337,Mooseheart Power House,GEN3,1986.0,0.3,0.3,0.3,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8244,-88.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50337,Mooseheart Power House,GEN4,1986.0,0.5,0.5,0.5,0.5,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8244,-88.3331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50341,PCS Nitrogen Fertilizer LP,GEN2,2006.0,10.0,8.0,8.0,1,WH,All Other,OS,ST,3.0,2006.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,SERC,MISO,LA,30.226977,-91.055114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50341,PCS Nitrogen Fertilizer LP,GEN3,2010.0,2.0,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,MISO,LA,30.226977,-91.055114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50341,PCS Nitrogen Fertilizer LP,GEN4,2014.0,2.0,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,MISO,LA,30.226977,-91.055114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50350,Forks of Butte Hydro Project,GEN1,1992.0,14.5,14.5,14.5,0.7,WAT,Conventional Hydroelectric,OP,HY,3.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.869284,-121.631865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50351,Rolfe Canal Hydro,1,1987.0,4.3,4.3,4.3,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.27456,-71.604027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50352,Nacimiento Hydro Project,1,1987.0,4.0,3.7,3.6,0.7,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.925,0.9,WECC,CISO,CA,35.798576,-120.883331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50352,Nacimiento Hydro Project,2,1987.0,0.4,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,WECC,CISO,CA,35.798576,-120.883331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50353,Penacook Lower Falls,1,1983.0,4.6,4.6,4.6,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.285761,-71.594962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50354,Newport Hydro,1,1987.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1853,-75.0169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50354,Newport Hydro,2,1987.0,0.8,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1853,-75.0169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50354,Newport Hydro,3,1987.0,0.1,0.1,0.1,0,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.1853,-75.0169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50359,Sloss Industries Corp,10,1958.0,12.5,8.5,7.5,3,NG,Natural Gas Steam Turbine,OS,ST,5.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6799999999999999,0.6,SERC,SOCO,AL,33.568164,-86.79873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50359,Sloss Industries Corp,9,1958.0,12.5,7.5,6.5,3,NG,Natural Gas Steam Turbine,OS,ST,5.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.52,SERC,SOCO,AL,33.568164,-86.79873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50360,Michell Butte Power Project,GEN1,1989.0,1.8,1.8,1.8,0.4,WAT,Conventional Hydroelectric,OP,HY,5.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,OR,43.771896,-117.155023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50361,Owyhee Dam Power Project,GEN1,1985.0,4.3,2.9,2.9,0.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6744186046511629,0.6744186046511629,WECC,IPCO,OR,43.641603,-117.24374,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50362,Tunnel 1 Power Project,GEN1,1993.0,7.0,6.7,6.4,1,WAT,Conventional Hydroelectric,SB,HY,6.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9571428571428572,0.9142857142857144,WECC,IPCO,OR,43.642023,-117.232674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50363,Mesquite Lake Energy Park Plant 2,L313,1987.0,21.0,15.5,15.5,0,WDS,Wood/Wood Waste Biomass,OS,ST,11.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7380952380952381,0.7380952380952381,WECC,IID,CA,32.903826,-115.511949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50365,Ridgewood Providence Power,PH21,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,RI,41.8069,-71.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.058823529411764 -50365,Ridgewood Providence Power,PH22,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,RI,41.8069,-71.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.058823529411764 -50365,Ridgewood Providence Power,PH23,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,RI,41.8069,-71.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.058823529411764 -50365,Ridgewood Providence Power,PH24,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,RI,41.8069,-71.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.058823529411764 -50366,University of Notre Dame,GEN1,1962.0,3.0,3.0,3.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50366,University of Notre Dame,GEN2,1952.0,1.7,1.7,1.7,0.5,NG,Natural Gas Steam Turbine,OP,ST,7.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50366,University of Notre Dame,GEN3,1952.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,7.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.799293107801061 -50366,University of Notre Dame,GEN4,1952.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,7.0,1952.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.799293107801061 -50366,University of Notre Dame,GEN5,1956.0,2.0,2.0,2.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,9.0,1956.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50366,University of Notre Dame,GEN6,1967.0,5.0,5.0,5.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,2.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50366,University of Notre Dame,GEN7,2000.0,9.4,9.4,9.4,0.5,NG,Natural Gas Steam Turbine,OP,ST,3.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50366,University of Notre Dame,GEN8,2006.0,1.9,1.7,1.8,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8947368421052632,0.9473684210526316,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.799146292851448 -50366,University of Notre Dame,GEN9,2006.0,1.9,1.7,1.8,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8947368421052632,0.9473684210526316,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.799146292851448 -50366,University of Notre Dame,GN10,2006.0,1.9,1.7,1.8,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8947368421052632,0.9473684210526316,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.799146292851448 -50366,University of Notre Dame,GT1,2019.0,5.4,5.6,4.7,2.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.8703703703703703,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.948856585711754 -50366,University of Notre Dame,GT2,2019.0,5.4,5.6,4.7,2.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.8703703703703703,RFC,PJM,IN,41.7094,-86.2367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.948856585711754 -50368,Cornell University Central Heat,CT1,2009.0,15.0,12.3,14.5,8,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8200000000000001,0.9666666666666667,NPCC,NYIS,NY,42.4428,-76.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.366686471315765 -50368,Cornell University Central Heat,CT2,2009.0,15.0,12.3,14.5,8,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8200000000000001,0.9666666666666667,NPCC,NYIS,NY,42.4428,-76.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.7168541112097 -50368,Cornell University Central Heat,EDG1,2009.0,1.0,0.9,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,NPCC,NYIS,NY,42.4428,-76.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50368,Cornell University Central Heat,EDG2,2009.0,1.0,0.9,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,NPCC,NYIS,NY,42.4428,-76.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50368,Cornell University Central Heat,TG1,1988.0,1.8,1.0,1.8,0.2,NG,Natural Gas Fired Combined Cycle,OA,CA,7.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.5555555555555556,1.0,NPCC,NYIS,NY,42.4428,-76.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50368,Cornell University Central Heat,TG2,1988.0,5.7,5.3,5.7,0.4,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9298245614035087,1.0,NPCC,NYIS,NY,42.4428,-76.4764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50373,Paxton Creek Cogeneration,GEN1,1986.0,6.3,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809524,0.9523809523809524,RFC,PJM,PA,40.2653,-76.8771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.984523486288351 -50373,Paxton Creek Cogeneration,GEN2,1986.0,6.3,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809524,0.9523809523809524,RFC,PJM,PA,40.2653,-76.8771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.984523486288351 -50375,East Portal Generator,GEN1,1987.0,1.2,1.2,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.2619,-118.6242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50380,Upriver Dam Hydro Plant,GEN1,1936.0,2.0,0.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.25,0.75,WECC,AVA,WA,47.6822,-117.3319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50380,Upriver Dam Hydro Plant,GEN2,1936.0,2.0,0.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.25,0.75,WECC,AVA,WA,47.6822,-117.3319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50380,Upriver Dam Hydro Plant,GEN3,1936.0,2.0,0.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.25,0.75,WECC,AVA,WA,47.6822,-117.3319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50380,Upriver Dam Hydro Plant,GEN4,1984.0,5.8,1.5,5.0,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2586206896551724,0.8620689655172414,WECC,AVA,WA,47.6822,-117.3319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50380,Upriver Dam Hydro Plant,GEN5,1984.0,5.8,1.5,5.0,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2586206896551724,0.8620689655172414,WECC,AVA,WA,47.6822,-117.3319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50382,Twin Reservoirs,GEN1,1988.0,2.2,1.8,1.5,0.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8181818181818181,0.6818181818181818,WECC,BPAT,WA,46.088333,-118.254722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50384,Gregg Falls,1,1985.0,2.2,2.1,2.1,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454545,0.9545454545454545,NPCC,ISNE,NH,43.0168,-71.5679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50384,Gregg Falls,2,1985.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.0168,-71.5679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50388,Phillips 66 Carbon Plant,GEN1,1983.0,27.3,20.0,20.0,2,PC,Petroleum Coke,OP,ST,12.0,1983.0,1,2023,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7326007326007327,0.7326007326007327,WECC,CISO,CA,38.018056,-122.2344,Phillips_Carbon,OT ST,False,6.0,12.0,-1.0,0.54,0.54,4003.115,251.91,1.0,1.79,27.0,25.88763994131365,-403.7752746059228,-0.00014249257303086362,25.89420406894952,-403.85026136291856,8.219424498515286,#TRUE#,#1983-01-01#,#2050-12-31#,Existing,CIPB,CA_CISO,19.8,27.0,16.42,CA,Petroleum Coke,,#FALSE#,19.8,27, -50389,Port Allen (LA),GEN1,1990.0,3.8,3.5,3.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9210526315789475,0.9210526315789475,SERC,MISO,LA,30.477,-91.211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.103383400672362 -50389,Port Allen (LA),GEN2,1990.0,3.8,3.5,3.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9210526315789475,0.9210526315789475,SERC,MISO,LA,30.477,-91.211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.103383400672362 -50392,Eielson AFB Central Heat & Power Plant,DG01,1998.0,1.5,1.4,1.4,0.3,DFO,Petroleum Liquids,SB,IC,11.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.467032967032967 -50392,Eielson AFB Central Heat & Power Plant,DG02,1998.0,1.5,1.4,1.4,0.3,DFO,Petroleum Liquids,SB,IC,11.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.467032967032967 -50392,Eielson AFB Central Heat & Power Plant,DG03,1998.0,1.5,1.4,1.4,0.3,DFO,Petroleum Liquids,SB,IC,11.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.467032967032967 -50392,Eielson AFB Central Heat & Power Plant,DG04,1998.0,1.5,1.4,1.4,0.3,DFO,Petroleum Liquids,SB,IC,11.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.467032967032967 -50392,Eielson AFB Central Heat & Power Plant,TG3,1955.0,5.0,5.0,5.0,1,SUB,Conventional Steam Coal,OP,ST,8.0,1955.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50392,Eielson AFB Central Heat & Power Plant,TG4,1969.0,5.0,5.0,5.0,1,SUB,Conventional Steam Coal,OP,ST,6.0,1969.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50392,Eielson AFB Central Heat & Power Plant,TG5,1987.0,10.0,9.0,9.5,3,SUB,Conventional Steam Coal,OP,ST,10.0,1987.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.95,non-conus,non-conus,AK,64.67141,-147.075988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50393,Friant Hydro Facility,FR1,1986.0,18.4,20.0,20.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.997694,-119.703451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50393,Friant Hydro Facility,M1,1985.0,9.8,9.8,9.8,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.997694,-119.703451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50393,Friant Hydro Facility,RO1,1985.0,2.4,2.3,2.3,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9583333333333333,WECC,CISO,CA,36.997694,-119.703451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50393,Friant Hydro Facility,RO2,2017.0,6.9,7.3,7.3,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,36.997694,-119.703451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,HY1,1917.0,0.8,0.8,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,HY2,1917.0,0.8,0.8,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,HY3,1923.0,0.8,0.8,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,HY4,1912.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,HY5,1950.0,0.7,0.7,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8571428571428572,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,NHG1,1926.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,TG14,1991.0,13.1,12.5,12.1,1,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9541984732824428,0.9236641221374046,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,TG6,1951.0,6.0,5.7,5.5,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9500000000000001,0.9166666666666666,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50395,Georgia-Pacific Corp - Nekoosa Mill,TG8,1966.0,16.0,13.0,15.0,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8125,0.9375,MRO,MISO,WI,44.3142,-89.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50396,Dillard Complex,GEN1,1955.0,5.0,5.0,5.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.0895,-123.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50396,Dillard Complex,GEN2,1955.0,5.0,5.0,5.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.0895,-123.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50396,Dillard Complex,GEN3,1955.0,7.0,7.0,7.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.0895,-123.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50396,Dillard Complex,GEN4,1955.0,11.5,11.5,11.5,2,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.0895,-123.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50396,Dillard Complex,GEN5,1955.0,11.5,11.5,11.5,2,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.0895,-123.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50396,Dillard Complex,GEN6,1955.0,11.5,11.5,11.5,2,WDS,Wood/Wood Waste Biomass,OS,ST,1.0,1955.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.0895,-123.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50397,Pixelle Specialty Solutions LLC - Spring Grove Facility,GEN1,1948.0,6.0,5.0,5.0,2,NG,Natural Gas Steam Turbine,OP,ST,7.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,RFC,PJM,PA,39.870935,-76.868117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50397,Pixelle Specialty Solutions LLC - Spring Grove Facility,GEN3,1948.0,5.1,4.0,4.0,1.2,NG,Natural Gas Steam Turbine,OP,ST,5.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7843137254901962,0.7843137254901962,RFC,PJM,PA,39.870935,-76.868117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50397,Pixelle Specialty Solutions LLC - Spring Grove Facility,GEN4,1962.0,7.5,8.7,8.7,3.5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,PA,39.870935,-76.868117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50397,Pixelle Specialty Solutions LLC - Spring Grove Facility,GEN5,1989.0,45.9,36.1,36.1,9,BIT,Conventional Steam Coal,OP,ST,5.0,1989.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7864923747276689,0.7864923747276689,RFC,PJM,PA,39.870935,-76.868117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50397,Pixelle Specialty Solutions LLC - Spring Grove Facility,GEN6,1994.0,39.1,31.2,31.2,8.2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1994.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7979539641943734,0.7979539641943734,RFC,PJM,PA,39.870935,-76.868117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50398,International Paper Savanna Mill,GE10,1998.0,82.8,82.7,82.8,10,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1998.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9987922705314011,1.0,SERC,SOCO,GA,32.100354,-81.124248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50398,International Paper Savanna Mill,GEN9,1981.0,71.2,71.2,71.2,20,NG,Natural Gas Steam Turbine,OP,ST,6.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.100354,-81.124248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50400,Sand Bar Power Plant,GEN1,1986.0,16.2,15.6,14.0,1,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.962962962962963,0.8641975308641976,WECC,CISO,CA,38.1861,-120.15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50404,BP Chemicals Green Lake Plant,TG2,1989.0,15.0,15.0,15.0,2,WH,All Other,OP,ST,3.0,1989.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.5707,-96.8333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50404,BP Chemicals Green Lake Plant,TG3,1997.0,23.8,23.8,23.8,2,WH,All Other,OP,ST,1.0,1997.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,28.5707,-96.8333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50406,Somerset Plant,GEN1,1976.0,45.9,48.8,48.8,5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1976.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,ME,44.703467,-69.647441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50406,Somerset Plant,GEN2,1990.0,61.2,51.0,51.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1990.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333333,0.8333333333333333,NPCC,ISNE,ME,44.703467,-69.647441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50408,Park Mill,1,1920.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1058,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50408,Park Mill,10,1988.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1058,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50408,Park Mill,2,1922.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1058,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50408,Park Mill,3,1946.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1058,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50408,Park Mill,6,1966.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1058,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50408,Park Mill,7,1968.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1968.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.1058,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50409,Menominee Mill Marinette,4,1924.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.1069,-87.6378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50409,Menominee Mill Marinette,5,1924.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.1069,-87.6378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50409,Menominee Mill Marinette,8,1978.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.1069,-87.6378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50409,Menominee Mill Marinette,9,1978.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1978.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.1069,-87.6378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50410,Chester Operations,6,2020.0,17.3,14.1,16.3,6.5,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.815028901734104,0.9421965317919075,RFC,PJM,PA,39.843743,-75.358801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.963805982833348 -50410,Chester Operations,6A,2020.0,17.3,14.1,16.3,6.5,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.815028901734104,0.9421965317919075,RFC,PJM,PA,39.843743,-75.358801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50410,Chester Operations,7,2020.0,17.3,14.1,16.3,6.5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.815028901734104,0.9421965317919075,RFC,PJM,PA,39.843743,-75.358801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.964129456266773 -50410,Chester Operations,7A,2020.0,17.3,14.1,16.3,6.5,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.815028901734104,0.9421965317919075,RFC,PJM,PA,39.843743,-75.358801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50411,Rutgers Biomedical and Health Cogen,GEN1,1989.0,3.5,3.4,3.7,2.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9714285714285714,1.0,RFC,PJM,NJ,40.73928,-74.187633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.853455102040815 -50411,Rutgers Biomedical and Health Cogen,GEN2,1989.0,3.5,3.4,3.7,2.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9714285714285714,1.0,RFC,PJM,NJ,40.73928,-74.187633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.853455102040815 -50411,Rutgers Biomedical and Health Cogen,GEN3,1989.0,3.5,3.4,3.7,2.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9714285714285714,1.0,RFC,PJM,NJ,40.73928,-74.187633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.853455102040815 -50413,Olmsted Waste Energy,DGCAT,2009.0,1.7,1.3,1.3,0.2,DFO,Petroleum Liquids,SB,IC,10.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7647058823529412,0.7647058823529412,MRO,MISO,MN,44.026072,-92.432313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.183673469387756 -50413,Olmsted Waste Energy,TG2,1987.0,2.2,1.3,0.8,0.4,MSW,Municipal Solid Waste,OP,ST,4.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5909090909090908,0.36363636363636365,MRO,MISO,MN,44.026072,-92.432313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.99806486024166 -50413,Olmsted Waste Energy,TG3,2010.0,5.5,5.0,4.5,0.4,MSW,Municipal Solid Waste,OP,ST,5.0,2010.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.8181818181818181,MRO,MISO,MN,44.026072,-92.432313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.194175589874582 -50413,Olmsted Waste Energy,TGI,1987.0,1.9,1.4,1.4,0.4,MSW,Municipal Solid Waste,OP,ST,4.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.736842105263158,0.736842105263158,MRO,MISO,MN,44.026072,-92.432313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.588542398587034 -50414,Penacook Upper Falls Hydro,1,1986.0,3.4,3.4,3.4,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.283208,-71.600827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50416,Tannery Island Power,GEN1,1986.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,43.98,-75.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50416,Tannery Island Power,GEN2,1986.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,43.98,-75.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50416,Tannery Island Power,GEN3,1986.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,43.98,-75.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50416,Tannery Island Power,GEN4,1986.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,43.98,-75.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50416,Tannery Island Power,GEN5,1986.0,0.3,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,43.98,-75.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50421,Orchard Avenue 1,201,1987.0,0.8,0.8,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,WECC,PACW,WA,46.596413,-120.677489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50421,Orchard Avenue 1,301,1987.0,0.8,0.8,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,WECC,PACW,WA,46.596413,-120.677489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50423,Cowiche,983,1987.0,1.7,1.6,1.6,1,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9411764705882354,0.9411764705882354,WECC,PACW,WA,46.692628,-120.737194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50427,Bronx Zoo,GEN1,1991.0,0.5,0.5,0.5,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.844114,-73.876888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.6200621093186 -50427,Bronx Zoo,GEN2,1991.0,0.5,0.5,0.5,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.844114,-73.876888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.6200621093186 -50427,Bronx Zoo,GEN3,1991.0,1.1,1.1,1.1,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.844114,-73.876888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.620065139381518 -50427,Bronx Zoo,GEN4,1995.0,1.5,1.5,1.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.844114,-73.876888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.620063961023556 -50431,University of Michigan,CT6,2022.0,15.5,15.5,16.0,3,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,42.281167,-83.734617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.82043280106821 -50431,University of Michigan,TG1,1986.0,12.5,11.5,11.5,2.5,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.92,0.92,RFC,MISO,MI,42.281167,-83.734617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50431,University of Michigan,TG10,1992.0,3.5,3.5,5.0,0.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,42.281167,-83.734617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.0764783738239 -50431,University of Michigan,TG7,1975.0,12.5,11.5,11.5,2.5,NG,Natural Gas Fired Combined Cycle,OS,CA,1.0,1975.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.92,0.92,RFC,MISO,MI,42.281167,-83.734617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50431,University of Michigan,TG8,1975.0,12.5,11.5,11.5,2.5,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1975.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.92,0.92,RFC,MISO,MI,42.281167,-83.734617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50431,University of Michigan,TG9,1990.0,3.5,3.5,5.0,0.5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,MISO,MI,42.281167,-83.734617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.230011907263432 -50433,Ada Dam,ADA1,1984.0,1.4,1.4,1.4,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,42.950642,-85.485944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50435,Sugarloaf Hydro Plant,SUG1,1985.0,2.5,2.5,2.5,0.4,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.252672,-106.374808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50436,Cascade Dam,CAS1,1986.0,1.6,1.6,1.6,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,42.909408,-85.49888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50437,French Landing Dam,FRL1,1988.0,1.6,1.6,1.6,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,42.214264,-83.440692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50439,Oconto Falls Lower,GEN1,1971.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OS,HY,1.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.8719,-88.1439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50439,Oconto Falls Lower,GEN2,1971.0,1.7,1.7,1.7,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.8719,-88.1439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN1,1903.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OS,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN2,1903.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OS,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN3,1903.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,1903.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN4,1913.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN5,1913.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN6,1913.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN7,1940.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GEN9,1982.0,47.5,40.5,47.5,5,WDS,Wood/Wood Waste Biomass,OS,ST,1.0,1982.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8526315789473684,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN10,1985.0,15.0,15.8,15.8,5,WDS,Wood/Wood Waste Biomass,OS,ST,10.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN11,1940.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN12,1940.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN13,1940.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN14,1940.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN15,1940.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN16,1940.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50447,S D Warren Westbrook,GN17,1940.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.684857,-70.353152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50449,Indeck Silver Springs Energy Center,GEN1,1991.0,39.4,34.7,45.1,34,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8807106598984773,1.0,NPCC,NYIS,NY,42.6544,-78.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50449,Indeck Silver Springs Energy Center,GEN2,1991.0,17.2,17.2,17.2,10,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,NYIS,NY,42.6544,-78.0772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50450,Indeck Oswego Energy Center,GEN1,1990.0,41.2,52.7,59.9,34.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,43.471745,-76.493474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50450,Indeck Oswego Energy Center,GEN2,1990.0,16.2,,,10,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,NPCC,NYIS,NY,43.471745,-76.493474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50451,Indeck Yerkes Energy Center,GEN1,1989.0,40.6,45.8,57.3,42,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,42.9671,-78.9182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50451,Indeck Yerkes Energy Center,GEN2,1989.0,19.3,,, ,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,NPCC,NYIS,NY,42.9671,-78.9182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50456,Procter & Gamble Cincinnati Plant,GEN1,1965.0,12.5,11.7,11.8,1.5,NG,Natural Gas Steam Turbine,OP,ST,11.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9359999999999999,0.9440000000000001,RFC,PJM,OH,39.175,-84.5042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50458,Indeck Corinth Energy Center,GEN1,1995.0,92.0,72.7,91.5,72.7,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7902173913043479,0.9945652173913043,NPCC,NYIS,NY,43.25,-73.8125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50458,Indeck Corinth Energy Center,GEN2,1995.0,55.0,54.5,42.0,39.5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.990909090909091,0.7636363636363637,NPCC,NYIS,NY,43.25,-73.8125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50461,Cheboygan,GEN1,1984.0,1.5,0.7,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4666666666666667,0.7333333333333334,RFC,MISO,MI,45.637537,-84.481387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50463,Procter & Gamble Mehoopany Mill,GEN1,1985.0,53.6,40.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7462686567164178,1.0,RFC,PJM,PA,41.574259,-76.043233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50463,Procter & Gamble Mehoopany Mill,GEN2,1984.0,2.6,0.9,1.6,0.2,NG,Natural Gas Steam Turbine,OP,ST,10.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.34615384615384615,0.6153846153846154,RFC,PJM,PA,41.574259,-76.043233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50463,Procter & Gamble Mehoopany Mill,GEN3,2013.0,64.0,64.0,64.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,41.574259,-76.043233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50464,Oxnard,GEN1,1982.0,19.2,22.4,22.4,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,34.196,-119.1667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.928298636344524 -50464,Oxnard,GEN2,1989.0,49.5,48.5,48.5,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9797979797979798,0.9797979797979798,WECC,CISO,CA,34.196,-119.1667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.92829866190977 -50465,Flint River Operations,GEN1,1980.0,46.6,46.6,46.6,5,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1980.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.2544,-84.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50465,Flint River Operations,GEN2,2015.0,38.5,30.5,30.5,5,WDS,Wood/Wood Waste Biomass,OP,ST,4.0,2015.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7922077922077921,0.7922077922077921,SERC,SOCO,GA,32.2544,-84.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50466,Buckeye Florida LP,GEN2,1953.0,7.8,5.3,6.0,3,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1953.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6794871794871795,0.7692307692307693,SERC,FPC,FL,30.0688,-83.5253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50466,Buckeye Florida LP,GEN3,1965.0,7.5,7.9,7.9,3,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1965.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FPC,FL,30.0688,-83.5253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50466,Buckeye Florida LP,GEN4,1956.0,16.9,8.7,7.7,3,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1956.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.514792899408284,0.4556213017751479,SERC,FPC,FL,30.0688,-83.5253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50466,Buckeye Florida LP,GEN5,1964.0,11.0,7.7,8.3,3,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1964.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7,0.7545454545454546,SERC,FPC,FL,30.0688,-83.5253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50466,Buckeye Florida LP,GEN6,2011.0,29.8,2.6,4.2,3,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,2011.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.0872483221476511,0.14093959731543626,SERC,FPC,FL,30.0688,-83.5253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50468,Rocky Mount Mill,1,1949.0,0.6,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OS,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,SERC,CPLE,NC,35.960058,-77.802435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50468,Rocky Mount Mill,2,1941.0,0.5,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,1941.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8,0.8,SERC,CPLE,NC,35.960058,-77.802435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50468,Rocky Mount Mill,3,1949.0,0.5,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4,0.4,SERC,CPLE,NC,35.960058,-77.802435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50472,"Covanta Niagara I, LLC",GEN1,1980.0,25.0,18.0,18.0,3,MSW,Municipal Solid Waste,OP,ST,8.0,1980.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.72,NPCC,NYIS,NY,43.0839,-79.0056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50472,"Covanta Niagara I, LLC",GEN2,1980.0,25.0,18.0,18.0,3,MSW,Municipal Solid Waste,OP,ST,8.0,1980.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.72,NPCC,NYIS,NY,43.0839,-79.0056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50474,Swift Creek Chemical Complex,SCC,1980.0,18.8,15.9,15.9,5,OTH,All Other,OP,ST,1.0,1980.0, , ,,,,,other,other,Other,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8457446808510638,0.8457446808510638,SERC,FPC,FL,30.4522,-82.8644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50475,Corpus Christi,GEN1,1989.0,41.0,33.0,41.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8048780487804879,1.0,TRE,ERCO,TX,27.811083,-97.595813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.43621848006282 -50476,Packaging of America Tomahawk Mill,GEN1,1948.0,6.3,5.4,5.8,0.1,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1948.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,0.9206349206349207,MRO,MISO,WI,45.4431,-89.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50476,Packaging of America Tomahawk Mill,GEN2,1978.0,9.4,8.2,8.9,0.1,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1978.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8723404255319148,0.9468085106382979,MRO,MISO,WI,45.4431,-89.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50476,Packaging of America Tomahawk Mill,GEN3,1920.0,1.0,0.5,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.6,MRO,MISO,WI,45.4431,-89.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50476,Packaging of America Tomahawk Mill,GEN4,1920.0,1.0,0.3,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.30000000000000004,0.19999999999999996,MRO,MISO,WI,45.4431,-89.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50476,Packaging of America Tomahawk Mill,GEN5,1920.0,1.0,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.30000000000000004,0.30000000000000004,MRO,MISO,WI,45.4431,-89.7342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50479,Georgia-Pacific Big Island,BHG1,1920.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.534,-79.357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50479,Georgia-Pacific Big Island,BHG2,1920.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.534,-79.357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50479,Georgia-Pacific Big Island,GEN1,1965.0,7.5,7.0,7.0,3.5,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1965.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9333333333333333,RFC,PJM,VA,37.534,-79.357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG10,1946.0,6.0,6.0,6.0,2,BIT,Conventional Steam Coal,OP,ST,2.0,1946.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG11,1949.0,6.0,6.0,6.0,2,BIT,Conventional Steam Coal,OP,ST,5.0,1949.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG12,1953.0,6.0,6.0,6.0,2,BIT,Conventional Steam Coal,OP,ST,2.0,1953.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG13,1960.0,7.0,7.0,7.0,2,BIT,Conventional Steam Coal,OP,ST,1.0,1960.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG14,1962.0,10.0,10.0,10.0,2,BIT,Conventional Steam Coal,OP,ST,4.0,1962.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG15,1963.0,7.5,7.5,7.5,2,BIT,Conventional Steam Coal,OP,ST,10.0,1963.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG16,1966.0,10.4,10.4,10.4,1.5,NG,Natural Gas Steam Turbine,OP,ST,7.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG17,1966.0,10.4,10.4,10.4,1.5,NG,Natural Gas Steam Turbine,OP,ST,10.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG18,1967.0,10.4,10.4,10.4,1.5,NG,Natural Gas Steam Turbine,OP,ST,7.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG19,1970.0,10.4,10.4,10.4,1.5,NG,Natural Gas Steam Turbine,OP,ST,3.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG20,1972.0,10.4,10.4,10.4,1.5,NG,Natural Gas Steam Turbine,OP,ST,4.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG21,1969.0,15.0,15.0,15.0,2,NG,Natural Gas Steam Turbine,OP,ST,7.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG22,1982.0,15.4,15.4,15.4,1.5,BIT,Conventional Steam Coal,OP,ST,9.0,1982.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG24,1983.0,16.8,16.8,16.8,2,NG,Natural Gas Steam Turbine,OP,ST,7.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG25,1994.0,18.0,18.0,18.0,2,BIT,Conventional Steam Coal,OP,ST,12.0,1994.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TG26,1994.0,16.6,16.6,16.6,1.5,BIT,Conventional Steam Coal,OP,ST,10.0,1994.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TGO7,1936.0,6.0,6.0,6.0,2,BIT,Conventional Steam Coal,OP,ST,9.0,1936.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TGO8,1939.0,6.0,6.0,6.0,2,BIT,Conventional Steam Coal,OP,ST,9.0,1939.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50481,Tennessee Eastman Operations,TGO9,1941.0,6.0,6.0,6.0,2,BIT,Conventional Steam Coal,OP,ST,7.0,1941.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,TN,36.5219,-82.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50482,Clewiston Sugar House,TG6,2004.0,15.0,14.0,14.1,5,AB,Other Waste Biomass,OP,ST,3.0,2004.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.94,SERC,FPC,FL,26.7351,-80.9377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50482,Clewiston Sugar House,TG7,2006.0,20.0,18.6,18.6,7.5,AB,Other Waste Biomass,OP,ST,10.0,2006.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.93,0.93,SERC,FPC,FL,26.7351,-80.9377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50482,Clewiston Sugar House,TG8,2007.0,14.0,12.0,12.0,5,AB,Other Waste Biomass,OP,ST,12.0,2007.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,0.8571428571428572,SERC,FPC,FL,26.7351,-80.9377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50487,PPG Powerhouse A,A1,1943.0,7.5,7.5,7.5,1,PUR,All Other,OS,ST,6.0,1943.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.225054,-93.28128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50487,PPG Powerhouse A,A2,1943.0,7.5,7.5,7.5,1,PUR,All Other,OS,ST,6.0,1943.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.225054,-93.28128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50487,PPG Powerhouse A,A4,1943.0,7.5,7.5,7.5,1,PUR,All Other,OS,ST,5.0,1943.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.225054,-93.28128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50487,PPG Powerhouse A,A7,1950.0,10.0,10.0,10.0,1,PUR,All Other,OS,ST,10.0,1950.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.225054,-93.28128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50487,PPG Powerhouse A,A9,1957.0,20.0,20.0,20.0,1,PUR,All Other,OS,ST,8.0,1957.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.225054,-93.28128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50488,PPG Riverside,GEN1,1947.0,35.0,35.0,40.0,8,PUR,All Other,OS,ST,9.0,1947.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,30.221746,-93.280693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50488,PPG Riverside,GEN2,1950.0,45.0,30.0,30.0,8,PUR,All Other,OP,ST,6.0,1950.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,0.6666666666666667,SERC,MISO,LA,30.221746,-93.280693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50488,PPG Riverside,GEN3,1969.0,82.0,38.0,40.0,8,PUR,All Other,OP,ST,2.0,1969.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.46341463414634143,0.4878048780487805,SERC,MISO,LA,30.221746,-93.280693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50489,PPG Powerhouse C,C1,1977.0,73.1,55.0,63.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7523939808481532,0.8618331053351573,SERC,MISO,LA,30.22612,-93.295173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.456161071093376 -50489,PPG Powerhouse C,C2,1978.0,73.1,55.0,63.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7523939808481532,0.8618331053351573,SERC,MISO,LA,30.22612,-93.295173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.456161071093376 -50489,PPG Powerhouse C,C3,1977.0,57.1,52.0,52.0,25,NG,Natural Gas Steam Turbine,OP,ST,9.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9106830122591943,0.9106830122591943,SERC,MISO,LA,30.22612,-93.295173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.655851043437146 -50489,PPG Powerhouse C,C4,1986.0,77.2,70.6,78.6,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9145077720207253,1.0,SERC,MISO,LA,30.22612,-93.295173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50489,PPG Powerhouse C,C5,1986.0,77.2,70.6,78.6,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9145077720207253,1.0,SERC,MISO,LA,30.22612,-93.295173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50490,PPG Plant C Caustic,TE,1986.0,3.4,2.7,2.7,1,NG,Natural Gas Steam Turbine,OP,ST,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7941176470588236,0.7941176470588236,SERC,MISO,LA,30.226444,-93.293765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.6642561983471076 -50491,Axiall Natrium Plant,GEN4,1943.0,7.5,7.5,7.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,1.0,1943.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,WV,39.7475,-80.8547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50491,Axiall Natrium Plant,GEN6,1954.0,26.0,26.0,26.0,5,NG,Natural Gas Steam Turbine,OP,ST,1.0,1954.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,WV,39.7475,-80.8547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50491,Axiall Natrium Plant,GEN7,1966.0,82.0,82.0,82.0,10,NG,Natural Gas Steam Turbine,OP,ST,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,WV,39.7475,-80.8547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50492,Gas Utilization Facility,1,1985.0,2.3,2.3,2.3,1,OBG,Other Waste Biomass,OP,IC,6.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.679172,-117.246698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.491546120608678 -50492,Gas Utilization Facility,2,1985.0,2.3,2.3,2.3,1,OBG,Other Waste Biomass,OP,IC,6.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.679172,-117.246698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.491546120608678 -50492,Gas Utilization Facility,3,2002.0,1.5,1.0,1.5,0.5,WAT,Conventional Hydroelectric,OS,HY,5.0,2002.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,1.0,WECC,CISO,CA,32.679172,-117.246698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50493,Double C Generation Limited Partnership,DC1,1989.0,24.9,23.0,24.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9638554216867471,WECC,CISO,CA,35.5005,-119.046,DoubleC1,GT LM_LM2500,False,1.0,1.0,-1.0,40.86,40.86,1360.095,205.662,1.0,0.45,45.4,-569.0032899604237,26086.85296324861,-12.784867774786155,585.4436006913455,26.03393109988264,8.779594540141977,#TRUE#,#1989-03-14#,#2050-12-31#,Existing,CIPV,CA_CISO,44.946,45.4,26.22,CA,NG,Areo,#FALSE#,44.946,45.4,10.483969757871566 -50493,Double C Generation Limited Partnership,DC2,1989.0,24.9,23.0,24.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9638554216867471,WECC,CISO,CA,35.5005,-119.046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.483969757871566 -50494,Kern Front Limited,KF1,1989.0,24.9,23.0,24.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9638554216867471,WECC,CISO,CA,35.51647,-119.040128,Kern_Front_KF1,GT LM_LM2500,False,1.0,1.0,-1.0,46.8,46.8,1557.818,235.56,1.0,0.45,52.0,-47.235557350819704,2747.2929191492613,-1.05947432825567,60.62417347110284,2.47890994650486,6.745639703481298,#TRUE#,#1989-01-07#,#2050-12-31#,Existing,CIPV,CA_CISO,50.0,52.0,26.3,CA,NG,Areo,#FALSE#,50,52,10.674333347881115 -50494,Kern Front Limited,KF2,1989.0,24.9,23.0,24.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9638554216867471,WECC,CISO,CA,35.51647,-119.040128,Kern_Front_KF2,GT LM_LM2500,False,1.0,1.0,-1.0,27.0,27.0,898.7412,135.9,1.0,0.45,30.0,-203.6208631460593,6276.535751954201,-7.035182520642071,216.16142145028496,14.591019364006762,6.7558121842296215,#TRUE#,#1989-01-07#,#2050-12-31#,Existing,CIPV,CA_CISO,29.7,30.0,26.3,CA,NG,Areo,#FALSE#,29.7,30,10.674333347881115 -50495,High Sierra Limited,HS1,1989.0,24.9,23.0,24.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9638554216867471,WECC,CISO,CA,35.509041,-119.030546,HighSierra1,GT LM_LM2500,False,1.0,1.0,-1.0,44.1,44.1,867.67,115.3,1.0,0.45,24.0,0.07438068555865673,200.3428619983091,-1.350582965550795e-05,0.07487298906470707,200.33849856469521,11.383685068584159,#TRUE#,#1989-02-24#,#2050-12-31#,Existing,CIPV,CA_CISO,13.5,24.0,26.27,CA,NG,Areo,#FALSE#,24.5,49,10.562964162598616 -50495,High Sierra Limited,HS2,1989.0,24.9,23.0,24.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9638554216867471,WECC,CISO,CA,35.509041,-119.030546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.562964162598616 -50509,PCS Phosphate,GEN1,1984.0,54.0,54.0,54.0,5,WH,All Other,OP,ST,12.0,1984.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.376266,-76.779864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50512,Glen Park Hydroelectric Project,GEN1,1999.0,14.5,14.5,14.5,2.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.000608,-75.961156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50512,Glen Park Hydroelectric Project,GEN2,1999.0,14.5,14.5,14.5,2.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.000608,-75.961156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50512,Glen Park Hydroelectric Project,GEN3,1999.0,3.6,3.6,3.6,0.5,WAT,Conventional Hydroelectric,OP,HY,10.0,1999.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.000608,-75.961156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50513,Stillwater Reservoir Hydro,GEN1,1987.0,1.8,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.897386,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50514,Fort Miller Hydroelectric Facility,GEN1,1984.0,2.5,2.5,2.5,2.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.160868,-73.584076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50514,Fort Miller Hydroelectric Facility,GEN2,1984.0,2.5,2.5,2.5,2.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.160868,-73.584076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50530,Equilon Los Angeles Refining,GEN1,1982.0,30.0,18.5,22.2,18,OG,Other Gases,OP,GT,12.0,1982.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,0.6166666666666667,0.74,WECC,LDWP,CA,33.791667,-118.234722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.359210740911717 -50530,Equilon Los Angeles Refining,GEN2,1982.0,30.0,20.0,23.6,18,OG,Other Gases,OP,GT,12.0,1982.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,0.6666666666666667,0.7866666666666667,WECC,LDWP,CA,33.791667,-118.234722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.359210740911717 -50530,Equilon Los Angeles Refining,GEN3,1991.0,23.0,5.8,8.4,4,OG,Other Gases,OP,ST,4.0,1991.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.25217391304347825,0.3652173913043478,WECC,LDWP,CA,33.791667,-118.234722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50532,Victory Garden (Tehachapi),15SLE,2000.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,5.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0686,-118.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50532,Victory Garden (Tehachapi),WGNS,1981.0,24.6,17.3,17.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,1981.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.7032520325203252,0.7032520325203252,WECC,CISO,CA,35.0686,-118.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50533,Painted Hills Wind Park,PHW,2021.0,46.8,46.8,46.8,0,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9369,-116.6183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50536,Sky River Wind Energy Center,SRW1,2021.0,60.2,60.2,60.2,5,WND,Onshore Wind Turbine,OP,WT,9.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.2608,-118.2469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50537,SRI International Cogen Project,GEN1,1987.0,6.0,5.6,5.6,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333332,0.9333333333333332,WECC,CISO,CA,37.455314,-122.172797,SRI_Int_Cgn,OT GT,False,1.0,1.0,-1.0,6.21,6.21,206.7105,31.257,1.0,0.45,6.9,9.346982749667307,-11.695381235879097,-3.34484456264761e-06,9.347014946013722,-11.695454738142923,6.779515863274642,#TRUE#,#1987-03-10#,#2050-12-31#,Existing,CIPB,CA_CISO,3.105,6.9,0.92,CA,NG,Areo,#FALSE#,3.105,6.9,16.06451155536651 -50539,Boltonville Hydro Associates,1,1984.0,0.5,0.5,0.5,0,WAT,Conventional Hydroelectric,OP,HY,7.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.1706,-72.0994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50539,Boltonville Hydro Associates,2,1984.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OS,HY,7.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.1706,-72.0994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50539,Boltonville Hydro Associates,3,1989.0,0.3,0.3,0.3,0,WAT,Conventional Hydroelectric,OS,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.1706,-72.0994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50540,BP Carson Refinery,GEN1,1984.0,12.0,6.5,6.5,1,OG,Other Gases,SB,OT,6.0,1984.0, , ,,,,,other,gas,Other Gas,Other,0.5416666666666667,0.5416666666666667,WECC,CISO,CA,33.8153,-118.2358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50540,BP Carson Refinery,GEN2,1982.0,1.5,1.5,1.5,0.2,NG,Natural Gas Steam Turbine,OS,ST,4.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.8153,-118.2358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50541,Harbor Cogen,GEN1,1988.0,82.3,80.8,84.5,65,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9817739975698664,1.0,WECC,CISO,CA,33.7771,-118.2303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.016090913582687 -50541,Harbor Cogen,ST1,2001.0,13.6,9.9,10.4,0,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7279411764705883,0.7647058823529412,WECC,CISO,CA,33.7771,-118.2303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50541,Harbor Cogen,ST2,2001.0,11.5,11.0,11.0,0,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9565217391304348,0.9565217391304348,WECC,CISO,CA,33.7771,-118.2303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50544,Port Townsend Paper,GEN6,1986.0,7.5,7.5,7.5,0.5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1986.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,WA,48.0931,-122.7958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50544,Port Townsend Paper,HDRO,1982.0,0.4,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OS,HY,8.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,WECC,BPAT,WA,48.0931,-122.7958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50545,Lawrence Hydroelectric Associates,GEN1,1981.0,7.4,7.0,6.8,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9189189189189189,NPCC,ISNE,MA,42.6994,-71.1653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50545,Lawrence Hydroelectric Associates,GEN2,1981.0,7.4,7.0,6.8,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9459459459459459,0.9189189189189189,NPCC,ISNE,MA,42.6994,-71.1653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50546,Bowman,GEN1,1986.0,3.6,3.6,3.6,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,39.448352,-120.653417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50552,GPS Cabazon Wind LLC,WGNS,1999.0,38.9,38.9,38.9,2,WND,Onshore Wind Turbine,OP,WT,1.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.914986,-116.71026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50553,Edom Hills Project 1 LLC,1,2008.0,20.0,20.0,20.0,4,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.881667,-116.460278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50555,Rosemary Power Station,GEN1,1990.0,86.0,75.0,88.0,52,DFO,Petroleum Liquids,OP,CT,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.872093023255814,1.0,SERC,PJM,NC,36.4517,-77.6594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50555,Rosemary Power Station,GEN2,1990.0,40.0,36.0,44.0,24,DFO,Petroleum Liquids,OP,CT,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Combustion Turbine Part,0.9,1.0,SERC,PJM,NC,36.4517,-77.6594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50555,Rosemary Power Station,GEN3,1990.0,54.0,54.0,54.0,44,DFO,Petroleum Liquids,OP,CA,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Steam Part,1.0,1.0,SERC,PJM,NC,36.4517,-77.6594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50558,Frontier,GT01,1989.0,87.2,,, ,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,MRO,SWPP,OK,35.44221,-97.647694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50558,Frontier,ST01,1989.0,44.2,120.0,120.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1989.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,SWPP,OK,35.44221,-97.647694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50560,Pacific-Ultrapower Chinese Station,GEN1,1986.0,25.0,18.0,18.0,15,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,1986.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.72,WECC,CISO,CA,37.874056,-120.477556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50561,Eagle Point Power Generation,GTG1,1990.0,90.0,85.0,90.0,82,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,1.0,RFC,PJM,NJ,39.8746,-75.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50561,Eagle Point Power Generation,GTG2,1990.0,90.0,85.0,90.0,82,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,1.0,RFC,PJM,NJ,39.8746,-75.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50561,Eagle Point Power Generation,STG1,1991.0,45.0,47.0,47.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,NJ,39.8746,-75.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50561,Eagle Point Power Generation,STG2,2016.0,26.8,27.0,27.0,24,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,NJ,39.8746,-75.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50563,Settlers Hill Gas Recovery,GEN1,1988.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,10.0,1988.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,PJM,IL,41.871914,-88.287721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.234415778890174 -50563,Settlers Hill Gas Recovery,GEN2,1998.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,5.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,PJM,IL,41.871914,-88.287721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.234415778890174 -50564,New Milford Gas Recovery,GEN2,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.547671,-73.425237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.602312543798178 -50564,New Milford Gas Recovery,GEN4,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.547671,-73.425237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.602312543798178 -50566,Milam Gas Recovery,GEN1,1991.0,0.8,0.8,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6603,-90.1317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.753055752535445 -50566,Milam Gas Recovery,GEN2,1991.0,0.8,0.8,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6603,-90.1317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.753055752535445 -50566,Milam Gas Recovery,GEN3,1993.0,0.8,0.8,0.8,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6603,-90.1317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.753055752535445 -50568,High Acres Gas Recovery,GEN1,1991.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1991.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775925843273795 -50568,High Acres Gas Recovery,GEN2,1991.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1991.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775925843273795 -50568,High Acres Gas Recovery,GEN3,1991.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1991.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775925843273795 -50568,High Acres Gas Recovery,GEN4,1991.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1991.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775925843273795 -50568,High Acres Gas Recovery,GEN5,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775926724139692 -50568,High Acres Gas Recovery,GEN6,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775926724139692 -50568,High Acres Gas Recovery,GEN7,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775926724139692 -50568,High Acres Gas Recovery,GEN8,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.081667,-77.381667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.775926724139692 -50571,Altamont Gas Recovery,GEN1,1989.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,3.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,WECC,CISO,CA,37.749308,-121.649866,Altamont1,OT GT,True,1.0,1.0,-1.0,3.0,3.0,70.41619,1.25,1.0,2.027986,7.4,-3.4241183840251597,115.02647481130721,-7.414772607627373e-06,-3.4240350726831097,115.02624975010161,18.063450752749763,#TRUE#,#2018-02-01#,#2050-12-31#,Existing,CIPV,CA_CISO,4.0,7.4,12.0,CA,Bio,,#FALSE#,9,12.5,19.714091386879367 -50571,Altamont Gas Recovery,GEN2,1989.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,3.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,WECC,CISO,CA,37.749308,-121.649866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.714091386879367 -50572,CSL Gas Recovery,GEN1,1989.0,3.0,2.9,3.0,1,LFG,Landfill Gas,OP,CT,3.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.9666666666666667,1.0,SERC,FPL,FL,26.287966,-80.166526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.674025250119104 -50572,CSL Gas Recovery,GEN2,1989.0,3.0,2.9,3.0,1,LFG,Landfill Gas,OP,CT,3.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.9666666666666667,1.0,SERC,FPL,FL,26.287966,-80.166526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.776372601609243 -50572,CSL Gas Recovery,GEN3,1989.0,3.0,2.9,3.0,1,LFG,Landfill Gas,OP,CT,3.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.9666666666666667,1.0,SERC,FPL,FL,26.287966,-80.166526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.041720462443198 -50572,CSL Gas Recovery,GEN4,2000.0,2.2,2.2,2.2,0.2,LFG,Landfill Gas,OP,CA,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Steam Part,1.0,1.0,SERC,FPL,FL,26.287966,-80.166526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50573,CID Gas Recovery,GEN2,1989.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,3.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,PJM,IL,41.658794,-87.577716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.904269235343087 -50575,Lake Gas Recovery,GEN2,1993.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,8.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,PJM,IL,42.10625,-87.813738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.436330817197245 -50575,Lake Gas Recovery,GEN3,1993.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,8.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,PJM,IL,42.10625,-87.813738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.436330817197245 -50576,Metro Gas Recovery,GEN1,1985.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,12.0,1985.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,MISO,WI,42.850556,-88.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.353130878796023 -50576,Metro Gas Recovery,GEN2,1985.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,12.0,1985.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,RFC,MISO,WI,42.850556,-88.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.353130878796023 -50576,Metro Gas Recovery,GEN3,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.850556,-88.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.886735081717978 -50576,Metro Gas Recovery,GEN4,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.850556,-88.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.886735081717978 -50576,Metro Gas Recovery,GEN5,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.850556,-88.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.886735081717978 -50576,Metro Gas Recovery,GEN6,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.850556,-88.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.886735081717978 -50577,Omega Hills Gas Recovery,GEN1,1985.0,3.1,2.9,3.3,1,LFG,Landfill Gas,OP,GT,12.0,1985.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9354838709677419,1.0,RFC,MISO,WI,43.1922,-88.1597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.009166688071563 -50577,Omega Hills Gas Recovery,GEN2,1985.0,3.1,2.9,3.3,1,LFG,Landfill Gas,OP,GT,12.0,1985.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9354838709677419,1.0,RFC,MISO,WI,43.1922,-88.1597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.009166688071563 -50577,Omega Hills Gas Recovery,GEN3,2001.0,3.3,3.0,3.0,1,LFG,Landfill Gas,OP,GT,9.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9090909090909092,0.9090909090909092,RFC,MISO,WI,43.1922,-88.1597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.009166845863714 -50577,Omega Hills Gas Recovery,GEN5,2010.0,3.3,2.9,3.3,1,LFG,Landfill Gas,OP,GT,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8787878787878788,1.0,RFC,MISO,WI,43.1922,-88.1597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.009166845863714 -50610,Saint Johns Health Center,01,1992.0,1.2,1.0,1.1,0.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,0.9166666666666667,WECC,CISO,CA,34.030318,-118.47844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50611,Westwood Generation LLC,GEN1,1987.0,36.0,30.0,30.0,24,WC,Conventional Steam Coal,OP,ST,6.0,1987.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,RFC,PJM,PA,40.6191,-76.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50612,McKittrick Limited,GEN1,1991.0,46.0,46.0,48.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.319503,-119.661992,McKittrick_Ltd,GT LM_LM5000,False,1.0,1.0,-1.0,42.75,42.75,1423.007,10.45,1.0,0.45,47.5,-906.9277886337218,43344.92724321213,-19.418428378648155,927.1278382588318,39.041874880146324,10.919286129977717,#TRUE#,#1991-10-16#,#2050-12-31#,Existing,CIPV,CA_CISO,47.0,47.5,45.4,CA,NG,Industrial,#FALSE#,47,47.5, -50614,Mosinee Mill,GEN1,1976.0,15.0,13.0,13.0,2,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1976.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8666666666666667,0.8666666666666667,MRO,MISO,WI,44.7881,-89.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50614,Mosinee Mill,HYD1,1924.0,2.2,2.0,2.0,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,MRO,MISO,WI,44.7881,-89.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50614,Mosinee Mill,HYD2,1916.0,0.6,0.7,0.7,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.7881,-89.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50614,Mosinee Mill,HYD3,1916.0,0.6,0.7,0.7,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,44.7881,-89.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50614,Mosinee Mill,WEST,1951.0,5.0,5.0,5.0,2,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1951.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.7881,-89.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50621,Central Power Plant,GEN4,1958.0,2.0,0.5,2.0,0.5,NG,Natural Gas Steam Turbine,SB,ST,8.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.25,1.0,NPCC,ISNE,RI,41.744973,-71.458415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50621,Central Power Plant,GEN5,2004.0,3.5,2.8,3.8,0.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7999999999999999,1.0,NPCC,ISNE,RI,41.744973,-71.458415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.672169927554087 -50621,Central Power Plant,GEN6,2004.0,3.5,2.8,3.8,0.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7999999999999999,1.0,NPCC,ISNE,RI,41.744973,-71.458415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.672169927554087 -50621,Central Power Plant,GEN7,2015.0,2.0,2.0,2.0,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,RI,41.744973,-71.458415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.730532786885245 -50622,Berry Cogen Tanne Hills 18,GEN1,1986.0,8.8,8.0,9.0,4.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,1.0,WECC,CISO,CA,35.089829,-119.440881,BerryTanneHills18-1,GT,False,1.0,1.0,-1.0,15.84,15.84,527.2615,79.728,1.0,0.45,17.6,-955.4712970829167,16914.801947093834,-54.851508616274955,964.6840138224312,110.49812648643251,10.920165282570164,#TRUE#,#1986-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,17.424,17.6,13.85,CA,NG,Areo,#FALSE#,17.424,17.6,12.985880837951571 -50622,Berry Cogen Tanne Hills 18,GEN2,1986.0,8.8,8.0,9.0,4.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,1.0,WECC,CISO,CA,35.089829,-119.440881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.985880837951571 -50624,"Torrance Refining Company, LLC",EXP1,1983.0,7.5,7.5,7.5,0,WH,All Other,OP,ST,9.0,1983.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.85336,-118.33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50624,"Torrance Refining Company, LLC",GTG1,1988.0,22.5,22.5,22.5,10.5,OG,Other Gases,OP,GT,11.0,1988.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.85336,-118.33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.98448973656787 -50624,"Torrance Refining Company, LLC",STG1,1988.0,19.3,19.3,19.3,1.5,WH,All Other,OP,ST,11.0,1988.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.85336,-118.33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,ETG,1978.0,7.5,5.0,5.0,2,OG,Other Gases,OP,OT,1.0,1978.0, , ,,,,,other,gas,Other Gas,Other,0.6666666666666667,0.6666666666666667,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG22,1978.0,27.2,25.0,25.0,8,NG,Natural Gas Steam Turbine,OP,ST,2.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9191176470588236,0.9191176470588236,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG23,1993.0,40.5,38.6,38.6,15,NG,Natural Gas Steam Turbine,OP,ST,6.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9530864197530865,0.9530864197530865,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG24,1993.0,38.6,32.0,38.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8290155440414507,0.9844559585492227,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG32,1970.0,25.0,25.0,25.0,10,NG,Natural Gas Steam Turbine,OP,ST,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG33,1966.0,20.0,20.0,20.0,5,NG,Natural Gas Steam Turbine,OP,ST,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG34,1967.0,30.0,30.0,30.0,10,NG,Natural Gas Steam Turbine,OP,ST,1.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG41,2005.0,163.0,145.0,165.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8895705521472392,1.0,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG42,2005.0,163.0,145.0,165.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8895705521472392,1.0,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50625,ExxonMobil Beaumont Refinery,TG43,2004.0,163.0,145.0,165.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8895705521472392,1.0,SERC,MISO,TX,30.0636,-94.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50626,Chalmette Refining LLC,GEN1,1990.0,5.7,0.8,0.8,0.8,OTH,All Other,OP,OT,3.0,1990.0, , ,,,,,other,other,Other,Other,0.14035087719298245,0.14035087719298245,SERC,MISO,LA,29.9383,-89.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,716.1129951761438 -50627,ExxonMobil Oil Joliet Refinery,GTG1,1987.0,22.0,22.0,22.0,6,OG,Other Gases,OP,GT,11.0,1987.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,41.4167,-88.1833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50627,ExxonMobil Oil Joliet Refinery,MG,1986.0,11.2,11.2,11.2,0,OG,Other Gases,OP,ST,5.0,1986.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IL,41.4167,-88.1833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50627,ExxonMobil Oil Joliet Refinery,STG1,1987.0,6.5,3.3,3.3,2,OG,Other Gases,OP,ST,11.0,1987.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5076923076923077,0.5076923076923077,RFC,PJM,IL,41.4167,-88.1833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50628,Paulsboro Refinery,GEN1,1991.0,30.5,27.0,30.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8852459016393442,1.0,RFC,PJM,NJ,39.84,-75.2583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.645976438549354 -50628,Paulsboro Refinery,GEN2,1982.0,15.0,14.5,14.5,2,OG,Other Gases,OP,ST,8.0,1982.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9666666666666667,0.9666666666666667,RFC,PJM,NJ,39.84,-75.2583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50628,Paulsboro Refinery,GEN3,1991.0,15.0,14.5,14.5,2,OG,Other Gases,OP,ST,9.0,1991.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9666666666666667,0.9666666666666667,RFC,PJM,NJ,39.84,-75.2583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50628,Paulsboro Refinery,GEN4,2006.0,18.0,11.6,11.6,2,PC,Petroleum Coke,OS,OT,11.0,2006.0, , ,,,,,oil,oil,Petroleum Coke,Other,0.6444444444444444,0.6444444444444444,RFC,PJM,NJ,39.84,-75.2583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50629,Covanta Lake County Energy,GEN1,1990.0,15.5,12.5,12.5,2.5,MSW,Municipal Solid Waste,OP,ST,9.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8064516129032258,0.8064516129032258,SERC,FPC,FL,28.740206,-81.889188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50630,Covanta Marion Inc,GEN1,1986.0,13.1,11.5,11.5,2,MSW,Municipal Solid Waste,OP,ST,8.0,1986.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8778625954198473,0.8778625954198473,WECC,PGE,OR,45.048467,-122.962761,Marion_Inc,OT ST,True,8.0,6.0,-1.0,1.8,1.8,73.79617,1.31,1.0,2.027986,13.1,12.474670015614226,4.2772418410069974,1.0723817259240271,-5.519176395462502,71.22825528572199,13.057493582960081,#TRUE#,#1985-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.93,13.1,12.9,OR,Bio,,#FALSE#,3.93,13.1, -50632,Covanta Stanislaus Energy,GEN1,1988.0,24.0,19.9,19.9,3,MSW,Municipal Solid Waste,OP,ST,9.0,1988.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8291666666666666,0.8291666666666666,WECC,CISO,CA,37.3853,-121.141,StanislausEnrgy,OT ST,True,4.0,8.0,-1.0,1.8,1.8,125.6225,2.23,1.0,2.027986,22.3,14.84777349497258,-3.852882444684631,0.15061178897101488,11.350678560626573,11.931044105914975,14.346713614354316,#TRUE#,#1988-09-06#,#2050-12-31#,Existing,CIPV,CA_CISO,2.23,22.3,18.97,CA,Bio,,#FALSE#,2.23,22.3, -50633,Mosaic Co Bartow Facility,GEN1,1985.0,36.9,36.0,36.0,2,WH,All Other,OP,ST,12.0,1985.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9756097560975611,0.9756097560975611,SERC,TEC,FL,27.908,-81.9185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50633,Mosaic Co Bartow Facility,GEN2,1992.0,45.0,44.0,44.0,2,WH,All Other,OP,ST,8.0,1992.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9777777777777777,0.9777777777777777,SERC,TEC,FL,27.908,-81.9185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50636,Brainerd Public Utilities,1,1917.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.3758,-94.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50636,Brainerd Public Utilities,2,1917.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.3758,-94.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50636,Brainerd Public Utilities,3,1936.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.3758,-94.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50636,Brainerd Public Utilities,4,1936.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1936.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.3758,-94.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50636,Brainerd Public Utilities,5,1940.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,46.3758,-94.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50637,Clearwater Paper IPP Lewiston,GEN1,1950.0,10.0,2.0,9.4,2,BLQ,Wood/Wood Waste Biomass,OS,ST,1.0,1950.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.19999999999999996,0.9400000000000001,WECC,AVA,ID,46.423056,-116.976389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50637,Clearwater Paper IPP Lewiston,GEN2,1977.0,10.0,3.3,9.4,2,BLQ,Wood/Wood Waste Biomass,OS,ST,11.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.32999999999999996,0.9400000000000001,WECC,AVA,ID,46.423056,-116.976389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50637,Clearwater Paper IPP Lewiston,GEN3,1981.0,28.8,25.2,25.2,4,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.875,0.875,WECC,AVA,ID,46.423056,-116.976389,ClearwaterPaper3,OT ST,True,4.0,8.0,-1.0,1.8,1.8,162.2389,2.88,1.0,2.027986,28.8,13.08512622775592,18.626531435397375,0.47419957155343345,-5.278906079235755,175.2084086749476,14.140250643973683,#TRUE#,#1981-07-01#,#2050-12-31#,Existing,AVA,NW_AVA,8.64,28.8,28.0,ID,Bio,,#FALSE#,8.64,28.8, -50637,Clearwater Paper IPP Lewiston,GEN4,1991.0,65.0,24.0,24.0,4,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.36923076923076925,0.36923076923076925,WECC,AVA,ID,46.423056,-116.976389,ClearwaterPaper4,OT ST,True,4.0,8.0,-1.0,1.8,1.8,366.1642,6.5,1.0,2.027986,65.0,13.412242994837325,11.664735328490401,0.18648912934248876,-1.1884949939717508,262.09664663163227,13.792313272688267,#TRUE#,#1991-02-01#,#2050-12-31#,Existing,AVA,NW_AVA,19.5,65.0,22.0,ID,Bio,,#FALSE#,19.5,65, -50638,Clearwater Paper APP CB,GEN1,1977.0,28.0,28.0,28.0,2,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,AR,33.7061,-91.2371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,GEN3,1976.0,19.2,17.5,17.5,8,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1976.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9114583333333334,0.9114583333333334,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,GEN4,1997.0,41.5,41.5,41.5,6,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1997.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,GEN5,2001.0,27.6,14.0,15.0,4,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,2001.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5072463768115942,0.5434782608695652,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,HGN1,1950.0,1.8,1.6,1.6,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1950.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,HGN5,1929.0,0.8,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,HGN6,1929.0,0.8,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.625,0.625,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50639,Sappi Cloquet Mill,HGN7,1980.0,2.8,1.0,1.4,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.3571428571428572,0.5,MRO,MISO,MN,46.7243,-92.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50647,Covanta Indianapolis Energy,GEN1,1988.0,6.5,5.0,5.0,1,MSW,Municipal Solid Waste,OP,ST,11.0,1988.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7692307692307692,0.7692307692307692,RFC,MISO,IN,39.734456,-86.189075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.835858124037358 -50648,Covanta Bristol Energy,GEN1,1987.0,16.3,13.2,13.2,0.5,MSW,Municipal Solid Waste,OP,ST,12.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8098159509202454,0.8098159509202454,NPCC,ISNE,CT,41.6492,-72.9153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50649,Covanta Babylon Inc,GEN1,1989.0,17.0,14.4,14.4,1,MSW,Municipal Solid Waste,OP,ST,1.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8470588235294118,0.8470588235294118,NPCC,NYIS,NY,40.7348,-73.3868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50650,ReEnergy Stratton LLC,UNI1,1989.0,47.0,46.1,46.1,18,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9808510638297873,0.9808510638297873,NPCC,ISNE,ME,45.140614,-70.425577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50652,Lyonsdale Associates,GEN1,1984.0,1.5,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.618874,-75.30546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50652,Lyonsdale Associates,GEN2,1984.0,1.5,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.618874,-75.30546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50654,Steamboat Hills LP,OEC51,2020.0,25.7,17.1,25.7,17.1,GEO,Geothermal,OP,BT,6.0,2020.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6653696498054475,1.0,WECC,NEVP,NV,39.37,-119.766944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50654,Steamboat Hills LP,OEC52,2020.0,5.9,4.0,5.9,4,GEO,Geothermal,OP,BT,6.0,2020.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6779661016949152,1.0,WECC,NEVP,NV,39.37,-119.766944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50654,Steamboat Hills LP,SBSOL,2022.0,2.0,2.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5,WECC,NEVP,NV,39.37,-119.766944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50656,Huntington Resource Recovery Facility,GEN1,1991.0,28.0,24.5,24.5,8,MSW,Municipal Solid Waste,OP,ST,12.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.875,0.875,NPCC,NYIS,NY,40.8814,-73.2906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50657,Montgomery County Resource Recovery,GEN1,1995.0,67.8,54.0,56.0,1,MSW,Municipal Solid Waste,OP,ST,5.0,1995.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7964601769911505,0.8259587020648969,RFC,PJM,MD,39.2006,-77.4556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50658,Covanta Fairfax Energy,GEN1,1990.0,62.0,49.0,49.0,10,MSW,Municipal Solid Waste,OP,ST,3.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7903225806451613,0.7903225806451613,SERC,PJM,VA,38.695,-77.2411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50658,Covanta Fairfax Energy,GEN2,1990.0,62.0,49.0,49.0,10,MSW,Municipal Solid Waste,OP,ST,3.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7903225806451613,0.7903225806451613,SERC,PJM,VA,38.695,-77.2411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50660,Covanta Tulsa Renewable Energy LLC,GEN1,1989.0,16.8,15.6,15.8,0.8,MSW,Municipal Solid Waste,OA,ST,1.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9285714285714285,0.9404761904761905,SERC,SWPP,OK,36.1319,-96.0181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50661,Covanta Haverhill,GEN1,1989.0,46.0,42.8,43.2,4.1,MSW,Municipal Solid Waste,OP,ST,5.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9304347826086956,0.9391304347826087,NPCC,ISNE,MA,42.765,-71.1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50662,Onondaga County Resource Recovery,GEN1,1994.0,39.5,30.0,30.0,3.5,MSW,Municipal Solid Waste,OP,ST,11.0,1994.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.759493670886076,0.759493670886076,NPCC,NYIS,NY,43.0047,-76.1149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50663,Covanta Alexandria/Arlington Energy,GEN1,1987.0,14.5,14.5,14.5,1.5,MSW,Municipal Solid Waste,OP,ST,10.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,38.8014,-77.1288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50663,Covanta Alexandria/Arlington Energy,GEN2,1987.0,14.5,14.5,14.5,1.5,MSW,Municipal Solid Waste,OP,ST,10.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,38.8014,-77.1288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50666,Pasco Cnty Solid Waste Resource Recovery,GEN1,1991.0,31.2,26.0,26.0,5,MSW,Municipal Solid Waste,OP,ST,5.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,SERC,FPC,FL,28.3681,-82.5583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50674,Municipal Cogen Plant,GEN1A,2015.0,1.2,1.2,1.2,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.8247,-116.5106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.888463379607467 -50688,Gardiner,GEN1,1985.0,1.0,1.0,1.0,0.3,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.221796,-69.785675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50690,San Gorgonio Westwinds II LLC,GEN1,1999.0,43.4,43.4,43.4,0,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.934,-116.5781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50696,Plant No 1 Orange County,GEN1,1993.0,2.5,2.4,2.4,1.8,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.96,0.96,WECC,CISO,CA,33.6942,-117.9381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.639773236998568 -50696,Plant No 1 Orange County,GEN2,1993.0,2.5,2.4,2.4,1.8,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.96,0.96,WECC,CISO,CA,33.6942,-117.9381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.639773236998568 -50696,Plant No 1 Orange County,GEN3,1993.0,2.5,2.4,2.4,1.8,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.96,0.96,WECC,CISO,CA,33.6942,-117.9381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.639773236998568 -50699,Pumpkin Hill,GEN1,1987.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.1868,-68.4649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4735,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4736,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4737,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4738,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4739,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4740,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50700,Lilliwaup Falls Generating,4741,1986.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.4706,-123.1153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50702,Salmon Falls,GEN1,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.226977,-70.810888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50702,Salmon Falls,GEN2,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.226977,-70.810888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50702,Salmon Falls,GEN3,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.226977,-70.810888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50704,Somersworth Lower Great Dam,GEN1,1985.0,1.3,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,ISNE,NH,43.251111,-70.840833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,LMA,1994.0,58.5,272.0,272.0,12,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,LMB,1994.0,58.5,,,12,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,LMC,1994.0,58.5,,,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,LMD,1994.0,58.5,,,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,LME,1994.0,58.5,,,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,STA,1994.0,52.2,,,5.2,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50707,JM Shafer Generating Station,STB,1994.0,52.2,,,5.2,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,WECC,PSCO,CO,40.0986,-104.7736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50711,University of Alaska Fairbanks,GEN1,1964.0,1.5,0.5,1.4,0.2,SUB,Conventional Steam Coal,OS,ST,1.0,1964.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.33333333333333337,0.9333333333333332,non-conus,non-conus,AK,64.854171,-147.822075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50711,University of Alaska Fairbanks,GEN2,1964.0,1.5,0.5,1.4,0.2,SUB,Conventional Steam Coal,OS,ST,1.0,1964.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.33333333333333337,0.9333333333333332,non-conus,non-conus,AK,64.854171,-147.822075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50711,University of Alaska Fairbanks,GEN3,1981.0,10.0,8.1,10.0,2.5,SUB,Conventional Steam Coal,OS,ST,4.0,1981.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8099999999999999,1.0,non-conus,non-conus,AK,64.854171,-147.822075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50711,University of Alaska Fairbanks,GEN4,2000.0,9.6,9.6,9.6,2,DFO,Petroleum Liquids,SB,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.854171,-147.822075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50711,University of Alaska Fairbanks,GEN5,2020.0,17.0,17.0,17.0,4,SUB,Conventional Steam Coal,OP,ST,2.0,2020.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,non-conus,non-conus,AK,64.854171,-147.822075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50713,Huntington Falls,GEN1,1988.0,0.8,0.8,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,ISNE,VT,44.0703,-73.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50713,Huntington Falls,GEN2,1988.0,0.8,0.8,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,ISNE,VT,44.0703,-73.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50713,Huntington Falls,GEN3,1988.0,4.1,3.9,3.8,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.951219512195122,0.926829268292683,NPCC,ISNE,VT,44.0703,-73.1961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50718,GeoBon II,HYD1,1986.0,1.0,1.0,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,WECC,IPCO,ID,42.954384,-114.462563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50721,Tazewell Gas Recovery,GEN1,1989.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.6817,-89.5167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.609347124595198 -50721,Tazewell Gas Recovery,GEN2,1989.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,1989.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.6817,-89.5167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.609347124595198 -50721,Tazewell Gas Recovery,GEN3,1999.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.6817,-89.5167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.609347124595198 -50722,INEOS Naperville Cogeneration Plant,GEN1,1990.0,8.3,7.0,11.0,4.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1990.0,12,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8433734939759036,1.0,RFC,PJM,IL,41.8108,-88.1486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.532270431770709 -50729,Clairton Works,GEN1,1955.0,21.0,16.0,18.0,2,OG,Other Gases,OP,ST,1.0,1955.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7619047619047619,0.8571428571428572,RFC,PJM,PA,40.3097,-79.8819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50729,Clairton Works,GEN3,1955.0,10.0,8.0,8.0,1,OG,Other Gases,OP,ST,1.0,1955.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,RFC,PJM,PA,40.3097,-79.8819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50732,Mon Valley Works,GEN1,1943.0,25.0,30.0,33.0,6,BFG,Other Gases,OP,ST,6.0,1943.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,PA,40.3925,-79.8564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50732,Mon Valley Works,GEN2,1943.0,25.0,30.0,33.0,6,BFG,Other Gases,OP,ST,6.0,1943.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,PA,40.3925,-79.8564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50732,Mon Valley Works,GEN3,2002.0,2.5,1.9,1.9,0.3,BFG,Other Gases,OP,ST,2.0,2002.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.76,0.76,RFC,PJM,PA,40.3925,-79.8564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50733,Gary Works,STG1,1997.0,161.0,161.0,150.0,50,BFG,Other Gases,OP,ST,4.0,1997.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9316770186335404,RFC,MISO,IN,41.622426,-87.328936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50739,"NE Renewable Tamworth, LLC",GEN1,1987.0,25.0,20.0,20.0,14,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,NPCC,ISNE,NH,43.835833,-71.1967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50741,Pontook Hydro Facility,GEN1,1986.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.632842,-71.24742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50741,Pontook Hydro Facility,GEN2,1986.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.632842,-71.24742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50741,Pontook Hydro Facility,GEN3,1986.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.632842,-71.24742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50744,Sterling Power Plant,GEN1,1991.0,47.7,38.8,47.6,35,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8134171907756812,0.9979035639412998,NPCC,NYIS,NY,43.080338,-75.600963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50744,Sterling Power Plant,GEN2,1991.0,16.5,16.0,16.5,12,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9696969696969697,1.0,NPCC,NYIS,NY,43.080338,-75.600963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50744,Sterling Power Plant,GEN3,1991.0,1.1,1.1,1.1,0.2,DFO,Petroleum Liquids,OP,IC,6.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.080338,-75.600963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50748,Agnews Power Plant,GEN1,1990.0,24.4,24.4,24.4,16.5,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.4058,-121.9272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.557755851674402 -50748,Agnews Power Plant,GEN2,1990.0,7.6,7.3,7.4,4,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9605263157894737,0.9736842105263159,WECC,CISO,CA,37.4058,-121.9272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50750,Coalinga Cogeneration Facility,GEN1,1988.0,3.4,3.2,3.3,1.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9411764705882354,0.9705882352941176,WECC,CISO,CA,36.170317,-120.364084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.718282061183336 -50750,Coalinga Cogeneration Facility,GEN2,1988.0,3.4,3.2,3.3,1.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9411764705882354,0.9705882352941176,WECC,CISO,CA,36.170317,-120.364084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.718282061183336 -50751,Southeast Kern River Cogen,GTG1,1989.0,24.0,20.8,21.7,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8666666666666667,0.9041666666666667,WECC,CISO,CA,35.4206,-118.9644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.456631311871428 -50751,Southeast Kern River Cogen,GTG2,1989.0,3.4,3.0,3.2,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,0.9411764705882354,WECC,CISO,CA,35.4206,-118.9644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.45663191994512 -50751,Southeast Kern River Cogen,GTG3,1989.0,3.4,3.0,3.2,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,2.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,0.9411764705882354,WECC,CISO,CA,35.4206,-118.9644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.45663191994512 -50752,South Belridge Cogeneration Facility,GEN1,1985.0,31.4,19.0,21.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.605095541401274,0.6687898089171975,WECC,CISO,CA,35.438611,-119.7075,SouthBelridge1,OT GT,False,1.0,1.0,-1.0,28.26,28.26,940.6824,142.242,1.0,0.45,31.4,-12.97698824460527,583.2232299841,-3.5874492985381173e-07,-12.97697432043933,583.2231061076353,21.245433257887676,#TRUE#,#1985-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,9.42,31.4,13.5,CA,NG,Areo,#FALSE#,9.42,31.4,11.574747765397595 -50752,South Belridge Cogeneration Facility,GEN2,1985.0,31.4,19.0,21.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.605095541401274,0.6687898089171975,WECC,CISO,CA,35.438611,-119.7075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.574747765397595 -50752,South Belridge Cogeneration Facility,GEN3,1986.0,31.4,19.0,21.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.605095541401274,0.6687898089171975,WECC,CISO,CA,35.438611,-119.7075,SouthBelridge2,OT GT,False,1.0,1.0,-1.0,28.26,28.26,940.6824,142.242,1.0,0.45,31.4,-12.97698824460527,583.2232299841,-3.5874492985381173e-07,-12.97697432043933,583.2231061076353,21.245433257887676,#TRUE#,#1985-01-01#,#2050-12-31#,Existing,CIPV,CA_CISO,9.42,31.4,13.5,CA,NG,Areo,#FALSE#,9.42,31.4,11.574747765397595 -50754,Oak Creek Energy Systems I,GEN1,1982.0,3.5,3.5,3.5,0,WND,Onshore Wind Turbine,OP,WT,6.0,1982.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.043889,-118.276388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50754,Oak Creek Energy Systems I,GEN2,1993.0,4.2,4.2,4.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,1993.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.043889,-118.276388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50754,Oak Creek Energy Systems I,GEN3,1999.0,23.1,23.1,23.1,0,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.043889,-118.276388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50754,Oak Creek Energy Systems I,GEN4,1999.0,3.7,3.7,3.7,0,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.043889,-118.276388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50755,New Hogan Power Plant,GEN1,1989.0,2.0,1.9,1.9,0.2,WAT,Conventional Hydroelectric,OP,HY,4.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.95,WECC,CISO,CA,38.149582,-120.814942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50755,New Hogan Power Plant,GEN2,1989.0,1.0,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9,0.9,WECC,CISO,CA,38.149582,-120.814942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50758,Pejepscot Hydroelectric Project,GEN1,1987.0,12.3,11.7,11.3,1.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9512195121951218,0.9186991869918699,NPCC,ISNE,ME,43.957448,-70.024158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50758,Pejepscot Hydroelectric Project,GEN2,1987.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.957448,-70.024158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50758,Pejepscot Hydroelectric Project,GEN3,1987.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.957448,-70.024158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50758,Pejepscot Hydroelectric Project,GEN4,1987.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,43.957448,-70.024158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50759,West End Dam Hydroelectric Project,GEN1,1985.0,2.2,2.1,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454545,0.9090909090909091,NPCC,NYIS,NY,43.98289,-75.620583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50759,West End Dam Hydroelectric Project,GEN2,1985.0,2.2,2.1,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454545,0.9090909090909091,NPCC,NYIS,NY,43.98289,-75.620583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50765,Stillwater Facility,1,2012.0,22.0,21.8,21.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.990909090909091,0.990909090909091,WECC,NEVP,NV,39.547537,-118.555613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50765,Stillwater Facility,1-1,2009.0,11.8,10.1,14.3,0.1,GEO,Geothermal,OP,BT,3.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8559322033898304,1.0,WECC,NEVP,NV,39.547537,-118.555613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50765,Stillwater Facility,1-2,2009.0,11.8,10.1,14.3,0.1,GEO,Geothermal,OP,BT,3.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8559322033898304,1.0,WECC,NEVP,NV,39.547537,-118.555613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50765,Stillwater Facility,2-1,2009.0,11.8,10.1,14.3,0.1,GEO,Geothermal,OP,BT,3.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8559322033898304,1.0,WECC,NEVP,NV,39.547537,-118.555613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50765,Stillwater Facility,2-2,2009.0,11.8,10.1,14.3,0.1,GEO,Geothermal,OP,BT,3.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8559322033898304,1.0,WECC,NEVP,NV,39.547537,-118.555613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50766,Ormesa I,ITLU1,2003.0,12.0,8.0,12.0,8,GEO,Geothermal,OP,BT,6.0,2003.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,IID,CA,32.8156,-115.2568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50766,Ormesa I,ITLU2,2003.0,12.0,8.0,12.0,8,GEO,Geothermal,OP,BT,7.0,2003.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,IID,CA,32.8156,-115.2568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50766,Ormesa I,OE31,1986.0,1.2,0.8,1.2,0.8,GEO,Geothermal,OP,BT,12.0,1986.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,IID,CA,32.8156,-115.2568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50766,Ormesa I,OE32,1986.0,1.2,0.8,1.2,0.8,GEO,Geothermal,OP,BT,12.0,1986.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,IID,CA,32.8156,-115.2568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50768,Forestport,1,1987.0,3.4,3.4,3.4,0.5,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.442468,-75.215946,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50770,National Energy of McBain,GEN1,1988.0,20.0,16.3,18.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1988.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8150000000000001,0.9,RFC,MISO,MI,44.204,-85.2206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50772,National Energy of Lincoln,GEN1,1989.0,20.0,16.3,18.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8150000000000001,0.9,RFC,MISO,MI,44.68,-83.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50776,Panther Creek Energy Facility,GEN1,1992.0,94.0,80.0,80.0,35,WC,Conventional Steam Coal,OP,ST,7.0,1992.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.851063829787234,0.851063829787234,RFC,PJM,PA,40.8556,-75.8781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50799,Parlin Power Plant,GEN1,1991.0,45.9,35.9,42.2,30,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7821350762527233,0.9193899782135078,RFC,PJM,NJ,40.460717,-74.327161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50799,Parlin Power Plant,GEN2,1991.0,45.9,37.5,43.7,30,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8169934640522876,0.9520697167755993,RFC,PJM,NJ,40.460717,-74.327161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50799,Parlin Power Plant,GEN3,1991.0,21.6,20.6,20.6,5,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9537037037037037,0.9537037037037037,RFC,PJM,NJ,40.460717,-74.327161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50799,Parlin Power Plant,GEN4,1991.0,21.6,20.6,20.6,5,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9537037037037037,0.9537037037037037,RFC,PJM,NJ,40.460717,-74.327161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50803,Seminole Mill,GEN3,1957.0,30.0,20.0,18.0,4,NG,Natural Gas Steam Turbine,OP,ST,2.0,1957.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,0.6,SERC,JEA,FL,30.4178,-81.5978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50804,Port Wentworth Mill,GEN4,1991.0,47.3,47.3,47.3,1,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.1561,-81.1586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50804,Port Wentworth Mill,GEN5,2004.0,25.0,25.0,25.0,1,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,2004.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.1561,-81.1586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50806,Florence Mill,GEN1,1963.0,12.3,12.3,12.3,5,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1963.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,SC,34.1497,-79.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50806,Florence Mill,GEN2,1974.0,15.0,12.5,12.5,6,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1974.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,SERC,CPLE,SC,34.1497,-79.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50806,Florence Mill,GEN3,1987.0,76.5,74.0,74.0,5,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9673202614379085,0.9673202614379085,SERC,CPLE,SC,34.1497,-79.5606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50807,WestRock Panama City Mill,GEN3,1930.0,4.0,4.0,4.0,1,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,1930.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,FL,30.141984,-85.621103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50807,WestRock Panama City Mill,GEN4,1949.0,10.0,10.0,10.0,3,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1949.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,FL,30.141984,-85.621103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50807,WestRock Panama City Mill,GEN6,1956.0,20.0,21.8,21.8,3,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,1956.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,FL,30.141984,-85.621103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50810,Westrock Hodge (LA),NO 7,1957.0,15.6,15.6,15.6,1,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1957.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,32.2752,-92.7277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50810,Westrock Hodge (LA),NO 8,1972.0,27.5,27.5,27.5,1,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1972.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,32.2752,-92.7277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50810,Westrock Hodge (LA),NO 9,1972.0,23.3,23.3,23.3,1,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1972.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,32.2752,-92.7277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50813,Hopewell Mill,GEN1,1980.0,47.6,40.7,40.7,8,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1980.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8550420168067228,0.8550420168067228,SERC,PJM,VA,37.2914,-77.2816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN1,1985.0,84.9,80.0,68.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1985.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9422850412249705,0.8009422850412249,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN2,1985.0,84.9,80.0,68.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1985.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9422850412249705,0.8009422850412249,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN3,1985.0,84.9,80.0,70.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1985.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9422850412249705,0.8244994110718492,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN4,1986.0,84.9,80.0,70.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9422850412249705,0.8244994110718492,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN5,1986.0,84.9,80.0,70.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9422850412249705,0.8244994110718492,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN6,1986.0,129.2,127.0,127.0,34,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9829721362229104,0.9829721362229104,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50815,"Odyssey Energy Altura Cogen, LLC",GEN7,1995.0,89.9,80.0,69.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8898776418242491,0.7675194660734148,TRE,ERCO,TX,29.8161,-95.10773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50820,East Winds Project,GEN1,1985.0,3.0,3.0,3.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,1985.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.890913,-116.541515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50821,Mojave 16/17/18,GEN1,1989.0,88.5,88.5,88.5,5.2,WND,Onshore Wind Turbine,OP,WT,12.0,1989.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.045,-118.2642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50827,Twin Falls Hydro,UNI1,1989.0,12.0,11.4,11.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9500000000000001,0.9166666666666666,WECC,PSEI,WA,47.444554,-121.687812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50827,Twin Falls Hydro,UNI2,1989.0,12.0,11.4,11.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9500000000000001,0.9166666666666666,WECC,PSEI,WA,47.444554,-121.687812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50831,Nove Power Plant,GEN1,1985.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,12.0,1985.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.9676,-122.382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.2279077740636 -50831,Nove Power Plant,GEN2,1987.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,5.0,1987.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.9676,-122.382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.2279077740636 -50831,Nove Power Plant,GEN3,1985.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,12.0,1985.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.9676,-122.382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.2279077740636 -50832,Chicopee Hydroelectric Station,1,1985.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.159595,-72.58279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50832,Chicopee Hydroelectric Station,2,1985.0,1.2,1.2,1.2,0,WAT,Conventional Hydroelectric,OP,HY,5.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.159595,-72.58279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50835,TES Filer City Station,GEN1,1990.0,70.0,60.0,60.0,7,BIT,Conventional Steam Coal,OP,ST,5.0,1990.0,6,2025,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,0.8571428571428572,RFC,MISO,MI,44.217299,-86.28905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50837,Southeast Resource Recovery,GEN1,1988.0,35.6,28.0,26.0,2,MSW,Municipal Solid Waste,OP,ST,7.0,1988.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7865168539325842,0.7303370786516854,WECC,CISO,CA,33.759236,-118.239922,SE_Resource,OT ST,True,4.0,8.0,-1.0,1.8,1.8,185.8987,3.3,1.0,2.027986,33.0,14.718399022035465,-4.871778845698216,0.11330258359921065,10.735394386272981,22.85247313099083,14.322291984896047,#TRUE#,#1988-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,3.891,33.0,30.0,CA,Bio,,#FALSE#,3.891,33, -50846,Gramercy Holdings LLC,GT3,1969.0,16.0,15.0,17.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,1.0,SERC,MISO,LA,30.054,-90.6693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.447009672484096 -50846,Gramercy Holdings LLC,GT4,1974.0,24.7,21.0,24.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8502024291497976,0.9716599190283401,SERC,MISO,LA,30.054,-90.6693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.44700965345595 -50846,Gramercy Holdings LLC,ST1,1958.0,18.7,17.0,17.0,2,NG,Natural Gas Steam Turbine,OP,ST,2.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909092,0.9090909090909092,SERC,MISO,LA,30.054,-90.6693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50846,Gramercy Holdings LLC,ST2,1958.0,18.7,17.0,17.0,2,NG,Natural Gas Steam Turbine,OP,ST,2.0,1958.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909092,0.9090909090909092,SERC,MISO,LA,30.054,-90.6693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50846,Gramercy Holdings LLC,ST3,1969.0,7.2,6.0,6.0,3,NG,Natural Gas Steam Turbine,OP,ST,2.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333333,0.8333333333333333,SERC,MISO,LA,30.054,-90.6693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50849,PE Berkeley,GEN1,1987.0,23.0,22.0,23.0,18,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9565217391304348,1.0,WECC,CISO,CA,37.870331,-122.26337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.335301195672804 -50849,PE Berkeley,GEN2,1987.0,5.5,2.0,4.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.36363636363636365,0.7272727272727273,WECC,CISO,CA,37.870331,-122.26337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.833157129641865 -50850,OLS Energy Chino,GEN1,1987.0,23.5,22.5,22.5,15,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9574468085106383,0.9574468085106383,WECC,CISO,CA,33.989626,-117.680911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.936408981905384 -50850,OLS Energy Chino,GEN2,1987.0,7.3,6.5,6.0,2,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8904109589041096,0.821917808219178,WECC,CISO,CA,33.989626,-117.680911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50851,CSUCI Site Authority,GEN1,1988.0,23.5,21.5,22.1,21.5,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9148936170212766,0.9404255319148936,WECC,CISO,CA,34.161951,-119.047916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.637661871750431 -50851,CSUCI Site Authority,GEN2,1988.0,7.6,6.8,6.9,6.5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8947368421052632,0.9078947368421053,WECC,CISO,CA,34.161951,-119.047916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50858,Hillsborough County Resource Recovery,GEN1,1987.0,29.0,26.0,26.0,5,MSW,Municipal Solid Waste,OP,ST,4.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.896551724137931,0.896551724137931,SERC,TEC,FL,27.954901,-82.340469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50858,Hillsborough County Resource Recovery,GEN2,2009.0,18.0,16.0,16.0,3,MSW,Municipal Solid Waste,OP,ST,6.0,2009.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8888888888888888,0.8888888888888888,SERC,TEC,FL,27.954901,-82.340469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50859,Lancaster County Resource Recovery,GEN1,1990.0,35.7,32.4,32.4,1,MSW,Municipal Solid Waste,OP,ST,12.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9075630252100839,0.9075630252100839,RFC,PJM,PA,40.0711,-76.6436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50860,Kent County Waste to Energy Facility,GEN1,1989.0,18.0,15.7,15.7,1,MSW,Municipal Solid Waste,OP,ST,10.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8722222222222222,0.8722222222222222,RFC,MISO,MI,42.949575,-85.693209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50864,Sargent Canyon Cogeneration,K100,1991.0,38.2,30.0,34.0,30,NG,Natural Gas Fired Combustion Turbine,OS,GT,11.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7853403141361256,0.8900523560209423,WECC,CISO,CA,35.9359,-120.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50865,Salinas River Cogeneration,K100,1991.0,38.9,33.0,35.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8483290488431877,0.8997429305912596,WECC,CISO,CA,35.9515,-120.8679,SalinasRiverCgn,OT GT,False,1.0,1.0,-1.0,35.01,35.01,1165.368,8.558,1.0,0.45,40.0,-14.296830991767639,915.6332303408931,-0.0007527412698765321,-14.242277750281561,914.6478544028322,11.11067364406027,#TRUE#,#1991-10-11#,#2050-12-31#,Existing,CIPV,CA_CISO,33.0,40.0,40.2,CA,NG,Industrial,#FALSE#,33,40, -50873,Wheelabrator Concord Facility,GEN1,1989.0,14.0,12.0,12.0,4,MSW,Municipal Solid Waste,OP,ST,4.0,1989.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,0.8571428571428572,NPCC,ISNE,NH,43.2866,-71.5769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50875,McKay Bay Facility,GEN1,1985.0,22.1,18.0,18.0,9,MSW,Municipal Solid Waste,OP,ST,6.0,1985.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8144796380090498,0.8144796380090498,SERC,TEC,FL,27.949528,-82.421182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50877,Wheelabrator North Andover,GEN1,1985.0,40.3,30.0,30.0,8,MSW,Municipal Solid Waste,OP,ST,5.0,1985.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7444168734491315,0.7444168734491315,NPCC,ISNE,MA,42.7262,-71.1219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50878,Wheelabrator Millbury Facility,GEN1,1987.0,47.6,40.0,40.0,14,MSW,Municipal Solid Waste,OP,ST,9.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8403361344537815,0.8403361344537815,NPCC,ISNE,MA,42.2214,-71.7669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50880,Wheelabrator Saugus,GEN1,1985.0,57.8,32.8,32.8,7,MSW,Municipal Solid Waste,OP,ST,8.0,1985.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5674740484429066,0.5674740484429066,NPCC,ISNE,MA,42.447,-70.9804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50881,Wheelabrator Shasta,GEN1,1987.0,18.3,18.8,18.8,2,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.428329,-122.279248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50881,Wheelabrator Shasta,GEN2,1987.0,18.3,18.8,18.8,2,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.428329,-122.279248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50881,Wheelabrator Shasta,GEN3,1987.0,18.3,18.8,18.8,2,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,40.428329,-122.279248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50882,Wheelabrator Westchester,GEN1,1984.0,59.7,51.0,53.0,7,MSW,Municipal Solid Waste,OP,ST,10.0,1984.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8542713567839195,0.8877721943048575,NPCC,NYIS,NY,41.277129,-73.942344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50883,Wheelabrator Bridgeport,GEN1,1988.0,67.0,58.0,59.0,10,MSW,Municipal Solid Waste,OP,ST,7.0,1988.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8656716417910448,0.8805970149253731,NPCC,ISNE,CT,41.1625,-73.2083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50884,Pinellas County Resource Recovery,GEN1,1983.0,50.5,41.1,41.1,7,MSW,Municipal Solid Waste,OP,ST,1.0,1983.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8138613861386139,0.8138613861386139,SERC,FPC,FL,27.8733,-82.6741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50884,Pinellas County Resource Recovery,GEN2,1986.0,26.0,17.0,17.0,4,MSW,Municipal Solid Waste,OP,ST,4.0,1986.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6538461538461539,0.6538461538461539,SERC,FPC,FL,27.8733,-82.6741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50885,Wheelabrator Gloucester LP,GEN1,1990.0,14.0,12.0,12.0,4,MSW,Municipal Solid Waste,OP,ST,1.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8571428571428572,0.8571428571428572,RFC,PJM,NJ,39.8733,-75.1381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50886,Spokane Waste to Energy,GEN1,1991.0,26.0,22.7,22.7,4,MSW,Municipal Solid Waste,OP,ST,9.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8730769230769231,0.8730769230769231,WECC,AVA,WA,47.626327,-117.50424,Spokane1,OT ST,True,8.0,6.0,-1.0,1.8,1.8,146.4657,2.6,1.0,2.027986,26.0,12.577460467274749,4.973362785000046,0.5074461908866247,-3.7898948092488784,121.91023866421318,12.947287871979402,#TRUE#,#1991-09-01#,#2050-12-31#,Existing,AVA,NW_AVA,7.8,26.0,18.0,WA,Bio,,#FALSE#,7.8,26, -50887,Wheelabrator South Broward,GEN1,1991.0,66.0,54.0,54.0,10,MSW,Municipal Solid Waste,OP,ST,4.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8181818181818181,0.8181818181818181,SERC,FPL,FL,26.0687,-80.1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50888,Northampton Generating Company LP,GEN1,1995.0,134.1,112.0,112.0,65,WC,Conventional Steam Coal,OP,ST,8.0,1995.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8351976137211037,0.8351976137211037,RFC,PJM,PA,40.6917,-75.4792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50890,Ivy River Hydro,GEN1,1985.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.771627,-82.61827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50890,Ivy River Hydro,GEN2,1985.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.771627,-82.61827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50890,Ivy River Hydro,GEN3,1985.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.771627,-82.61827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50890,Ivy River Hydro,GEN4,1985.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.771627,-82.61827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50890,Ivy River Hydro,GEN5,1985.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OS,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.771627,-82.61827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50890,Ivy River Hydro,GEN6,1985.0,0.2,0.2,0.2,0,WAT,Conventional Hydroelectric,OS,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,CPLE,NC,35.771627,-82.61827,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50891,El Dorado Hydro Elk Creek,GEN1,1986.0,2.6,2.3,2.3,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8846153846153845,0.8846153846153845,WECC,IPCO,ID,45.217784,-116.31577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50892,Rock Creek LP,GEN1,1986.0,1.5,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.78342,-120.778506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50892,Rock Creek LP,GEN2,1986.0,1.5,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.78342,-120.778506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50893,Allegheny No. 5 Hydro Station,GEN1,1988.0,4.6,3.0,5.0,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6521739130434783,1.0,RFC,PJM,PA,40.682875,-79.665298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50893,Allegheny No. 5 Hydro Station,GEN2,1988.0,4.6,3.0,5.0,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6521739130434783,1.0,RFC,PJM,PA,40.682875,-79.665298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50894,Allegheny No 6 Hydro Station,GEN1,1988.0,4.6,4.0,6.0,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,1.0,RFC,PJM,PA,40.716389,-79.577222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50894,Allegheny No 6 Hydro Station,GEN2,1988.0,4.6,4.0,6.0,2,WAT,Conventional Hydroelectric,OP,HY,11.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,1.0,RFC,PJM,PA,40.716389,-79.577222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50895,Bypass,GEN1,1987.0,3.3,3.3,3.3,0.1,WAT,Conventional Hydroelectric,SB,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.560876,-114.057461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50895,Bypass,GEN2,1987.0,3.3,3.3,3.3,0.1,WAT,Conventional Hydroelectric,SB,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.560876,-114.057461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50895,Bypass,GEN3,1987.0,3.3,3.3,3.3,0.1,WAT,Conventional Hydroelectric,SB,HY,3.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.560876,-114.057461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50896,S E Hazelton A,GEN1,1990.0,2.8,2.8,2.8,0.1,WAT,Conventional Hydroelectric,SB,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.586701,-114.067537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50896,S E Hazelton A,GEN2,1990.0,2.8,2.8,2.8,0.1,WAT,Conventional Hydroelectric,SB,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.586701,-114.067537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50896,S E Hazelton A,GEN3,1990.0,2.8,2.8,2.8,0.1,WAT,Conventional Hydroelectric,SB,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.586701,-114.067537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50897,Allegheny Hydro No 8,GEN1,1990.0,6.8,6.8,6.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.896596,-79.478982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50897,Allegheny Hydro No 8,GEN2,1990.0,6.8,6.8,6.8,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.896596,-79.478982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50898,Allegheny Hydro No 9,GEN1,1990.0,8.9,8.9,8.9,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.955961,-79.550681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50898,Allegheny Hydro No 9,GEN2,1990.0,8.9,8.9,8.9,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.955961,-79.550681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50900,Covington Facility,GEN3,1951.0,10.5,10.5,10.5,5,BIT,Conventional Steam Coal,OP,ST,1.0,1951.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,37.799722,-79.9947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50900,Covington Facility,GEN4,1980.0,34.0,32.5,32.5,3,BLQ,Wood/Wood Waste Biomass,OP,ST,9.0,1980.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9558823529411765,0.9558823529411765,SERC,PJM,VA,37.799722,-79.9947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50900,Covington Facility,GEN5,1989.0,34.0,32.5,32.5,3,BIT,Conventional Steam Coal,OP,ST,9.0,1989.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9558823529411765,0.9558823529411765,SERC,PJM,VA,37.799722,-79.9947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50900,Covington Facility,GEN7,2013.0,82.4,81.0,82.4,7,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.983009708737864,1.0,SERC,PJM,VA,37.799722,-79.9947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50903,Sagamore Plant Cogeneration,GEN1,1984.0,7.4,7.4,7.4,1.5,NG,Natural Gas Steam Turbine,OP,ST,10.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,40.4439,-86.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50.24306709040678 -50906,Ford Utilities Center,3,2005.0,7.0,6.0,6.3,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9,WECC,PNM,NM,35.084078,-106.625191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.817382833199341 -50906,Ford Utilities Center,4,2011.0,1.1,0.7,0.7,0.2,WH,All Other,OP,ST,10.0,2011.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6363636363636362,0.6363636363636362,WECC,PNM,NM,35.084078,-106.625191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50906,Ford Utilities Center,5,2014.0,6.7,6.2,7.0,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9253731343283582,1.0,WECC,PNM,NM,35.084078,-106.625191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.817382816835622 -50907,Oswego County Energy Recovery,UNT1,1986.0,1.8,1.7,1.7,0.6,MSW,Municipal Solid Waste,OP,ST,2.0,1986.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9444444444444444,NPCC,NYIS,NY,43.348808,-76.425169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.835858124037358 -50907,Oswego County Energy Recovery,UNT2,1986.0,1.8,1.7,1.7,0.6,MSW,Municipal Solid Waste,OP,ST,2.0,1986.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9444444444444444,NPCC,NYIS,NY,43.348808,-76.425169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.835858124037358 -50917,Middle Fork Irrigation District,GEN1,1986.0,2.0,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.480701,-121.59984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50917,Middle Fork Irrigation District,GEN2,1986.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.480701,-121.59984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50917,Middle Fork Irrigation District,GEN3,1986.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,OR,45.480701,-121.59984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50921,Co-Gen LLC,GEN1,1986.0,7.5,7.5,7.5,4,WDS,Wood/Wood Waste Biomass,SB,ST,5.0,1986.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,OR,44.458696,-118.720601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50931,Yellowstone Energy LP,GEN1,1995.0,68.0,52.0,55.0,22,PC,Petroleum Coke,OP,ST,6.0,1995.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7647058823529411,0.8088235294117647,WECC,NWMT,MT,45.8117,-108.4278,Yellowstone_Eng,OT ST,True,8.0,6.0,-1.0,3.2,3.2,10599.61,597.12,1.0,3.177179,64.0,10.33560439955807,35.79188722304895,0.10926668626057025,0.9400499998406655,224.0590992208842,11.280890603378745,#TRUE#,#1995-06-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,25.6,64.0,55.0,MT,Petroleum Coke,,#FALSE#,25.6,64, -50932,Des Moines Wastewater Reclamation Fac,72-04,2015.0,1.4,1.4,1.4,0.7,OBG,Other Waste Biomass,SB,IC,9.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.573415,-93.557743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.23600209314495 -50932,Des Moines Wastewater Reclamation Fac,72-05,2015.0,1.4,1.4,1.4,0.7,OBG,Other Waste Biomass,SB,IC,9.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.573415,-93.557743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.23600209314495 -50933,Rhinelander Mill,GEN5,1951.0,10.0,4.0,7.0,3,NG,Natural Gas Steam Turbine,SB,ST,2.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4,0.7,MRO,MISO,WI,45.6394,-89.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50933,Rhinelander Mill,GEN6,1958.0,9.3,6.3,8.5,3.8,BIT,Conventional Steam Coal,OP,ST,7.0,1958.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6774193548387096,0.9139784946236559,MRO,MISO,WI,45.6394,-89.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50933,Rhinelander Mill,HYD1,1917.0,0.5,0.5,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.6394,-89.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50933,Rhinelander Mill,HYD2,1917.0,0.5,0.5,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.6394,-89.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50933,Rhinelander Mill,HYD3,1926.0,1.0,1.0,1.0,0.6,WAT,Conventional Hydroelectric,OP,HY,12.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.6394,-89.4205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50935,Caterpillar,3512,1983.0,0.9,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,12.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.888888888888889,0.888888888888889,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143768579492004 -50935,Caterpillar,3516,1987.0,1.2,0.8,0.8,0.3,DFO,Petroleum Liquids,SB,IC,7.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143768579492003 -50935,Caterpillar,516A,1996.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,3.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143768579492004 -50935,Caterpillar,ET1-1,2022.0,3.0,3.0,3.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143768579492003 -50935,Caterpillar,ET2,2011.0,2.0,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143769721897433 -50935,Caterpillar,ET4,2013.0,2.5,2.5,2.5,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143767891343902 -50935,Caterpillar,R12,2001.0,0.4,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,RFC,MISO,IN,40.4175,-86.8447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.143764278568073 -50936,Winnebago County Landfill Gas,EG2R,2020.0,0.6,0.6,0.6,0.4,LFG,Landfill Gas,OP,IC,1.0,2020.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.083,-88.5411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.583057279134959 -50936,Winnebago County Landfill Gas,EG3,2000.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.083,-88.5411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.583062794769873 -50936,Winnebago County Landfill Gas,EG4,2007.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,4.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.083,-88.5411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.583059139239383 -50938,Galesville Project,GV1,1987.0,0.8,0.8,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.8489,-123.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50938,Galesville Project,GV2,1987.0,0.8,0.8,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,42.8489,-123.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50942,Lagoon Cogeneration Facility,1,1996.0,1.0,0.5,0.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.09999999999999998,WECC,PACE,UT,40.9872,-111.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50942,Lagoon Cogeneration Facility,2,1989.0,1.0,0.5,0.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.09999999999999998,WECC,PACE,UT,40.9872,-111.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50942,Lagoon Cogeneration Facility,3,1989.0,1.0,0.5,0.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5,0.09999999999999998,WECC,PACE,UT,40.9872,-111.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50949,Hardee Power Station,GEN1,1993.0,95.9,70.0,85.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7299270072992701,0.8863399374348279,SERC,TEC,FL,27.6364,-81.9636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50949,Hardee Power Station,GEN2,1993.0,95.9,70.0,85.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7299270072992701,0.8863399374348279,SERC,TEC,FL,27.6364,-81.9636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50949,Hardee Power Station,GEN3,1993.0,95.9,78.0,85.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8133472367049008,0.8863399374348279,SERC,TEC,FL,27.6364,-81.9636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50949,Hardee Power Station,GEN4,1993.0,86.5,70.0,84.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8092485549132948,0.9710982658959537,SERC,TEC,FL,27.6364,-81.9636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50949,Hardee Power Station,GEN5,2000.0,95.9,85.0,85.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8863399374348279,0.8863399374348279,SERC,TEC,FL,27.6364,-81.9636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50951,Sunnyside Cogen Associates,GEN1,1993.0,58.1,51.0,51.0,35,WC,Conventional Steam Coal,OP,ST,2.0,1993.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8777969018932874,0.8777969018932874,WECC,PACE,UT,39.5472,-110.3917,Sunnyside_Cgn,OT ST,False,48.0,108.0,-1.0,1.16206,1.16206,8614.555,542.101,1.0,1.79,58.103,11.67273500990931,28.543967465489565,-2.9631901414762824e-06,11.67296571736915,28.53977398212739,12.46110529555639,#TRUE#,#1993-02-01#,#2023-08-31#,Existing,PAUT,BS_PACE,23.241,58.103,58.0,UT,Coal,,#FALSE#,23.241,58.103, -50955,Rousselot Inc,GEN1,1947.0,1.5,1.5,1.5,0.4,NG,Natural Gas Steam Turbine,SB,ST,5.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.521747,-70.938657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50955,Rousselot Inc,GEN2,1947.0,1.5,1.5,1.5,0.4,NG,Natural Gas Steam Turbine,SB,ST,5.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.521747,-70.938657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50955,Rousselot Inc,GEN3,1969.0,3.7,3.3,3.3,0.5,NG,Natural Gas Steam Turbine,OP,ST,4.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8918918918918918,0.8918918918918918,NPCC,ISNE,MA,42.521747,-70.938657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.66295195641407 -50956,Bowater Newsprint Calhoun Operation,GEN1,1954.0,19.0,17.0,17.0,2,BLQ,Wood/Wood Waste Biomass,OS,ST,5.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8947368421052632,0.8947368421052632,SERC,TVA,TN,35.2964,-84.7569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50956,Bowater Newsprint Calhoun Operation,GEN2,1954.0,19.2,19.0,19.0,2,BLQ,Wood/Wood Waste Biomass,OS,ST,7.0,1954.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9895833333333334,0.9895833333333334,SERC,TVA,TN,35.2964,-84.7569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50956,Bowater Newsprint Calhoun Operation,GEN3,1957.0,25.0,27.0,27.0,2,BLQ,Wood/Wood Waste Biomass,OS,ST,7.0,1957.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,TVA,TN,35.2964,-84.7569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50960,Union County Resource Recovery,GEN1,1994.0,45.0,37.5,38.5,18,MSW,Municipal Solid Waste,OP,ST,2.0,1994.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8555555555555556,RFC,PJM,NJ,40.601264,-74.266372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50961,Slate Creek,GEN1,1990.0,4.2,4.0,3.9,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.9285714285714285,WECC,PACW,CA,40.976859,-122.456251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50963,Naval Hospital Medical Center,4TG,2003.0,5.3,4.4,4.4,2.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8301886792452831,0.8301886792452831,WECC,CISO,CA,32.7261,-117.1464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.663791673577707 -50964,Amedee Geothermal Venture I,IND,1988.0,1.5,1.1,0.7,0.1,GEO,Geothermal,OP,ST,8.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7333333333333334,0.4666666666666667,WECC,CISO,CA,40.300833,-120.105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50964,Amedee Geothermal Venture I,SYN,1988.0,1.5,1.1,0.7,0.1,GEO,Geothermal,OP,ST,8.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7333333333333334,0.4666666666666667,WECC,CISO,CA,40.300833,-120.105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50965,Toledo Ref Power Recovery Train,GEN1,1986.0,6.0,6.0,6.0,0,PC,Petroleum Coke,OP,OT,6.0,1986.0, , ,,,,,oil,oil,Petroleum Coke,Other,1.0,1.0,RFC,PJM,OH,41.6325,-83.5042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,6025,2017.0,0.3,0.3,0.3,0.1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,DGT1,2002.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,9.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,GEN1,1961.0,6.2,6.0,6.1,2,NG,Natural Gas Steam Turbine,OP,ST,7.0,1961.0,10,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.967741935483871,0.9838709677419354,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,GEN2,1974.0,12.5,12.2,12.3,3,NG,Natural Gas Steam Turbine,OP,ST,7.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.976,0.9840000000000001,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,GEN3,1986.0,19.8,19.2,19.4,3,NG,Natural Gas Steam Turbine,OP,ST,8.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9696969696969696,0.9797979797979797,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,GEN4,1988.0,14.5,13.3,13.4,3,NG,Natural Gas Steam Turbine,OP,ST,7.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9172413793103449,0.9241379310344828,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,GEN6,1994.0,0.5,0.5,0.5,0.3,DFO,Petroleum Liquids,SB,IC,5.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,GEN7,1997.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50969,MU Combined Heat and Power Plant,NTG1,2002.0,17.3,11.4,14.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6589595375722543,0.838150289017341,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.01956613823373 -50969,MU Combined Heat and Power Plant,NTG2,2002.0,17.3,11.4,14.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6589595375722543,0.838150289017341,SERC,MISO,MO,38.9461,-92.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.01956613823373 -50971,Tropicana Products Bradent,GEN1,1990.0,46.8,31.0,35.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6623931623931625,0.7478632478632479,SERC,FPL,FL,27.483358,-82.548341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.255898290736745 -50972,Marsh Valley Development,1,1993.0,1.6,1.5,1.5,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,WECC,PACE,ID,42.625972,-112.149344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50973,Motiva Enterprises Port Arthur Refinery,GN31,1962.0,10.0,8.4,8.6,3,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1962.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8400000000000001,0.86,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50973,Motiva Enterprises Port Arthur Refinery,GN32,1957.0,15.6,10.5,10.7,3,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1957.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6730769230769231,0.6858974358974359,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50973,Motiva Enterprises Port Arthur Refinery,GN33,1978.0,25.5,21.5,22.0,3,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1978.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8431372549019608,0.8627450980392157,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50973,Motiva Enterprises Port Arthur Refinery,GN34,1970.0,18.8,15.6,16.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8297872340425532,0.851063829787234,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.402580768495508 -50973,Motiva Enterprises Port Arthur Refinery,GN35,1983.0,40.5,39.0,38.0,3,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1983.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.962962962962963,0.9382716049382716,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.43176241434923 -50973,Motiva Enterprises Port Arthur Refinery,GN41,2011.0,41.6,36.1,46.4,3,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8677884615384616,1.0,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.528210733101216 -50973,Motiva Enterprises Port Arthur Refinery,GN42,2011.0,41.6,36.1,46.4,3,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8677884615384616,1.0,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.528210733101216 -50973,Motiva Enterprises Port Arthur Refinery,GN43,2011.0,41.6,36.1,46.4,3,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8677884615384616,1.0,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.528210733101216 -50973,Motiva Enterprises Port Arthur Refinery,GN44,2011.0,41.6,36.1,46.4,3,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8677884615384616,1.0,SERC,MISO,TX,29.888462,-93.950984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.122811340244105 -50974,Scrubgrass Reclamation CO. LP.,GEN1,1993.0,94.7,82.8,85.2,0,WC,Conventional Steam Coal,OP,ST,6.0,1993.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8743400211193242,0.8996832101372756,RFC,PJM,PA,41.2691,-79.8134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50978,Carr Street Generating Station,GEN1,1993.0,48.8,35.0,40.0,16,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7172131147540983,0.819672131147541,NPCC,NYIS,NY,43.06132,-76.08239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50978,Carr Street Generating Station,GEN2,1993.0,48.8,35.0,40.0,16,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7172131147540983,0.819672131147541,NPCC,NYIS,NY,43.06132,-76.08239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50978,Carr Street Generating Station,GEN3,1993.0,25.0,23.0,25.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.92,1.0,NPCC,NYIS,NY,43.06132,-76.08239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50980,Siphon Power Project,GEN1,1989.0,2.7,2.7,2.7,0.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.033022,-121.3297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50980,Siphon Power Project,GEN2,1989.0,2.7,2.7,2.7,0.8,WAT,Conventional Hydroelectric,OP,HY,8.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.033022,-121.3297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50985,Solano County Cogen Plant,3163,1989.0,1.0,1.0,1.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.2494,-122.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.722637465964983 -50985,Solano County Cogen Plant,3164,1989.0,0.4,0.4,0.4,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.2494,-122.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.722631590120873 -50985,Solano County Cogen Plant,3165,2004.0,1.4,1.4,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.7142857142857144,WECC,CISO,CA,38.2494,-122.0394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.722635787151916 -50987,Rock Creek I,GEN1,1983.0,2.1,2.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9523809523809523,0.47619047619047616,WECC,IPCO,ID,42.632483,-114.538769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50993,Co-Gen II LLC,GEN1,1987.0,7.5,7.8,7.3,4,WDS,Wood/Wood Waste Biomass,SB,ST,10.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.9733333333333333,WECC,PACW,OR,42.961126,-123.359138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -50999,Aziscohos Hydroelectric Project,GEN1,1988.0,6.7,6.8,6.8,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.9439,-70.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51008,Enterprise Sugar Factory,1000,1981.0,1.0,1.0,1.0,0,AB,Other Waste Biomass,OP,ST,10.0,1981.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,29.903611,-91.725556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51008,Enterprise Sugar Factory,2000,1981.0,2.0,2.0,2.0,0,AB,Other Waste Biomass,SB,ST,10.0,1981.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,29.903611,-91.725556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51026,"Ryegate Associates, LLC",GEN1,1992.0,21.5,20.0,20.0,13.2,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,1992.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9302325581395349,0.9302325581395349,NPCC,ISNE,VT,44.2131,-72.0572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51030,Ocean State Power,GEN1,1990.0,82.8,71.2,77.8,45,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599033816425121,0.9396135265700483,NPCC,ISNE,RI,42.009722,-71.668909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51030,Ocean State Power,GEN2,1990.0,82.8,71.2,77.8,45,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599033816425121,0.9396135265700483,NPCC,ISNE,RI,42.009722,-71.668909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51030,Ocean State Power,GEN3,1990.0,88.6,76.2,83.3,38,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1990.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8600451467268624,0.9401805869074492,NPCC,ISNE,RI,42.009722,-71.668909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51033,West Delaware Tunnel Plant,GEN1,1988.0,7.5,7.0,7.6,5,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333333,1.0,NPCC,NYIS,NY,41.859601,-74.510259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51034,Little Falls Hydro,GEN1,1987.0,6.5,6.5,6.5,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.040335,-74.850621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51034,Little Falls Hydro,GEN2,1987.0,6.5,6.5,6.5,0.8,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.040335,-74.850621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -51038,MacArthur Waste to Energy Facility,GEN1,1990.0,12.5,11.0,11.0,1,MSW,Municipal Solid Waste,OP,ST,3.0,1990.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.88,0.88,NPCC,NYIS,NY,40.7869,-73.1064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52006,LaO Energy Systems,GEN1,1958.0,57.0,57.0,57.0,8,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1958.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,30.3186,-91.2325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52006,LaO Energy Systems,GEN2,1962.0,88.0,80.0,80.0,22,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1962.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9090909090909091,0.9090909090909091,SERC,MISO,LA,30.3186,-91.2325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52006,LaO Energy Systems,GEN3,1966.0,90.0,94.0,94.0,13,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1966.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,30.3186,-91.2325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52006,LaO Energy Systems,GEN4,1969.0,76.5,49.0,49.0,3,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1969.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6405228758169934,0.6405228758169934,SERC,MISO,LA,30.3186,-91.2325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52006,LaO Energy Systems,GEN5,1978.0,76.5,52.0,65.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1978.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6797385620915033,0.8496732026143791,SERC,MISO,LA,30.3186,-91.2325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.04450462764619 -52006,LaO Energy Systems,GEN6,1979.0,76.5,52.0,65.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1979.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6797385620915033,0.8496732026143791,SERC,MISO,LA,30.3186,-91.2325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.034397796749868 -52010,Lee County Solid Waste Energy,GEN1,1994.0,39.0,39.0,39.0,19,MSW,Municipal Solid Waste,OP,ST,9.0,1994.0,9,2029,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FPL,FL,26.631549,-81.760656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52010,Lee County Solid Waste Energy,GEN2,2007.0,20.0,16.0,16.0,10,MSW,Municipal Solid Waste,OP,ST,8.0,2007.0,8,2072,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,SERC,FPL,FL,26.631549,-81.760656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52015,Dixie Valley,GEN1,1988.0,64.7,56.0,57.0,5,GEO,Geothermal,OP,ST,6.0,1988.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.865533230293663,0.8809891808346213,WECC,CISO,NV,39.9663,-117.8557,Dixie Valley Geo 1,GEO,True,6.0,16.0,-1.0,8.38,8.38,0.0,0.0,1.0,3.098312,13.3,-1.7614287490657485,78.09000170541589,-4.450962721946894e-06,-1.7613431058837552,78.08960591178676,6.679001341125731,#TRUE#,#2018-07-05#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,13.3,5.181097,NV,Geo,Binary,#FALSE#,6.65,13.3, -52015,Dixie Valley,GEN2,2012.0,6.2,2.5,5.1,1,GEO,Geothermal,OP,BT,4.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.4032258064516129,0.8225806451612903,WECC,CISO,NV,39.9663,-117.8557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN1,1991.0,122.0,104.7,122.0,73.3,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8581967213114754,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN2,1991.0,122.0,104.7,122.0,73.3,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8581967213114754,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN3,1991.0,132.0,123.0,132.0,28.7,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9318181818181819,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN4,1992.0,122.0,104.7,122.0,73.3,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8581967213114754,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN5,1992.0,122.0,104.7,122.0,73.3,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8581967213114754,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN6,1992.0,132.0,123.0,132.0,28.7,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9318181818181819,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN7,2001.0,187.0,170.0,188.0,74.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN8,2018.0,187.0,165.0,188.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52019,Doswell Energy Center,GEN9,2018.0,187.0,165.0,188.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,1.0,SERC,PJM,VA,37.820805,-77.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52021,ITT Cogen Facility,GEN1,1991.0,3.7,3.5,3.7,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,5.0,1991.0,4,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9459459459459459,1.0,RFC,PJM,IL,41.83442,-87.628465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.494897959183675 -52021,ITT Cogen Facility,GEN2,1991.0,3.7,3.5,3.7,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,5.0,1991.0,4,2025,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9459459459459459,1.0,RFC,PJM,IL,41.83442,-87.628465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.494897959183675 -52024,Rhode Island Hospital,GEN2,1974.0,1.7,1.7,1.7,0.3,NG,Natural Gas Steam Turbine,OP,ST,10.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,RI,41.8103,-71.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52024,Rhode Island Hospital,GEN4,1974.0,1.7,1.7,1.7,0.3,NG,Natural Gas Steam Turbine,OP,ST,10.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,RI,41.8103,-71.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52024,Rhode Island Hospital,NEW1,1993.0,3.5,3.5,3.5,0.3,NG,Natural Gas Steam Turbine,OP,ST,12.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,RI,41.8103,-71.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52024,Rhode Island Hospital,NEW3,1993.0,3.5,3.5,3.5,0.3,NG,Natural Gas Steam Turbine,OP,ST,9.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,RI,41.8103,-71.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52026,Dartmouth Power Associates LP,GEN1,1992.0,41.9,62.1,67.7,24,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,ISNE,MA,41.6731,-70.9994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52026,Dartmouth Power Associates LP,GEN2,1992.0,32.2,,,12,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,NPCC,ISNE,MA,41.6731,-70.9994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52026,Dartmouth Power Associates LP,GEN3,2009.0,23.3,19.6,21.8,19,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8412017167381974,0.9356223175965666,NPCC,ISNE,MA,41.6731,-70.9994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC11,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC12,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC13,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC14,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC15,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC21,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC22,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC23,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC24,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC25,1992.0,3.5,3.1,3.1,0.5,GEO,Geothermal,OP,ST,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC31,2012.0,8.0,6.0,6.0,0.5,GEO,Geothermal,OP,BT,2.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.75,0.75,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52028,Puna Geothermal Venture I,OEC32,2012.0,8.0,6.0,6.0,0.5,GEO,Geothermal,OP,BT,2.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.75,0.75,non-conus,non-conus,HI,19.478976,-154.888362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52033,Moretown Generating Station,1,1989.0,1.2,0.3,0.1,0.1,WAT,Conventional Hydroelectric,OS,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.25,0.08333333333333337,NPCC,ISNE,VT,44.285945,-72.710324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52036,Yough Hydro Power,GEN1,1989.0,6.1,6.1,5.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.819672131147541,RFC,PJM,PA,39.801637,-79.368214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52036,Yough Hydro Power,GEN2,1989.0,6.1,6.1,5.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.819672131147541,RFC,PJM,PA,39.801637,-79.368214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52039,Quail Creek Hydro Plant #1,1,1985.0,2.3,2.3,2.3,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,37.1854,-113.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52048,Vanderbilt University Power Plant,GT1B,2017.0,6.3,5.8,6.5,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9206349206349207,1.0,SERC,TVA,TN,36.145896,-86.803833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.863124175234107 -52048,Vanderbilt University Power Plant,GT2,2002.0,5.2,4.0,5.0,1,NG,Natural Gas Fired Combustion Turbine,OS,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7692307692307692,0.9615384615384615,SERC,TVA,TN,36.145896,-86.803833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.863123884909413 -52048,Vanderbilt University Power Plant,GT3,2015.0,7.2,7.8,8.7,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,TVA,TN,36.145896,-86.803833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.863124037221633 -52049,Clifton Dam 3 Power Station,1H,1987.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.9953,-81.8344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52049,Clifton Dam 3 Power Station,2V,1985.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.9953,-81.8344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52054,Rapidan Hydro Facility,GEN1,1984.0,3.4,3.2,3.1,1,WAT,Conventional Hydroelectric,OS,HY,8.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9411764705882354,0.911764705882353,MRO,MISO,MN,44.092689,-94.108817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52054,Rapidan Hydro Facility,GEN2,1984.0,3.4,3.2,3.1,1,WAT,Conventional Hydroelectric,OS,HY,8.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9411764705882354,0.911764705882353,MRO,MISO,MN,44.092689,-94.108817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52057,Herkimer,01,1987.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.033577,-74.983391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52057,Herkimer,02,1987.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.033577,-74.983391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52057,Herkimer,03,1987.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.033577,-74.983391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52057,Herkimer,04,1987.0,0.4,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OS,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2499999999999999,0.2499999999999999,NPCC,NYIS,NY,43.033577,-74.983391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52058,Ogdensburg,01,1987.0,0.7,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2857142857142857,0.2857142857142857,NPCC,NYIS,NY,44.704089,-75.487049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52058,Ogdensburg,02,1987.0,0.7,0.2,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2857142857142857,0.1428571428571428,NPCC,NYIS,NY,44.704089,-75.487049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52058,Ogdensburg,03,1987.0,0.7,0.2,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2857142857142857,0.1428571428571428,NPCC,NYIS,NY,44.704089,-75.487049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52058,Ogdensburg,04,1987.0,0.7,0.2,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2857142857142857,0.1428571428571428,NPCC,NYIS,NY,44.704089,-75.487049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52058,Ogdensburg,05,1987.0,0.7,0.2,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2857142857142857,0.1428571428571428,NPCC,NYIS,NY,44.704089,-75.487049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52061,Hartford Hospital Cogeneration,GEN2,1988.0,4.2,2.4,2.4,0.3,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1988.0,12,2025,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.5714285714285714,0.5714285714285714,NPCC,ISNE,CT,41.7631,-72.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52061,Hartford Hospital Cogeneration,GEN3,1988.0,6.2,6.2,6.2,3,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1988.0,12,2025,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,ISNE,CT,41.7631,-72.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.774402594690542 -52061,Hartford Hospital Cogeneration,GEN4,2014.0,1.4,1.4,1.4,0,NG,Other Natural Gas,OP,FC,5.0,2014.0,6,2029,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.7631,-72.6733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52063,Martinez Sulfuric Acid Regeneration Plt,GEN1,1978.0,4.0,4.0,4.0,0.3,WH,All Other,OP,ST,1.0,1978.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,38.0314,-122.1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52064,Dominguez Plant,GEN1,1976.0,5.0,3.5,3.5,1,WH,All Other,OP,ST,8.0,1976.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7,0.7,WECC,CISO,CA,33.8431,-118.2347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52065,Houston Plant,GEN1,1977.0,6.0,5.5,6.1,5,WH,All Other,OP,ST,1.0,1977.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9166666666666666,1.0,TRE,ERCO,TX,29.71977,-95.270562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52065,Houston Plant,GEN2,1970.0,1.5,1.5,1.5,1.2,WH,All Other,OP,ST,1.0,1970.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,29.71977,-95.270562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52068,Great Falls Hydro Project,GEN1,1985.0,4.1,3.3,3.3,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8048780487804879,0.8048780487804879,RFC,PJM,NJ,40.915319,-74.180986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52068,Great Falls Hydro Project,GEN2,1985.0,4.1,3.3,3.3,0.3,WAT,Conventional Hydroelectric,OA,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8048780487804879,0.8048780487804879,RFC,PJM,NJ,40.915319,-74.180986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52068,Great Falls Hydro Project,GEN3,1985.0,4.1,3.3,3.3,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8048780487804879,0.8048780487804879,RFC,PJM,NJ,40.915319,-74.180986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52072,Radford Army Ammunition Plant,GEN1,1990.0,6.0,5.6,5.6,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333332,0.9333333333333332,RFC,PJM,VA,37.180441,-80.542767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52072,Radford Army Ammunition Plant,GEN2,1990.0,6.0,5.6,5.6,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333332,0.9333333333333332,RFC,PJM,VA,37.180441,-80.542767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52072,Radford Army Ammunition Plant,GEN3,1990.0,6.0,5.6,5.6,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333332,0.9333333333333332,RFC,PJM,VA,37.180441,-80.542767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52073,UCLA So Campus Cogen Project,GEN1,1993.0,14.5,12.5,13.5,5,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8620689655172413,0.9310344827586207,WECC,LDWP,CA,34.0692,-118.4439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.933559300152226 -52073,UCLA So Campus Cogen Project,GEN2,1993.0,14.5,12.5,13.5,5,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8620689655172413,0.9310344827586207,WECC,LDWP,CA,34.0692,-118.4439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.706638169331168 -52073,UCLA So Campus Cogen Project,GEN3,1993.0,14.0,11.0,12.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7857142857142857,0.8571428571428572,WECC,LDWP,CA,34.0692,-118.4439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52076,McKittrick Cogen,UNIT1,2012.0,6.0,4.8,5.5,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7999999999999999,0.9166666666666666,WECC,CISO,CA,35.3161,-119.6597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.335892440097547 -52076,McKittrick Cogen,UNIT2,2012.0,6.0,4.8,5.5,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7999999999999999,0.9166666666666666,WECC,CISO,CA,35.3161,-119.6597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.335892440097547 -52077,Lost Hills Cogeneration Plant,GEN5,1985.0,3.5,2.7,3.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7714285714285715,0.8571428571428572,WECC,CISO,CA,35.666111,-119.766944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.155753583882216 -52077,Lost Hills Cogeneration Plant,GEN6,1985.0,3.5,2.7,3.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7714285714285715,0.8571428571428572,WECC,CISO,CA,35.666111,-119.766944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.155753583882216 -52078,North Midway Cogen,GEN7,1986.0,3.5,3.0,3.2,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9142857142857144,WECC,CISO,CA,35.2761,-119.5986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52078,North Midway Cogen,GEN8,1986.0,3.5,3.0,3.2,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9142857142857144,WECC,CISO,CA,35.2761,-119.5986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52078,North Midway Cogen,GEN9,1986.0,3.5,3.0,3.2,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.9142857142857144,WECC,CISO,CA,35.2761,-119.5986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52081,Cymric 31X Cogen,TG1,1988.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,35.3639,-119.6592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.68885453042945 -52081,Cymric 31X Cogen,TG2,1988.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,35.3639,-119.6592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.68885453042945 -52082,Cymric 6Z Cogen,TG1,1986.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,35.346102,-119.643431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.4282163883795 -52082,Cymric 6Z Cogen,TG2,1986.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,35.346102,-119.643431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.4282163883795 -52083,Coalinga 6C Cogen,TG1,1989.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,9.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,36.2097,-120.3828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52083,Coalinga 6C Cogen,TG2,1989.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,9.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,36.2097,-120.3828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52085,Taft 26C Cogen,TG1,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.1133,-119.4706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.252658475756231 -52085,Taft 26C Cogen,TG2,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.1133,-119.4706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.252658475756231 -52085,Taft 26C Cogen,TG3,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.1133,-119.4706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.252658475756231 -52085,Taft 26C Cogen,TG4,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.1133,-119.4706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.252658475756231 -52086,Coalinga 25D Cogen,TG1,1986.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,36.1556,-120.3972,Coalinga_25D1,OT GT,False,1.0,1.0,-1.0,14.85,14.85,494.3076,74.745,1.0,0.45,16.5,-569.0279812895637,9481.31211899258,-34.950406343709595,577.9833479429028,70.66320854295884,8.77973134624286,#TRUE#,#1986-01-17#,#2050-12-31#,Existing,CIPV,CA_CISO,16.335,16.5,1.69,CA,NG,Areo,#FALSE#,16.335,16.5,17.170892800226653 -52086,Coalinga 25D Cogen,TG2,1986.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,36.1556,-120.3972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.170892800226653 -52086,Coalinga 25D Cogen,TG3,1987.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,36.1556,-120.3972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.170892800226653 -52086,Coalinga 25D Cogen,TG4,1987.0,3.4,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7941176470588236,0.8529411764705882,WECC,CISO,CA,36.1556,-120.3972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.170892800226653 -52087,Elizabeth River Power Station,GEN1,1992.0,129.6,116.0,121.0,78,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8950617283950617,0.933641975308642,SERC,PJM,VA,36.775,-76.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52087,Elizabeth River Power Station,GEN2,1992.0,129.6,116.0,120.0,78,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8950617283950617,0.9259259259259259,SERC,PJM,VA,36.775,-76.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52087,Elizabeth River Power Station,GEN3,1992.0,129.6,116.0,124.0,78,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8950617283950617,0.9567901234567902,SERC,PJM,VA,36.775,-76.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52088,Texas City Power Plant,GEN1,1987.0,141.0,139.0,139.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9858156028368794,0.9858156028368794,TRE,ERCO,TX,29.378697,-94.943829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52088,Texas City Power Plant,GEN2,1987.0,103.0,104.0,115.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.378697,-94.943829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52088,Texas City Power Plant,GEN3,1987.0,103.0,104.0,115.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.378697,-94.943829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52088,Texas City Power Plant,GEN4,1987.0,103.0,104.0,115.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.378697,-94.943829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52089,Celanese Acetate LLC,GEN1,1942.0,6.0,6.0,6.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1942.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,VA,37.3439,-80.765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52089,Celanese Acetate LLC,GEN2,1942.0,6.0,6.0,6.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1942.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,VA,37.3439,-80.765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52089,Celanese Acetate LLC,GEN3,1944.0,6.0,6.0,6.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1944.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,VA,37.3439,-80.765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52089,Celanese Acetate LLC,GEN4,1966.0,9.2,9.2,9.2,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1966.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,VA,37.3439,-80.765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52091,NewYork-Presbyterian Brooklyn Methodist Hospital,01-8N,2006.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6679,-73.9787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.250768285187462 -52091,NewYork-Presbyterian Brooklyn Methodist Hospital,02-8P,2006.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6679,-73.9787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.249508357915438 -52091,NewYork-Presbyterian Brooklyn Methodist Hospital,03-8L,2008.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6679,-73.9787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.249508357915438 -52091,NewYork-Presbyterian Brooklyn Methodist Hospital,04-6Z,2006.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6679,-73.9787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.250768285187462 -52091,NewYork-Presbyterian Brooklyn Methodist Hospital,05-6Z,2006.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6679,-73.9787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.250768285187462 -52091,NewYork-Presbyterian Brooklyn Methodist Hospital,CCHEG,2020.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6679,-73.9787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.24942641756801 -52096,Berry Placerita Cogen,GEN1,1990.0,21.4,20.0,20.7,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9345794392523366,0.9672897196261683,WECC,CISO,CA,34.38407,-118.494882,BerryPlaceritaCogen1,OT GT,False,1.0,1.0,-1.0,19.584,19.584,651.887,98.5728,1.0,0.45,21.76,-767.5984626780148,16824.733166160986,-35.7740131088291,780.7015748800723,72.25890309398585,9.88750231961767,#TRUE#,#1990-03-06#,#2050-12-31#,Existing,CISC,CA_CISO,21.542,21.76,20.0,CA,NG,Areo,#FALSE#,21.542,21.76,14.807162246815619 -52096,Berry Placerita Cogen,GEN2,1990.0,21.4,20.0,20.7,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9345794392523366,0.9672897196261683,WECC,CISO,CA,34.38407,-118.494882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.807162246815619 -52099,Plant No 2 Orange County,GEN1,1993.0,3.0,2.7,2.7,2.2,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,33.6433,-117.9556,ELLIS QFS,OT ST,True,8.0,8.0,-1.0,1.8,1.8,67.59955,1.2,1.0,2.027986,12.0,18.857229739712064,45.95215362493986,1.9425014208451752,-10.999752142684667,147.71494407912604,25.692712904441375,#TRUE#,#1993-01-01#,#2050-12-31#,Existing,CISC,CA_CISO,3.6,12.0,0.0,CA,Bio,,#FALSE#,3.6,12,11.644808511540173 -52099,Plant No 2 Orange County,GEN2,1993.0,3.0,2.7,2.7,2.2,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,33.6433,-117.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.644808511540173 -52099,Plant No 2 Orange County,GEN3,1993.0,3.0,2.7,2.7,2.2,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,33.6433,-117.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.644808511540173 -52099,Plant No 2 Orange County,GEN4,1993.0,3.0,2.7,2.7,2.2,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,33.6433,-117.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.644808511540173 -52099,Plant No 2 Orange County,GEN5,1993.0,3.0,2.7,2.7,2.2,OBG,Other Waste Biomass,OP,IC,6.0,1993.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,33.6433,-117.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.644808511540173 -52099,Plant No 2 Orange County,GEN6,1993.0,1.0,0.9,0.9,0.1,OTH,All Other,OP,ST,6.0,1993.0, , ,,,,,other,other,Other,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,WECC,CISO,CA,33.6433,-117.9556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52104,Cymric 36W Cogen,GEN1,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.3633,-119.6756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.73489787049109 -52104,Cymric 36W Cogen,GEN2,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.3633,-119.6756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.73489787049109 -52104,Cymric 36W Cogen,GEN3,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.3633,-119.6756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.73489787049109 -52104,Cymric 36W Cogen,GEN4,1982.0,3.1,2.7,2.9,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8709677419354839,0.9354838709677419,WECC,CISO,CA,35.3633,-119.6756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.73489787049109 -52107,Kern River Eastridge Cogen,101A,1988.0,24.4,20.8,21.7,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8524590163934427,0.889344262295082,WECC,CISO,CA,35.4406,-118.9617,Eastridge1,OT GT,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,10.821182867335201,-38.40855629994351,0.07500191234302418,6.594221005219008,14.4168524123481,9.262994705048714,#TRUE#,#1988-06-13#,#2050-12-31#,Existing,CIPV,CA_CISO,13.2,44.0,5.15,CA,NG,Areo,#FALSE#,13.2,44,12.237557911885995 -52107,Kern River Eastridge Cogen,101B,1988.0,24.4,20.8,21.7,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8524590163934427,0.889344262295082,WECC,CISO,CA,35.4406,-118.9617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.237557911885995 -52109,Richmond Cogen,GEN1,1992.0,62.6,50.0,52.0,25,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7987220447284344,0.8306709265175719,WECC,CISO,CA,37.9418,-122.3909,RichmondCgn1,OT ST,False,1.0,1.0,-1.0,48.6,48.6,1617.734,481.68,1.0,0.45,54.0,-66.11725321180636,3801.5595341635585,-1.3298770373684619,76.03535549410562,2.941363119639196,5.008459025051133,#TRUE#,#1992-08-31#,#2050-12-31#,Existing,CIPB,CA_CISO,53.0,54.0,34.0,CA,NG,,#FALSE#,53,54,11.968853093591193 -52109,Richmond Cogen,GEN2,1992.0,62.6,50.0,52.0,25,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7987220447284344,0.8306709265175719,WECC,CISO,CA,37.9418,-122.3909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.253720595073323 -52109,Richmond Cogen,GEN5,2006.0,30.4,30.4,30.4,1.5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,37.9418,-122.3909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52109,Richmond Cogen,GEN6,2019.0,17.9,17.9,17.9,1,WH,All Other,OP,ST,4.0,2019.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,37.9418,-122.3909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52120,Freeport Energy,G-37,1978.0,75.0,59.2,65.9,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7893333333333333,0.8786666666666667,TRE,ERCO,TX,28.991289,-95.407481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.852994301506495 -52120,Freeport Energy,G-61,1982.0,94.5,68.3,76.1,50,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1982.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7227513227513227,0.8052910052910052,TRE,ERCO,TX,28.991289,-95.407481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.548682322001422 -52120,Freeport Energy,G-63,1982.0,94.5,68.3,80.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1982.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7227513227513227,0.8465608465608465,TRE,ERCO,TX,28.991289,-95.407481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.877277510681429 -52120,Freeport Energy,G-65,1984.0,111.3,95.2,95.2,30,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,1984.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8553459119496856,0.8553459119496856,TRE,ERCO,TX,28.991289,-95.407481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52120,Freeport Energy,G-66,1983.0,119.0,95.6,106.5,45,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1983.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.803361344537815,0.8949579831932774,TRE,ERCO,TX,28.991289,-95.407481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.76211098212404 -52120,Freeport Energy,G-67,1984.0,119.0,95.6,106.5,45,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1984.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.803361344537815,0.8949579831932774,TRE,ERCO,TX,28.991289,-95.407481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.87567501140088 -52122,Wasson CO2 Removal Plant,GEN1,1988.0,23.4,16.9,16.6,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7222222222222222,0.7094017094017095,MRO,SWPP,TX,33.009944,-102.756945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.417006424753692 -52127,Elk Basin Gasoline Plant,GEN1,1948.0,1.0,0.8,0.8,0.2,OG,Other Gases,OP,ST,1.0,1948.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,WECC,PACE,WY,44.9806,-108.8428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.78926235867284 -52127,Elk Basin Gasoline Plant,GEN2,1948.0,1.0,0.8,0.8,0.2,OG,Other Gases,OP,ST,1.0,1948.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,WECC,PACE,WY,44.9806,-108.8428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.78926235867284 -52130,Whiting Refinery,31TG,1948.0,12.5,11.2,11.2,5,OG,Other Gases,OP,ST,1.0,1948.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8959999999999999,0.8959999999999999,RFC,MISO,IN,41.6703,-87.4803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52130,Whiting Refinery,32TG,1948.0,12.5,11.2,11.2,5,OG,Other Gases,OP,ST,1.0,1948.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8959999999999999,0.8959999999999999,RFC,MISO,IN,41.6703,-87.4803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52130,Whiting Refinery,33TG,1955.0,18.8,16.4,16.4,5,OG,Other Gases,OP,ST,1.0,1955.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8723404255319148,0.8723404255319148,RFC,MISO,IN,41.6703,-87.4803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52130,Whiting Refinery,34TG,1955.0,10.0,11.8,11.8,5,OG,Other Gases,OP,ST,1.0,1955.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,41.6703,-87.4803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52130,Whiting Refinery,35TG,1980.0,30.0,38.0,38.0,5,OG,Other Gases,OP,ST,1.0,1980.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,41.6703,-87.4803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52132,Power Station 4,GEN1,1986.0,78.2,69.0,78.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8823529411764706,0.9974424552429667,TRE,ERCO,TX,29.378164,-94.92195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.092567330231256 -52132,Power Station 4,GEN2,1986.0,78.2,69.0,78.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8823529411764706,0.9974424552429667,TRE,ERCO,TX,29.378164,-94.92195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.879653162293753 -52132,Power Station 4,GEN3,1986.0,34.7,34.0,34.0,34,NG,Natural Gas Fired Combined Cycle,OS,CA,9.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9798270893371757,0.9798270893371757,TRE,ERCO,TX,29.378164,-94.92195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52133,Tesoro Mandan Cogeneration Plant,GEN1,1954.0,2.5,2.8,2.8,0.3,OG,Other Gases,OP,ST,10.0,1954.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,ND,46.8492,-100.8808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.78926235867284 -52133,Tesoro Mandan Cogeneration Plant,GEN2,1954.0,2.5,2.8,2.8,0.3,OG,Other Gases,OP,ST,10.0,1954.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,ND,46.8492,-100.8808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.78926235867284 -52133,Tesoro Mandan Cogeneration Plant,GEN3,1958.0,2.5,2.8,2.8,0.3,AB,Other Waste Biomass,OA,ST,5.0,1958.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,ND,46.8492,-100.8808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.9736490235070745 -52140,International Paper Prattville Mill,GEN1,1967.0,40.5,37.0,38.0,8,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1967.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9135802469135803,0.9382716049382716,SERC,SOCO,AL,32.4187,-86.4718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52140,International Paper Prattville Mill,GEN2,1980.0,49.3,48.0,48.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,5.0,1980.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9736308316430021,0.9736308316430021,SERC,SOCO,AL,32.4187,-86.4718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52142,Mojave 3/4/5,GEN1,1990.0,75.0,67.0,67.0,5.2,WND,Onshore Wind Turbine,OP,WT,12.0,1990.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8933333333333333,0.8933333333333333,WECC,CISO,CA,35.0506,-118.2572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52147,C P Kelco San Diego Plant,GEN1,1983.0,9.2,9.2,9.2,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.6947,-117.1436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.51133435533598 -52147,C P Kelco San Diego Plant,GEN2,1983.0,10.0,9.3,9.3,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.93,0.93,WECC,CISO,CA,32.6947,-117.1436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.511334322312967 -52147,C P Kelco San Diego Plant,GEN3,1983.0,10.0,9.3,9.3,7,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.93,0.93,WECC,CISO,CA,32.6947,-117.1436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.511334322312967 -52148,Elkton,GEN1,1982.0,7.2,6.0,6.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333333,0.8333333333333333,SERC,PJM,VA,38.3836,-78.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56.15677226539152 -52148,Elkton,GEN4,2016.0,0.3,0.3,0.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.3836,-78.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.960238939705059 -52148,Elkton,GEN5,1982.0,0.4,0.4,0.4,0.1,NG,Natural Gas Steam Turbine,OP,ST,6.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,38.3836,-78.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -52148,Elkton,GEN6,2021.0,1.2,1.2,1.2,0.1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,38.3836,-78.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56.63066907775769 -52148,Elkton,GEN7,2021.0,1.2,1.2,1.2,1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,38.3836,-78.6528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56.392725090036016 -52149,West Point (PA),COG3,2001.0,38.4,38.5,40.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN14,2016.0,1.5,1.5,1.5,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN15,2017.0,1.3,1.1,1.3,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8461538461538463,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN16,2020.0,1.3,1.1,1.3,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8461538461538463,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN17,2022.0,2.0,2.0,2.0,0,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN2,1989.0,32.3,24.5,26.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.758513931888545,0.8049535603715171,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN3,1972.0,2.5,2.4,2.5,1.8,DFO,Petroleum Liquids,OS,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.96,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN5,1994.0,1.2,1.2,1.2,0.8,DFO,Petroleum Liquids,OS,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN8,1999.0,1.0,1.0,1.0,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GEN9,2004.0,1.3,0.9,0.9,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,2.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.6923076923076923,0.6923076923076923,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GN10,2004.0,1.3,0.9,0.9,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,2.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.6923076923076923,0.6923076923076923,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52149,West Point (PA),GN11,2010.0,1.0,0.9,0.9,0.8,DFO,Petroleum Liquids,SB,IC,11.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,PJM,PA,40.217963,-75.298823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52151,Sylvamo Corporation Eastover Facility,GEN1,1984.0,48.4,46.0,46.0,30,NG,Natural Gas Steam Turbine,OP,ST,4.0,1984.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9504132231404959,0.9504132231404959,SERC,SCEG,SC,33.8872,-80.6397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52151,Sylvamo Corporation Eastover Facility,GEN2,1991.0,61.2,57.0,57.0,30,NG,Natural Gas Steam Turbine,OP,ST,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9313725490196078,0.9313725490196078,SERC,SCEG,SC,33.8872,-80.6397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52152,International Paper Franklin Mill,GE10,1997.0,46.4,38.0,59.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8189655172413793,1.0,SERC,PJM,VA,36.6803,-76.9128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52152,International Paper Franklin Mill,GEN9,1977.0,36.1,36.1,36.1,5,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,PJM,VA,36.6803,-76.9128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52155,Lacomb Irrigation District,GEN1,1986.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.597518,-122.685441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52158,Aidlin Geothermal Power Plant,GEN1,1989.0,12.5,9.0,10.0,8,GEO,Geothermal,OP,ST,5.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.8,WECC,CISO,CA,38.8339,-122.881,Aidlin_Geo1,GEO,True,6.0,16.0,-1.0,11.09,11.09,0.0,0.0,1.0,3.098312,8.0,-1.7614251645930583,46.97140094718916,-5.66738186011136e-06,-1.761359422856881,46.971217776409624,6.678999777388635,#TRUE#,#2017-11-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,8.0,8.0,CA,Geo,Binary,#FALSE#,6.25,8, -52158,Aidlin Geothermal Power Plant,GEN2,1989.0,12.5,9.0,10.0,8,GEO,Geothermal,OP,ST,5.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.72,0.8,WECC,CISO,CA,38.8339,-122.881,Aidlin_Geo2,GEO,True,6.0,16.0,-1.0,11.09,11.09,0.0,0.0,1.0,3.098312,8.0,-1.7614251645930583,46.97140094718916,-5.66738186011136e-06,-1.761359422856881,46.971217776409624,6.678999777388635,#TRUE#,#2017-11-01#,#2050-12-31#,Existing,CIPV,CA_CISO,0.0,8.0,8.0,CA,Geo,Binary,#FALSE#,6.25,8, -52162,85 A,MON1,2021.0,21.3,21.3,21.3,2,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.095797,-118.324772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52163,85 B,MON2,2021.0,25.2,25.2,25.2,2,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.102577,-118.332533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52166,Collins Facility,1,1985.0,0.6,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.1569,-72.4227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52166,Collins Facility,2,1985.0,0.6,0.8,0.8,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.1569,-72.4227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52168,Riverbay,GEN2,2011.0,16.0,13.8,15.0,3,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8625,0.9375,NPCC,NYIS,NY,40.869972,-73.824437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52168,Riverbay,GEN3,2011.0,12.9,12.3,12.6,10.3,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9534883720930233,0.9767441860465116,NPCC,NYIS,NY,40.869972,-73.824437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52168,Riverbay,GEN4,2011.0,12.9,12.3,12.6,10.3,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9534883720930233,0.9767441860465116,NPCC,NYIS,NY,40.869972,-73.824437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52168,Riverbay,U0007,2011.0,1.7,1.5,1.5,0.3,DFO,Petroleum Liquids,OP,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,NPCC,NYIS,NY,40.869972,-73.824437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52169,Midway Sunset Cogen,A,1989.0,78.0,73.0,83.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9358974358974359,1.0,WECC,CISO,CA,35.2269,-119.6294,MidwaySunsetA,GT E_7E,True,1.0,1.0,-1.0,7.8,7.8,4604.312,17.16,1.0,0.56,78.0,10.234288455058902,-15.540229255664215,0.025755924445839073,7.358124369647293,60.80934894032491,9.940936132062543,#TRUE#,#1989-12-18#,#2050-12-31#,Existing,CIPV,CA_CISO,35.1,78.0,82.02,CA,NG,Industrial,#FALSE#,35.1,78,11.59992844742026 -52169,Midway Sunset Cogen,B,1989.0,78.0,73.0,83.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9358974358974359,1.0,WECC,CISO,CA,35.2269,-119.6294,MidwaySunsetB,GT E_7E,True,1.0,1.0,-1.0,7.8,7.8,4604.312,17.16,1.0,0.56,78.0,10.234288455058902,-15.540229255664215,0.025755924445839073,7.358124369647293,60.80934894032491,9.940936132062543,#TRUE#,#1989-12-18#,#2050-12-31#,Existing,CIPV,CA_CISO,35.1,78.0,82.02,CA,NG,Industrial,#FALSE#,35.1,78,11.59992844742026 -52169,Midway Sunset Cogen,C,1989.0,78.0,73.0,83.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9358974358974359,1.0,WECC,CISO,CA,35.2269,-119.6294,MidwaySunsetC,GT E_7E,True,1.0,1.0,-1.0,7.8,7.8,4604.312,17.16,1.0,0.56,78.0,10.234288455058902,-15.540229255664215,0.025755924445839073,7.358124369647293,60.80934894032491,9.940936132062543,#TRUE#,#1989-12-18#,#2050-12-31#,Existing,CIPV,CA_CISO,35.1,78.0,82.02,CA,NG,Industrial,#FALSE#,35.1,78,11.59992844742026 -52171,Upper Barker,GEN1,1987.0,1.0,1.0,1.0,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.08687,-70.229294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52173,Conemaugh Hydro Plant,GEN1,1989.0,7.5,2.0,4.0,1.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666667,0.5333333333333333,RFC,PJM,PA,40.46439,-79.365703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52173,Conemaugh Hydro Plant,GEN2,1989.0,7.5,2.0,4.0,1.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.2666666666666667,0.5333333333333333,RFC,PJM,PA,40.46439,-79.365703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52175,CITGO Refinery Powerhouse,GEN1,1942.0,25.0,5.6,5.5,0,OG,Other Gases,OS,ST,1.0,1942.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.2240000000000001,0.21999999999999997,SERC,MISO,LA,30.1826,-93.3234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52175,CITGO Refinery Powerhouse,GEN2,1942.0,25.0,9.5,9.0,3.5,OG,Other Gases,OP,ST,1.0,1942.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.38,0.36,SERC,MISO,LA,30.1826,-93.3234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52175,CITGO Refinery Powerhouse,GEN3,1969.0,25.0,19.6,21.9,3.5,OG,Other Gases,OP,ST,3.0,1969.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.784,0.8759999999999999,SERC,MISO,LA,30.1826,-93.3234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52176,C R Wing Cogen Plant,GEN1,1987.0,77.5,71.0,71.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9161290322580645,0.9161290322580645,TRE,ERCO,TX,32.273178,-101.422386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52176,C R Wing Cogen Plant,GEN2,1987.0,77.5,71.0,71.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1987.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9161290322580645,0.9161290322580645,TRE,ERCO,TX,32.273178,-101.422386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52176,C R Wing Cogen Plant,GEN3,1988.0,75.0,70.0,70.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1988.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9333333333333333,0.9333333333333333,TRE,ERCO,TX,32.273178,-101.422386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52184,Tesoro Kenai Cogeneration Plant,GEN1,1988.0,4.3,4.2,4.7,0.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9767441860465117,1.0,non-conus,non-conus,AK,60.677,-151.3815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.016120343127097 -52184,Tesoro Kenai Cogeneration Plant,GEN2,1988.0,4.3,4.2,4.7,0.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9767441860465117,1.0,non-conus,non-conus,AK,60.677,-151.3815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.016120343127097 -52186,Yuba City Cogen Partners,GEN1,1990.0,49.9,49.9,49.9,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,39.13667,-121.639846,Yuba_City_Cogen,GT_NA,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,49.0,2.9784357682522904,264.81040599194154,0.7512625349996013,-54.42426892985529,1335.5148019268254,10.127127111037229,#TRUE#,#1990-12-27#,#2050-12-31#,Existing,CIPV,CA_CISO,28.6,49.0,30.0,CA,NG,Areo,#FALSE#,28.6,49,10.045506123566929 -52187,Falls Creek,GE-1,1984.0,4.1,3.9,4.8,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.951219512195122,1.0,WECC,PACW,OR,44.396815,-122.350246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52193,Delaware City Plant,CT1,2000.0,92.0,65.0,72.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7065217391304348,0.782608695652174,RFC,PJM,DE,39.5871,-75.6343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52193,Delaware City Plant,CT2,2000.0,92.0,65.0,72.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7065217391304348,0.782608695652174,RFC,PJM,DE,39.5871,-75.6343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52193,Delaware City Plant,G1,1956.0,27.5,29.5,29.5,15,OG,Other Gases,OP,ST,10.0,1956.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,DE,39.5871,-75.6343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52193,Delaware City Plant,G2,1956.0,27.5,29.5,29.5,15,OG,Other Gases,OP,ST,10.0,1956.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,DE,39.5871,-75.6343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52193,Delaware City Plant,G3,1961.0,75.0,66.0,66.0,17,OG,Other Gases,SB,ST,11.0,1961.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.88,0.88,RFC,PJM,DE,39.5871,-75.6343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -52193,Delaware City Plant,G4,1982.0,10.0,10.0,10.0,3,OG,Other Gases,OP,ST,6.0,1982.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,DE,39.5871,-75.6343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54004,"WestRock Southeast, LLC.",GEN1,1989.0,45.0,44.0,44.0,3,WDS,Wood/Wood Waste Biomass,OP,ST,7.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9777777777777777,0.9777777777777777,SERC,SOCO,GA,32.5036,-82.8443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54004,"WestRock Southeast, LLC.",GEN2,1989.0,37.1,40.0,42.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,GA,32.5036,-82.8443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.604966482075197 -54006,Broadwater Power Project,GEN1,1989.0,9.7,9.7,9.7,1.5,WAT,Conventional Hydroelectric,OP,HY,6.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.12061,-111.407656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54015,MM West Covina,GEN2,1993.0,6.8,5.4,5.4,5.2,LFG,Landfill Gas,OP,ST,6.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7941176470588236,0.7941176470588236,WECC,CISO,CA,34.033206,-117.906129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.597713817054103 -54017,San Gabriel Hydro Project,U1,1987.0,3.9,3.7,3.6,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9487179487179488,0.9230769230769231,WECC,CISO,CA,34.204311,-117.855714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54017,San Gabriel Hydro Project,U2,1987.0,1.1,1.1,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9090909090909091,WECC,CISO,CA,34.204311,-117.855714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54034,Rensselaer Cogen,GEN1,1994.0,49.2,47.0,58.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9552845528455284,1.0,NPCC,NYIS,NY,42.625325,-73.749955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54034,Rensselaer Cogen,GEN2,1994.0,39.0,33.4,30.0,15,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8564102564102564,0.7692307692307692,NPCC,NYIS,NY,42.625325,-73.749955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54038,Geo East Mesa II,GEN1,1989.0,21.6,14.4,21.6,13.5,GEO,Geothermal,OS,ST,4.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666666,1.0,WECC,IID,CA,32.7757,-115.2637,Geo East Mesa 2-1,GEO,True,6.0,16.0,-1.0,12.51,12.51,0.0,0.0,1.0,3.098312,22.0,-1.7614274581512617,129.17140295006203,-6.934088472206049e-06,-1.7612062607282022,129.16970812014478,6.679000773535529,#TRUE#,#1989-04-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,22.0,10.4,CA,Geo,Double flash,#FALSE#,11,22, -54041,Lockport Energy Associates LP,GEN1,1992.0,48.7,42.0,49.3,30,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8624229979466118,1.0,NPCC,NYIS,NY,43.161947,-78.744971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54041,Lockport Energy Associates LP,GEN2,1992.0,48.7,42.0,49.3,30,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8624229979466118,1.0,NPCC,NYIS,NY,43.161947,-78.744971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54041,Lockport Energy Associates LP,GEN3,1992.0,48.7,42.0,49.3,30,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8624229979466118,1.0,NPCC,NYIS,NY,43.161947,-78.744971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54041,Lockport Energy Associates LP,GEN4,1992.0,75.2,78.0,80.0,14,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,NYIS,NY,43.161947,-78.744971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54044,University of Illinois Cogen Facility,CT1,2002.0,7.8,6.4,7.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8205128205128206,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.706382573355505 -54044,University of Illinois Cogen Facility,CT2,2002.0,7.8,6.4,7.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8205128205128206,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.706382573355505 -54044,University of Illinois Cogen Facility,CT3,2002.0,7.8,6.4,7.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8205128205128206,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.706382573355505 -54044,University of Illinois Cogen Facility,GEN1,1993.0,6.3,6.3,6.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552074933537098 -54044,University of Illinois Cogen Facility,GEN2,1993.0,6.3,6.3,6.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552074933537098 -54044,University of Illinois Cogen Facility,GEN3,2000.0,3.7,3.7,3.7,1,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552075670344298 -54044,University of Illinois Cogen Facility,GEN4,2000.0,3.7,3.7,3.7,1,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552075670344298 -54044,University of Illinois Cogen Facility,RE1,2002.0,5.5,5.5,5.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552073766838811 -54044,University of Illinois Cogen Facility,RE2,2002.0,5.5,5.5,5.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552073766838811 -54044,University of Illinois Cogen Facility,RE3,2002.0,5.5,5.5,5.5,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.8675,-87.6524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.552073766838811 -54057,Riverview Energy Systems,GEN1,1988.0,3.3,2.8,3.2,1.1,LFG,Landfill Gas,OP,GT,1.0,1988.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8484848484848485,0.9696969696969698,RFC,MISO,MI,42.166106,-83.212903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.275121237571454 -54057,Riverview Energy Systems,GEN2,1988.0,3.3,2.8,3.2,1.1,LFG,Landfill Gas,OP,GT,1.0,1988.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8484848484848485,0.9696969696969698,RFC,MISO,MI,42.166106,-83.212903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.275121237571454 -54076,Indeck Olean Energy Center,GEN1,1994.0,46.0,34.1,43.2,29,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.741304347826087,0.9391304347826087,NPCC,NYIS,NY,42.085944,-78.45425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54076,Indeck Olean Energy Center,GEN2,1994.0,44.6,44.6,44.6,34,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,NYIS,NY,42.085944,-78.45425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54081,Spruance Operating Services LLC,GEN3,1992.0,57.4,42.5,42.5,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.740418118466899,0.740418118466899,SERC,PJM,VA,37.4556,-77.4308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54081,Spruance Operating Services LLC,GEN4,1992.0,57.4,12.5,12.5,5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.21777003484320556,0.21777003484320556,SERC,PJM,VA,37.4556,-77.4308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54085,Androscoggin Mill,GEN1,1964.0,25.0,25.0,25.0,9,NG,Natural Gas Steam Turbine,OP,ST,1.0,1964.0,3,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,ME,44.506273,-70.239474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54085,Androscoggin Mill,GEN2,1966.0,25.0,25.0,25.0,9,NG,Natural Gas Steam Turbine,OP,ST,1.0,1966.0,3,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,ME,44.506273,-70.239474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54085,Androscoggin Mill,GEN3,1974.0,30.0,30.0,30.0,8,NG,Natural Gas Steam Turbine,OP,ST,1.0,1974.0,3,2023,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,ME,44.506273,-70.239474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54087,International Paper Georgetown Mill,GEN1,1966.0,25.6,25.3,25.6,10,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1966.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.98828125,1.0,SERC,SC,SC,33.360185,-79.302573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54087,International Paper Georgetown Mill,GEN2,1984.0,29.5,27.4,27.7,10,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,1984.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9288135593220339,0.9389830508474576,SERC,SC,SC,33.360185,-79.302573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54087,International Paper Georgetown Mill,GEN3,1984.0,40.5,37.7,38.1,10,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,1984.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9308641975308642,0.9407407407407408,SERC,SC,SC,33.360185,-79.302573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54091,Mansfield Mill,GEN1,1981.0,40.0,24.6,27.8,10,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.615,0.6950000000000001,SERC,MISO,LA,32.1575,-93.5562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54091,Mansfield Mill,GEN2,1981.0,40.0,25.6,27.7,10,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.64,0.6925,SERC,MISO,LA,32.1575,-93.5562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54091,Mansfield Mill,GEN3,1981.0,30.0,22.1,25.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7366666666666667,0.8333333333333334,SERC,MISO,LA,32.1575,-93.5562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54091,Mansfield Mill,GEN5,2019.0,62.0,45.0,48.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7258064516129032,0.7741935483870968,SERC,MISO,LA,32.1575,-93.5562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.598435224992341 -54096,International Paper Riverdale Mill,GEN1,1967.0,11.6,11.6,11.6,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1967.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,32.426016,-86.870912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54096,International Paper Riverdale Mill,GEN2,1985.0,37.4,37.4,37.4,10,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1985.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,32.426016,-86.870912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54096,International Paper Riverdale Mill,GEN3,1994.0,17.0,17.0,17.0,2,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.426016,-86.870912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54096,International Paper Riverdale Mill,GEN4,1994.0,38.2,38.2,38.2,17,NG,Natural Gas Fired Combined Cycle,SB,CT,11.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,AL,32.426016,-86.870912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54097,International Paper Texarkana Mill,GEN1,1972.0,25.0,25.0,25.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1972.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,TX,33.2553,-94.0696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54097,International Paper Texarkana Mill,GEN2,1977.0,40.0,40.0,40.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,TX,33.2553,-94.0696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54098,Kaukauna Paper Mill,GEN1,1951.0,6.0,6.0,6.0,1,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1951.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.2826,-88.2534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54098,Kaukauna Paper Mill,GEN2,1977.0,11.0,11.0,11.0,1,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1977.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.2826,-88.2534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54098,Kaukauna Paper Mill,GEN3,1962.0,15.6,15.6,15.6,2,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1962.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.2826,-88.2534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54098,Kaukauna Paper Mill,GEN4,1967.0,12.0,12.0,12.0,1,BIT,Conventional Steam Coal,OP,ST,1.0,1967.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,44.2826,-88.2534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54099,Ticonderoga Mill,GEN1,1970.0,42.1,41.0,39.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9738717339667458,0.9263657957244655,NPCC,NYIS,NY,43.891437,-73.396998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54100,International Paper Vicksburg Mill,GEN1,1967.0,2.5,1.5,1.5,0.5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1967.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.6,SERC,MISO,MS,32.5292,-90.7742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54100,International Paper Vicksburg Mill,GEN2,1967.0,48.0,37.0,37.0,6,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1967.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7708333333333334,0.7708333333333334,SERC,MISO,MS,32.5292,-90.7742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54101,Georgia-Pacific Cedar Springs,GEN1,1963.0,50.0,45.0,50.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1963.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,1.0,SERC,SOCO,GA,31.166,-85.0951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54101,Georgia-Pacific Cedar Springs,GEN2,1965.0,51.2,45.0,50.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,8.0,1965.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.87890625,0.9765625,SERC,SOCO,GA,31.166,-85.0951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,HG1,1913.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,HG2,1913.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,HG3,1913.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,HG4,1913.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1913.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,HG5,1926.0,0.8,0.8,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,HG6,1926.0,0.8,0.8,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,JHG1,1926.0,1.3,1.2,1.2,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,JHG2,1938.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,JHG3,1939.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,1.0,1939.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,JHG4,1943.0,0.4,0.4,0.4,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1943.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54103,Port Edwards Mill,JHG5,1977.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,1.0,1977.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.3364,-89.8672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54104,Ashdown,GEN1,1968.0,19.5,17.0,17.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1968.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8717948717948718,0.8717948717948718,SERC,SWPP,AR,33.6417,-94.1083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54104,Ashdown,GEN2,1979.0,47.0,40.0,40.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1979.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.851063829787234,0.851063829787234,SERC,SWPP,AR,33.6417,-94.1083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54104,Ashdown,GEN3,1991.0,45.0,33.0,33.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7333333333333334,0.7333333333333334,SERC,SWPP,AR,33.6417,-94.1083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54104,Ashdown,GEN4,1991.0,45.0,38.0,38.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8444444444444444,0.8444444444444444,SERC,SWPP,AR,33.6417,-94.1083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54111,Second Imperial Geothermal,GE13,2006.0,16.0,12.0,16.0,12,GEO,Geothermal,OP,BT,1.0,2006.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.75,1.0,WECC,IID,CA,32.7144,-115.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54111,Second Imperial Geothermal,GEN14,2008.0,16.0,12.0,16.0,12,GEO,Geothermal,OP,BT,4.0,2008.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.75,1.0,WECC,IID,CA,32.7144,-115.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54111,Second Imperial Geothermal,OEC1,2022.0,26.5,17.5,26.5,5,GEO,Geothermal,OP,BT,11.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6603773584905661,1.0,WECC,IID,CA,32.7144,-115.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54111,Second Imperial Geothermal,OEC2,2022.0,16.0,10.6,16.0,5,GEO,Geothermal,OP,BT,11.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6625,1.0,WECC,IID,CA,32.7144,-115.5356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54114,Kennedy International Airport Cogen,GEN1,1994.0,47.1,49.9,48.9,30,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,40.6417,-73.7778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54114,Kennedy International Airport Cogen,GEN2,1994.0,47.1,50.8,47.9,30,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,40.6417,-73.7778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54114,Kennedy International Airport Cogen,GEN3,1995.0,27.0,26.0,27.4,6,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.962962962962963,1.0,NPCC,NYIS,NY,40.6417,-73.7778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54123,Mechanic Falls,GEN1,1986.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.111236,-70.390673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54123,Mechanic Falls,GEN2,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.111236,-70.390673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54124,Pittsfield Hydro,GEN1,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.721371,-69.411992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54124,Pittsfield Hydro,GEN2,1986.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.721371,-69.411992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54124,Pittsfield Hydro,GEN3,1986.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.721371,-69.411992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54131,Fortistar North Tonawanda,GEN1,1993.0,48.7,37.3,44.7,30.6,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7659137577002052,0.917864476386037,NPCC,NYIS,NY,43.0483,-78.8539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54131,Fortistar North Tonawanda,GEN2,1993.0,17.0,20.0,20.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,NYIS,NY,43.0483,-78.8539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,BES1,2020.0,10.0,9.4,9.4,0.1,MWH,Batteries,OP,BA,12.0,2020.0, , ,10.0,4.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9400000000000001,0.9400000000000001,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,BES2,2020.0,10.0,9.4,9.4,0.1,MWH,Batteries,OP,BA,12.0,2020.0, , ,10.0,4.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9400000000000001,0.9400000000000001,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH2,1925.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OS,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH3,1925.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OS,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH4,1925.0,1.8,1.8,1.8,0.2,WAT,Conventional Hydroelectric,OS,HY,7.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH5,1988.0,5.3,5.0,4.9,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9433962264150944,0.9245283018867926,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH6,1975.0,4.1,3.9,3.8,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.951219512195122,0.926829268292683,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH7,1975.0,4.1,3.9,3.8,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1975.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.951219512195122,0.926829268292683,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,DOH8,1930.0,3.0,3.4,3.3,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,EMH1,1948.0,1.6,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,EMH2,1948.0,1.6,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,EMH3,1948.0,1.6,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,EMH4,1948.0,1.6,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,EMH5,1948.0,1.6,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,EMH6,1948.0,1.6,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,7.0,1948.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MCH1,1953.0,12.2,11.6,11.2,8,WAT,Conventional Hydroelectric,OP,HY,7.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9508196721311476,0.9180327868852459,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MCH2,1953.0,12.2,11.6,11.2,8,WAT,Conventional Hydroelectric,OP,HY,7.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9508196721311476,0.9180327868852459,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MCH3,1967.0,13.2,12.5,12.1,9,WAT,Conventional Hydroelectric,OP,HY,7.0,1967.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.946969696969697,0.9166666666666667,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH2,1917.0,5.5,5.3,5.8,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9636363636363636,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH3,1917.0,5.5,5.3,5.8,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9636363636363636,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH4,1917.0,5.1,5.5,5.5,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH5,1921.0,5.1,4.9,4.7,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9607843137254903,0.9215686274509804,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH6,1921.0,5.1,4.9,4.7,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9607843137254903,0.9215686274509804,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH7,1921.0,4.0,5.5,5.5,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIH8,1987.0,5.4,5.1,5.0,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444443,0.9259259259259258,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,MIHI,1987.0,5.4,5.1,5.0,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9444444444444443,0.9259259259259258,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,NOH1,1986.0,3.2,3.0,2.9,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9062499999999999,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,NOH2,1986.0,3.2,3.0,2.9,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9062499999999999,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,NOH3,1986.0,3.2,3.0,2.9,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9062499999999999,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,WEH1,1940.0,4.8,4.6,4.4,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9166666666666667,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,WEH2,1940.0,4.8,4.6,4.4,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9166666666666667,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,WEH3,1940.0,4.8,4.6,4.4,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9166666666666667,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54134,Great Lakes Hydro America - ME,WEH4,1940.0,4.8,4.6,4.4,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1940.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9166666666666667,NPCC,ISNE,ME,45.647179,-68.704368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54142,Hillcrest Pump Station,GEN1,1993.0,2.0,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.6419,-104.9138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54148,Hydro Kennebec Project,GEN1,1989.0,7.7,7.7,7.7,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.563031,-69.619162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54148,Hydro Kennebec Project,GEN2,1989.0,7.7,7.7,7.7,0.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.563031,-69.619162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54149,Stony Brook Cogen Plant,GEN1,1995.0,47.0,44.5,47.1,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9468085106382979,1.0,NPCC,NYIS,NY,40.916833,-73.129056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54201,Iowa State University,GEN3,1978.0,13.2,13.3,13.3,2,NG,Natural Gas Steam Turbine,OP,ST,9.0,1978.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.0275,-93.6394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54201,Iowa State University,GEN5,1970.0,11.5,11.5,11.5,2,NG,Natural Gas Steam Turbine,OP,ST,3.0,1970.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.0275,-93.6394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54201,Iowa State University,GEN6,2005.0,15.1,15.1,15.1,3,NG,Natural Gas Steam Turbine,OP,ST,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.0275,-93.6394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54202,Upper Androscoggin,1,1920.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OS,HY,4.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.087963,-70.212368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54202,Upper Androscoggin,2,1920.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OS,HY,4.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.087963,-70.212368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54202,Upper Androscoggin,3,1920.0,0.4,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OS,HY,4.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.087963,-70.212368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54203,Mississippi Baptist Medical Center,A,1991.0,4.2,4.0,4.0,2,NG,Natural Gas Fired Combustion Turbine,SB,GT,1.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9523809523809523,0.9523809523809523,SERC,MISO,MS,32.3133,-90.1797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54207,Clevelandcliffs Warren,GEN1,1934.0,3.0,2.8,2.8,1,OG,Other Gases,OP,ST,10.0,1934.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333332,0.9333333333333332,RFC,PJM,OH,41.2119,-80.8176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54207,Clevelandcliffs Warren,GEN2,1940.0,7.5,7.0,7.1,1,OG,Other Gases,OP,ST,3.0,1940.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9333333333333333,0.9466666666666667,RFC,PJM,OH,41.2119,-80.8176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54207,Clevelandcliffs Warren,GEN3,1981.0,10.0,9.3,9.4,1,OG,Other Gases,OP,ST,12.0,1981.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.93,0.9400000000000001,RFC,PJM,OH,41.2119,-80.8176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54210,American Crystal Sugar Hillsboro,G1,1990.0,13.3,13.3,13.3,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1990.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,ND,47.437562,-97.06311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54211,American Crystal Sugar Moorhead,G1,1948.0,3.0,3.0,3.0,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1948.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,MN,46.9026,-96.76112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54211,American Crystal Sugar Moorhead,G2,1961.0,2.0,2.0,2.0,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1961.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,MN,46.9026,-96.76112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54212,American Crystal Sugar Crookston,G1,1954.0,3.5,3.5,3.5,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1954.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.76468,-96.633375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54212,American Crystal Sugar Crookston,G2,1975.0,3.0,3.0,3.0,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.76468,-96.633375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54213,American Crystal Sugar Drayton,G1,1965.0,6.0,6.0,6.0,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1965.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,ND,48.593158,-97.17608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39.03991838248933 -54214,American Crystal Sugar East Grand Forks,G1,1990.0,2.5,2.5,2.5,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1990.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.927202,-97.007153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54214,American Crystal Sugar East Grand Forks,G2,1990.0,5.0,5.0,5.0,0.5,SUB,Conventional Steam Coal,OP,ST,9.0,1990.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,47.927202,-97.007153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54216,U S Alliance Coosa Pines,GEN7,2007.0,25.9,24.9,24.9,4,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,2007.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9613899613899614,0.9613899613899614,SERC,SOCO,AL,33.328107,-86.356825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54224,Franklin Heating Station,DG10,2021.0,3.1,3.1,3.1,0.6,DFO,Petroleum Liquids,SB,IC,7.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.72299030407527 -54224,Franklin Heating Station,DG4,2009.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.723064486860123 -54224,Franklin Heating Station,DG5,2011.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.723064486860123 -54224,Franklin Heating Station,DG8,2021.0,3.1,3.1,3.1,0.6,DFO,Petroleum Liquids,SB,IC,12.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.72299030407527 -54224,Franklin Heating Station,EG1,2001.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.723064486860123 -54224,Franklin Heating Station,EG2,2001.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.723064486860123 -54224,Franklin Heating Station,EG3,2001.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.723064486860123 -54224,Franklin Heating Station,GEN1,1951.0,2.5,2.0,2.0,0.6,NG,Natural Gas Steam Turbine,OP,ST,1.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54224,Franklin Heating Station,GEN2,1951.0,2.5,2.0,2.0,0.6,NG,Natural Gas Steam Turbine,OP,ST,1.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54224,Franklin Heating Station,GEN3,1968.0,6.3,6.1,6.1,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9682539682539683,0.9682539682539683,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54224,Franklin Heating Station,GEN6,2006.0,6.5,2.8,2.8,0.6,PUR,All Other,OP,ST,1.0,2006.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4307692307692308,0.4307692307692308,MRO,MISO,MN,44.020576,-92.465599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.900803003615089 -54225,Gillette SBMC,CTG3,2011.0,7.2,7.2,7.2,3.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,MA,42.3436,-71.0559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.16393325216644 -54225,Gillette SBMC,DG,1991.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,9.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.3436,-71.0559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54225,Gillette SBMC,DG2,1997.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,3.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.3436,-71.0559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54225,Gillette SBMC,DG3,2000.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,3.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.3436,-71.0559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54225,Gillette SBMC,TG2,1971.0,5.0,5.0,5.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,2.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.3436,-71.0559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54228,Erving Paper Mills,2,2013.0,0.6,0.6,0.6,0,NG,Natural Gas Steam Turbine,OP,ST,12.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.5983,-72.3875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54228,Erving Paper Mills,3,2015.0,5.6,5.5,6.0,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9821428571428572,1.0,NPCC,ISNE,MA,42.5983,-72.3875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.12291199202194 -54236,Pfizer Groton Plant,GT-1,2009.0,10.0,9.5,10.5,4.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.95,1.0,NPCC,ISNE,CT,41.3315,-72.0786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.57541346068807 -54236,Pfizer Groton Plant,TG 3,1952.0,10.0,10.0,10.0,0.8,NG,Natural Gas Steam Turbine,OP,ST,1.0,1952.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,CT,41.3315,-72.0786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54236,Pfizer Groton Plant,TG 4,1994.0,10.0,5.0,5.0,0.8,NG,Natural Gas Steam Turbine,OP,ST,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5,0.5,NPCC,ISNE,CT,41.3315,-72.0786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54236,Pfizer Groton Plant,TG5,2001.0,7.5,7.5,7.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,CT,41.3315,-72.0786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54238,Stockton Biomass,STG,1987.0,54.0,45.0,45.0,22,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1987.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,WECC,CISO,CA,37.943633,-121.330433,PortofStocktonEF,OT ST,False,24.0,48.0,-1.0,2.7,2.7,8943.42,503.82,1.0,3.177179,54.0,-238.7008760845036,13397.12304859791,-4.643030162735751,259.98940525811344,6.626222196650441,10.768144313084205,#TRUE#,#2014-02-12#,#2050-12-31#,Existing,CIPV,CA_CISO,53.46,54.0,40.45,CA,Bio,,#FALSE#,53.46,54, -54239,Naval Submarine Base Kings Bay,3023,1984.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,12.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,3024,1984.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,12.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,3025,1984.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,12.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,3027,1988.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,3028,1988.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,9.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,3029,1989.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,5876,1988.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,12.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,5877,1989.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,5878,1989.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,5879,1989.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,5880,1989.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54239,Naval Submarine Base Kings Bay,5881,1988.0,2.5,2.5,2.5,2.5,DFO,Petroleum Liquids,SB,IC,12.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.7917,-81.5333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.942816482115852 -54240,Louisiana Tech University Power Plant,TG3,2004.0,7.5,6.4,7.4,3.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8533333333333334,0.9866666666666667,SERC,MISO,LA,32.5256,-92.6497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.402378704078421 -54249,Smith Falls Hydro Project,GEN1,1990.0,18.0,9.0,18.0,4.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,WECC,BPAT,ID,48.959547,-116.557375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54249,Smith Falls Hydro Project,GEN2,1990.0,18.0,9.0,18.0,4.5,WAT,Conventional Hydroelectric,OP,HY,1.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,WECC,BPAT,ID,48.959547,-116.557375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54249,Smith Falls Hydro Project,GEN3,1989.0,2.1,2.1,2.1,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,48.959547,-116.557375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54250,Newman (PA),001,1964.0,1.8,1.8,1.8,1.6,NG,Natural Gas Steam Turbine,OP,ST,5.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,PA,40.013993,-75.05283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49.35315523209373 -54251,Opal Springs Hydro,1,1985.0,4.3,3.3,5.0,2,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.7674418604651163,1.0,WECC,PACW,OR,44.49004,-121.298812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54261,Warm Springs Hydro Project,3385,1988.0,2.7,1.2,1.2,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.4444444444444444,0.4444444444444444,WECC,CISO,CA,38.722141,-123.011188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54262,Saint Marys Hospital Power Plant,1,1996.0,4.7,4.5,4.5,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106382,0.9574468085106382,MRO,MISO,MN,44.09785,-92.479815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.089323984654055 -54262,Saint Marys Hospital Power Plant,4,1971.0,3.0,2.7,2.7,0.3,NG,Natural Gas Steam Turbine,OP,ST,1.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,MRO,MISO,MN,44.09785,-92.479815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.14200640424867 -54262,Saint Marys Hospital Power Plant,5,1978.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.09785,-92.479815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.231728953242145 -54262,Saint Marys Hospital Power Plant,6B,2020.0,3.3,3.3,3.3,0.3,DFO,Petroleum Liquids,OP,IC,7.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.09785,-92.479815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.231743095399825 -54262,Saint Marys Hospital Power Plant,7,2011.0,2.8,2.8,2.8,0.3,DFO,Petroleum Liquids,OP,IC,3.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.09785,-92.479815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.231787289853344 -54267,Koma Kulshan,GEN1,1990.0,12.0,12.4,12.4,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,48.680178,-121.723294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54268,HF Sinclair Puget Sound Refining,GTG1,1991.0,46.6,40.0,46.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8583690987124464,0.9871244635193133,WECC,PSEI,WA,48.4708,-122.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.752093684802812 -54268,HF Sinclair Puget Sound Refining,GTG2,1991.0,46.6,40.0,46.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8583690987124464,0.9871244635193133,WECC,PSEI,WA,48.4708,-122.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.752093684802812 -54268,HF Sinclair Puget Sound Refining,GTG3,1993.0,46.6,40.0,46.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8583690987124464,0.9871244635193133,WECC,PSEI,WA,48.4708,-122.56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.752093684802812 -54271,Saguaro Power,CTG1,1991.0,45.1,36.0,38.0,33,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1991.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7982261640798226,0.8425720620842572,WECC,NEVP,NV,36.0417,-115.0117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.454961616312321 -54271,Saguaro Power,CTG2,1991.0,45.1,36.0,38.0,33,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1991.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7982261640798226,0.8425720620842572,WECC,NEVP,NV,36.0417,-115.0117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.066299055067127 -54271,Saguaro Power,STG,1991.0,37.0,29.0,29.0,22,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1991.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7837837837837838,0.7837837837837838,WECC,NEVP,NV,36.0417,-115.0117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54276,Univ of NC Chapel Hill Cogen Facility,ES001,2007.0,2.0,1.8,2.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,SERC,DUK,NC,35.9069,-79.0617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54276,Univ of NC Chapel Hill Cogen Facility,ES002,2007.0,2.0,1.8,2.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,1.0,SERC,DUK,NC,35.9069,-79.0617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54276,Univ of NC Chapel Hill Cogen Facility,TG3,1991.0,28.0,28.7,28.7,7,NG,Natural Gas Steam Turbine,OP,ST,7.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,DUK,NC,35.9069,-79.0617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54281,Interstate Paper LLC Riceboro,577A,1968.0,14.5,14.5,14.5,2,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1968.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,31.741629,-81.407856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54283,Lee Creek Water Treatment Facility,0209,1992.0,1.3,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,AR,35.484488,-94.392858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54285,Hastings City Hydroelectric,1,1992.0,2.2,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,44.760249,-92.867743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54285,Hastings City Hydroelectric,2,1992.0,2.2,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,44.760249,-92.867743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54290,Inforum,BUG1,1989.0,1.3,1.3,1.3,0,DFO,Petroleum Liquids,OP,IC,10.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7533,-84.3889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54294,West Group Data Center,1,2005.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8256,-93.1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.523917995444192 -54294,West Group Data Center,2,2005.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8256,-93.1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.523917995444192 -54294,West Group Data Center,3,2005.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8256,-93.1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.523917995444192 -54294,West Group Data Center,4,2005.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8256,-93.1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.523917995444192 -54296,Biola University Hybrid,BATT,2018.0,0.3,0.3,0.3,0,MWH,Batteries,OP,BA,2.0,2018.0, , ,0.5,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.906953,-118.013105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54296,Biola University Hybrid,EG-2H,2022.0,1.5,1.5,1.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.906953,-118.013105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.572217731069793 -54296,Biola University Hybrid,EG3,2002.0,1.0,1.0,1.0,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.906953,-118.013105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.572217731069792 -54298,Coram Energy LLC (ECT),GEWE,2005.0,7.5,7.5,7.5,1,WND,Onshore Wind Turbine,OP,WT,5.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0583,-118.3417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54299,Coram Energy LLC,GEWE,2005.0,3.0,3.0,3.0,1,WND,Onshore Wind Turbine,OP,WT,1.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.075,-118.3417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54300,CTV Power Purchase Contract Trust,GEWE,2004.0,4.5,4.5,4.5,1,WND,Onshore Wind Turbine,OP,WT,1.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0583,-118.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54300,CTV Power Purchase Contract Trust,SX1S,1985.0,0.1,0.1,0.1,0.1,WND,Onshore Wind Turbine,OS,WT,12.0,1985.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0583,-118.3083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54302,Goodwin Hydroelectric,G1,1986.0,1.6,1.5,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,CT,41.988611,-73.0194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54302,Goodwin Hydroelectric,G2,1986.0,1.6,1.5,1.5,0.6,WAT,Conventional Hydroelectric,OP,HY,4.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,NPCC,ISNE,CT,41.988611,-73.0194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54305,Westward Seafoods,2,1991.0,2.2,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,3.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,53.858508,-166.55288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.420354619565218 -54305,Westward Seafoods,3,1991.0,2.2,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,3.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,53.858508,-166.55288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.420354619565218 -54305,Westward Seafoods,4,1991.0,2.2,2.2,2.2,1,DFO,Petroleum Liquids,OP,IC,3.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,53.858508,-166.55288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.420354619565218 -54306,Wilson Lake Hydroelectric Project,1,1993.0,4.2,4.2,4.2,1.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.628889,-114.174722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54306,Wilson Lake Hydroelectric Project,2,1993.0,4.2,4.2,4.2,1.6,WAT,Conventional Hydroelectric,OP,HY,5.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.628889,-114.174722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54308,Three Forks Water Power Project,1,1984.0,1.3,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,WECC,CISO,CA,40.199822,-123.523145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54316,Archer Daniels Midland Southport,GEN1,1992.0,18.0,15.0,18.0,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,9.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,1.0,SERC,CPLE,NC,33.9397,-77.9905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.58430728657896 -54316,Archer Daniels Midland Southport,GEN2,1992.0,17.5,15.0,17.5,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,10.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,SERC,CPLE,NC,33.9397,-77.9905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.584323040380047 -54316,Archer Daniels Midland Southport,GEN3,1995.0,17.0,15.0,17.0,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8823529411764706,1.0,SERC,CPLE,NC,33.9397,-77.9905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.584339720909306 -54318,General Chemical,TG1,1968.0,15.0,15.0,15.0,2,BIT,Conventional Steam Coal,OP,ST,5.0,1968.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.5933,-109.7542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54318,General Chemical,TG2,1977.0,15.0,15.0,15.0,2,BIT,Conventional Steam Coal,OP,ST,1.0,1977.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.5933,-109.7542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54321,Goodyear Beaumont Chemical Plant,2N80,1999.0,5.0,4.0,4.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.9,SERC,MISO,TX,29.9728,-94.2142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.65167392263665 -54321,Goodyear Beaumont Chemical Plant,3N80,1987.0,14.8,13.0,13.5,5,NG,Natural Gas Steam Turbine,OP,ST,3.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8783783783783783,0.9121621621621621,SERC,MISO,TX,29.9728,-94.2142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54321,Goodyear Beaumont Chemical Plant,N802,1999.0,5.0,4.0,4.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.9,SERC,MISO,TX,29.9728,-94.2142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.65167392263665 -54321,Goodyear Beaumont Chemical Plant,N803,1999.0,5.0,4.0,4.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.9,SERC,MISO,TX,29.9728,-94.2142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.65167392263665 -54321,Goodyear Beaumont Chemical Plant,N804,1999.0,5.0,4.0,4.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.9,SERC,MISO,TX,29.9728,-94.2142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.65167392263665 -54322,Sibley Mill,2,1946.0,0.6,0.6,0.6,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.487881,-81.99252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54322,Sibley Mill,3,1946.0,0.7,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.487881,-81.99252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54322,Sibley Mill,4,1946.0,0.8,0.8,0.8,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1946.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SOCO,GA,33.487881,-81.99252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54323,CNN Center,D4_1,2001.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.883780332056194 -54323,CNN Center,D4_2,2001.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.884502223742729 -54323,CNN Center,D4_3,2003.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.884502223742729 -54323,CNN Center,D5_1,2001.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.884502223742729 -54323,CNN Center,D5_2,2003.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.884502223742729 -54323,CNN Center,D5_3,2003.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.884502223742729 -54323,CNN Center,DK2,1986.0,1.5,1.3,1.5,0.4,DFO,Petroleum Liquids,SB,IC,6.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,1.0,SERC,SOCO,GA,33.759167,-84.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.883780332056194 -54324,Ocean State Power II,GEN1,1991.0,82.8,71.2,77.8,45,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599033816425121,0.9396135265700483,NPCC,ISNE,RI,42.0099,-71.6701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54324,Ocean State Power II,GEN2,1991.0,82.8,71.2,77.8,45,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599033816425121,0.9396135265700483,NPCC,ISNE,RI,42.0099,-71.6701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54324,Ocean State Power II,GEN3,1991.0,88.6,76.2,83.3,35,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8600451467268624,0.9401805869074492,NPCC,ISNE,RI,42.0099,-71.6701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54327,Toyon Power Station,TOY7,2022.0,1.1,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,7.0,2022.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,WECC,LDWP,CA,34.146253,-118.30485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.274473924977126 -54330,Westhollow Technology Center,1,1988.0,3.7,3.7,3.7,1.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,TRE,ERCO,TX,29.726017,-95.638249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.1524504486737 -54333,Bucknell University,G001,1998.0,4.7,4.5,5.5,2.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9574468085106382,1.0,RFC,PJM,PA,40.955015,-76.878843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.988726058014676 -54333,Bucknell University,G502,1991.0,1.2,0.8,1.2,0.3,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1991.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6666666666666667,1.0,RFC,PJM,PA,40.955015,-76.878843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.442229271171435 -54335,Morton Salt Rittman,GEN2,2015.0,2.5,2.5,2.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,2.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,40.9692,-81.7756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54338,Rio Grande Valley Sugar Growers,GENA,1973.0,2.5,2.5,2.5,0.5,AB,Other Waste Biomass,OP,ST,10.0,1973.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,26.269683,-97.867012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54338,Rio Grande Valley Sugar Growers,GENB,1973.0,2.5,2.5,2.5,0.5,AB,Other Waste Biomass,OP,ST,10.0,1973.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,26.269683,-97.867012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54338,Rio Grande Valley Sugar Growers,GENC,1995.0,2.5,2.5,2.5,0.5,AB,Other Waste Biomass,OP,ST,1.0,1995.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,26.269683,-97.867012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54338,Rio Grande Valley Sugar Growers,GEND,2009.0,16.0,10.0,10.0,4,AB,Other Waste Biomass,OP,ST,8.0,2009.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.625,0.625,TRE,ERCO,TX,26.269683,-97.867012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54338,Rio Grande Valley Sugar Growers,GENE,2011.0,1.4,1.4,1.4,0,DFO,Petroleum Liquids,OP,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.269683,-97.867012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -54340,Norway Point Hydropower Project,1,1990.0,2.8,2.8,2.8,0.8,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.1025,-83.5189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54340,Norway Point Hydropower Project,2,1990.0,1.2,1.2,1.2,0.4,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.1025,-83.5189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54341,Four Mile Hydropower Project,1,1990.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0933,-83.5025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54341,Four Mile Hydropower Project,2,1990.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0933,-83.5025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54341,Four Mile Hydropower Project,3,1990.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0933,-83.5025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54341,Four Mile Hydropower Project,4,2005.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,2005.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0933,-83.5025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54342,Ninth Street Hydropower Project,1,1990.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0717,-83.4381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54342,Ninth Street Hydropower Project,2,1990.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0717,-83.4381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54342,Ninth Street Hydropower Project,3,1990.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,MI,45.0717,-83.4381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54343,Terminus Hydroelectric Project,GEN1,1990.0,20.1,20.0,20.0,6,WAT,Conventional Hydroelectric,OP,HY,3.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9950248756218905,0.9950248756218905,WECC,CISO,CA,36.4156,-119.0069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54347,Howard F Curren Advncd Wastewater Plant,1,1986.0,0.5,0.5,0.5,0.4,OBG,Other Waste Biomass,OS,IC,9.0,1986.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,TEC,FL,27.9389,-82.4389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54347,Howard F Curren Advncd Wastewater Plant,2,1986.0,0.5,0.5,0.5,0.4,OBG,Other Waste Biomass,OS,IC,9.0,1986.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,TEC,FL,27.9389,-82.4389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54347,Howard F Curren Advncd Wastewater Plant,3,1986.0,0.5,0.5,0.5,0.4,OBG,Other Waste Biomass,OS,IC,9.0,1986.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,TEC,FL,27.9389,-82.4389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54347,Howard F Curren Advncd Wastewater Plant,4,1989.0,0.5,0.5,0.5,0.4,OBG,Other Waste Biomass,OS,IC,2.0,1989.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,TEC,FL,27.9389,-82.4389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54347,Howard F Curren Advncd Wastewater Plant,5,1989.0,0.5,0.5,0.5,0.4,OBG,Other Waste Biomass,OS,IC,2.0,1989.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,TEC,FL,27.9389,-82.4389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54349,Nevada Cogen Associates 2 Black Mountain,GTA,1992.0,22.2,21.7,21.7,19,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1992.0,10,2030,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9774774774774775,0.9774774774774775,WECC,NEVP,NV,36.2253,-114.8783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.16785151208848 -54349,Nevada Cogen Associates 2 Black Mountain,GTB,1992.0,22.2,21.7,21.7,19,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1992.0,10,2030,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9774774774774775,0.9774774774774775,WECC,NEVP,NV,36.2253,-114.8783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.777752952591667 -54349,Nevada Cogen Associates 2 Black Mountain,GTC,1992.0,22.2,21.7,21.7,19,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,1992.0,10,2030,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9774774774774775,0.9774774774774775,WECC,NEVP,NV,36.2253,-114.8783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.800807861425715 -54349,Nevada Cogen Associates 2 Black Mountain,STM,1992.0,29.7,28.0,28.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1992.0,10,2030,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9427609427609428,0.9427609427609428,WECC,NEVP,NV,36.2253,-114.8783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54350,Nevada Cogen Assoc#1 GarnetVly,GTA,1992.0,21.7,20.5,22.0,19,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1992.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9447004608294931,1.0,WECC,NEVP,NV,36.343229,-114.920686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.188524854312528 -54350,Nevada Cogen Assoc#1 GarnetVly,GTB,1992.0,21.7,20.5,22.0,19,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1992.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9447004608294931,1.0,WECC,NEVP,NV,36.343229,-114.920686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.889947546401261 -54350,Nevada Cogen Assoc#1 GarnetVly,GTC,1992.0,21.7,20.5,22.0,19,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1992.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9447004608294931,1.0,WECC,NEVP,NV,36.343229,-114.920686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.914951646681402 -54350,Nevada Cogen Assoc#1 GarnetVly,STM,1992.0,29.7,24.0,19.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1992.0,12,2032,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8080808080808081,0.6397306397306397,WECC,NEVP,NV,36.343229,-114.920686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54355,Chace Mill Winooski One,GEN1,1993.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.49,-73.1875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54355,Chace Mill Winooski One,GEN2,1993.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.49,-73.1875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54355,Chace Mill Winooski One,GEN3,1993.0,2.5,2.5,2.5,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,44.49,-73.1875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54358,Graphic Packaging International Augusta Mill,1,1960.0,27.0,25.3,25.4,10,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1960.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9370370370370371,0.9407407407407407,SERC,SOCO,GA,33.328259,-81.953078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54358,Graphic Packaging International Augusta Mill,2,1965.0,39.0,36.5,36.7,10,NG,Natural Gas Steam Turbine,OP,ST,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9358974358974359,0.9410256410256411,SERC,SOCO,GA,33.328259,-81.953078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54358,Graphic Packaging International Augusta Mill,3,1965.0,18.7,17.5,17.6,5,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1965.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9358288770053477,0.9411764705882354,SERC,SOCO,GA,33.328259,-81.953078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54360,Fuyao Glass Illinois Inc.,PORT,1980.0,0.7,0.7,0.7,0.4,DFO,Petroleum Liquids,SB,IC,12.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.77896,-88.901629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54360,Fuyao Glass Illinois Inc.,TK1,1980.0,2.0,2.0,2.0,0.8,DFO,Petroleum Liquids,SB,IC,12.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.77896,-88.901629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54360,Fuyao Glass Illinois Inc.,TK2,1980.0,2.0,2.0,2.0,0.8,DFO,Petroleum Liquids,SB,IC,12.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.77896,-88.901629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54363,"Shelby, NC",GEN2,1972.0,0.9,0.6,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.7777777777777777,SERC,DUK,NC,35.3264,-81.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54363,"Shelby, NC",GEN3,1972.0,0.9,0.6,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.7777777777777777,SERC,DUK,NC,35.3264,-81.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54363,"Shelby, NC",GEN4,1972.0,1.2,0.8,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.75,SERC,DUK,NC,35.3264,-81.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54363,"Shelby, NC",GEN5,1972.0,1.2,0.8,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.75,SERC,DUK,NC,35.3264,-81.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54364,Works 4,L1G,1975.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1975.0,3,2027,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,34.003489,-98.553539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.695035707459471 -54364,Works 4,L1PG,1980.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,10.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,34.003489,-98.553539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.695034365588077 -54364,Works 4,L2G,1974.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1974.0,11,2024,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,34.003489,-98.553539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.695035707459471 -54365,Orange Cogeneration Facility,APC1,1995.0,54.0,43.0,43.0,10,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7962962962962963,0.7962962962962963,SERC,FPC,FL,27.87082,-81.825061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54365,Orange Cogeneration Facility,APC2,1995.0,54.0,43.0,43.0,10,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7962962962962963,0.7962962962962963,SERC,FPC,FL,27.87082,-81.825061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54365,Orange Cogeneration Facility,APC3,1995.0,28.6,24.6,24.6,5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8601398601398602,0.8601398601398602,SERC,FPC,FL,27.87082,-81.825061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54372,University of Colorado,GT1,1992.0,16.0,15.0,16.0,2.5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9375,1.0,WECC,PSCO,CO,40.00759,-105.269204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.92218265530017 -54372,University of Colorado,GT2,1992.0,16.0,15.0,16.0,2.5,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9375,1.0,WECC,PSCO,CO,40.00759,-105.269204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.851323178633812 -54372,University of Colorado,ST1,1992.0,1.0,1.0,1.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,PSCO,CO,40.00759,-105.269204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54374,Sinclair Oil Refinery,NO2,1925.0,0.4,0.4,0.4,0.1,OG,Other Gases,OP,ST,1.0,1925.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.77952,-107.10972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.78926235867284 -54374,Sinclair Oil Refinery,NO3,1954.0,1.3,1.3,1.3,0.1,OG,Other Gases,OS,ST,1.0,1954.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.77952,-107.10972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.78926235867284 -54374,Sinclair Oil Refinery,NO5,1955.0,1.1,1.1,1.1,0.6,DFO,Petroleum Liquids,SB,IC,1.0,1955.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,PACE,WY,41.77952,-107.10972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.30309072781655 -54384,EHC West Hopkinton,GEN1,1985.0,1.0,1.0,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,ISNE,NH,43.1897,-71.7483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54385,Kinneytown New Old,GEN1,1986.0,0.8,0.8,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,ISNE,CT,41.3686,-73.0856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54385,Kinneytown New Old,GEN2,1995.0,1.5,1.4,1.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,NPCC,ISNE,CT,41.3686,-73.0856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54386,Little Wood Hydro Project,GEN1,1985.0,2.8,2.4,2.6,0.4,WAT,Conventional Hydroelectric,SB,HY,2.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.9285714285714286,WECC,IPCO,ID,43.425228,-114.025597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54387,Weeks Falls,GEN1,1990.0,4.3,4.2,4.2,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9767441860465117,0.9767441860465117,WECC,PSEI,WA,47.43348,-121.6483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54391,Alice Falls Hydro Project,1,1991.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.519153,-73.464752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54391,Alice Falls Hydro Project,2,1991.0,0.6,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.519153,-73.464752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54394,Dry Creek Project,GEN1,1987.0,3.6,2.2,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6111111111111112,0.41666666666666663,WECC,PACE,ID,44.027444,-112.719439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54395,Stillwater Hydro Electric Project,1,1993.0,1.7,1.7,1.7,0.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.937465,-73.654393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54395,Stillwater Hydro Electric Project,2,1993.0,1.7,1.7,1.7,0.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.937465,-73.654393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54406,Capitol Heat and Power,P31,2011.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.078512,-89.377261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54406,Capitol Heat and Power,P32,2011.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.078512,-89.377261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54407,Waupun Correctional Central Heating Plt,1,1951.0,1.0,1.0,1.0,0.1,NG,Natural Gas Steam Turbine,OP,ST,5.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,43.6233,-88.7297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54407,Waupun Correctional Central Heating Plt,2,1951.0,1.0,1.0,1.0,0.2,NG,Natural Gas Steam Turbine,OP,ST,5.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,43.6233,-88.7297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54407,Waupun Correctional Central Heating Plt,3,1991.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.6233,-88.7297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54407,Waupun Correctional Central Heating Plt,4,1998.0,1.5,1.5,1.5,0.2,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.6233,-88.7297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54408,UW Madison Charter Street Plant,1,1965.0,9.7,9.7,9.7,0.1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,WI,43.07,-89.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54408,UW Madison Charter Street Plant,3,1965.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1965.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.07,-89.4006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54409,Dartmouth College Heating Plant,GEN1,1970.0,2.0,2.0,2.0,0.2,RFO,Petroleum Liquids,OP,ST,1.0,1970.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,NH,43.701916,-72.286735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.708823934565707 -54409,Dartmouth College Heating Plant,GEN2,1970.0,2.0,2.0,2.0,0.2,RFO,Petroleum Liquids,OP,ST,1.0,1970.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,NH,43.701916,-72.286735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46.57700626642409 -54409,Dartmouth College Heating Plant,GEN3,1992.0,3.0,3.0,3.0,0.2,RFO,Petroleum Liquids,OP,ST,1.0,1992.0, , ,,,,,oil,oil,Residual Fuel Oil,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,NH,43.701916,-72.286735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43.102511941832695 -54410,Western Power & Steam Inc,CTG,1990.0,27.7,19.6,19.5,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7075812274368232,0.703971119133574,WECC,CISO,CA,35.440539,-119.012861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.33594658093236 -54414,John Deere Dubuque Works,GE10,1994.0,1.5,1.4,1.4,1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,MISO,IA,42.5734,-90.6926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.487812195304883 -54414,John Deere Dubuque Works,GEN5,1994.0,1.5,1.4,1.4,1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,MISO,IA,42.5734,-90.6926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.487812195304883 -54414,John Deere Dubuque Works,GEN6,1994.0,1.5,1.4,1.4,1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,MISO,IA,42.5734,-90.6926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.487812195304883 -54414,John Deere Dubuque Works,GEN7,1994.0,1.5,1.4,1.4,1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,MISO,IA,42.5734,-90.6926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.487812195304883 -54414,John Deere Dubuque Works,GEN8,1994.0,1.5,1.4,1.4,1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,MISO,IA,42.5734,-90.6926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.487812195304883 -54414,John Deere Dubuque Works,GEN9,1994.0,1.5,1.4,1.4,1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,MRO,MISO,IA,42.5734,-90.6926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.487812195304883 -54415,Cadillac Renewable Energy,GEN2,2020.0,44.0,38.0,38.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,2020.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8636363636363636,0.8636363636363636,RFC,MISO,MI,44.26169,-85.435224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54418,Rollinsford,GEN1,1986.0,0.7,0.7,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8571428571428572,NPCC,ISNE,NH,43.236111,-70.817222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54418,Rollinsford,GEN2,1995.0,0.7,0.7,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8571428571428572,NPCC,ISNE,NH,43.236111,-70.817222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54422,Unisea G 2,CAT4,2012.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,OP,IC,5.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.69654816329148 -54422,Unisea G 2,CAT5,2012.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,OP,IC,5.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.69654816329148 -54422,Unisea G 2,GEN1,1990.0,2.5,2.2,2.2,1.5,DFO,Petroleum Liquids,OP,IC,8.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.69654340015381 -54422,Unisea G 2,GEN2,1990.0,2.6,2.3,2.3,1.5,DFO,Petroleum Liquids,OP,IC,8.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8846153846153845,0.8846153846153845,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.696545289480724 -54422,Unisea G 2,GEN3,1990.0,2.7,2.3,2.3,1.5,DFO,Petroleum Liquids,OP,IC,8.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8518518518518517,0.8518518518518517,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.696542992101865 -54422,Unisea G 2,GEN4,1990.0,2.5,2.2,2.2,1.5,DFO,Petroleum Liquids,OP,IC,8.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.69654340015381 -54422,Unisea G 2,GEN5,1990.0,2.7,2.3,2.3,1.5,DFO,Petroleum Liquids,OP,IC,8.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8518518518518517,0.8518518518518517,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.696542992101865 -54422,Unisea G 2,GEN6,1990.0,2.5,2.2,2.2,1.5,DFO,Petroleum Liquids,OP,IC,8.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,non-conus,non-conus,AK,53.8796,-166.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.69654340015381 -54426,Mulberry Cogeneration Facility,GT1,1994.0,82.0,78.0,80.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9512195121951219,0.975609756097561,SERC,FPC,FL,27.8489,-81.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54426,Mulberry Cogeneration Facility,ST1,1994.0,43.3,37.0,40.0,20,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8545034642032333,0.9237875288683604,SERC,FPC,FL,27.8489,-81.8775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54427,Gaylord Container Bogalusa,NO10,1999.0,37.0,34.4,34.8,4,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1999.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9297297297297297,0.9405405405405405,SERC,MISO,LA,30.7811,-89.8575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54427,Gaylord Container Bogalusa,NO8,1981.0,25.0,22.5,23.5,4,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.94,SERC,MISO,LA,30.7811,-89.8575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54427,Gaylord Container Bogalusa,NO9,1979.0,37.5,34.9,35.3,4,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1979.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9306666666666666,0.9413333333333332,SERC,MISO,LA,30.7811,-89.8575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54429,Alabama Pine Pulp,GEN2,1991.0,69.0,68.7,70.1,5,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1991.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9956521739130435,1.0,SERC,SOCO,AL,31.5825,-87.4889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54447,Welport Lease Project,TI,1990.0,5.0,4.0,4.7,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,0.9400000000000001,WECC,CISO,CA,35.354444,-119.6617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.42616277391229 -54449,Dome Project,T1,1988.0,3.0,2.5,2.7,2.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,0.9,WECC,CISO,CA,35.220833,-119.583056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.07833624294588 -54449,Dome Project,T2,1988.0,3.0,2.5,2.7,2.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1988.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333334,0.9,WECC,CISO,CA,35.220833,-119.583056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.07833624294588 -54451,Los Angeles Refinery Wilmington,G2,1988.0,58.5,50.0,52.0,35,OG,Other Gases,OP,GT,5.0,1988.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,0.8547008547008547,0.8888888888888888,WECC,LDWP,CA,33.7686,-118.2867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.329987051291274 -54452,Agrium Kenai Nitrogen Operations,744A,1977.0,2.5,2.5,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,60.6732,-151.3784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54452,Agrium Kenai Nitrogen Operations,744B,1977.0,2.5,2.5,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,60.6732,-151.3784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54452,Agrium Kenai Nitrogen Operations,744C,1977.0,2.5,2.5,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,60.6732,-151.3784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54452,Agrium Kenai Nitrogen Operations,744D,1977.0,2.5,2.5,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,60.6732,-151.3784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54452,Agrium Kenai Nitrogen Operations,744E,1977.0,2.5,2.5,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1977.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,60.6732,-151.3784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54453,EDF Renewable Windfarm V Inc,GEN2,1990.0,15.5,15.5,15.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,1990.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.1167,-121.8333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54454,San Gorgonio Windplant WPP1993,GEN11,2011.0,49.5,49.5,49.5,2.5,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.918395,-116.573906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,ALF1,1989.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,ALF2,1989.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,ALF3,1989.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,ALF4,1989.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,5.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,ALF5,1991.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,B1GN1,2005.0,1.5,1.4,1.5,0,DFO,Petroleum Liquids,SB,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54457,Hewlett Packard Enterprise,B1GN2,2005.0,1.5,1.4,1.5,0,DFO,Petroleum Liquids,SB,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9333333333333332,1.0,SERC,SOCO,GA,34.0864,-84.2677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54462,Graniteville Enterprise Division,1,1921.0,0.6,0.5,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,SERC,SOCO,GA,33.477027,-81.982732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54462,Graniteville Enterprise Division,2,1921.0,0.6,0.5,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8333333333333334,0.8333333333333334,SERC,SOCO,GA,33.477027,-81.982732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54464,Riverwood International Macon Mill,0001,1948.0,7.5,7.5,7.5,4,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1948.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.7714,-83.6281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54464,Riverwood International Macon Mill,0002,1948.0,5.0,4.7,4.7,0.5,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1948.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.9400000000000001,SERC,SOCO,GA,32.7714,-83.6281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54464,Riverwood International Macon Mill,0003,1948.0,5.0,4.7,4.7,3,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1948.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9400000000000001,0.9400000000000001,SERC,SOCO,GA,32.7714,-83.6281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54464,Riverwood International Macon Mill,0004,1981.0,15.9,20.0,20.0,10,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1981.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,32.7714,-83.6281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54464,Riverwood International Macon Mill,0005,2013.0,40.0,39.5,39.5,15,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9875,0.9875,SERC,SOCO,GA,32.7714,-83.6281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54466,Orlando Cogen LP,GEN1,1993.0,122.4,120.0,130.0,95,NG,Natural Gas Fired Combined Cycle,OP,CS,9.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9803921568627451,1.0,SERC,FPC,FL,28.442623,-81.412343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54471,Mascoma Hydro,01,1988.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.633373,-72.317162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54471,Mascoma Hydro,02,1988.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.633373,-72.317162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54471,Mascoma Hydro,03,1988.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.633373,-72.317162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54472,Simplot Phosphates,GEN1,1986.0,11.5,11.5,11.5,2,OTH,All Other,OP,ST,8.0,1986.0, , ,,,,,other,other,Other,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.5417,-109.1328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54476,Sumas Power Plant,GEN1,1993.0,87.8,84.7,96.5,50,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9646924829157176,1.0,WECC,PSEI,WA,48.9905,-122.2733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54476,Sumas Power Plant,GEN2,1993.0,37.7,40.8,40.8,20,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,PSEI,WA,48.9905,-122.2733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54477,Oroville Cogeneration LP,GEN1,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,OrovilleCogen1,ICE,False,1.0,1.0,-1.0,8.075,8.075,85.0,2.83,1.0,0.0,8.5,-3.513726099062411,101.7766709806599,-3.5460745381448366e-05,-3.5132236914017603,101.77491280407429,10.98172866758064,#TRUE#,#1989-12-18#,#2050-12-31#,Existing,CIPV,CA_CISO,5.95,8.5,8.02,CA,NG,,#FALSE#,5.95,8.5,15.871976910062036 -54477,Oroville Cogeneration LP,GEN2,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.871976910062036 -54477,Oroville Cogeneration LP,GEN3,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.871976910062036 -54477,Oroville Cogeneration LP,GEN4,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.871976910062036 -54477,Oroville Cogeneration LP,GEN5,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.871976910062036 -54477,Oroville Cogeneration LP,GEN6,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.871976910062036 -54477,Oroville Cogeneration LP,GEN7,1990.0,1.1,1.1,1.1,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1990.0,1,2025,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,39.492,-121.5628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.871976910062036 -54512,Domino Sugar Arabi Plant,TG1,1949.0,5.0,3.4,3.1,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6799999999999999,0.62,SERC,MISO,LA,29.9468,-90.0018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54512,Domino Sugar Arabi Plant,TG2,2003.0,5.0,2.3,2.3,1,NG,Natural Gas Steam Turbine,OA,ST,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.45999999999999996,0.45999999999999996,SERC,MISO,LA,29.9468,-90.0018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54512,Domino Sugar Arabi Plant,TG3,1949.0,4.0,2.0,1.4,1,NG,Natural Gas Steam Turbine,OP,ST,1.0,1949.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5,0.35,SERC,MISO,LA,29.9468,-90.0018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54513,WestRock (IL),E-1,1992.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.7697,-88.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.991718426501034 -54513,WestRock (IL),E2-A,1992.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.7697,-88.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.991718426501034 -54513,WestRock (IL),E2-B,1992.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.7697,-88.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.991718426501034 -54513,WestRock (IL),E3,1992.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.7697,-88.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.992753623188404 -54514,Blind Canyon Hydro,1,1992.0,1.3,1.3,1.3,1.3,WAT,Conventional Hydroelectric,OP,HY,4.0,1992.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.69984,-114.822603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54515,Crotched Mountain Rehabilitation Center,GEN1,1990.0,0.7,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,2.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,42.971653,-71.87268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54515,Crotched Mountain Rehabilitation Center,GEN2,1990.0,0.7,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,2.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,42.971653,-71.87268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54515,Crotched Mountain Rehabilitation Center,GEN3,1990.0,0.7,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,2.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,42.971653,-71.87268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54517,Sierra Pacific Sonora,GEN3,2018.0,7.5,6.0,6.4,1,WDS,Wood/Wood Waste Biomass,OP,ST,4.0,2018.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8533333333333334,WECC,CISO,CA,37.966389,-120.317777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.8516130669848 -54518,Formosa Plastics,GT2,1990.0,38.0,33.0,37.0,28,NG,Natural Gas Fired Combustion Turbine,SB,GT,7.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.868421052631579,0.9736842105263158,SERC,MISO,LA,30.4992,-91.1872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.197800690519516 -54518,Formosa Plastics,GT3,1996.0,38.8,33.0,37.0,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8505154639175259,0.9536082474226805,SERC,MISO,LA,30.4992,-91.1872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.197800594618014 -54518,Formosa Plastics,ST1,1985.0,12.0,8.0,8.0,2,NG,Natural Gas Steam Turbine,OP,ST,5.0,1985.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,0.6666666666666667,SERC,MISO,LA,30.4992,-91.1872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54518,Formosa Plastics,ST2,1990.0,12.0,8.0,8.0,2,NG,Natural Gas Steam Turbine,OP,ST,10.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,0.6666666666666667,SERC,MISO,LA,30.4992,-91.1872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54520,Village Creek Water Reclamation Facility,SD1,1994.0,0.9,0.9,0.9,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.775093,-97.14209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54520,Village Creek Water Reclamation Facility,SD2,1994.0,0.9,0.9,0.9,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.775093,-97.14209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54520,Village Creek Water Reclamation Facility,TG1,2001.0,5.3,4.2,5.3,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7924528301886793,1.0,TRE,ERCO,TX,32.775093,-97.14209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.54695652173913 -54520,Village Creek Water Reclamation Facility,TG2,2001.0,5.3,4.2,5.3,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7924528301886793,1.0,TRE,ERCO,TX,32.775093,-97.14209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.54695652173913 -54523,Hoffer Plastics,GEN1,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN2,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN3,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN4,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN5,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN6,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN7,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN8,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54523,Hoffer Plastics,GEN9,1995.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.998889,-88.302222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.392182090588205 -54524,Horseshoe Bend Hydroelectric Co,GEN1,1995.0,4.7,4.7,4.7,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.904085,-116.244193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54524,Horseshoe Bend Hydroelectric Co,GEN2,1995.0,4.7,4.7,4.7,0.5,WAT,Conventional Hydroelectric,OP,HY,4.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.904085,-116.244193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54525,Kankakee Hydro Facility,1,1991.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.1128,-87.8681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54525,Kankakee Hydro Facility,2,1991.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.1128,-87.8681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54525,Kankakee Hydro Facility,3,1991.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OS,HY,7.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.1128,-87.8681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54533,Southern Minnesota Beet Sugar,0001,1976.0,7.5,7.5,7.5,1.5,SUB,Conventional Steam Coal,OP,ST,9.0,1976.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,44.796405,-95.179787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -54536,Sumpter Energy Associates,0202,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0203,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0204,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0205,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0386,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0388,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0389,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0392,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0435,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0437,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0440,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0447,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0464,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54536,Sumpter Energy Associates,0467,1992.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,7.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.105669,-83.498845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.15241319900372 -54537,Ferndale Generating Station,CT1A,1994.0,95.9,86.0,94.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8967674661105317,0.9801876955161626,WECC,PSEI,WA,48.828996,-122.685114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54537,Ferndale Generating Station,CT1B,1994.0,95.9,86.0,94.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8967674661105317,0.9801876955161626,WECC,PSEI,WA,48.828996,-122.685114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54537,Ferndale Generating Station,ST1,1994.0,93.7,98.0,98.0,30,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,PSEI,WA,48.828996,-122.685114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54538,Hartwell Energy Facility,MAG1,1994.0,180.0,149.5,176.8,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8305555555555555,0.9822222222222223,SERC,SOCO,GA,34.339588,-82.819871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54538,Hartwell Energy Facility,MAG2,1994.0,180.0,148.6,176.8,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8255555555555555,0.9822222222222223,SERC,SOCO,GA,34.339588,-82.819871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54539,Venice Resources Gas Recovery,GEN1,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.985,-83.9764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.238781391519144 -54539,Venice Resources Gas Recovery,GEN2,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.985,-83.9764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.238781391519144 -54540,Charter Dura-Bar,1A,1992.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,RFC,PJM,IL,42.2891,-88.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.63765512220363 -54540,Charter Dura-Bar,1B,1992.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,RFC,PJM,IL,42.2891,-88.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.63765512220363 -54540,Charter Dura-Bar,2A,1992.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,RFC,PJM,IL,42.2891,-88.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.63765512220363 -54540,Charter Dura-Bar,2B,1992.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,RFC,PJM,IL,42.2891,-88.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.63765512220363 -54540,Charter Dura-Bar,3A,1992.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,RFC,PJM,IL,42.2891,-88.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.63765512220363 -54540,Charter Dura-Bar,3B,1992.0,1.0,0.9,1.0,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,1.0,RFC,PJM,IL,42.2891,-88.413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.63765512220363 -54547,Sithe Independence Station,1,1994.0,169.2,159.2,194.1,90,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9408983451536643,1.0,NPCC,NYIS,NY,43.495,-76.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.484018847296129 -54547,Sithe Independence Station,2,1994.0,169.2,159.2,194.1,90,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9408983451536643,1.0,NPCC,NYIS,NY,43.495,-76.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.246181538930822 -54547,Sithe Independence Station,3,1994.0,169.2,159.2,194.1,90,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9408983451536643,1.0,NPCC,NYIS,NY,43.495,-76.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.454873714419344 -54547,Sithe Independence Station,4,1994.0,169.5,159.2,194.1,90,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9392330383480825,1.0,NPCC,NYIS,NY,43.495,-76.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.444880428871755 -54547,Sithe Independence Station,5,1994.0,204.5,171.7,209.3,45,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8396088019559902,1.0,NPCC,NYIS,NY,43.495,-76.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54547,Sithe Independence Station,6,1994.0,204.5,171.7,209.3,45,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8396088019559902,1.0,NPCC,NYIS,NY,43.495,-76.4511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54548,Longfalls Facility,1,1991.0,3.3,3.0,3.0,1,WAT,Conventional Hydroelectric,OP,HY,10.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9090909090909092,0.9090909090909092,NPCC,NYIS,NY,43.980806,-75.624677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54550,W&T Onshore Treating Facility (OTF),901,1993.0,0.9,0.9,0.9,0.1,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,30.43203,-88.18241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54550,W&T Onshore Treating Facility (OTF),901A,1993.0,3.7,3.4,3.6,1.1,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9189189189189189,0.9729729729729729,SERC,SOCO,AL,30.43203,-88.18241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.916796144439648 -54550,W&T Onshore Treating Facility (OTF),901B,1993.0,3.7,3.4,3.6,1.1,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9189189189189189,0.9729729729729729,SERC,SOCO,AL,30.43203,-88.18241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.340363789296605 -54550,W&T Onshore Treating Facility (OTF),901C,1993.0,3.7,3.4,3.6,1.1,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9189189189189189,0.9729729729729729,SERC,SOCO,AL,30.43203,-88.18241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.506303782269361 -54554,Spicer Meadow Project,GEN1,1989.0,2.7,2.5,2.5,0.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9259259259259258,0.9259259259259258,WECC,CISO,CA,38.3914,-120.0008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54554,Spicer Meadow Project,GEN2,1989.0,2.7,2.5,2.5,0.8,WAT,Conventional Hydroelectric,OP,HY,11.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9259259259259258,0.9259259259259258,WECC,CISO,CA,38.3914,-120.0008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54554,Spicer Meadow Project,GEN3,1989.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.3914,-120.0008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54555,Collierville Powerhouse,GEN1,1989.0,126.5,126.5,126.5,3,WAT,Conventional Hydroelectric,OP,HY,11.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.144636,-120.380497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54555,Collierville Powerhouse,GEN2,1989.0,126.5,126.5,126.5,3,WAT,Conventional Hydroelectric,OP,HY,11.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,38.144636,-120.380497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54556,Ingredion Incorporated,TG03,1996.0,4.8,4.4,4.8,0.5,NG,Natural Gas Fired Combustion Turbine,SB,GT,2.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9166666666666667,1.0,RFC,PJM,IL,41.7775,-87.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54556,Ingredion Incorporated,TG04,1996.0,4.8,4.4,4.8,0.5,NG,Natural Gas Fired Combustion Turbine,SB,GT,2.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9166666666666667,1.0,RFC,PJM,IL,41.7775,-87.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54556,Ingredion Incorporated,TGO1,1991.0,22.5,21.1,21.2,5,NG,Natural Gas Steam Turbine,OP,ST,5.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9377777777777778,0.9422222222222222,RFC,PJM,IL,41.7775,-87.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54556,Ingredion Incorporated,TGO2,1991.0,22.5,21.1,21.2,5,NG,Natural Gas Steam Turbine,OP,ST,5.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9377777777777778,0.9422222222222222,RFC,PJM,IL,41.7775,-87.8233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54558,Hazelton B Hydro,U1,1993.0,3.8,3.8,3.8,1.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.6051,-114.093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54558,Hazelton B Hydro,U2,1993.0,3.8,3.8,3.8,1.4,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.6051,-114.093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54562,Longview Fibre,6,1958.0,20.0,22.0,22.0,4,BLQ,Wood/Wood Waste Biomass,OP,ST,1.0,1958.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,WA,46.103887,-122.918429,LongviewFibre6,OT ST,True,6.0,6.0,-1.0,4.0,4.0,112.6659,2.0,1.0,2.027986,20.0,13.909999857729531,-42.799998022662336,-4.218828372135053e-06,13.910117551797462,-42.8007767930262,10.668445475843146,#TRUE#,#1958-01-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,9.0,20.0,0.0,WA,Bio,,#FALSE#,9,20, -54562,Longview Fibre,7,1966.0,25.0,25.0,25.0,4,BLQ,Wood/Wood Waste Biomass,OP,ST,4.0,1966.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,WA,46.103887,-122.918429,LongviewFibre7,OT ST,True,6.0,6.0,-1.0,4.0,4.0,140.8324,2.5,1.0,2.027986,25.0,13.90996349200778,-53.49908839922632,-4.358004554998185e-06,13.910115474773015,-53.50034549909341,10.66846419407577,#TRUE#,#1966-04-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,11.25,25.0,0.0,WA,Bio,,#FALSE#,11.25,25, -54566,YKK USA Chestney,BWP1,1996.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.8061,-83.5456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54566,YKK USA Chestney,SEV1,2015.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.8061,-83.5456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54566,YKK USA Chestney,SLD1,1992.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.8061,-83.5456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54567,MM Yolo Power,1,1990.0,0.6,0.5,0.5,0.5,LFG,Landfill Gas,OP,IC,10.0,1990.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,WECC,CISO,CA,38.596283,-121.687518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.080220588308068 -54567,MM Yolo Power,2,1990.0,0.6,0.5,0.5,0.5,LFG,Landfill Gas,OP,IC,10.0,1990.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,WECC,CISO,CA,38.596283,-121.687518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.080220588308068 -54567,MM Yolo Power,3,1990.0,0.6,0.5,0.5,0.5,LFG,Landfill Gas,OA,IC,10.0,1990.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,WECC,CISO,CA,38.596283,-121.687518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.080220588308068 -54567,MM Yolo Power,4,1993.0,0.9,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,3.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.596283,-121.687518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.080222136691043 -54567,MM Yolo Power,5,1998.0,0.9,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,12.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.596283,-121.687518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.080222136691043 -54569,Bayville Central Facility,COG1,1988.0,0.3,0.3,0.3,0.2,OBG,Other Waste Biomass,OP,IC,9.0,1988.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.811851843292681 -54569,Bayville Central Facility,COG2,1988.0,0.3,0.3,0.3,0.2,OBG,Other Waste Biomass,OP,IC,9.0,1988.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.811851843292681 -54569,Bayville Central Facility,COG3,1988.0,0.3,0.3,0.3,0.2,OBG,Other Waste Biomass,OP,IC,9.0,1988.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.811851843292681 -54569,Bayville Central Facility,COG4,2002.0,1.5,1.5,1.5,0.7,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81185299878096 -54569,Bayville Central Facility,COG5,2002.0,1.5,1.5,1.5,0.7,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81185299878096 -54569,Bayville Central Facility,COG6,2002.0,1.5,1.5,1.5,0.7,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81185299878096 -54569,Bayville Central Facility,COG7,2002.0,1.5,1.5,1.5,0.7,DFO,Petroleum Liquids,OP,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81185299878096 -54569,Bayville Central Facility,CPV1,2007.0,0.2,0.2,0.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5,RFC,PJM,NJ,39.909424,-74.178041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54572,Lochmere Hydroelectric Plant,UNT1,1984.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.473238,-71.533623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54572,Lochmere Hydroelectric Plant,UNT2,1984.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.473238,-71.533623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54572,Lochmere Hydroelectric Plant,UNT3,1984.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.473238,-71.533623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54572,Lochmere Hydroelectric Plant,UNT4,1984.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,43.473238,-71.533623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54573,Wappinger Falls Hydroelectric,1,1988.0,1.0,1.0,0.9,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,NYIS,NY,41.598395,-73.922036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54573,Wappinger Falls Hydroelectric,2,1988.0,1.0,1.0,0.9,1,WAT,Conventional Hydroelectric,SB,HY,12.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.9,NPCC,NYIS,NY,41.598395,-73.922036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54574,Saranac Facility,GEN1,1994.0,95.2,70.7,81.8,40,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7426470588235294,0.8592436974789915,NPCC,NYIS,NY,44.7132,-73.4557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54574,Saranac Facility,GEN2,1994.0,95.2,79.9,93.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8392857142857143,0.976890756302521,NPCC,NYIS,NY,44.7132,-73.4557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54574,Saranac Facility,GEN3,1994.0,95.2,85.0,81.3,10,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8928571428571428,0.8539915966386554,NPCC,NYIS,NY,44.7132,-73.4557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,C1,1986.0,2.6,2.5,2.5,0.9,WAT,Conventional Hydroelectric,OP,HY,3.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9615384615384615,0.9615384615384615,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,C2,1986.0,2.6,2.5,2.5,0.9,WAT,Conventional Hydroelectric,OP,HY,1.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9615384615384615,0.9615384615384615,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,C3,1985.0,2.6,2.4,2.4,2.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,C4,1985.0,1.0,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,C5,1985.0,1.0,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,P1,1986.0,24.6,25.0,25.0,6,WAT,Conventional Hydroelectric,OP,HY,11.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54580,Curtis Palmer Hydroelectric,P2,1986.0,24.6,25.0,25.0,6,WAT,Conventional Hydroelectric,OP,HY,10.0,1986.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2469,-73.8281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54586,Tanner Street Generation,TRENT,2008.0,57.9,58.0,58.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,ISNE,MA,42.632124,-71.313235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54586,Tanner Street Generation,VAX,1992.0,27.1,17.0,19.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6273062730627306,0.7011070110701106,NPCC,ISNE,MA,42.632124,-71.313235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54592,Massena Energy Facility,GEN1,1992.0,66.5,46.0,56.0,46,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6917293233082706,0.8421052631578947,NPCC,NYIS,NY,44.9503,-74.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54592,Massena Energy Facility,GEN2,1992.0,35.6,35.0,35.0,30,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9831460674157303,0.9831460674157303,NPCC,NYIS,NY,44.9503,-74.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54592,Massena Energy Facility,IC,1992.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,44.9503,-74.8928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54593,Batavia Power Plant,GEN1,1992.0,47.7,34.3,44.3,34.3,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7190775681341718,0.9287211740041927,NPCC,NYIS,NY,42.9828,-78.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54593,Batavia Power Plant,GEN2,1992.0,18.5,14.5,14.8,14.5,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1992.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7837837837837838,0.8,NPCC,NYIS,NY,42.9828,-78.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54593,Batavia Power Plant,GEN3,1992.0,1.1,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,9.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,NPCC,NYIS,NY,42.9828,-78.1592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54594,University of Arizona - Biosphere 2,G-1,1990.0,1.5,1.5,1.5,1,DFO,Petroleum Liquids,SB,IC,11.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,WALC,AZ,32.578011,-110.852608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.735971924351727 -54594,University of Arizona - Biosphere 2,G-4,2000.0,1.6,1.6,1.6,1,NG,Natural Gas Internal Combustion Engine,SB,IC,4.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,WALC,AZ,32.578011,-110.852608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.735733869493693 -54604,Warner Lambert,016E,1992.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.299332,-83.705318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.185470085470087 -54604,Warner Lambert,0550,2002.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.299332,-83.705318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.185754985754986 -54604,Warner Lambert,085-1,2005.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,12.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.299332,-83.705318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.185804533630623 -54604,Warner Lambert,085-2,2005.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,12.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.299332,-83.705318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.185804533630623 -54604,Warner Lambert,5164,1989.0,3.0,2.8,3.2,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333332,1.0,RFC,MISO,MI,42.299332,-83.705318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.547491125395759 -54604,Warner Lambert,800-1,2007.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.299332,-83.705318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.185804533630623 -54605,Pratt & Whitney,FT-8,1992.0,25.8,28.0,31.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.748327,-72.636693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54618,Ingredion Winston Salem,7500,1985.0,7.5,6.6,6.6,1,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8799999999999999,0.8799999999999999,SERC,DUK,NC,36.033761,-80.227404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -54618,Ingredion Winston Salem,900,1993.0,0.9,0.4,0.5,0.1,WDS,Wood/Wood Waste Biomass,OP,ST,5.0,1993.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4444444444444444,0.5555555555555556,SERC,DUK,NC,36.033761,-80.227404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -54620,"NE Renewable Fitchburg, LLC",NO-1,1992.0,18.0,14.9,15.1,8,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1992.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8277777777777778,0.8388888888888889,NPCC,ISNE,MA,42.5428,-71.8528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54623,Central District Wastewater Treat Plant,3A,2013.0,1.2,1.2,1.2,1,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.748565,-80.152791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54623,Central District Wastewater Treat Plant,4A,2013.0,1.2,1.2,1.2,1,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.748565,-80.152791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54623,Central District Wastewater Treat Plant,5,2015.0,1.2,1.2,1.2,1,OBG,Other Waste Biomass,OP,IC,6.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.748565,-80.152791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54623,Central District Wastewater Treat Plant,6,2015.0,1.2,1.2,1.2,1,OBG,Other Waste Biomass,OP,IC,6.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.748565,-80.152791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54624,South District Wastewater Treatment Plt,1A,2014.0,2.0,2.0,2.0,1.9,OBG,Other Waste Biomass,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.549834,-80.336253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.738933808414417 -54624,South District Wastewater Treatment Plt,2A,2014.0,2.0,2.0,2.0,1.9,OBG,Other Waste Biomass,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.549834,-80.336253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.738933808414417 -54624,South District Wastewater Treatment Plt,3A,2014.0,2.0,2.0,2.0,1.9,OBG,Other Waste Biomass,OP,IC,11.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.549834,-80.336253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.738933808414417 -54624,South District Wastewater Treatment Plt,4A,2014.0,2.0,2.0,2.0,1.9,OBG,Other Waste Biomass,OP,IC,11.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,25.549834,-80.336253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.738933808414417 -54625,Covanta Plymouth Renewable Energy,TGI,1991.0,32.1,28.0,28.0,14,MSW,Municipal Solid Waste,OP,ST,12.0,1991.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8722741433021807,0.8722741433021807,RFC,PJM,PA,40.0967,-75.3103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54626,Mt Poso Cogeneration,TG01,1989.0,62.0,42.4,42.4,20,WDS,Wood/Wood Waste Biomass,OP,ST,5.0,1989.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6838709677419355,0.6838709677419355,WECC,CISO,CA,35.576323,-119.006245,MtPosoCogen,OT ST,False,48.0,168.0,-1.0,2.85,2.85,9440.276,531.81,1.0,3.177179,57.0,-1292.365275135141,74200.278574756,-23.07734390911215,1323.9617872474503,46.27037674265776,16.60418894997234,#TRUE#,#1989-04-01#,#2050-12-31#,Existing,CIPV,CA_CISO,56.43,57.0,48.84,CA,Bio,,#FALSE#,56.43,57, -54627,Okeelanta Cogeneration,GEN1,1996.0,74.9,74.9,74.9,5,AB,Other Waste Biomass,OP,ST,1.0,1996.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FPL,FL,26.5769,-80.7469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54627,Okeelanta Cogeneration,GEN2,2006.0,54.0,30.0,30.0,5,AB,Other Waste Biomass,OP,ST,8.0,2006.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5555555555555556,0.5555555555555556,SERC,FPL,FL,26.5769,-80.7469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54628,Phelps Dodge Refining,2607,1986.0,3.5,2.6,3.0,2.6,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7428571428571429,0.8571428571428572,WECC,EPE,TX,31.764458,-106.391314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.628005180965488 -54628,Phelps Dodge Refining,2608,1986.0,3.5,2.6,3.0,2.6,NG,Natural Gas Fired Combustion Turbine,OS,GT,10.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7428571428571429,0.8571428571428572,WECC,EPE,TX,31.764458,-106.391314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.628005180965488 -54628,Phelps Dodge Refining,3001,1992.0,4.2,3.2,3.8,3.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7619047619047619,0.9047619047619047,WECC,EPE,TX,31.764458,-106.391314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.628004930914818 -54628,Phelps Dodge Refining,3002,1992.0,4.2,3.2,3.8,3.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7619047619047619,0.9047619047619047,WECC,EPE,TX,31.764458,-106.391314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.628004930914818 -54628,Phelps Dodge Refining,3003,1992.0,4.2,3.2,3.8,3.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7619047619047619,0.9047619047619047,WECC,EPE,TX,31.764458,-106.391314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.628004930914818 -54630,American Gypsum Cogeneration,D-1,1990.0,1.6,1.2,1.4,0.3,DFO,Petroleum Liquids,SB,IC,3.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.8749999999999999,WECC,PSCO,CO,39.648565,-106.949394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.875 -54630,American Gypsum Cogeneration,D-2,1990.0,1.6,1.2,1.4,0.3,DFO,Petroleum Liquids,SB,IC,3.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.8749999999999999,WECC,PSCO,CO,39.648565,-106.949394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.875 -54630,American Gypsum Cogeneration,T-1,1990.0,2.8,2.6,2.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9285714285714286,1.0,WECC,PSCO,CO,39.648565,-106.949394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.747013747356277 -54630,American Gypsum Cogeneration,T-2,1990.0,3.6,2.6,2.8,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7222222222222222,0.7777777777777777,WECC,PSCO,CO,39.648565,-106.949394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.747013758037983 -54634,St Nicholas Cogen Project,SNCP,1990.0,99.2,86.0,86.0,55,WC,Conventional Steam Coal,OP,ST,9.0,1990.0, , ,,,,,coal,coal,Waste/Other Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8669354838709677,0.8669354838709677,RFC,PJM,PA,40.8222,-76.1736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54637,JCO Oxides Olefins Plant,GCG1,1992.0,36.9,30.5,35.5,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8265582655826559,0.962059620596206,SERC,MISO,TX,29.963502,-93.929737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275727765371087 -54637,JCO Oxides Olefins Plant,GCG2,1992.0,36.9,30.5,35.5,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8265582655826559,0.962059620596206,SERC,MISO,TX,29.963502,-93.929737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275727765371087 -54638,Johnsonburg Mill,PT1,1993.0,54.0,49.0,49.0,12,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1993.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9074074074074074,0.9074074074074074,RFC,PJM,PA,41.491466,-78.675759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,CAS1,1914.0,2.4,2.4,2.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1914.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,CAS2,1916.0,2.4,2.4,2.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,CAS3,1918.0,3.1,3.1,3.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1918.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,GOR1,1920.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,GOR2,1920.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,GOR3,1920.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,GOR4,1920.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,RS1,1920.0,3.8,3.8,3.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,RS3,1920.0,4.1,4.1,4.1,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SH2,1916.0,0.9,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SHL1,1916.0,0.9,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SHL3,1929.0,1.8,1.8,1.8,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1929.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SM1,1980.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SM2,1980.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SM3,1980.0,0.7,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,SM4,1980.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,XP1,1921.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,XP2,1921.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,XP3,1921.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,XP4,1921.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1921.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54639,Berlin Gorham,XP5,1924.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,NH,44.3889,-71.1645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54640,NAEA Lakewood LLC,GEN1,1994.0,77.9,84.6,84.9,62.1,NG,Natural Gas Fired Combined Cycle,SB,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.0613,-74.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54640,NAEA Lakewood LLC,GEN2,1994.0,77.9,83.6,83.9,62.1,NG,Natural Gas Fired Combined Cycle,SB,CT,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,NJ,40.0613,-74.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54640,NAEA Lakewood LLC,GEN3,1994.0,81.0,79.7,82.2,79.7,NG,Natural Gas Fired Combined Cycle,SB,CA,4.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9839506172839506,1.0,RFC,PJM,NJ,40.0613,-74.1686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54646,Kalaeloa Cogen Plant,CT1,1989.0,119.2,85.0,85.0,40,RFO,Petroleum Liquids,OP,CT,10.0,1989.0, , ,,,,,oil,oil,Residual Fuel Oil,Combined Cycle Combustion Turbine Part,0.7130872483221476,0.7130872483221476,non-conus,non-conus,HI,21.302106,-158.096318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.169446962238867 -54646,Kalaeloa Cogen Plant,CT2,1991.0,119.2,85.0,85.0,40,RFO,Petroleum Liquids,OP,CT,1.0,1991.0, , ,,,,,oil,oil,Residual Fuel Oil,Combined Cycle Combustion Turbine Part,0.7130872483221476,0.7130872483221476,non-conus,non-conus,HI,21.302106,-158.096318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.062192536632834 -54646,Kalaeloa Cogen Plant,ST,1991.0,61.0,50.0,50.0,10,DFO,Petroleum Liquids,OP,CA,3.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combined Cycle Steam Part,0.819672131147541,0.819672131147541,non-conus,non-conus,HI,21.302106,-158.096318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54647,TPC Windfarms LLC,EXIS,1986.0,28.7,28.7,28.7,5.2,WND,Onshore Wind Turbine,OP,WT,12.0,1986.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.05,-118.2572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54654,Kekawaka Power House,KEK1,1989.0,4.9,4.9,4.9,0.7,WAT,Conventional Hydroelectric,OA,HY,12.0,1989.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.0941,-123.508983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54655,Schoolfield Dam,SCH1,1990.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,10.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.576778,-79.432503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54655,Schoolfield Dam,SCH2,1990.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.576778,-79.432503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54655,Schoolfield Dam,SCH3,1990.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,12.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,VA,36.576778,-79.432503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54656,International Paper Riegelwood Mill,NO3,1976.0,44.0,44.5,40.7,17.3,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,1976.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,0.925,SERC,CPLE,NC,34.3533,-78.2137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54661,Pheasant Run Landfill Gas Recovery,GE10,2002.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GE11,2002.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN1,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN2,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN3,1996.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN4,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN5,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN6,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN7,2000.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN8,2002.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54661,Pheasant Run Landfill Gas Recovery,GEN9,2002.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.5825,-88.0436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.12224896169999 -54662,Woodland Landfill Gas Recovery,GEN1,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981004,-88.27452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.17002259584301 -54662,Woodland Landfill Gas Recovery,GEN2,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981004,-88.27452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.17002259584301 -54662,Woodland Landfill Gas Recovery,GEN3,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981004,-88.27452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.170024200369404 -54662,Woodland Landfill Gas Recovery,GEN4,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981004,-88.27452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.170024200369404 -54663,Turnkey Landfill Gas Recovery,GEN1,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,43.241555,-70.966404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.194037496158181 -54663,Turnkey Landfill Gas Recovery,GEN2,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,43.241555,-70.966404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.194037496158181 -54663,Turnkey Landfill Gas Recovery,GEN3,1992.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,1992.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,43.241555,-70.966404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.194037496158181 -54663,Turnkey Landfill Gas Recovery,GEN4,1993.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,43.241555,-70.966404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.194037496158181 -54663,Turnkey Landfill Gas Recovery,GEN5,1997.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,12.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,NPCC,ISNE,NH,43.241555,-70.966404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.833015665018763 -54663,Turnkey Landfill Gas Recovery,GEN6,1997.0,3.0,2.9,3.3,1,LFG,Landfill Gas,OP,GT,12.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9666666666666667,1.0,NPCC,ISNE,NH,43.241555,-70.966404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.833015665018763 -54665,Steamboat II,T201,1992.0,9.1,5.4,8.1,5.4,GEO,Geothermal,OP,BT,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5934065934065935,0.8901098901098901,WECC,NEVP,NV,39.395603,-119.746762,Steamboat 2-1,GEO,True,6.0,16.0,-1.0,0.03,0.03,0.0,0.0,1.0,3.098312,11.3,-1.7614338024707972,66.34720141929142,-6.247138364520385e-06,-1.7613314409675342,66.34679856468921,6.679003553441916,#TRUE#,#1992-09-01#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,11.3,3.10995,NV,Geo,Binary,#FALSE#,5.65,11.3, -54665,Steamboat II,T202,1992.0,9.1,5.4,8.1,5.4,GEO,Geothermal,OP,BT,8.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5934065934065935,0.8901098901098901,WECC,NEVP,NV,39.395603,-119.746762,Steamboat 2-2,GEO,True,6.0,16.0,-1.0,17.45,17.45,0.0,0.0,1.0,3.098312,11.3,-1.7614338024707972,66.34720141929142,-6.247138364520385e-06,-1.7613314409675342,66.34679856468921,6.679003553441916,#TRUE#,#1992-09-01#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,11.3,3.10995,NV,Geo,Binary,#FALSE#,5.65,11.3, -54666,Steamboat III,T301,1992.0,9.1,5.4,8.1,5.4,GEO,Geothermal,OP,BT,10.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5934065934065935,0.8901098901098901,WECC,NEVP,NV,39.394444,-119.7475,Steamboat 3-1,GEO,True,6.0,16.0,-1.0,0.4,0.4,0.0,0.0,1.0,3.098312,11.3,-1.7614338024707972,66.34720141929142,-6.247138364520385e-06,-1.7613314409675342,66.34679856468921,6.679003553441916,#TRUE#,#1992-10-01#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,11.3,3.30995,NV,Geo,Binary,#FALSE#,5.65,11.3, -54666,Steamboat III,T302,1992.0,9.1,5.4,8.1,5.4,GEO,Geothermal,OP,BT,10.0,1992.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5934065934065935,0.8901098901098901,WECC,NEVP,NV,39.394444,-119.7475,Steamboat 3-2,GEO,True,6.0,16.0,-1.0,1.47,1.47,0.0,0.0,1.0,3.098312,11.3,-1.7614338024707972,66.34720141929142,-6.247138364520385e-06,-1.7613314409675342,66.34679856468921,6.679003553441916,#TRUE#,#1992-10-01#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,11.3,3.30995,NV,Geo,Binary,#FALSE#,5.65,11.3, -54667,Chino Mines,7,1959.0,16.5,15.4,15.5,2,NG,Natural Gas Fired Combined Cycle,SB,CA,10.0,1959.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9333333333333333,0.9393939393939394,WECC,PNM,NM,32.6956,-108.1225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54667,Chino Mines,9,2001.0,37.5,35.0,40.0,4.5,NG,Natural Gas Fired Combined Cycle,SB,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9333333333333333,1.0,WECC,PNM,NM,32.6956,-108.1225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.099203455403043 -54668,Falls River Hydro,1,1993.0,4.5,4.5,4.5,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.0597,-111.3535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54668,Falls River Hydro,2,1993.0,4.5,4.5,4.5,1,WAT,Conventional Hydroelectric,OP,HY,8.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.0597,-111.3535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54674,Ford Hydro LP,GEN1,1988.0,0.4,0.2,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,WECC,AVA,ID,46.383828,-115.949338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54674,Ford Hydro LP,GEN2,1988.0,0.4,0.2,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,WECC,AVA,ID,46.383828,-115.949338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54674,Ford Hydro LP,GEN3,1988.0,0.4,0.2,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,1.0,WECC,AVA,ID,46.383828,-115.949338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54675,Spartanburg Water System,DI2,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,35.1103,-81.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.655555555555555 -54675,Spartanburg Water System,HG1,1926.0,0.5,0.5,0.5,0.4,WAT,Conventional Hydroelectric,SB,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.1103,-81.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54675,Spartanburg Water System,HG2,1926.0,0.5,0.5,0.5,0.4,WAT,Conventional Hydroelectric,SB,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,35.1103,-81.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54676,Oyster Creek Unit VIII,G81,1994.0,99.0,73.0,90.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7373737373737373,0.9090909090909091,TRE,ERCO,TX,28.9802,-95.342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.915845172243296 -54676,Oyster Creek Unit VIII,G82,1994.0,99.0,73.0,90.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7373737373737373,0.9090909090909091,TRE,ERCO,TX,28.9802,-95.342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.329597690684428 -54676,Oyster Creek Unit VIII,G83,1994.0,99.0,73.0,90.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7373737373737373,0.9090909090909091,TRE,ERCO,TX,28.9802,-95.342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.710859032705828 -54676,Oyster Creek Unit VIII,G84,1994.0,200.9,160.0,160.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7964161274265804,0.7964161274265804,TRE,ERCO,TX,28.9802,-95.342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54677,CII Carbon LLC,TG-2,1951.0,23.0,23.0,23.0,3,WH,All Other,OP,ST,1.0,1951.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,29.9327,-89.9782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54677,CII Carbon LLC,TG-3,1951.0,23.0,23.0,23.0,3,WH,All Other,SB,ST,1.0,1951.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,LA,29.9327,-89.9782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,01,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,7.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,02,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,03,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,04,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,5.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,05,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,06,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,5.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,07,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,6.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54678,Sidney A Murray Jr Hydroelectric,08,1990.0,24.0,24.0,24.0,3,WAT,Conventional Hydroelectric,OP,HY,7.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,LA,31.088011,-91.618853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54679,Boulder City Lakewood Hydro,0001,2004.0,3.5,3.5,3.5,0.3,WAT,Conventional Hydroelectric,OP,HY,2.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,40.0111,-105.3347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54680,Boulder City Betasso Hydro Plant,0001,1987.0,3.0,3.0,3.0,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,40.0111,-105.3347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54686,Difwind Farms Ltd VI,EXIS,1987.0,27.1,25.3,25.3,0,WND,Onshore Wind Turbine,OP,WT,1.0,1987.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.933579335793358,0.933579335793358,WECC,CISO,CA,35.0506,-118.1714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54688,Thundermist Hydro,HYD1,1981.0,1.2,1.1,1.1,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1981.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,NPCC,ISNE,RI,41.99897,-71.517434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54689,Heber Geothermal,1,1985.0,52.0,34.3,52.0,34.3,GEO,Geothermal,OP,ST,6.0,1985.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6596153846153845,1.0,WECC,IID,CA,32.7146,-115.518,Heber Geo Complex,GEO,True,6.0,16.0,-1.0,2.4,2.4,0.0,0.0,1.0,3.098312,52.0,-1.761427115368765,305.31420724195186,-7.383711570877813e-06,-1.7608703835112456,305.3041246359367,6.679000621119355,#TRUE#,#1985-06-01#,#2050-12-31#,Existing,IID,CA_IID,26.0,52.0,49.70513,CA,Geo,,#FALSE#,26,52, -54689,Heber Geothermal,2,2006.0,7.0,4.5,7.0,4.5,GEO,Geothermal,OP,BT,6.0,2006.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6428571428571428,1.0,WECC,IID,CA,32.7146,-115.518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54689,Heber Geothermal,3,2006.0,3.5,3.0,3.5,3,GEO,Geothermal,OP,BT,6.0,2006.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8571428571428572,1.0,WECC,IID,CA,32.7146,-115.518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54689,Heber Geothermal,4,2018.0,19.0,12.5,19.0,12.5,GEO,Geothermal,OP,BT,1.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6578947368421053,1.0,WECC,IID,CA,32.7146,-115.518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54690,Amalgamated Sugar LLC Nampa,2250,1948.0,2.2,2.2,2.2,1,NG,Natural Gas Steam Turbine,OP,ST,10.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,IPCO,ID,43.6058,-116.5753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,94.09827719189413 -54690,Amalgamated Sugar LLC Nampa,6500,1968.0,6.0,6.0,6.0,3,NG,Natural Gas Steam Turbine,OP,ST,10.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,IPCO,ID,43.6058,-116.5753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77.19061646349049 -54691,Lower Beaver Falls Project,2G,1979.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.884444,-75.430556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54691,Lower Beaver Falls Project,3G,1979.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1979.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.884444,-75.430556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54694,Yuma Cogeneration Associates,GEN1,1994.0,44.1,35.1,37.4,32,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7959183673469388,0.8480725623582765,WECC,AZPS,AZ,32.728822,-114.654053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54694,Yuma Cogeneration Associates,GEN2,1994.0,18.5,17.1,16.5,5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9243243243243244,0.8918918918918919,WECC,AZPS,AZ,32.728822,-114.654053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54700,Metro Methane Recovery Facility,GEN1,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN10,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475194083847148 -54700,Metro Methane Recovery Facility,GEN11,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475194083847148 -54700,Metro Methane Recovery Facility,GEN12,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475194083847148 -54700,Metro Methane Recovery Facility,GEN2,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN3,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN4,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN5,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN6,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN7,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54700,Metro Methane Recovery Facility,GEN8,1998.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.598889,-93.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.475193129535088 -54710,Alliant SBD 9205 A Y McDonald,0001,1993.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.490556,-90.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.562069493341497 -54710,Alliant SBD 9205 A Y McDonald,0002,1990.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,3.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.490556,-90.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.560912613000431 -54710,Alliant SBD 9205 A Y McDonald,0003,2016.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.490556,-90.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.559687786960517 -54712,Alliant SBD 9201 Norplex,0002,2014.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.0906,-91.5542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.765917519324427 -54712,Alliant SBD 9201 Norplex,0044,1988.0,1.1,1.1,1.1,1.1,DFO,Petroleum Liquids,SB,IC,12.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.0906,-91.5542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.765993744668751 -54715,Alliant SBD 9107 JBS USA,2665,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.533593644809478 -54715,Alliant SBD 9107 JBS USA,2688,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.533593644809478 -54715,Alliant SBD 9107 JBS USA,2689,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.533593644809478 -54715,Alliant SBD 9107 JBS USA,4644,1994.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.533593644809478 -54715,Alliant SBD 9107 JBS USA,4658,1996.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.533593644809478 -54715,Alliant SBD 9107 JBS USA,4659,1998.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.533593644809478 -54715,Alliant SBD 9107 JBS USA,4660,2000.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.056,-92.8971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.53243178554332 -54716,Alliant SBD 8602 Marion Sub,1536,1986.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0289,-91.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.204063492063492 -54716,Alliant SBD 8602 Marion Sub,2734,1986.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0289,-91.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.204063492063492 -54716,Alliant SBD 8602 Marion Sub,2741,1986.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0289,-91.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.204155844155844 -54716,Alliant SBD 8602 Marion Sub,2785,1986.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0289,-91.5975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.204063492063492 -54717,Alliant SBD 9106 Rockwell CR,2671,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2672,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2675,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2678,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2679,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2682,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2683,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2684,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2685,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54717,Alliant SBD 9106 Rockwell CR,2690,1992.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.0356,-91.6458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.30152601581173 -54718,Alliant SBD 9206 Donaldson,4632,1995.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,11.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.3744,-92.1331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.3265306122449 -54719,Alliant SBD 9203 Profol,6916,1996.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,9.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.935,-91.6361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.050354911120548 -54719,Alliant SBD 9203 Profol,6917,2001.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.935,-91.6361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.050354911120548 -54719,Alliant SBD 9203 Profol,6918,2012.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.935,-91.6361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.05041588555412 -54720,Alliant SBD 8601 Quad Graphics,2736,1986.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OS,IC,8.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7958,-92.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54720,Alliant SBD 8601 Quad Graphics,3489,1991.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OS,IC,1.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7958,-92.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54720,Alliant SBD 8601 Quad Graphics,7164,1996.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,OS,IC,5.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7958,-92.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54721,Warm Springs Power Enterprises,0001,1982.0,19.6,18.5,18.5,1,WAT,Conventional Hydroelectric,OP,HY,6.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.943877551020408,0.943877551020408,WECC,PACW,OR,44.724242,-121.247729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54723,I 95 Landfill Phase II,UNT1,1993.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,3.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.6892,-77.2375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.01738901330523 -54723,I 95 Landfill Phase II,UNT2,1993.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,3.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.6892,-77.2375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.01738901330523 -54723,I 95 Landfill Phase II,UNT3,1993.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,3.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.6892,-77.2375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.01738901330523 -54723,I 95 Landfill Phase II,UNT4,1993.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,3.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.6892,-77.2375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.01738901330523 -54724,Ormesa II,OEC21,1989.0,12.0,8.0,12.0,8,GEO,Geothermal,OP,BT,5.0,1989.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,IID,CA,32.7881,-115.2481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54724,Ormesa II,OEC22,2007.0,12.0,8.0,12.0,8,GEO,Geothermal,OP,BT,4.0,2007.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,IID,CA,32.7881,-115.2481,Ormesa II OEC22,GEO,True,6.0,16.0,-1.0,0.79,0.79,0.0,0.0,1.0,3.098312,15.0,-1.761426846535443,88.07140194862235,-6.364662294755519e-06,-1.7612884851552515,88.07067955290421,6.679000507896345,#TRUE#,#1987-12-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,15.0,10.0,CA,Geo,Binary,#FALSE#,7.5,15, -54729,Taylor Draw Hydroelectric Facility,COX1,1993.0,2.3,2.0,2.0,0.2,WAT,Conventional Hydroelectric,OP,HY,4.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8695652173913044,0.8695652173913044,WECC,WACM,CO,40.106269,-108.711161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54731,Hendricks Regional Health,GE06,2010.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.761513,-86.501588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.07954138301684 -54731,Hendricks Regional Health,GEO1,1992.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,SB,IC,9.0,1992.0,2,2024,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.761513,-86.501588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.09175627240143 -54731,Hendricks Regional Health,GEO2,1992.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,SB,IC,9.0,1992.0,2,2024,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.761513,-86.501588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.09175627240143 -54731,Hendricks Regional Health,GEO3,1992.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,SB,IC,9.0,1992.0,2,2024,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.761513,-86.501588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.09199522102748 -54731,Hendricks Regional Health,GEO4,2004.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,3.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.761513,-86.501588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.07954138301684 -54731,Hendricks Regional Health,GEO5,2004.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,3.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.761513,-86.501588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.07954138301684 -54734,Freeport McMoRan,1,1967.0,3.0,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,11,1971.0,3.0,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,2.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,12,1972.0,3.0,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,7.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,13,1972.0,3.0,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,7.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,14,1972.0,3.0,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,7.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,15,1972.0,3.1,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,8.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9354838709677419,0.9354838709677419,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,3,1967.0,3.1,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9354838709677419,0.9354838709677419,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,4,1967.0,3.1,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9354838709677419,0.9354838709677419,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,7,1967.0,3.1,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9354838709677419,0.9354838709677419,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54734,Freeport McMoRan,8,1967.0,3.0,2.9,2.9,0.5,DFO,Petroleum Liquids,SB,IC,12.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,WECC,PNM,NM,32.66176,-108.3628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54735,Alliant SBD 9301 Prairie Farms,0079,1993.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.53,-90.6847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.085478335478337 -54735,Alliant SBD 9301 Prairie Farms,0080,1998.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,11.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.53,-90.6847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.085468585468583 -54735,Alliant SBD 9301 Prairie Farms,0081,2019.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.53,-90.6847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.08542471042471 -54744,District 70 Transco Gas Pipe Line,001,1951.0,0.8,0.7,0.8,0.2,WH,All Other,OS,ST,6.0,1951.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8749999999999999,1.0,SERC,MISO,MS,31.24793,-90.19914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54744,District 70 Transco Gas Pipe Line,002,1951.0,0.8,0.7,0.8,0.2,WH,All Other,OS,ST,6.0,1951.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8749999999999999,1.0,SERC,MISO,MS,31.24793,-90.19914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54746,Wheelabrator Falls,WFI1,1994.0,53.3,43.9,43.6,0,MSW,Municipal Solid Waste,OP,ST,5.0,1994.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8236397748592871,0.8180112570356474,RFC,PJM,PA,40.162633,-74.768164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54748,Port Neches Plant,G1,1994.0,38.0,32.0,30.5,27,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1994.0,12,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8421052631578947,0.8026315789473684,SERC,MISO,TX,29.97876,-93.952294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54749,Goal Line LP,CTG,1994.0,41.2,40.0,40.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9708737864077669,0.9708737864077669,WECC,CISO,CA,33.1185,-117.0995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54749,Goal Line LP,STG,1994.0,10.2,9.4,9.4,6,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9215686274509804,0.9215686274509804,WECC,CISO,CA,33.1185,-117.0995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54750,Coram Tehachapi,VW1,1992.0,6.5,6.5,6.5,1,WND,Onshore Wind Turbine,OP,WT,9.0,1992.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0663,-118.339444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54751,Genesee Power Station LP,GEN1,1995.0,39.5,35.0,35.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,1995.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8860759493670887,0.8860759493670887,RFC,MISO,MI,43.08511,-83.669386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54752,International Paper Pine Hill Mill,NO1,1968.0,40.0,40.0,40.0,10,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,1968.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,31.9698,-87.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54752,International Paper Pine Hill Mill,NO2,1982.0,37.4,34.8,35.1,10,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9304812834224598,0.9385026737967915,SERC,SOCO,AL,31.9698,-87.4806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54753,Lateral 10 Ventures,GEN1,1984.0,2.4,2.3,2.2,0.2,WAT,Conventional Hydroelectric,OP,HY,11.0,1984.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,0.9166666666666667,WECC,IPCO,ID,42.647376,-114.89031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54756,Coopersville,3-1,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54756,Coopersville,3-2,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54756,Coopersville,3-3,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54756,Coopersville,3-4,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54756,Coopersville,3-5,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54756,Coopersville,3-6,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54756,Coopersville,3-7,2006.0,1.6,1.6,1.6,0.6,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.047306,-85.956173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86425512180484 -54757,Grand Blanc Generating Station,4-1,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,7.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338889535170491 -54757,Grand Blanc Generating Station,4-2,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,7.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338889535170491 -54757,Grand Blanc Generating Station,4-3,1994.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,7.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338889535170491 -54757,Grand Blanc Generating Station,4-4,2000.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,10.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338889535170491 -54757,Grand Blanc Generating Station,4-5,2003.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,1.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338889535170491 -54757,Grand Blanc Generating Station,4-7,2012.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338888293792845 -54757,Grand Blanc Generating Station,4-8,2012.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338888293792845 -54757,Grand Blanc Generating Station,CIB,2010.0,0.6,0.6,0.6,0.6,LFG,Landfill Gas,OP,IC,8.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.908815,-83.725085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.338887176501478 -54758,Wheelabrator Lisbon,GEN1,1995.0,14.6,13.0,13.0,2,MSW,Municipal Solid Waste,OP,ST,10.0,1995.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8904109589041096,0.8904109589041096,NPCC,ISNE,CT,41.584429,-72.041629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54761,Hermiston Generating Plant,GEN1,1996.0,106.1,80.0,83.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7540056550424128,0.7822808671065034,WECC,PACW,OR,45.8042,-119.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54761,Hermiston Generating Plant,GEN2,1996.0,204.5,152.0,160.0,99,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7432762836185819,0.78239608801956,WECC,PACW,OR,45.8042,-119.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54761,Hermiston Generating Plant,GEN3,1996.0,106.1,80.0,83.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7540056550424128,0.7822808671065034,WECC,PACW,OR,45.8042,-119.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54761,Hermiston Generating Plant,GEN4,1996.0,204.5,152.0,160.0,99,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7432762836185819,0.78239608801956,WECC,PACW,OR,45.8042,-119.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54763,WestRock Demopolis Mill,2TG,1982.0,12.5,8.6,10.8,2,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,1982.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.688,0.8640000000000001,SERC,SOCO,AL,32.4541,-87.9759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54763,WestRock Demopolis Mill,4TG,2014.0,34.9,34.9,34.9,3,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,2014.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,32.4541,-87.9759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54766,Boydton Plank Road Cogen Plant Hybrid,GEN1,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN10,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN11,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN12,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN13,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN14,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN15,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN16,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN17,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN18,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN19,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN2,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN20,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN21,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN22,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN23,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN24,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN25,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN26,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN27,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN28,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN29,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN3,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN30,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN31,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN32,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN33,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN34,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN4,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN5,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN6,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN7,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN8,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54766,Boydton Plank Road Cogen Plant Hybrid,GEN9,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.193584,-77.467185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.985574446161772 -54768,Live Oak Limited,GEN1,1992.0,46.0,46.0,48.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.4837,-119.0298,LiveOakCogen,GT LM_LM5000,False,1.0,1.0,-1.0,41.4,41.4,1378.07,208.38,1.0,0.45,46.0,-255.60815167216708,12015.436884728337,-5.810867818713739,272.6062668000809,12.095126950577832,8.76845539336183,#TRUE#,#1991-03-16#,#2050-12-31#,Existing,CIPV,CA_CISO,45.0,46.0,43.2,CA,NG,Areo,#FALSE#,45,46, -54769,NYU Luthern Medical Center,GEN1,1994.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OS,IC,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6467,-74.0211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.052475487229149 -54769,NYU Luthern Medical Center,GEN2,1994.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OS,IC,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6467,-74.0211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.052475487229149 -54769,NYU Luthern Medical Center,GEN3,2006.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6467,-74.0211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.05271482987927 -54769,NYU Luthern Medical Center,GEN4,2006.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.6467,-74.0211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.05271482987927 -54772,South Glens Falls Hydroelectric,GEN1,1994.0,6.9,6.9,6.9,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.304413,-73.63993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54772,South Glens Falls Hydroelectric,GEN2,1994.0,6.9,6.9,6.9,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.304413,-73.63993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54775,University of Iowa Main Power Plant,DG7,1998.0,1.7,1.7,1.7,0.5,DFO,Petroleum Liquids,OS,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.053766375545852 -54775,University of Iowa Main Power Plant,GEN10,2014.0,2.0,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.053549334982987 -54775,University of Iowa Main Power Plant,GEN12,2022.0,5.8,5.8,5.8,1,NG,Natural Gas Steam Turbine,OP,ST,10.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54775,University of Iowa Main Power Plant,GEN13,2022.0,10.0,10.0,10.0,1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54775,University of Iowa Main Power Plant,GEN6,1974.0,15.0,15.0,15.0,1.5,NG,Natural Gas Steam Turbine,OP,ST,1.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54775,University of Iowa Main Power Plant,GEN7,2014.0,2.0,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.053549334982987 -54775,University of Iowa Main Power Plant,GEN8,2014.0,2.0,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.053549334982987 -54775,University of Iowa Main Power Plant,GEN9,2014.0,2.0,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.6572,-91.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.053549334982987 -54780,University of Illinois Abbott Power Plt,T1,1940.0,3.0,3.0,3.0,1,NG,Natural Gas Steam Turbine,OP,ST,11.0,1940.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T10,2004.0,7.8,7.8,7.8,3,NG,Natural Gas Steam Turbine,OP,ST,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T11,2004.0,12.5,12.5,12.5,3,NG,Natural Gas Steam Turbine,OP,ST,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T12,2004.0,7.0,7.0,7.0,3,NG,Natural Gas Steam Turbine,OP,ST,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T2,1940.0,3.0,3.0,3.0,1,NG,Natural Gas Steam Turbine,OP,ST,11.0,1940.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T3,1948.0,3.0,3.0,3.0,1,NG,Natural Gas Steam Turbine,OP,ST,11.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T4,1951.0,3.0,3.0,3.0,1,NG,Natural Gas Steam Turbine,OP,ST,2.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T6,1959.0,7.5,7.5,7.5,1.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T7,1962.0,7.5,7.5,7.5,1.5,NG,Natural Gas Steam Turbine,OP,ST,8.0,1962.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54780,University of Illinois Abbott Power Plt,T8,2003.0,13.0,12.5,15.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9615384615384616,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.217959394834134 -54780,University of Illinois Abbott Power Plt,T9,2003.0,13.0,12.5,15.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9615384615384616,1.0,SERC,MISO,IL,40.105169,-88.241528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.217959394834134 -54782,Seneca Energy,GE10,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE11,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE12,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE13,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE14,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE15,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE16,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE17,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GE18,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN1,1996.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,3.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN2,1996.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,3.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN3,1996.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,3.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN4,1996.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN5,1996.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1996.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN6,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1997.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN7,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,1997.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN8,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54782,Seneca Energy,GEN9,1998.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,1998.0,3,2024,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.9281,-76.8408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.947694006797109 -54785,Grays Ferry Cogeneration,GEN1,1997.0,57.6,56.6,56.6,6,NG,Natural Gas Steam Turbine,OP,ST,10.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9826388888888888,0.9826388888888888,RFC,PJM,PA,39.942219,-75.188069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54785,Grays Ferry Cogeneration,GEN2,1997.0,135.0,114.0,127.0,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8444444444444444,0.9407407407407408,RFC,PJM,PA,39.942219,-75.188069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54788,Evanston Township High School,GEN1,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,12.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.044038,-87.699556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54788,Evanston Township High School,GEN2,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,12.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.044038,-87.699556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54788,Evanston Township High School,GEN3,1992.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,12.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.044038,-87.699556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54789,Georgia-Pacific Brewton Mill,2TG,1964.0,12.5,8.2,8.7,3.4,NG,Natural Gas Steam Turbine,OP,ST,4.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6559999999999999,0.696,SERC,SOCO,AL,31.077,-87.1116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54789,Georgia-Pacific Brewton Mill,3TG,1982.0,15.9,10.8,10.9,3.6,NG,Natural Gas Steam Turbine,OP,ST,1.0,1982.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.679245283018868,0.6855345911949686,SERC,SOCO,AL,31.077,-87.1116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54789,Georgia-Pacific Brewton Mill,4TG,2017.0,75.0,47.8,52.5,13,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,2017.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6373333333333333,0.7,SERC,SOCO,AL,31.077,-87.1116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54790,CSL Behring LLC,GEN1,1993.0,4.2,3.8,5.3,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9047619047619047,1.0,RFC,PJM,IL,41.1603,-87.8542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.34205623306233 -54793,Storm Lake 1,2,1999.0,0.7,0.7,0.7,0.7,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.6878,-95.405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54793,Storm Lake 1,3,1999.0,0.7,0.7,0.7,0.7,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.6878,-95.405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54793,Storm Lake 1,EXIS,1999.0,112.5,104.3,104.3,1,WND,Onshore Wind Turbine,OP,WT,5.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9271111111111111,0.9271111111111111,MRO,MISO,IA,42.6878,-95.405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54795,Domino Sugar Baltimore,GEN1,1959.0,5.0,5.0,5.0,1,NG,Natural Gas Steam Turbine,OP,ST,6.0,1959.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,MD,39.2744,-76.5956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54795,Domino Sugar Baltimore,GEN2,1955.0,2.5,2.5,2.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,1955.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,MD,39.2744,-76.5956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54795,Domino Sugar Baltimore,GEN4,2001.0,10.0,10.0,10.0,1,NG,Natural Gas Steam Turbine,OP,ST,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,MD,39.2744,-76.5956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54800,Saint Agnes Medical Center,9911,2001.0,3.5,2.7,2.2,1.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7714285714285715,0.6285714285714286,WECC,CISO,CA,36.8347,-119.7667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.45717572865178 -54800,Saint Agnes Medical Center,9929,2001.0,3.5,2.7,2.2,1.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7714285714285715,0.6285714285714286,WECC,CISO,CA,36.8347,-119.7667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.45717572865178 -54801,Avalon Hydropower,GEN1,1997.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1997.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,36.423715,-79.952494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54801,Avalon Hydropower,GEN2,2000.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,2000.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,36.423715,-79.952494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54801,Avalon Hydropower,GEN3,2000.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,2000.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,36.423715,-79.952494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54802,Mead Coated Board,GEN1,1966.0,40.0,40.0,40.0,20,BLQ,Wood/Wood Waste Biomass,OP,ST,11.0,1966.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,32.1761,-85.0272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54802,Mead Coated Board,GEN2,1990.0,55.5,55.5,55.5,20,BLQ,Wood/Wood Waste Biomass,OP,ST,3.0,1990.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,32.1761,-85.0272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54802,Mead Coated Board,GEN3,1998.0,25.0,21.0,25.0,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.84,1.0,SERC,SOCO,AL,32.1761,-85.0272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.655519819246987 -54803,Plymouth State College Cogeneration,A,1994.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,SB,IC,4.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,43.7644,-71.6881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54803,Plymouth State College Cogeneration,B,2000.0,1.6,1.6,1.6,0.4,DFO,Petroleum Liquids,SB,IC,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,NH,43.7644,-71.6881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54805,Milford Power LP,GT-1,1993.0,128.9,123.0,125.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9542280837858805,0.9697439875872769,NPCC,ISNE,MA,42.129361,-71.511496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54805,Milford Power LP,ST-1,1993.0,120.4,81.8,98.1,30,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1993.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6794019933554817,0.8147840531561461,NPCC,ISNE,MA,42.129361,-71.511496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54808,New York University Central Plant,GT1,2010.0,5.5,5.5,5.5,3,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,40.7899,-73.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.693666683823151 -54808,New York University Central Plant,GT2,2010.0,5.5,5.5,5.5,3,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,NYIS,NY,40.7899,-73.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.497274638924242 -54808,New York University Central Plant,T1,1984.0,2.4,1.8,1.8,0.3,NG,Natural Gas Fired Combined Cycle,OA,CA,1.0,1984.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.75,0.75,NPCC,NYIS,NY,40.7899,-73.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54809,University of Washington Power Plant,DG3,1993.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.6539,-122.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.111371629542791 -54809,University of Washington Power Plant,DG4,1993.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.6539,-122.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.111371629542791 -54809,University of Washington Power Plant,DG5,1994.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.6539,-122.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.111371629542791 -54809,University of Washington Power Plant,DG6,2003.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.6539,-122.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.111371629542791 -54809,University of Washington Power Plant,DG7,2003.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.6539,-122.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.111371629542791 -54809,University of Washington Power Plant,DRUPS,2022.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,SCL,WA,47.6539,-122.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.111371629542791 -54812,Mile 28 Water Power Project,1,1994.0,0.7,0.7,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8571428571428572,WECC,IPCO,ID,42.740139,-114.161173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54812,Mile 28 Water Power Project,2,1994.0,0.7,0.7,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8571428571428572,WECC,IPCO,ID,42.740139,-114.161173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54813,Shepherd Center,1,1992.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,SB,IC,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.8111,-84.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54813,Shepherd Center,2,1992.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,SB,IC,8.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.8111,-84.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54813,Shepherd Center,3,1989.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,SB,IC,8.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.8111,-84.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54813,Shepherd Center,4,1981.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,SB,IC,5.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.8111,-84.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54816,Riverwood 100 Building,11KT,1989.0,1.1,1.1,1.1,0.2,DFO,Petroleum Liquids,OS,IC,1.0,1989.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.8775,-84.4603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54817,Johnson County,GT-1,1996.0,178.2,163.0,174.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9147025813692481,0.9764309764309765,TRE,ERCO,TX,32.3994,-97.4078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54817,Johnson County,ST-1,1996.0,104.4,104.0,104.0,100,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9961685823754789,0.9961685823754789,TRE,ERCO,TX,32.3994,-97.4078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54818,191 Peachtree Tower,GEN1,1991.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,SB,IC,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7583,-84.3869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54818,191 Peachtree Tower,GEN2,1991.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,SB,IC,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7583,-84.3869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54823,Smithfield Farmland Corp Bladen,GEN1,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN2,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN3,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN4,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN5,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN6,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN7,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN8,1993.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GEN9,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN10,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN11,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN12,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN13,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN14,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN15,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN16,1995.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN17,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN18,1995.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54823,Smithfield Farmland Corp Bladen,GN19,1998.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,2.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.74625,-78.807292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.946962200672868 -54827,Wailuku River Hydroelectric,8101,1993.0,5.2,4.9,4.8,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9423076923076923,0.923076923076923,non-conus,non-conus,HI,19.712994,-155.14857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54827,Wailuku River Hydroelectric,8102,1993.0,5.2,4.9,4.8,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9423076923076923,0.923076923076923,non-conus,non-conus,HI,19.712994,-155.14857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54829,Bristol Myers Squibb New Brunswick,GEN1,1992.0,9.5,8.8,10.5,5.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9263157894736843,1.0,RFC,PJM,NJ,40.475724,-74.446199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.078258369422631 -54829,Bristol Myers Squibb New Brunswick,GEN2,1999.0,1.0,0.6,1.0,0.2,NG,Natural Gas Steam Turbine,SB,ST,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,1.0,RFC,PJM,NJ,40.475724,-74.446199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.368421052631579 -54830,Emory Decatur Hospital,03,2004.0,1.5,1.2,1.2,0,DFO,Petroleum Liquids,SB,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,SERC,SOCO,GA,33.7919,-84.2831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.389812522108242 -54830,Emory Decatur Hospital,90,1991.0,1.2,1.2,1.2,0,DFO,Petroleum Liquids,SB,IC,5.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7919,-84.2831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.390154027562827 -54830,Emory Decatur Hospital,93,1993.0,1.2,1.2,1.2,0,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7919,-84.2831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.390154027562827 -54832,Brandywine Power Facility,1,1996.0,98.7,,,36,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,RFC,PJM,MD,38.6681,-76.8678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.908889794083128 -54832,Brandywine Power Facility,2,1996.0,98.7,,,36,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,RFC,PJM,MD,38.6681,-76.8678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.319124866893734 -54832,Brandywine Power Facility,3,1996.0,91.4,230.0,230.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,MD,38.6681,-76.8678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54834,Fort Greely Power Plant,EN-4,1959.0,1.2,1.2,1.2,0.9,DFO,Petroleum Liquids,SB,IC,1.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.973572,-145.716581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.809724705041114 -54834,Fort Greely Power Plant,EN-5,1959.0,1.2,1.2,1.2,0.9,DFO,Petroleum Liquids,SB,IC,1.0,1959.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.973572,-145.716581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.809724705041114 -54834,Fort Greely Power Plant,EN-6,2010.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.973572,-145.716581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.809885018019562 -54834,Fort Greely Power Plant,EN-7,2010.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.973572,-145.716581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.809885018019562 -54835,Evonik Industries AG,T121,1992.0,1.2,1.2,1.2,0.3,DFO,Petroleum Liquids,SB,IC,5.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.387242,-86.939136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.4 -54839,Valdosta Water Treatment Plant,GEN1,1993.0,1.7,1.7,1.7,1.7,DFO,Petroleum Liquids,SB,IC,1.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.9136,-83.2529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54839,Valdosta Water Treatment Plant,GEN2,2008.0,1.7,1.7,1.7,1.7,DFO,Petroleum Liquids,SB,IC,11.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.9136,-83.2529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54844,Gordonsville Energy LP,GOR1,1994.0,97.2,68.4,84.3,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7037037037037037,0.8672839506172839,SERC,PJM,VA,38.124688,-78.203543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54844,Gordonsville Energy LP,GOR2,1994.0,97.2,68.4,82.3,60,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7037037037037037,0.8467078189300411,SERC,PJM,VA,38.124688,-78.203543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54844,Gordonsville Energy LP,GOR3,1994.0,53.0,40.6,50.7,33,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7660377358490567,0.9566037735849057,SERC,PJM,VA,38.124688,-78.203543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54844,Gordonsville Energy LP,GOR4,1994.0,53.0,40.6,50.7,33,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1994.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7660377358490567,0.9566037735849057,SERC,PJM,VA,38.124688,-78.203543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54845,Sun Trust Plaza,EG-1,1994.0,1.2,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,SERC,SOCO,GA,33.7625,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54845,Sun Trust Plaza,EG-2,1994.0,1.2,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,SERC,SOCO,GA,33.7625,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54848,South Georgia Medical Center,GEN 7,2008.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,9.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.8625,-83.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54848,South Georgia Medical Center,GEN1A,2013.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,4.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.8625,-83.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54848,South Georgia Medical Center,GEN2A,2013.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,4.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.8625,-83.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54848,South Georgia Medical Center,GEN4,2001.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.8625,-83.2894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54850,Cox Waste to Energy,01,1995.0,4.0,3.0,2.5,0.1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1995.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.75,0.625,SERC,PJM,KY,37.3208,-85.3611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -54850,Cox Waste to Energy,02,2002.0,1.0,0.3,0.9,0.1,WDS,Wood/Wood Waste Biomass,OA,ST,10.0,2002.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.30000000000000004,0.9,SERC,PJM,KY,37.3208,-85.3611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -54851,MMSD Jones Island Wastewater,GEN1,1971.0,17.5,13.0,15.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7428571428571429,0.8571428571428572,RFC,MISO,WI,43.0214,-87.9014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.484022256570336 -54851,MMSD Jones Island Wastewater,SOL1,2013.0,4.6,4.6,4.6,0.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,WI,43.0214,-87.9014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.484022116566505 -54851,MMSD Jones Island Wastewater,SOL2,2013.0,4.6,4.6,4.6,0.7,LFG,Landfill Gas,OP,GT,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,WI,43.0214,-87.9014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.484022116566505 -54851,MMSD Jones Island Wastewater,SOL3,2013.0,4.6,4.6,4.6,0.7,LFG,Landfill Gas,OP,GT,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,WI,43.0214,-87.9014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.484022116566505 -54854,Sun Peak Generating Station,5657,1991.0,74.0,74.0,74.0,70,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,NEVP,NV,36.1375,-115.0339,SunPeak NVE 5657,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,74.0,-164.04081310605133,12543.800088109669,-0.3605885012811306,-111.95218933725148,10662.966405530504,9.36042854821137,#TRUE#,#1991-06-01#,#2026-12-31#,Existing,NEVP,SW_NVE,71.0,74.0,0.0,NV,NG,Industrial,#FALSE#,71,74, -54854,Sun Peak Generating Station,5658,1991.0,74.0,74.0,74.0,70,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,NEVP,NV,36.1375,-115.0339,SunPeak NVE 5658,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,74.0,-104.00968530090756,8284.350626514084,-0.43043164237652337,-41.74422366230066,6032.86946997754,10.510370411594803,#TRUE#,#1991-06-01#,#2026-12-31#,Existing,NEVP,SW_NVE,71.0,74.0,0.0,NV,NG,Industrial,#FALSE#,71,74, -54854,Sun Peak Generating Station,5659,1991.0,74.0,74.0,74.0,70,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,NEVP,NV,36.1375,-115.0339,SunPeak NVE 5659,GT E_7EA,False,1.0,1.0,-1.0,7.0,7.0,4132.074,15.4,1.0,0.56,74.0,-66.3202518152557,5597.748548826908,-0.4299431628879808,-4.05054660345729,3343.3815683973116,11.061127194046529,#TRUE#,#1991-06-01#,#2026-12-31#,Existing,NEVP,SW_NVE,71.0,74.0,0.0,NV,NG,Industrial,#FALSE#,71,74, -54855,Mars Snackfood US,1,1987.0,3.5,3.0,3.8,1,NG,Natural Gas Fired Combustion Turbine,OA,GT,5.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,RFC,PJM,IL,41.91708,-87.79218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54858,Southwestern Bell Telephone,E/G1,1992.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,2.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74819581428915 -54858,Southwestern Bell Telephone,E/G2,1992.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,2.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74819581428915 -54858,Southwestern Bell Telephone,E/G3,1992.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,2.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.74819581428915 -54858,Southwestern Bell Telephone,E/G4,2005.0,2.8,2.8,2.8,0.8,DFO,Petroleum Liquids,SB,IC,12.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.748270973839082 -54858,Southwestern Bell Telephone,E/G5,2008.0,2.8,2.8,2.8,0.8,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.748270973839082 -54858,Southwestern Bell Telephone,E/G6,2011.0,2.8,2.8,2.8,0.8,DFO,Petroleum Liquids,SB,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.748270973839082 -54858,Southwestern Bell Telephone,E/G7,2011.0,2.8,2.8,2.8,0.8,DFO,Petroleum Liquids,SB,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.627566,-90.193377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.748270973839082 -54860,Black Creek,GEN1,1994.0,3.7,3.7,3.7,0.1,WAT,Conventional Hydroelectric,OP,HY,2.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.549652,-121.710517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54863,Bassett Medical Center,0001,1992.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.6944,-74.9242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.219922834093301 -54863,Bassett Medical Center,0002,1992.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.6944,-74.9242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.219922834093301 -54863,Bassett Medical Center,0003,1992.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.6944,-74.9242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.219922834093301 -54863,Bassett Medical Center,0004,2004.0,1.6,1.6,1.6,0.2,DFO,Petroleum Liquids,SB,IC,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.6944,-74.9242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.218130808346483 -54863,Bassett Medical Center,0005,2006.0,1.6,1.6,1.6,0.2,DFO,Petroleum Liquids,SB,IC,5.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.6944,-74.9242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.218130808346483 -54865,Phoenix Hydro Project,1-02,1991.0,1.6,1.2,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,NYIS,NY,43.227058,-76.302137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54865,Phoenix Hydro Project,2-01,1991.0,1.6,1.2,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1991.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,0.75,NPCC,NYIS,NY,43.227058,-76.302137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54867,Neenah Paper Munising Mill,M387,1930.0,6.2,5.8,5.8,1,BIT,Conventional Steam Coal,SB,ST,1.0,1930.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9354838709677419,0.9354838709677419,RFC,MISO,MI,46.4094,-86.6443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54877,Atlanta Gift Mart LP,BUG,1991.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,SB,IC,6.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7611,-84.3892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54878,Dunn Paper,01,1959.0,0.4,0.4,0.4,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.336358,-75.50274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54878,Dunn Paper,02,1959.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.336358,-75.50274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54878,Dunn Paper,03,1959.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1959.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,44.336358,-75.50274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54885,Kimberly Mill,1H,1926.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1926.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.2769,-88.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54885,Kimberly Mill,2H,1927.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.2769,-88.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54885,Kimberly Mill,3H,1927.0,0.7,0.7,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,44.2769,-88.3344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54886,Presence Saint Mary of Nazareth Hospital,GEN1,1993.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9031,-87.6831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.235639283508338 -54886,Presence Saint Mary of Nazareth Hospital,GEN3,1993.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9031,-87.6831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.235639283508338 -54886,Presence Saint Mary of Nazareth Hospital,GEN4,1993.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9031,-87.6831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.234696678561626 -54886,Presence Saint Mary of Nazareth Hospital,GEN5,1993.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,SB,IC,8.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9031,-87.6831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.234696678561626 -54886,Presence Saint Mary of Nazareth Hospital,GEN6,2006.0,0.8,0.8,0.8,0.3,DFO,Petroleum Liquids,SB,IC,12.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.9031,-87.6831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.235639283508338 -54887,DSM Pharmaceuticals,GEN1,1993.0,4.0,3.5,4.0,0.5,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.875,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.021084337349398 -54887,DSM Pharmaceuticals,GEN2,1994.0,0.3,0.3,0.3,0.3,DFO,Petroleum Liquids,SB,IC,10.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.03655846202332 -54887,DSM Pharmaceuticals,GEN3,1994.0,1.1,1.1,1.1,1,DFO,Petroleum Liquids,SB,IC,7.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.036012032660077 -54887,DSM Pharmaceuticals,GEN4,1987.0,1.2,1.2,1.2,1,DFO,Petroleum Liquids,SB,IC,8.0,1987.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.036637251812165 -54887,DSM Pharmaceuticals,GEN5,1999.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,7.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.036305190507704 -54887,DSM Pharmaceuticals,GEN6,2003.0,1.2,1.2,1.2,1,DFO,Petroleum Liquids,SB,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.036637251812165 -54887,DSM Pharmaceuticals,GEN7,2015.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.033081285444235 -54887,DSM Pharmaceuticals,GEN8,2015.0,0.3,0.3,0.3,0.3,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.665961,-77.35744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.03655846202332 -54890,Peoples Generating Station,GEN1,1995.0,3.2,2.2,2.2,2.2,LFG,Landfill Gas,OP,IC,9.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6875,0.6875,RFC,MISO,MI,43.27975,-83.865066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.472907203114861 -54894,Narrows (NC),YN1,1917.0,24.7,30.0,30.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.4189,-80.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54894,Narrows (NC),YN2,1917.0,24.7,30.0,30.0,1,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.4189,-80.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54894,Narrows (NC),YN3,1917.0,29.0,30.0,30.0,29,WAT,Conventional Hydroelectric,OP,HY,7.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.4189,-80.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54894,Narrows (NC),YN4,1924.0,30.4,29.0,29.0,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9539473684210527,0.9539473684210527,SERC,YAD,NC,35.4189,-80.0917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54895,Falls Hydro,YF1,1922.0,9.0,9.0,9.0,5,WAT,Conventional Hydroelectric,OP,HY,3.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.3944,-80.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54895,Falls Hydro,YF2,1919.0,11.2,10.0,10.5,5,WAT,Conventional Hydroelectric,OP,HY,9.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8928571428571429,0.9375000000000001,SERC,YAD,NC,35.3944,-80.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54895,Falls Hydro,YF3,1919.0,11.2,11.0,11.0,5,WAT,Conventional Hydroelectric,OP,HY,9.0,1919.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9821428571428572,0.9821428571428572,SERC,YAD,NC,35.3944,-80.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54896,High Rock Hydro,HR1,1927.0,11.0,13.0,13.0,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.6008,-80.2339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54896,High Rock Hydro,HR2,1927.0,11.0,13.0,12.1,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.6008,-80.2339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54896,High Rock Hydro,HR3,1927.0,11.0,13.0,12.1,5,WAT,Conventional Hydroelectric,OP,HY,11.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,YAD,NC,35.6008,-80.2339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54897,Tuckertown Hydro,TT1,1962.0,14.0,13.0,13.0,5,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,SERC,YAD,NC,35.4856,-80.1758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54897,Tuckertown Hydro,TT2,1962.0,14.0,13.0,13.0,5,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,SERC,YAD,NC,35.4856,-80.1758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54897,Tuckertown Hydro,TT3,1962.0,14.0,13.0,13.0,5,WAT,Conventional Hydroelectric,OP,HY,4.0,1962.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9285714285714286,0.9285714285714286,SERC,YAD,NC,35.4856,-80.1758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54898,Santeetlah,1,1928.0,22.5,20.0,20.0,12,WAT,Conventional Hydroelectric,OP,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8888888888888888,0.8888888888888888,SERC,TVA,NC,35.4475,-83.863889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54898,Santeetlah,2,1928.0,22.5,20.0,20.0,12,WAT,Conventional Hydroelectric,OP,HY,6.0,1928.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8888888888888888,0.8888888888888888,SERC,TVA,NC,35.4475,-83.863889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54899,Cheoah,1A,2012.0,27.5,28.0,28.0,14,WAT,Conventional Hydroelectric,OP,HY,9.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4478,-83.9383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54899,Cheoah,2A,2012.0,27.5,28.0,28.0,14,WAT,Conventional Hydroelectric,OP,HY,8.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4478,-83.9383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54899,Cheoah,3A,2013.0,27.5,28.0,28.0,14,WAT,Conventional Hydroelectric,OP,HY,7.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4478,-83.9383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54899,Cheoah,4A,2012.0,27.5,28.0,28.0,14,WAT,Conventional Hydroelectric,OP,HY,11.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4478,-83.9383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54899,Cheoah,5,1949.0,30.0,31.0,31.0,15,WAT,Conventional Hydroelectric,OP,HY,9.0,1949.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,NC,35.4478,-83.9383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54900,Calderwood,1,1930.0,52.2,52.0,52.0,35,WAT,Conventional Hydroelectric,OP,HY,4.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9961685823754789,0.9961685823754789,SERC,TVA,TN,35.4923,-83.9806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54900,Calderwood,2,1930.0,52.2,52.0,52.0,35,WAT,Conventional Hydroelectric,OP,HY,4.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9961685823754789,0.9961685823754789,SERC,TVA,TN,35.4923,-83.9806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54900,Calderwood,3,1938.0,52.2,52.0,52.0,35,WAT,Conventional Hydroelectric,OP,HY,6.0,1938.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9961685823754789,0.9961685823754789,SERC,TVA,TN,35.4923,-83.9806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54901,Chilhowee,1,1957.0,16.6,17.0,17.0,8,WAT,Conventional Hydroelectric,OP,HY,8.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.5453,-84.0503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54901,Chilhowee,2,1957.0,16.6,17.0,17.0,8,WAT,Conventional Hydroelectric,OP,HY,10.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.5453,-84.0503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54901,Chilhowee,3,1957.0,16.6,17.0,17.0,8,WAT,Conventional Hydroelectric,OP,HY,9.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,TVA,TN,35.5453,-84.0503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54903,Adrian Energy Associates LLC,UNT1,1994.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,12.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.890968,-83.99286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.610802469135802 -54903,Adrian Energy Associates LLC,UNT2,1994.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,12.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.890968,-83.99286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.610802469135802 -54903,Adrian Energy Associates LLC,UNT3,1994.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,12.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.890968,-83.99286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.610802469135802 -54906,Georgia Pacific Center,01,1982.0,0.7,0.7,0.7,0.3,DFO,Petroleum Liquids,SB,IC,4.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.757513,-84.386871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54906,Georgia Pacific Center,02,1982.0,0.7,0.7,0.7,0.3,DFO,Petroleum Liquids,SB,IC,4.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.757513,-84.386871,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54907,Mass Inst Tech Cntrl Utilities/Cogen Plt,GT200,2021.0,21.7,17.7,20.7,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.815668202764977,0.9539170506912442,NPCC,ISNE,MA,42.360986,-71.093876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.015391733203598 -54907,Mass Inst Tech Cntrl Utilities/Cogen Plt,GT300,2021.0,21.7,17.7,20.7,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.815668202764977,0.9539170506912442,NPCC,ISNE,MA,42.360986,-71.093876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.015391733203598 -54908,Enderlin,GEN1,1983.0,5.1,5.1,5.1,0.3,AB,Other Waste Biomass,SB,ST,8.0,1983.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,ND,46.6144,-97.5765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54908,Enderlin,GEN2,1983.0,4.7,4.7,4.7,0.3,AB,Other Waste Biomass,SB,ST,8.0,1983.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,ND,46.6144,-97.5765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54909,Tehachapi Wind Resource II,EXI2,2002.0,8.3,8.3,8.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.1061,-118.3114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54909,Tehachapi Wind Resource II,EXIS,1997.0,13.6,13.6,13.6,0,WND,Onshore Wind Turbine,OP,WT,1.0,1997.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.1061,-118.3114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54910,Brent Run Generating Station,7-1,1998.0,1.6,1.6,1.6,0.6,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.17642,-83.847974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.889684438875726 -54910,Brent Run Generating Station,7-2,1998.0,1.6,1.6,1.6,0.6,LFG,Landfill Gas,OP,IC,1.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.17642,-83.847974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.889684438875726 -54910,Brent Run Generating Station,7-3,2010.0,0.6,0.6,0.6,0.6,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.17642,-83.847974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.889684024478882 -54910,Brent Run Generating Station,7-4,2012.0,1.6,1.6,1.6,0.6,LFG,Landfill Gas,OP,IC,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.17642,-83.847974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.889684438875726 -54910,Brent Run Generating Station,7-5,2012.0,1.6,1.6,1.6,0.6,LFG,Landfill Gas,OP,IC,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.17642,-83.847974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.889684438875726 -54912,Martinez Refining,GTG1,1995.0,40.0,40.0,42.0,4,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,38.0169,-122.1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.692925676060348 -54912,Martinez Refining,GTG2,1996.0,40.0,40.0,42.0,4,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,38.0169,-122.1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.817208109007984 -54912,Martinez Refining,STG1,1995.0,20.0,20.0,20.0,4,OG,Other Gases,OP,CA,12.0,1995.0, , ,,,,,other,gas,Other Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,38.0169,-122.1117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54914,Brooklyn Navy Yard Cogeneration,01,1996.0,121.0,90.0,110.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.743801652892562,0.9090909090909091,NPCC,NYIS,NY,40.699357,-73.976392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54914,Brooklyn Navy Yard Cogeneration,02,1996.0,121.0,90.0,110.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.743801652892562,0.9090909090909091,NPCC,NYIS,NY,40.699357,-73.976392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54914,Brooklyn Navy Yard Cogeneration,03,1996.0,40.0,35.0,38.0,35,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.875,0.95,NPCC,NYIS,NY,40.699357,-73.976392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54914,Brooklyn Navy Yard Cogeneration,04,1996.0,40.0,35.0,38.0,35,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.875,0.95,NPCC,NYIS,NY,40.699357,-73.976392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54915,Michigan Power LP,G001,1995.0,58.0,58.0,58.0,20,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,MI,43.9375,-86.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54915,Michigan Power LP,G101,1995.0,80.1,70.0,98.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8739076154806492,1.0,RFC,MISO,MI,43.9375,-86.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54918,Ergon Refining Vicksburg,TMO1,1995.0,4.8,4.5,4.7,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,0.9791666666666667,SERC,MISO,MS,32.388271,-90.908344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.76575833354817 -54925,Twin Bridges LFGTE,I-1,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,I-2,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,I-3,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,I-4,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,II-1,2002.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,II-2,2002.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,II-3,2002.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,II-4,2002.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,7.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,III-1,2009.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,III-2,2009.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,III-3,2009.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,III-4,2009.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499955133442587 -54925,Twin Bridges LFGTE,IV-1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499956591946939 -54925,Twin Bridges LFGTE,IV-2,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.744983,-86.494658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499956591946939 -54926,Prairie View I & II LFGTE,I-1,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,I-2,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,I-3,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,I-4,1994.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,1994.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,II-1,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,II-2,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,II-3,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54926,Prairie View I & II LFGTE,II-4,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.4936,-86.1658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.5000910960152 -54927,Grand Isle Gas Plant / Treating Station,1,1965.0,3.0,2.9,3.0,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,1.0,SERC,MISO,LA,29.252062,-89.9721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54927,Grand Isle Gas Plant / Treating Station,2,1965.0,3.0,2.9,3.0,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,1.0,SERC,MISO,LA,29.252062,-89.9721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54927,Grand Isle Gas Plant / Treating Station,3,1965.0,3.0,2.9,3.0,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1965.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,1.0,SERC,MISO,LA,29.252062,-89.9721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54929,Alliant SBD 9403 Aegon DC,6111,1995.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.9167,-91.6542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.251200960768612 -54929,Alliant SBD 9403 Aegon DC,6112,2003.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.9167,-91.6542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.252789195537286 -54929,Alliant SBD 9403 Aegon DC,6113,2007.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.9167,-91.6542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.252789195537286 -54931,Ridgetop,WGN1,1994.0,46.8,46.9,46.9,0,WND,Onshore Wind Turbine,OP,WT,4.0,1994.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.074,-118.3153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54933,Mondelez Global LLC,GEN1,1995.0,4.7,5.0,3.0,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.6382978723404256,RFC,PJM,IL,42.3156,-89.0356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.13645303744387 -54936,Richard J Donovan Correctional Facility,03,1987.0,2.6,2.2,2.6,1,NG,Natural Gas Fired Combustion Turbine,OS,GT,1.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8461538461538463,1.0,WECC,CISO,CA,32.583571,-116.930907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,1118,1994.0,1.3,1.2,1.3,0.6,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,1119,1994.0,1.3,1.2,1.3,0.6,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,1120,1994.0,1.3,1.2,1.3,0.6,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,1121,1994.0,1.3,1.2,1.3,0.6,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.923076923076923,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,1122,2021.0,1.9,2.0,2.0,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,1123,2021.0,1.9,2.0,2.0,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,8187,1999.0,1.9,1.9,1.9,1.2,NG,Natural Gas Internal Combustion Engine,OS,IC,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54937,Wellesley College Central Utility Plant,SB1,1985.0,3.0,4.0,4.0,1.5,DFO,Petroleum Liquids,SB,IC,6.0,1985.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.293927,-71.308111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54950,Univ of Oregon Central Power Station,CTG1,2012.0,7.5,7.5,7.5,6.5,NG,Natural Gas Fired Combined Cycle,SB,CT,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,BPAT,OR,44.048333,-123.073889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.382520387751963 -54950,Univ of Oregon Central Power Station,DG1,2009.0,2.2,2.2,2.2,1.6,DFO,Petroleum Liquids,SB,IC,9.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.048333,-123.073889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58887120191719 -54950,Univ of Oregon Central Power Station,DG2,2009.0,2.2,2.2,2.2,1.6,DFO,Petroleum Liquids,SB,IC,9.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.048333,-123.073889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58887120191719 -54950,Univ of Oregon Central Power Station,DG3,2009.0,2.2,2.2,2.2,1.6,DFO,Petroleum Liquids,SB,IC,9.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,44.048333,-123.073889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.58887120191719 -54950,Univ of Oregon Central Power Station,STG1,2012.0,3.5,1.5,3.0,0.5,NG,Natural Gas Fired Combined Cycle,SB,CA,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.4285714285714286,0.8571428571428572,WECC,BPAT,OR,44.048333,-123.073889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54951,Monterey One Water,EG1,1988.0,0.6,0.6,0.6,0.4,OBG,Other Waste Biomass,OP,IC,8.0,1988.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.7056,-121.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.518276727397732 -54951,Monterey One Water,EG2,1988.0,0.6,0.6,0.6,0.4,OBG,Other Waste Biomass,OP,IC,8.0,1988.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.7056,-121.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.518276727397732 -54951,Monterey One Water,EG3,1988.0,0.6,0.6,0.6,0.4,OBG,Other Waste Biomass,OP,IC,8.0,1988.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.7056,-121.7714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.518276727397732 -54953,Hudson Falls Hydroelectric Project,GEN1,1995.0,22.0,22.0,22.0,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2958,-73.5956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54953,Hudson Falls Hydroelectric Project,GEN2,1995.0,22.0,22.0,22.0,0.1,WAT,Conventional Hydroelectric,OP,HY,11.0,1995.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.2958,-73.5956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54956,Deercroft I & II LFGTE,I-1,1999.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,I-2,1999.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,I-3,1999.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,I-4,1999.0,0.8,0.8,0.8,0.4,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,II-1,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,II-2,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,II-3,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54956,Deercroft I & II LFGTE,II-4,2007.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.6514,-86.9036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500090084679599 -54965,Cargill Salt,ACTG,1968.0,2.0,2.0,2.0,0.9,NG,Natural Gas Steam Turbine,OS,ST,1.0,1968.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.8183,-82.4856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54965,Cargill Salt,EACTG,2017.0,2.2,2.2,2.2,0.5,NG,Natural Gas Steam Turbine,OS,ST,8.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.8183,-82.4856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54968,Alliant SBD 9502 Eaton,0385,1995.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.83815,-93.60325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54968,Alliant SBD 9502 Eaton,0386,1995.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.83815,-93.60325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54968,Alliant SBD 9502 Eaton,5824,2000.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.83815,-93.60325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54969,Dixon Hydroelectric Dam,1,1925.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.845306,-89.481286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54969,Dixon Hydroelectric Dam,2,1925.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.845306,-89.481286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54969,Dixon Hydroelectric Dam,3,1925.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.845306,-89.481286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54969,Dixon Hydroelectric Dam,4,1925.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.845306,-89.481286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54969,Dixon Hydroelectric Dam,5,1925.0,0.6,0.6,0.6,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IL,41.845306,-89.481286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54974,Sauder Power Plant,UNT1,1993.0,3.6,3.6,3.6,0.5,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,1993.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.515211,-84.293549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.194731738849384 -54974,Sauder Power Plant,UNT2,1993.0,3.6,3.6,3.6,0.5,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,1993.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.515211,-84.293549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -54975,New Mexico State University,01,1996.0,4.7,4.5,4.5,3.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106382,0.9574468085106382,WECC,EPE,NM,32.164818,-106.451281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.270100392841554 -54979,Big Spring Wind Power Facility,WIND,1998.0,34.3,34.3,34.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,1998.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.2075,-101.388333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54980,Ocean County Landfill,UNT1,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028999019986959 -54980,Ocean County Landfill,UNT10,2006.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028997811150342 -54980,Ocean County Landfill,UNT11,2006.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028997811150342 -54980,Ocean County Landfill,UNT12,2006.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028997811150342 -54980,Ocean County Landfill,UNT2,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028999019986959 -54980,Ocean County Landfill,UNT3,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028999019986959 -54980,Ocean County Landfill,UNT4,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028999019986959 -54980,Ocean County Landfill,UNT5,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028999019986959 -54980,Ocean County Landfill,UNT6,1997.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,2.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028999019986959 -54980,Ocean County Landfill,UNT7,2006.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028997811150342 -54980,Ocean County Landfill,UNT8,2006.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028997811150342 -54980,Ocean County Landfill,UNT9,2006.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,NJ,40.024937,-74.250137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.028997811150342 -54984,Salem Energy Systems LLC,UNT2,2017.0,4.5,3.3,3.6,1.1,LFG,Landfill Gas,OP,GT,11.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7333333333333333,0.8,SERC,DUK,NC,36.191241,-80.183458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.843287773825125 -54985,Crestwood Dothan,GEN1,1995.0,1.0,1.2,1.2,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116500311915159 -54985,Crestwood Dothan,GEN2,1995.0,1.0,1.2,1.3,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116500311915159 -54985,Crestwood Dothan,GEN3,2002.0,2.0,1.5,1.7,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.85,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116646429088641 -54985,Crestwood Dothan,GEN5,1996.0,1.0,1.2,1.3,0.5,DFO,Petroleum Liquids,OP,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116500311915159 -54985,Crestwood Dothan,GEN7,1997.0,1.0,1.2,1.3,0.5,DFO,Petroleum Liquids,OP,IC,10.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116500311915159 -54985,Crestwood Dothan,GEN8,1997.0,0.6,0.7,0.8,0.2,DFO,Petroleum Liquids,SB,IC,10.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116709988860007 -54985,Crestwood Dothan,GEN9,2002.0,2.0,2.0,2.3,1.5,DFO,Petroleum Liquids,OP,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,AL,31.262356,-85.402737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.116646429088641 -54989,Pine Tree Acres,GEN1,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN2,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN3,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN4,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN5,1998.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN6,2003.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN7,2003.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN8,2010.0,1.6,1.6,1.6,0.3,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54989,Pine Tree Acres,GEN9,2010.0,1.6,1.6,1.6,0.3,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.764456,-82.747087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.889588377723971 -54995,Indiana Harbor E 5 AC Station,17TG,1996.0,90.0,90.0,90.0,9,BFG,Other Gases,OP,ST,5.0,1996.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,41.6844,-87.4214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54996,Salton Sea Power Gen Co - Unit 4,4100,1996.0,47.5,44.0,44.0,2,GEO,Geothermal,OP,ST,5.0,1996.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9263157894736842,0.9263157894736842,WECC,IID,CA,33.157,-115.6386,Salton Sea 4,GEO,True,6.0,16.0,-1.0,1.79,1.79,0.0,0.0,1.0,3.098312,42.0,-1.7614287625212464,246.60000581132132,-5.211662529988135e-06,-1.761114403237606,246.59546018942186,6.679001342244092,#TRUE#,#1996-02-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,42.0,44.0,CA,Geo,Double flash,#FALSE#,21,42, -54998,Wheelabrator Portsmouth,1410,1987.0,20.0,15.5,15.3,2,MSW,Municipal Solid Waste,OP,ST,10.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.775,0.765,SERC,PJM,VA,36.8083,-76.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54998,Wheelabrator Portsmouth,1420,1987.0,20.0,15.5,15.3,2,MSW,Municipal Solid Waste,OP,ST,3.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.775,0.765,SERC,PJM,VA,36.8083,-76.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -54998,Wheelabrator Portsmouth,1430,1987.0,20.0,15.5,15.3,2,MSW,Municipal Solid Waste,OP,ST,2.0,1987.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.775,0.765,SERC,PJM,VA,36.8083,-76.3036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55002,Murphy-Brown LLC,01,1995.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,SB,IC,7.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.9944,-78.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55002,Murphy-Brown LLC,02,1995.0,1.2,1.2,1.2,0.4,DFO,Petroleum Liquids,SB,IC,7.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.9944,-78.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55004,Thornwood High School,1,1996.0,0.7,0.7,0.5,0.4,NG,Natural Gas Internal Combustion Engine,OA,IC,9.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.7142857142857144,RFC,PJM,IL,41.5839,-87.6047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55004,Thornwood High School,2,1996.0,0.7,0.7,0.5,0.4,NG,Natural Gas Internal Combustion Engine,OA,IC,9.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.7142857142857144,RFC,PJM,IL,41.5839,-87.6047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55005,Thornridge High School,1,1996.0,0.5,0.5,0.4,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.8,RFC,PJM,IL,41.6225,-87.5978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55005,Thornridge High School,2,1996.0,0.5,0.5,0.4,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.8,RFC,PJM,IL,41.6225,-87.5978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55006,Nashua Plant,UNT2,1996.0,0.8,0.7,0.7,0.6,LFG,Landfill Gas,OP,IC,4.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,NH,42.73227,-71.522418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.179065591895029 -55006,Nashua Plant,UNT3,2016.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OP,IC,3.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,NH,42.73227,-71.522418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.179067136416434 -55009,Montgomery Creek Hydro,GEN1,1987.0,2.6,2.6,2.6,0.1,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,40.846806,-121.956446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55010,LSP-Cottage Grove LP,CTG1,1997.0,177.3,154.0,168.0,60,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.86858432036097,0.9475465313028765,MRO,MISO,MN,44.7956,-92.9119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55010,LSP-Cottage Grove LP,STG1,1997.0,106.2,97.0,98.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9133709981167608,0.9227871939736346,MRO,MISO,MN,44.7956,-92.9119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55011,LSP-Whitewater LP,CTG1,1997.0,177.3,162.0,175.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9137055837563451,0.9870276367738297,RFC,MISO,WI,42.855463,-88.72992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55011,LSP-Whitewater LP,STG1,1997.0,106.2,99.0,97.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9322033898305084,0.9133709981167608,RFC,MISO,WI,42.855463,-88.72992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55014,Greene Valley Gas Recovery,GEN1,1996.0,3.3,2.9,3.3,1,LFG,Landfill Gas,OP,GT,5.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8787878787878788,1.0,RFC,PJM,IL,41.73379,-88.084908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.07332851326154 -55014,Greene Valley Gas Recovery,GEN2,1996.0,3.3,2.9,3.3,1,LFG,Landfill Gas,OP,GT,5.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8787878787878788,1.0,RFC,PJM,IL,41.73379,-88.084908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.07332851326154 -55015,Sweeny Cogen Facility,GEN1,1997.0,143.0,109.0,126.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7622377622377623,0.8811188811188811,TRE,ERCO,TX,29.0728,-95.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55015,Sweeny Cogen Facility,GEN2,1997.0,143.0,109.0,126.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7622377622377623,0.8811188811188811,TRE,ERCO,TX,29.0728,-95.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55015,Sweeny Cogen Facility,GEN3,1997.0,143.0,109.0,126.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7622377622377623,0.8811188811188811,TRE,ERCO,TX,29.0728,-95.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55015,Sweeny Cogen Facility,GEN4,2000.0,143.0,109.0,126.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7622377622377623,0.8811188811188811,TRE,ERCO,TX,29.0728,-95.745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55026,Dighton Power Plant,UNT1,1999.0,200.0,164.9,187.7,108,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8245,0.9384999999999999,NPCC,ISNE,MA,41.8312,-71.1239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55027,Papillion Creek Wastewater,951,1987.0,0.5,0.5,0.5,0.3,OBG,Other Waste Biomass,OP,IC,5.0,1987.0,8,2025,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.0772,-95.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.624203821656051 -55027,Papillion Creek Wastewater,952,1987.0,0.5,0.5,0.5,0.3,OBG,Other Waste Biomass,OP,IC,5.0,1987.0,8,2025,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.0772,-95.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.624203821656051 -55027,Papillion Creek Wastewater,953,1987.0,0.5,0.5,0.5,0.3,OBG,Other Waste Biomass,OP,IC,5.0,1987.0,8,2025,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.0772,-95.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.624203821656051 -55029,De Pere Energy Center,CT01,1999.0,192.3,166.0,193.2,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8632345293811752,1.0,MRO,MISO,WI,44.44861,-88.07204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55031,Androscoggin Energy Center,CT01,1999.0,54.5,48.9,55.5,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0,3,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8972477064220183,1.0,NPCC,ISNE,ME,44.506315,-70.242312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.514780643851683 -55031,Androscoggin Energy Center,CT02,1999.0,54.5,40.7,55.1,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1999.0,3,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7467889908256882,1.0,NPCC,ISNE,ME,44.506315,-70.242312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.095099291793222 -55031,Androscoggin Energy Center,CT03,2000.0,54.5,40.6,54.0,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0,3,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.744954128440367,0.9908256880733946,NPCC,ISNE,ME,44.506315,-70.242312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55033,Missouri River Wastewater Treatment,6013,2001.0,1.0,1.0,1.0,0.7,OBG,Other Waste Biomass,OP,IC,7.0,2001.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.2033,-95.9292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.855032663316583 -55033,Missouri River Wastewater Treatment,6101,1985.0,1.0,1.0,1.0,0.7,OBG,Other Waste Biomass,OP,IC,4.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.2033,-95.9292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.855032663316583 -55033,Missouri River Wastewater Treatment,6102,1985.0,1.0,1.0,1.0,0.7,OBG,Other Waste Biomass,OP,IC,4.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.2033,-95.9292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.855032663316583 -55035,Davenport Water Pollution Control Plant,GEN1,1995.0,0.8,0.8,0.8,0.4,OBG,Other Waste Biomass,OP,IC,5.0,1995.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.4928,-90.6275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.536374845869297 -55035,Davenport Water Pollution Control Plant,GEN2,1995.0,0.8,0.8,0.8,0.4,OBG,Other Waste Biomass,OP,IC,5.0,1995.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.4928,-90.6275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.536374845869297 -55036,University of Tennessee Steam Plant,GEN1,1996.0,5.0,4.5,4.7,0.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,0.9400000000000001,SERC,TVA,TN,35.949209,-83.926065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.700720733328668 -55037,Opryland USA,GTO1,1995.0,4.5,3.8,3.7,0.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8444444444444444,0.8222222222222223,SERC,TVA,TN,36.211389,-86.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.453369448465885 -55039,Rio Bravo,GT1,2000.0,150.0,140.7,149.0,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.938,0.9933333333333333,WECC,PNM,NM,35.026,-106.644,Rio Bravo,GT F_7F,False,1.0,1.0,-1.0,14.2,14.2,8382.208,31.24,1.0,0.56,148.0,6.015214696754977,325.66703939771145,0.2978539031656921,-61.22031918321604,4005.3471418433896,8.992873441979345,#TRUE#,#2000-04-01#,#2050-12-31#,Existing,PNM,SW_PNM,80.0,148.0,80.0,NM,NG,Industrial,#FALSE#,80,148, -55040,Mid-Georgia Cogeneration Facility,CT1,1997.0,106.5,101.5,115.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9530516431924883,1.0,SERC,SOCO,GA,32.4856,-83.6039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55040,Mid-Georgia Cogeneration Facility,CT2,1998.0,106.5,101.5,115.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9530516431924883,1.0,SERC,SOCO,GA,32.4856,-83.6039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55040,Mid-Georgia Cogeneration Facility,ST1,1997.0,110.0,100.0,100.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9090909090909091,0.9090909090909091,SERC,SOCO,GA,32.4856,-83.6039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55041,Berkshire Power,GEN2,1999.0,289.0,229.3,246.3,150,NG,Natural Gas Fired Combined Cycle,OP,CS,9.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.7934256055363322,0.852249134948097,NPCC,ISNE,MA,42.0476,-72.6478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55042,Bridgeport Energy Project,GEN1,1998.0,170.0,180.0,185.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,ISNE,CT,41.1692,-73.1844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55042,Bridgeport Energy Project,GEN2,1998.0,170.0,180.0,185.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,ISNE,CT,41.1692,-73.1844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55042,Bridgeport Energy Project,GEN3,1999.0,180.0,178.0,185.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9888888888888889,1.0,NPCC,ISNE,CT,41.1692,-73.1844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55043,Cherokee County Cogen,GT1,1998.0,60.0,51.0,66.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.85,1.0,SERC,DUK,SC,35.0727,-81.613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55043,Cherokee County Cogen,ST1,1998.0,41.2,35.0,35.0,17,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8495145631067961,0.8495145631067961,SERC,DUK,SC,35.0727,-81.613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55044,Packaging Corp. of America Jackson Mill,STG1,1996.0,15.6,15.3,15.6,1,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,1996.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9807692307692308,1.0,SERC,SOCO,AL,31.4894,-87.8989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55047,Pasadena Cogeneration,CTG1,1998.0,175.0,165.0,175.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9428571428571428,1.0,TRE,ERCO,TX,29.72475,-95.176479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55047,Pasadena Cogeneration,CTG2,2000.0,185.0,165.0,185.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8918918918918919,1.0,TRE,ERCO,TX,29.72475,-95.176479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55047,Pasadena Cogeneration,CTG3,2000.0,185.0,165.0,185.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8918918918918919,1.0,TRE,ERCO,TX,29.72475,-95.176479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55047,Pasadena Cogeneration,STG1,1998.0,85.0,60.0,85.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7058823529411764,1.0,TRE,ERCO,TX,29.72475,-95.176479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55047,Pasadena Cogeneration,STG2,2000.0,185.0,165.0,185.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8918918918918919,1.0,TRE,ERCO,TX,29.72475,-95.176479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55048,Tiverton Power Plant,UNT1,2000.0,179.3,182.4,208.7,75,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,NPCC,ISNE,RI,41.6422,-71.1706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55048,Tiverton Power Plant,UNT2,2000.0,93.2,90.6,94.9,55,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9721030042918454,1.0,NPCC,ISNE,RI,41.6422,-71.1706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55051,Westlake Plaquemine,X773,1997.0,102.0,75.0,90.0,58,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7352941176470589,0.8823529411764706,SERC,MISO,LA,30.2586,-91.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.717659800542025 -55051,Westlake Plaquemine,X774,1997.0,102.0,75.0,90.0,58,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7352941176470589,0.8823529411764706,SERC,MISO,LA,30.2586,-91.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.717659800542025 -55051,Westlake Plaquemine,X775,1997.0,102.0,75.0,90.0,58,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7352941176470589,0.8823529411764706,SERC,MISO,LA,30.2586,-91.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.717659800542025 -55052,Jameson Gas Processing Plant,620,1981.0,0.4,0.4,0.4,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.05,-100.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.8567903963879315 -55052,Jameson Gas Processing Plant,621,1981.0,0.4,0.4,0.4,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1981.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.05,-100.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.8567903963879315 -55052,Jameson Gas Processing Plant,622,1986.0,0.5,0.5,0.5,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.05,-100.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.856791425619783 -55052,Jameson Gas Processing Plant,GN410,2017.0,0.5,0.5,0.5,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.05,-100.6917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.856791425619783 -55053,Bridgeport Gas Processing Plant,14,2013.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,15,2013.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,16,2013.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,17,2013.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,2723,2009.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,654,2000.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,655,2001.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,656,2001.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,657,2001.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,658,2001.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,666,2001.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,667,2001.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55053,Bridgeport Gas Processing Plant,671,2002.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.195763,-97.802547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.195076921066047 -55054,Livingston Generating Facility,1,1999.0,5.0,3.6,3.8,1.5,LFG,Landfill Gas,OP,GT,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.72,0.76,RFC,PJM,IL,40.9314,-88.6548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.006770153295612 -55054,Livingston Generating Facility,3,1999.0,5.0,3.6,3.8,1.5,LFG,Landfill Gas,OP,GT,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.72,0.76,RFC,PJM,IL,40.9314,-88.6548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.006770153295612 -55054,Livingston Generating Facility,GEN2,2000.0,5.0,3.6,3.8,1.5,LFG,Landfill Gas,OP,GT,1.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.72,0.76,RFC,PJM,IL,40.9314,-88.6548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.006770153295612 -55061,Tenaska Georgia Generation Facility,GTG1,2001.0,183.2,157.5,157.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8597161572052402,0.8597161572052402,SERC,SOCO,GA,33.3516,-84.9996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55061,Tenaska Georgia Generation Facility,GTG2,2001.0,183.2,157.5,157.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8597161572052402,0.8597161572052402,SERC,SOCO,GA,33.3516,-84.9996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55061,Tenaska Georgia Generation Facility,GTG3,2001.0,183.2,157.5,157.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8597161572052402,0.8597161572052402,SERC,SOCO,GA,33.3516,-84.9996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55061,Tenaska Georgia Generation Facility,GTG4,2002.0,183.2,157.5,157.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8597161572052402,0.8597161572052402,SERC,SOCO,GA,33.3516,-84.9996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55061,Tenaska Georgia Generation Facility,GTG5,2002.0,183.2,157.5,157.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8597161572052402,0.8597161572052402,SERC,SOCO,GA,33.3516,-84.9996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55061,Tenaska Georgia Generation Facility,GTG6,2002.0,183.2,157.5,157.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8597161572052402,0.8597161572052402,SERC,SOCO,GA,33.3516,-84.9996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55062,Tenaska Frontier Generation Station,GTG1,2000.0,183.2,155.0,177.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8460698689956332,0.9661572052401748,SERC,ERCO,TX,30.5924,-95.9178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55062,Tenaska Frontier Generation Station,GTG2,2000.0,183.2,155.0,177.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8460698689956332,0.9661572052401748,SERC,ERCO,TX,30.5924,-95.9178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55062,Tenaska Frontier Generation Station,GTG3,2000.0,183.2,155.0,177.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8460698689956332,0.9661572052401748,SERC,ERCO,TX,30.5924,-95.9178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55062,Tenaska Frontier Generation Station,STG1,2000.0,390.1,395.0,395.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,ERCO,TX,30.5924,-95.9178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55063,Batesville Generation Facility,CTG1,2000.0,184.5,176.0,184.5,115,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9539295392953929,1.0,SERC,TVA,MS,34.3356,-89.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55063,Batesville Generation Facility,CTG2,2000.0,184.5,176.0,184.5,115,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9539295392953929,1.0,SERC,TVA,MS,34.3356,-89.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55063,Batesville Generation Facility,CTG3,2000.0,184.5,176.0,184.5,115,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9539295392953929,1.0,SERC,TVA,MS,34.3356,-89.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55063,Batesville Generation Facility,STG1,2000.0,112.5,110.0,110.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9777777777777777,0.9777777777777777,SERC,TVA,MS,34.3356,-89.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55063,Batesville Generation Facility,STG2,2000.0,112.5,110.0,110.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9777777777777777,0.9777777777777777,SERC,TVA,MS,34.3356,-89.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55063,Batesville Generation Facility,STG3,2000.0,112.5,110.0,110.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9777777777777777,0.9777777777777777,SERC,TVA,MS,34.3356,-89.9275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55064,Black Hawk Station,UNT1,1999.0,126.9,107.5,126.9,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.847123719464145,1.0,MRO,SWPP,TX,35.6957,-101.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55064,Black Hawk Station,UNT2B,2005.0,117.0,112.7,117.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9632478632478633,1.0,MRO,SWPP,TX,35.6957,-101.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55065,Mustang Station,GEN1,1999.0,174.2,154.6,154.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8874856486796785,0.8840413318025259,MRO,SWPP,TX,32.9728,-102.7417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55065,Mustang Station,GEN2,1999.0,174.2,150.9,153.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8662456946039037,0.878300803673938,MRO,SWPP,TX,32.9728,-102.7417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55065,Mustang Station,GEN3,2000.0,172.6,157.6,157.0,115,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9130938586326767,0.9096176129779838,MRO,SWPP,TX,32.9728,-102.7417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55066,Heat Recovery Coke Facility,TG18,1998.0,94.6,88.0,88.0,10,WH,All Other,OP,ST,4.0,1998.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.930232558139535,0.930232558139535,RFC,MISO,IN,41.6789,-87.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55067,MPEA Energy Center,GEN4,2010.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,3.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.852709,-87.61851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55067,MPEA Energy Center,GEN5,2010.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,3.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.852709,-87.61851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55067,MPEA Energy Center,GEN6,2010.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,SB,IC,3.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.852709,-87.61851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55068,Maine Independence Station,GEN1,2000.0,177.8,156.7,173.5,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8813273340832395,0.9758155230596175,NPCC,ISNE,ME,44.8242,-68.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55068,Maine Independence Station,GEN2,2000.0,177.8,157.7,175.1,65,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8869516310461191,0.9848143982002249,NPCC,ISNE,ME,44.8242,-68.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55068,Maine Independence Station,GEN3,2000.0,194.6,179.6,191.4,40,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9229188078108941,0.9835560123329908,NPCC,ISNE,ME,44.8242,-68.7094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55074,Lakeview Gas Recovery,GEN1,1997.0,3.0,3.0,3.0,0.6,LFG,Landfill Gas,OP,IC,5.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,42.060172,-80.020765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.776533348229249 -55074,Lakeview Gas Recovery,GEN2,1997.0,3.0,3.0,3.0,0.6,LFG,Landfill Gas,OP,IC,6.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,42.060172,-80.020765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.776533348229249 -55075,Pine Bluff Energy Center,CT01,2001.0,180.0,145.0,180.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8055555555555556,1.0,SERC,MISO,AR,34.2181,-91.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55075,Pine Bluff Energy Center,ST01,2001.0,50.4,42.0,47.0,12,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8333333333333334,0.9325396825396826,SERC,MISO,AR,34.2181,-91.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55076,Red Hills Generating Facility,RHGF,2001.0,513.7,440.0,440.0,350,LIG,Conventional Steam Coal,OP,ST,4.0,2001.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8565310492505352,0.8565310492505352,SERC,TVA,MS,33.3761,-89.2183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55077,Desert Star Energy Center,ED01,2000.0,170.9,140.0,150.0,84,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0,4,2027,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8191925102399064,0.8777062609713282,WECC,CISO,NV,35.788889,-114.994167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55077,Desert Star Energy Center,ED02,2000.0,170.9,140.0,150.0,84,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0,4,2027,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8191925102399064,0.8777062609713282,WECC,CISO,NV,35.788889,-114.994167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55077,Desert Star Energy Center,ED03,2000.0,195.5,170.0,190.0,112,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0,4,2027,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8695652173913043,0.9718670076726342,WECC,CISO,NV,35.788889,-114.994167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55079,Millennium Power,CT01,2001.0,295.2,211.8,243.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.717479674796748,0.8231707317073171,NPCC,ISNE,MA,42.112291,-72.015113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55079,Millennium Power,ST01,2001.0,132.3,118.5,135.9,65,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8956916099773242,1.0,NPCC,ISNE,MA,42.112291,-72.015113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55081,Brownsville Peaking Power,1,1999.0,112.0,110.0,124.0,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9821428571428571,1.0,SERC,TVA,TN,35.5438,-89.198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55081,Brownsville Peaking Power,2,1999.0,112.0,110.0,124.0,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9821428571428571,1.0,SERC,TVA,TN,35.5438,-89.198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55081,Brownsville Peaking Power,3,1999.0,118.0,118.0,132.0,84,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,TVA,TN,35.5438,-89.198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55081,Brownsville Peaking Power,4,1999.0,118.0,118.0,132.0,84,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,TVA,TN,35.5438,-89.198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55084,Crockett Cogen Project,GE1,1995.0,247.4,247.4,247.4,120,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,1995.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,1.0,1.0,WECC,CISO,CA,38.0569,-122.2161,Crockett_Cogen,CC F_7FA,False,4.0,2.0,-1.0,24.0,24.0,16489.19,57.6,1.0,0.29,240.0,-44.805749457345286,12310.739597740034,-0.2239094981122882,60.204118943383065,0.6126536977996927,7.699952155831431,#TRUE#,#1995-12-20#,#2050-12-31#,Existing,CIPB,CA_CISO,230.0,240.0,229.22,CA,NG,Single shaft,#FALSE#,230,240,8.892470298665843 -55086,Gregory Power Plant,GT1A,2000.0,166.0,141.0,162.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8493975903614458,0.9759036144578314,TRE,ERCO,TX,27.88929,-97.258417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55086,Gregory Power Plant,GT1B,2000.0,166.0,140.0,162.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8433734939759037,0.9759036144578314,TRE,ERCO,TX,27.88929,-97.258417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55086,Gregory Power Plant,STG,2000.0,100.0,85.0,87.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.85,0.87,TRE,ERCO,TX,27.88929,-97.258417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55087,Zeeland Generating Station,1A,2001.0,188.7,159.4,180.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8447270800211978,0.9538950715421304,RFC,MISO,MI,42.8206,-85.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55087,Zeeland Generating Station,1B,2001.0,188.7,158.8,177.6,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.841547429782724,0.9411764705882353,RFC,MISO,MI,42.8206,-85.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55087,Zeeland Generating Station,2A,2002.0,188.7,155.5,178.2,115,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8240593534711182,0.9443561208267091,RFC,MISO,MI,42.8206,-85.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55087,Zeeland Generating Station,2B,2002.0,188.7,154.0,173.5,115,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8161102278749338,0.9194488606253313,RFC,MISO,MI,42.8206,-85.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55087,Zeeland Generating Station,2C,2002.0,213.4,215.0,215.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,MI,42.8206,-85.9975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55088,Dearborn Industrial Generation,GT 1,2001.0,157.3,163.0,200.0,130,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,MI,42.3026,-83.154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55088,Dearborn Industrial Generation,GT2,2001.0,157.3,163.0,200.0,130,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,MI,42.3026,-83.154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55088,Dearborn Industrial Generation,GTP1,1999.0,195.3,163.0,200.0,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8346134152585765,1.0,RFC,MISO,MI,42.3026,-83.154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.176459270940337 -55088,Dearborn Industrial Generation,ST1,2001.0,238.0,250.0,250.0,30,BFG,Other Gases,OP,ST,8.0,2001.0, , ,,,,,other,gas,Blast Furnace Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.3026,-83.154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55089,Taft Cogeneration Facility,CT1,2002.0,178.5,146.6,178.9,60,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8212885154061624,1.0,SERC,MISO,LA,29.9888,-90.4599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.40481634191823 -55089,Taft Cogeneration Facility,CT2,2002.0,178.5,142.9,176.2,60,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8005602240896359,0.9871148459383753,SERC,MISO,LA,29.9888,-90.4599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.806562406104522 -55089,Taft Cogeneration Facility,CT3,2002.0,178.5,150.3,187.2,60,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8420168067226892,1.0,SERC,MISO,LA,29.9888,-90.4599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.940706798716892 -55089,Taft Cogeneration Facility,ST1,2002.0,358.7,299.1,323.5,75,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8338444382492334,0.9018678561471982,SERC,MISO,LA,29.9888,-90.4599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55090,Plummer Cogen,GEN1,1982.0,6.2,5.8,5.8,1.5,WDS,Wood/Wood Waste Biomass,OS,ST,12.0,1982.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9354838709677419,0.9354838709677419,WECC,AVA,ID,47.331006,-116.890352,Plummer_Cgn,OT ST,True,8.0,8.0,-1.0,1.8,1.8,34.92643,0.62,1.0,2.027986,6.2,15.425513088995023,-20.49418133375143,-3.2002077684647713e-06,15.425540760950279,-20.494238104673276,10.418503262738895,#TRUE#,#1982-12-01#,#2050-12-31#,Existing,AVA,NW_AVA,2.79,6.2,4.5,ID,Bio,,#FALSE#,2.79,6.2,36.16944649446494 -55091,Midlothian Energy Facility,STK1,2000.0,289.0,255.0,260.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8823529411764706,0.8996539792387543,TRE,ERCO,TX,32.4302,-97.0537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.035833896360263 -55091,Midlothian Energy Facility,STK2,2000.0,289.0,270.0,285.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9342560553633218,0.986159169550173,TRE,ERCO,TX,32.4302,-97.0537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.668304699464381 -55091,Midlothian Energy Facility,STK3,2000.0,289.0,270.0,285.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9342560553633218,0.986159169550173,TRE,ERCO,TX,32.4302,-97.0537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.768201343332655 -55091,Midlothian Energy Facility,STK4,2000.0,289.0,270.0,285.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,9.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9342560553633218,0.986159169550173,TRE,ERCO,TX,32.4302,-97.0537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.953807026464809 -55091,Midlothian Energy Facility,STK5,2001.0,289.0,270.0,285.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9342560553633218,0.986159169550173,TRE,ERCO,TX,32.4302,-97.0537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.901245423024277 -55091,Midlothian Energy Facility,STK6,2001.0,289.0,270.0,285.0,110,NG,Natural Gas Fired Combined Cycle,OP,CS,9.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9342560553633218,0.986159169550173,TRE,ERCO,TX,32.4302,-97.0537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.830607155976403 -55093,MM Taunton Energy,UNT1,1997.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,9.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.923068,-71.086412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.954720279720279 -55093,MM Taunton Energy,UNT2,1997.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,9.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.923068,-71.086412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.954720279720279 -55093,MM Taunton Energy,UNT3,2011.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.923068,-71.086412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.954720279720279 -55093,MM Taunton Energy,UNT4,2011.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.923068,-71.086412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.954720279720279 -55094,MM San Diego-Miramar,UNT1,1997.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,7.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.844845,-117.162747,MM_SD_Miramar1,OT IC,True,8.0,5.0,-1.0,4.0,4.0,9.013272,0.16,1.0,2.027986,3.2,11.855147042043408,-0.00047056718329106795,-2.590670424780123e-07,11.855147919664336,-0.0004711522046699828,11.85477277618087,#TRUE#,#2003-05-21#,#2050-12-31#,Existing,CISD,CA_CISO,0.48,3.2,4.42,CA,Bio,,#FALSE#,.48,3.2,14.070059013984247 -55094,MM San Diego-Miramar,UNT2,1997.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,7.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.844845,-117.162747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.070059013984247 -55094,MM San Diego-Miramar,UNT3,1997.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,7.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.844845,-117.162747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.070059013984247 -55094,MM San Diego-Miramar,UNT4,1997.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,7.0,1997.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.844845,-117.162747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.070059013984247 -55096,Portside Energy,GT,1997.0,42.0,34.0,42.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8095238095238095,1.0,RFC,MISO,IN,41.6317,-87.1728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55096,Portside Energy,ST,1997.0,19.0,19.0,19.0,2,NG,Natural Gas Steam Turbine,OP,ST,9.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,41.6317,-87.1728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55097,Lamar Power Project,CTG1,2000.0,176.0,153.0,186.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8693181818181819,1.0,TRE,ERCO,TX,33.6308,-95.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55097,Lamar Power Project,CTG2,2000.0,176.0,145.0,178.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8238636363636364,1.0,TRE,ERCO,TX,33.6308,-95.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55097,Lamar Power Project,CTG3,2000.0,176.0,145.0,178.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8238636363636364,1.0,TRE,ERCO,TX,33.6308,-95.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55097,Lamar Power Project,CTG4,2000.0,176.0,153.0,186.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8693181818181819,1.0,TRE,ERCO,TX,33.6308,-95.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55097,Lamar Power Project,STG1,2000.0,204.3,204.0,204.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9985315712187959,0.9985315712187959,TRE,ERCO,TX,33.6308,-95.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55097,Lamar Power Project,STG2,2000.0,204.3,204.0,204.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9985315712187959,0.9985315712187959,TRE,ERCO,TX,33.6308,-95.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55100,Rumford Power LLC,UNT1,2000.0,179.4,165.0,183.9,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9197324414715718,1.0,NPCC,ISNE,ME,44.5303,-70.5219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55100,Rumford Power LLC,UNT2,2000.0,95.1,86.0,88.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9043112513144059,0.92534174553102,NPCC,ISNE,ME,44.5303,-70.5219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55101,Kalamazoo River Generating Station,0001,1999.0,77.4,72.0,76.0,55,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9302325581395348,0.9819121447028423,RFC,MISO,MI,42.281345,-85.494956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55102,Livingston Generating Station,001,1999.0,42.9,33.0,40.0,25.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7692307692307693,0.9324009324009325,RFC,MISO,MI,45.030397,-84.730795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55102,Livingston Generating Station,002,1999.0,42.4,33.0,40.0,26.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7783018867924528,0.9433962264150944,RFC,MISO,MI,45.030397,-84.730795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55102,Livingston Generating Station,003,1999.0,42.4,33.0,40.0,24.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7783018867924528,0.9433962264150944,RFC,MISO,MI,45.030397,-84.730795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55102,Livingston Generating Station,004,1999.0,42.4,33.0,40.0,28.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7783018867924528,0.9433962264150944,RFC,MISO,MI,45.030397,-84.730795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55103,Klamath Cogeneration Plant,CT1,2001.0,161.5,155.0,184.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9597523219814241,1.0,WECC,AVRN,OR,42.173889,-121.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.648402573018242 -55103,Klamath Cogeneration Plant,CT2,2001.0,161.5,155.0,184.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9597523219814241,1.0,WECC,AVRN,OR,42.173889,-121.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.678342510664683 -55103,Klamath Cogeneration Plant,ST1,2001.0,178.5,180.0,190.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,AVRN,OR,42.173889,-121.810556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55107,Rhode Island State Energy Center,CTG1,2002.0,196.0,168.0,197.5,110,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8571428571428572,1.0,NPCC,ISNE,RI,41.8017,-71.5186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55107,Rhode Island State Energy Center,CTG2,2002.0,196.0,168.0,197.5,110,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8571428571428572,1.0,NPCC,ISNE,RI,41.8017,-71.5186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55107,Rhode Island State Energy Center,STG1,2002.0,204.0,218.0,220.0,145,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,RI,41.8017,-71.5186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55109,Rocky Road Power LLC,T4,2000.0,122.4,104.9,126.8,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8570261437908497,1.0,RFC,PJM,IL,42.0931,-88.2397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.255787098320009 -55109,Rocky Road Power LLC,TG1,1999.0,125.8,101.4,116.9,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8060413354531002,0.9292527821939587,RFC,PJM,IL,42.0931,-88.2397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55109,Rocky Road Power LLC,TG2,1999.0,125.8,103.6,118.4,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8235294117647058,0.9411764705882354,RFC,PJM,IL,42.0931,-88.2397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55109,Rocky Road Power LLC,TG3,1999.0,41.5,28.7,35.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.691566265060241,0.8433734939759037,RFC,PJM,IL,42.0931,-88.2397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT1,2000.0,86.5,71.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8208092485549133,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT2,2000.0,86.5,71.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8208092485549133,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT3,2000.0,86.5,69.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7976878612716762,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT4,2000.0,86.5,70.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8092485549132948,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT5,2000.0,86.5,70.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8092485549132948,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT6,2000.0,86.5,72.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT7,2000.0,86.5,73.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439306358381503,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55110,Madison,CT8,2000.0,86.5,70.0,88.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8092485549132948,1.0,RFC,PJM,OH,39.4522,-84.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT1,2000.0,86.5,72.0,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT2,2000.0,86.5,72.0,94.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT3,2000.0,86.5,71.0,95.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8208092485549133,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT4,2000.0,86.5,73.0,97.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439306358381503,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT5,2000.0,86.5,71.0,92.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8208092485549133,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT6,2000.0,86.5,72.0,95.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT7,2000.0,86.5,72.0,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55111,Vermillion Energy Facility,CT8,2000.0,86.5,73.0,98.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439306358381503,1.0,RFC,MISO,IN,39.922328,-87.446358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55112,Sutter Energy Center,CT01,2001.0,212.0,175.0,185.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8254716981132075,0.8726415094339622,WECC,WALC,CA,39.053139,-121.695873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.1645644604348 -55112,Sutter Energy Center,CT02,2001.0,212.0,175.0,185.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8254716981132075,0.8726415094339622,WECC,WALC,CA,39.053139,-121.695873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.502099696288862 -55112,Sutter Energy Center,ST01,2001.0,212.0,180.0,185.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8490566037735849,0.8726415094339622,WECC,WALC,CA,39.053139,-121.695873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55116,Rockingham County CT Station,CT1,2000.0,195.5,165.0,179.0,130,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439897698209718,0.9156010230179028,SERC,DUK,NC,36.3297,-79.8297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.50742306623308 -55116,Rockingham County CT Station,CT2,2000.0,195.5,165.0,179.0,130,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439897698209718,0.9156010230179028,SERC,DUK,NC,36.3297,-79.8297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.107924469829623 -55116,Rockingham County CT Station,CT3,2000.0,195.5,165.0,179.0,130,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439897698209718,0.9156010230179028,SERC,DUK,NC,36.3297,-79.8297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.668526171516719 -55116,Rockingham County CT Station,CT4,2000.0,195.5,165.0,179.0,130,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439897698209718,0.9156010230179028,SERC,DUK,NC,36.3297,-79.8297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.803168719947747 -55116,Rockingham County CT Station,CT5,2000.0,195.5,165.0,179.0,130,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8439897698209718,0.9156010230179028,SERC,DUK,NC,36.3297,-79.8297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.830294237610829 -55117,RS Cogen,RS-4,2002.0,103.0,80.0,80.0,20,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7766990291262136,0.7766990291262136,SERC,MISO,LA,30.221,-93.2826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55117,RS Cogen,RS-5,2002.0,195.0,167.7,183.3,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599999999999999,0.9400000000000001,SERC,MISO,LA,30.221,-93.2826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.79146115099912 -55117,RS Cogen,RS-6,2002.0,195.0,167.7,183.3,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599999999999999,0.9400000000000001,SERC,MISO,LA,30.221,-93.2826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.265906839207583 -55122,NAFTA Region Olefins Complex Cogen Fac,UN1,2001.0,41.6,35.0,40.0,27,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8413461538461539,0.9615384615384615,SERC,MISO,TX,29.954321,-93.883592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.561907895671277 -55122,NAFTA Region Olefins Complex Cogen Fac,UN2,2001.0,41.6,35.0,40.0,27,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8413461538461539,0.9615384615384615,SERC,MISO,TX,29.954321,-93.883592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.561907895671277 -55123,Magic Valley Generating Station,CTG1,2002.0,267.0,221.0,232.0,135,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8277153558052435,0.8689138576779026,TRE,ERCO,TX,26.3403,-98.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55123,Magic Valley Generating Station,CTG2,2002.0,267.0,221.0,232.0,135,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8277153558052435,0.8689138576779026,TRE,ERCO,TX,26.3403,-98.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55123,Magic Valley Generating Station,STG,2002.0,267.0,240.0,253.0,170,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.898876404494382,0.947565543071161,TRE,ERCO,TX,26.3403,-98.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55124,Griffith Energy LLC,CTG1,2002.0,176.6,147.0,147.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8323895809739524,0.8323895809739524,WECC,GRIF,AZ,35.054029,-114.133272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55124,Griffith Energy LLC,CTG2,2002.0,176.6,147.0,147.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8323895809739524,0.8323895809739524,WECC,GRIF,AZ,35.054029,-114.133272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55124,Griffith Energy LLC,STG,2002.0,301.8,276.0,276.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9145129224652087,0.9145129224652087,WECC,GRIF,AZ,35.054029,-114.133272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55125,Vansycle,WGNS,1998.0,25.0,25.0,25.0,1.2,WND,Onshore Wind Turbine,OP,WT,8.0,1998.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.936157,-118.65999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55126,Milford Power Project,CA01,2004.0,289.0,270.7,295.6,148,NG,Natural Gas Fired Combined Cycle,OP,CS,2.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9366782006920414,1.0,NPCC,ISNE,CT,41.224355,-73.099728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55126,Milford Power Project,CA02,2004.0,289.0,263.6,289.7,160,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9121107266435987,1.0,NPCC,ISNE,CT,41.224355,-73.099728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55127,Manchief Electric Generating Station,UN1,2000.0,150.0,132.0,160.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.88,1.0,WECC,PSCO,CO,40.217143,-103.68504,Manchief 1,GT F_V84.3A1,False,1.0,1.0,-1.0,13.3,13.3,7850.941,29.26,1.0,0.56,160.0,4.283882579872001,510.55235672590516,0.17550092054656624,-40.088591995646446,3253.540556032126,8.4150955566939,#TRUE#,#2000-05-01#,#2038-12-31#,Existing,PSCO,RM_PSCO,95.0,160.0,139.0,CO,NG,Industrial,#FALSE#,95,160, -55127,Manchief Electric Generating Station,UN2,2000.0,150.0,132.0,160.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.88,1.0,WECC,PSCO,CO,40.217143,-103.68504,Manchief 2,GT F_V84.3A1,False,1.0,1.0,-1.0,13.3,13.3,7850.941,29.26,1.0,0.56,160.0,4.740244125297238,434.8958652958007,0.1341115587965659,-27.781810909674107,2343.75063911757,8.448268780468105,#TRUE#,#2000-05-01#,#2038-12-31#,Existing,PSCO,RM_PSCO,85.0,160.0,139.0,CO,NG,Industrial,#FALSE#,85,160, -55128,"Walton County Power, LLC",101G,2001.0,164.7,151.5,175.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9198542805100183,1.0,SERC,SOCO,GA,33.8148,-83.6954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55128,"Walton County Power, LLC",102G,2001.0,164.7,151.5,175.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9198542805100183,1.0,SERC,SOCO,GA,33.8148,-83.6954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55128,"Walton County Power, LLC",103G,2001.0,164.7,151.5,175.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9198542805100183,1.0,SERC,SOCO,GA,33.8148,-83.6954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55129,Desert Basin,CTG1,2001.0,187.0,182.0,196.0,100,NG,Natural Gas Fired Combined Cycle,OA,CT,10.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9732620320855615,1.0,WECC,SRP,AZ,32.9042,-111.7889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55129,Desert Basin,CTG2,2001.0,187.0,182.0,196.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9732620320855615,1.0,WECC,SRP,AZ,32.9042,-111.7889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55129,Desert Basin,CTG4,2022.0,49.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8767676767676768,0.9636363636363637,WECC,SRP,AZ,32.9042,-111.7889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55129,Desert Basin,CTG5,2022.0,49.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8767676767676768,0.9636363636363637,WECC,SRP,AZ,32.9042,-111.7889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55129,Desert Basin,STG,2001.0,272.1,253.0,269.0,70,NG,Natural Gas Fired Combined Cycle,OA,CA,10.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9298052186696066,0.9886071297317162,WECC,SRP,AZ,32.9042,-111.7889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,CTG1,2002.0,180.0,160.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,1.0,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,CTG2,2002.0,180.0,160.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,1.0,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,CTG3,2002.0,180.0,160.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,1.0,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,CTG4,2002.0,180.0,160.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8888888888888888,1.0,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,STG1,2002.0,134.0,125.0,125.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9328358208955224,0.9328358208955224,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,STG2,2002.0,134.0,125.0,125.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9328358208955224,0.9328358208955224,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,STG3,2002.0,134.0,125.0,125.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9328358208955224,0.9328358208955224,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55131,Kendall County Generation Facility,STG4,2002.0,134.0,125.0,125.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9328358208955224,0.9328358208955224,RFC,PJM,IL,41.4797,-88.2581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55132,Tenaska Gateway Generating Station,GTG1,2001.0,183.2,146.0,167.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7969432314410481,0.9115720524017468,TRE,ERCO,TX,32.017826,-94.619743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55132,Tenaska Gateway Generating Station,GTG2,2001.0,183.2,148.0,169.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8078602620087336,0.9224890829694323,TRE,ERCO,TX,32.017826,-94.619743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55132,Tenaska Gateway Generating Station,GTG3,2001.0,183.2,146.0,167.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7969432314410481,0.9115720524017468,TRE,ERCO,TX,32.017826,-94.619743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55132,Tenaska Gateway Generating Station,STG1,2001.0,390.0,405.0,405.0,190,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,32.017826,-94.619743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55133,Thomson Reuters Campus Bldg A-D,3086,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,4.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55133,Thomson Reuters Campus Bldg A-D,3087,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,4.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55133,Thomson Reuters Campus Bldg A-D,3088,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,4.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55133,Thomson Reuters Campus Bldg A-D,3089,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55133,Thomson Reuters Campus Bldg A-D,3090,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55133,Thomson Reuters Campus Bldg A-D,3091,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,4.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55133,Thomson Reuters Campus Bldg A-D,3093,1999.0,2.0,1.6,1.3,0,DFO,Petroleum Liquids,SB,IC,4.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.65,MRO,MISO,MN,44.8196,-93.1156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.728496667710337 -55135,Alliant Energy Neenah,CT01,2000.0,185.5,150.6,171.2,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8118598382749326,0.9229110512129379,RFC,MISO,WI,44.1936,-88.5064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.018113877509402 -55135,Alliant Energy Neenah,CT02,2000.0,185.5,153.9,175.1,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8296495956873315,0.9439353099730458,RFC,MISO,WI,44.1936,-88.5064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.636260144071302 -55137,Rio Nogales Power Project,CTG1,2002.0,189.0,158.0,193.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.835978835978836,1.0,TRE,ERCO,TX,29.593056,-97.973215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55137,Rio Nogales Power Project,CTG2,2002.0,189.0,158.0,193.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.835978835978836,1.0,TRE,ERCO,TX,29.593056,-97.973215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55137,Rio Nogales Power Project,CTG3,2002.0,189.0,158.0,193.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.835978835978836,1.0,TRE,ERCO,TX,29.593056,-97.973215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55137,Rio Nogales Power Project,STG1,2002.0,373.2,303.0,319.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8118971061093248,0.854769560557342,TRE,ERCO,TX,29.593056,-97.973215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55138,Walton Discover Power Facility,UN1,1999.0,51.5,50.0,50.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.970873786407767,0.970873786407767,SERC,SOCO,AL,32.54098,-85.038879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55138,Walton Discover Power Facility,UN2,1999.0,51.5,50.0,50.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.970873786407767,0.970873786407767,SERC,SOCO,AL,32.54098,-85.038879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55139,Wolf Hollow I LP,CTG1,2003.0,243.9,236.0,250.5,84,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.967609676096761,1.0,TRE,ERCO,TX,32.33422,-97.731686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.568399131455399 -55139,Wolf Hollow I LP,CTG2,2003.0,243.9,234.5,249.0,84,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9614596145961459,1.0,TRE,ERCO,TX,32.33422,-97.731686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.635721117142403 -55139,Wolf Hollow I LP,ST,2003.0,300.6,280.0,293.0,84,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9314703925482368,0.974717232202262,TRE,ERCO,TX,32.33422,-97.731686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55141,Hawk Road Facility,CT1,2001.0,165.0,153.0,178.7,107,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9272727272727272,1.0,SERC,SOCO,GA,33.358472,-84.991391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.266081412376591 -55141,Hawk Road Facility,CT2,2001.0,165.0,150.3,178.7,106,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.910909090909091,1.0,SERC,SOCO,GA,33.358472,-84.991391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.03217204456796 -55141,Hawk Road Facility,CT3,2001.0,165.0,153.0,189.5,107,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9272727272727272,1.0,SERC,SOCO,GA,33.358472,-84.991391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.657140760779413 -55144,Hays Energy Project,U1,2002.0,241.7,210.0,239.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8688456764584196,0.9888291270169632,TRE,ERCO,TX,29.7806,-97.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55144,Hays Energy Project,U2,2002.0,241.7,211.0,240.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8729830368225073,0.992966487381051,TRE,ERCO,TX,29.7806,-97.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55144,Hays Energy Project,U3,2002.0,252.8,228.0,260.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9018987341772151,1.0,TRE,ERCO,TX,29.7806,-97.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55144,Hays Energy Project,U4,2002.0,252.8,213.0,243.0,150,NG,Natural Gas Fired Combined Cycle,OP,CS,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8425632911392404,0.9612341772151898,TRE,ERCO,TX,29.7806,-97.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55146,Green Country Energy LLC,CTG1,2002.0,179.3,155.0,167.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644729503625208,0.9313998884551031,MRO,SWPP,OK,35.9833,-95.9346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55146,Green Country Energy LLC,CTG2,2002.0,179.3,155.0,167.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644729503625208,0.9313998884551031,MRO,SWPP,OK,35.9833,-95.9346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55146,Green Country Energy LLC,CTG3,2002.0,179.3,155.0,167.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644729503625208,0.9313998884551031,MRO,SWPP,OK,35.9833,-95.9346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55146,Green Country Energy LLC,STG1,2002.0,122.0,106.0,106.0,72,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8688524590163934,0.8688524590163934,MRO,SWPP,OK,35.9833,-95.9346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55146,Green Country Energy LLC,STG2,2002.0,122.0,106.0,106.0,72,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8688524590163934,0.8688524590163934,MRO,SWPP,OK,35.9833,-95.9346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55146,Green Country Energy LLC,STG3,2002.0,122.0,106.0,106.0,72,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8688524590163934,0.8688524590163934,MRO,SWPP,OK,35.9833,-95.9346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55148,Worthington Generation LLC,1,2000.0,60.5,41.5,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6859504132231404,0.8264462809917356,RFC,MISO,IN,39.0708,-87.0128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.061769269757106 -55148,Worthington Generation LLC,2,2000.0,60.5,41.5,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6859504132231404,0.8264462809917356,RFC,MISO,IN,39.0708,-87.0128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.301909626106282 -55148,Worthington Generation LLC,3,2000.0,60.5,41.5,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6859504132231404,0.8264462809917356,RFC,MISO,IN,39.0708,-87.0128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.063682638699364 -55148,Worthington Generation LLC,4,2000.0,60.5,41.5,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6859504132231404,0.8264462809917356,RFC,MISO,IN,39.0708,-87.0128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.632161981623716 -55149,Lake Road Generating Plant,U1,2002.0,280.0,278.0,295.0,145,NG,Natural Gas Fired Combined Cycle,OP,CS,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9928571428571429,1.0,NPCC,ISNE,CT,41.872043,-71.895799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55149,Lake Road Generating Plant,U2,2002.0,280.0,277.9,307.8,145,NG,Natural Gas Fired Combined Cycle,OP,CS,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9924999999999999,1.0,NPCC,ISNE,CT,41.872043,-71.895799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55149,Lake Road Generating Plant,U3,2002.0,280.0,272.9,295.1,145,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.974642857142857,1.0,NPCC,ISNE,CT,41.872043,-71.895799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55151,La Paloma Generating Plant,GEN1,2003.0,289.0,253.0,267.0,65,NG,Natural Gas Fired Combined Cycle,OP,CS,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8754325259515571,0.9238754325259515,WECC,CISO,CA,35.2956,-119.5919,LaPaloma1,CC F_GT24,False,6.0,2.0,-1.0,14.04,14.04,18214.93,56.16,1.0,2.1,256.8,4.853402145830063,358.13271285081186,-1.2228606882427091e-05,4.858111626689767,357.6930471071074,6.772954458285637,#TRUE#,#2003-01-10#,#2050-12-31#,Existing,CIPV,CA_CISO,140.4,256.8,264.3,CA,NG,Single shaft,#FALSE#,140,256.8, -55151,La Paloma Generating Plant,GEN2,2003.0,289.0,252.0,266.0,65,NG,Natural Gas Fired Combined Cycle,OP,CS,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8719723183391004,0.9204152249134948,WECC,CISO,CA,35.2956,-119.5919,LaPaloma2,CC F_GT24,False,6.0,2.0,-1.0,13.86,13.86,17981.41,55.44,1.0,2.1,258.4,4.866592658712333,367.5500409672234,-1.1792464273682318e-05,4.8711511535452345,367.12314634398587,6.830571861081334,#TRUE#,#2003-03-05#,#2050-12-31#,Existing,CIPV,CA_CISO,138.6,258.4,264.7,CA,NG,Single shaft,#FALSE#,140,258.4, -55151,La Paloma Generating Plant,GEN3,2003.0,289.0,252.0,266.0,62,NG,Natural Gas Fired Combined Cycle,OP,CS,3.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8719723183391004,0.9204152249134948,WECC,CISO,CA,35.2956,-119.5919,LaPaloma3,CC F_GT24,False,6.0,2.0,-1.0,13.74,13.74,17825.73,54.96,1.0,2.1,258.4,5.490712686700567,199.18803111531668,0.032837289529751734,-7.4620648108960275,1438.1864704797367,6.532700756862545,#TRUE#,#2003-01-13#,#2050-12-31#,Existing,CIPV,CA_CISO,137.4,258.4,260.65,CA,NG,Single shaft,#FALSE#,140,258.4, -55151,La Paloma Generating Plant,GEN4,2003.0,289.0,253.0,267.0,62,NG,Natural Gas Fired Combined Cycle,OP,CS,3.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8754325259515571,0.9238754325259515,WECC,CISO,CA,35.2956,-119.5919,LaPaloma4,CC F_GT24,False,6.0,2.0,-1.0,13.92,13.92,18059.25,55.68,1.0,2.1,258.4,5.043181258314233,258.91814754723,0.03210944209166876,-7.622494645090827,1470.4538975144346,6.39762820666758,#TRUE#,#2003-03-05#,#2050-12-31#,Existing,CIPV,CA_CISO,139.2,258.4,149.5,CA,NG,Single shaft,#FALSE#,140,258.4, -55152,Bank of America Plaza,GEN1,1991.0,1.5,1.3,1.3,0,DFO,Petroleum Liquids,SB,IC,11.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,SERC,SOCO,GA,33.7708,-84.3861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55152,Bank of America Plaza,GEN2,1991.0,1.5,1.3,1.3,0,DFO,Petroleum Liquids,SB,IC,11.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8666666666666667,0.8666666666666667,SERC,SOCO,GA,33.7708,-84.3861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55153,Guadalupe Generating Station,CTG1,2000.0,171.1,154.4,173.4,100,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.90239625949737,1.0,TRE,ERCO,TX,29.6244,-98.1419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55153,Guadalupe Generating Station,CTG2,2000.0,171.1,154.4,173.4,100,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.90239625949737,1.0,TRE,ERCO,TX,29.6244,-98.1419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55153,Guadalupe Generating Station,CTG3,2000.0,171.1,154.4,173.4,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.90239625949737,1.0,TRE,ERCO,TX,29.6244,-98.1419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55153,Guadalupe Generating Station,CTG4,2000.0,171.1,154.4,173.4,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.90239625949737,1.0,TRE,ERCO,TX,29.6244,-98.1419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55153,Guadalupe Generating Station,STG1,2000.0,201.9,197.0,203.0,138.5,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9757305596830114,1.0,TRE,ERCO,TX,29.6244,-98.1419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55153,Guadalupe Generating Station,STG2,2000.0,201.9,197.0,203.0,138.8,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9757305596830114,1.0,TRE,ERCO,TX,29.6244,-98.1419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55154,Lost Pines 1 Power Project,CTA,2001.0,202.5,169.0,178.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8345679012345679,0.8790123456790123,TRE,ERCO,TX,30.1478,-97.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55154,Lost Pines 1 Power Project,CTB,2001.0,202.5,169.0,178.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8345679012345679,0.8790123456790123,TRE,ERCO,TX,30.1478,-97.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55154,Lost Pines 1 Power Project,ST,2001.0,204.0,172.0,184.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8431372549019608,0.9019607843137255,TRE,ERCO,TX,30.1478,-97.2714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55155,MM Albany Energy,UNT1,1998.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,3.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.704391,-73.850866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.405252559438193 -55155,MM Albany Energy,UNT2,1998.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,3.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.704391,-73.850866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.405252559438193 -55155,MM Albany Energy,UNT3,2008.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,11.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.704391,-73.850866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.405252559438193 -55155,MM Albany Energy,UNT4,2012.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,5.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.704391,-73.850866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.405269109517064 -55155,MM Albany Energy,UNT5,2012.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,5.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.704391,-73.850866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.405269109517064 -55156,MM Prince William Energy,UNT1,1998.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,11.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.638333,-77.414722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.098808275330175 -55156,MM Prince William Energy,UNT2,1998.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OP,IC,11.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.638333,-77.414722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.098808275330175 -55156,MM Prince William Energy,UNT3,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.638333,-77.414722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.098807681541585 -55156,MM Prince William Energy,UNT4,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.638333,-77.414722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.098807681541585 -55156,MM Prince William Energy,UNT5,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.638333,-77.414722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.098807681541585 -55160,MM Tulare Energy,UNT1,1998.0,0.9,0.8,0.8,0.4,LFG,Landfill Gas,SB,IC,5.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,WECC,CISO,CA,36.388,-119.394,MM Tulare,OT ST,False,1.0,1.0,-1.0,0.48,0.48,622.7328,0.8,1.0,2.027986,1.5,-135.49434020606193,228.97701024300835,-1.3459697587907586e-05,-135.49430603692025,228.9769889338865,54.05930454599579,#TRUE#,#1998-05-08#,#2050-12-31#,Existing,CISC,CA_CISO,0.0,1.5,0.0,CA,Bio,,#FALSE#,1,1.5,13.6231689453125 -55160,MM Tulare Energy,UNT2,1998.0,0.9,0.8,0.8,0.4,LFG,Landfill Gas,SB,IC,5.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,WECC,CISO,CA,36.388,-119.394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.6231689453125 -55161,MM Lopez Energy,UNT1,1998.0,3.0,2.7,2.7,2.4,LFG,Landfill Gas,OP,IC,12.0,1998.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,34.2925,-118.389444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.821061353621333 -55164,Bluegrass Generating Station,CT1,2002.0,208.0,167.0,189.0,117,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8028846153846154,0.9086538461538461,SERC,LGEE,KY,38.3902,-85.4133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55164,Bluegrass Generating Station,CT2,2002.0,208.0,167.0,189.0,117,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8028846153846154,0.9086538461538461,SERC,LGEE,KY,38.3902,-85.4133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55164,Bluegrass Generating Station,CT3,2002.0,208.0,167.0,189.0,117,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8028846153846154,0.9086538461538461,SERC,LGEE,KY,38.3902,-85.4133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55165,Calcasieu,G101,2000.0,174.3,142.8,174.0,116,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8192771084337349,0.9982788296041307,SERC,MISO,LA,30.1608,-93.345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55165,Calcasieu,G102,2001.0,184.5,157.0,186.7,125,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8509485094850948,1.0,SERC,MISO,LA,30.1608,-93.345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55166,Broad River Energy Center,CT01,2000.0,197.0,175.5,182.7,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8908629441624365,0.9274111675126903,SERC,DUK,SC,35.0786,-81.575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55166,Broad River Energy Center,CT02,2000.0,197.0,168.2,177.2,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8538071065989847,0.899492385786802,SERC,DUK,SC,35.0786,-81.575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55166,Broad River Energy Center,CT03,2000.0,197.0,167.4,166.4,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.849746192893401,0.8446700507614213,SERC,DUK,SC,35.0786,-81.575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55166,Broad River Energy Center,CT04,2001.0,197.0,172.6,173.1,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8761421319796954,0.8786802030456853,SERC,DUK,SC,35.0786,-81.575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55166,Broad River Energy Center,CT05,2001.0,197.0,173.2,172.6,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8791878172588832,0.8761421319796954,SERC,DUK,SC,35.0786,-81.575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55168,Bastrop Energy Center,0001,2002.0,188.2,171.0,188.0,94,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9086078639744952,0.9989373007438895,TRE,ERCO,TX,30.1458,-97.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55168,Bastrop Energy Center,0002,2002.0,188.2,171.0,188.0,94,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9086078639744952,0.9989373007438895,TRE,ERCO,TX,30.1458,-97.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55168,Bastrop Energy Center,0003,2002.0,242.3,233.0,234.0,125,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9616178291374329,0.9657449442839455,TRE,ERCO,TX,30.1458,-97.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55170,Granite Ridge,CT11,2003.0,260.0,222.0,263.0,111,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8538461538461538,1.0,NPCC,ISNE,NH,42.9042,-71.4261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55170,Granite Ridge,CT12,2003.0,260.0,222.0,263.0,111,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8538461538461538,1.0,NPCC,ISNE,NH,42.9042,-71.4261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55170,Granite Ridge,STG,2003.0,270.0,234.0,271.0,85,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8666666666666667,1.0,NPCC,ISNE,NH,42.9042,-71.4261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55172,Bosque County Peaking,GT-1,2000.0,154.0,159.0,173.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8594,-97.3586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.916372778048862 -55172,Bosque County Peaking,GT-2,2000.0,154.0,159.0,173.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8594,-97.3586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.021894707748372 -55172,Bosque County Peaking,GT-3,2001.0,154.0,159.0,173.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8594,-97.3586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.043994424490956 -55172,Bosque County Peaking,ST-4,2001.0,95.0,86.0,88.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9052631578947369,0.9263157894736842,TRE,ERCO,TX,31.8594,-97.3586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55172,Bosque County Peaking,ST-5,2010.0,250.0,200.0,220.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8,0.88,TRE,ERCO,TX,31.8594,-97.3586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55173,Acadia Energy Center,CT11,2002.0,215.1,166.6,,105.2,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7745234774523477,,SERC,MISO,LA,30.428611,-92.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55173,Acadia Energy Center,CT12,2002.0,215.1,160.3,,105.2,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7452347745234775,,SERC,MISO,LA,30.428611,-92.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55173,Acadia Energy Center,CT24,2002.0,215.1,144.0,156.2,105.2,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6694560669456067,0.7261738726173872,SERC,MISO,LA,30.428611,-92.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55173,Acadia Energy Center,CT25,2002.0,215.1,142.1,154.1,105.2,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6606229660622966,0.7164109716410971,SERC,MISO,LA,30.428611,-92.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55173,Acadia Energy Center,ST13,2002.0,264.4,209.2,,72,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7912254160363086,,SERC,MISO,LA,30.428611,-92.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55173,Acadia Energy Center,ST26,2002.0,264.4,240.1,240.3,72,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9080937972768534,0.9088502269288957,SERC,MISO,LA,30.428611,-92.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55176,Eastman Cogeneration Facility,GEN1,2001.0,170.0,153.7,168.3,75,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9041176470588235,0.9900000000000001,MRO,SWPP,TX,32.4481,-94.6903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55176,Eastman Cogeneration Facility,GEN2,2001.0,170.0,153.7,168.3,65,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9041176470588235,0.9900000000000001,MRO,SWPP,TX,32.4481,-94.6903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55176,Eastman Cogeneration Facility,GEN3,2001.0,127.7,109.8,120.0,18,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8598277212216131,0.9397024275646045,MRO,SWPP,TX,32.4481,-94.6903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55177,South Point Energy Center,A,2001.0,236.0,180.0,193.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7627118644067796,0.8177966101694916,WECC,WALC,AZ,34.8678,-114.5317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.390527110929234 -55177,South Point Energy Center,B,2001.0,236.0,180.0,193.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7627118644067796,0.8177966101694916,WECC,WALC,AZ,34.8678,-114.5317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.646729359266406 -55177,South Point Energy Center,ST1,2001.0,236.0,190.0,200.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8050847457627118,0.847457627118644,WECC,WALC,AZ,34.8678,-114.5317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55178,Dogwood Energy Facility,CT-1,2001.0,192.6,200.3,202.1,120.2,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,MO,38.7931,-94.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.081602424020634 -55178,Dogwood Energy Facility,CT-2,2001.0,192.6,199.1,201.9,119.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,MO,38.7931,-94.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.916361647645434 -55178,Dogwood Energy Facility,ST-1,2002.0,270.0,257.1,272.8,80,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9522222222222223,1.0,MRO,SWPP,MO,38.7931,-94.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55179,Rathdrum Power LLC,CTG1,2001.0,179.4,150.0,172.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8361204013377926,0.9587513935340022,WECC,AVA,ID,47.7858,-116.9203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55179,Rathdrum Power LLC,STG1,2001.0,122.1,98.0,110.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8026208026208026,0.9009009009009009,WECC,AVA,ID,47.7858,-116.9203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55182,Sunrise Power LLC,STG,2003.0,264.0,245.0,270.0,50.7,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.928030303030303,1.0,WECC,CISO,CA,35.2097,-119.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55182,Sunrise Power LLC,X718,2001.0,210.6,150.0,160.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7122507122507122,0.7597340930674265,WECC,CISO,CA,35.2097,-119.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55182,Sunrise Power LLC,X719,2001.0,210.6,150.0,160.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7122507122507122,0.7597340930674265,WECC,CISO,CA,35.2097,-119.585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55183,Nelson Energy Center,CT1,2015.0,181.9,168.0,178.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9235843870258383,0.9785596481583287,RFC,PJM,IL,41.774444,-89.607222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55183,Nelson Energy Center,CT2,2015.0,179.4,168.0,178.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9364548494983277,0.9921962095875139,RFC,PJM,IL,41.774444,-89.607222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55183,Nelson Energy Center,ST1,2015.0,133.1,125.0,128.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9391435011269722,0.9616829451540195,RFC,PJM,IL,41.774444,-89.607222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55183,Nelson Energy Center,ST2,2015.0,133.1,125.0,128.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9391435011269722,0.9616829451540195,RFC,PJM,IL,41.774444,-89.607222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55184,Aera San Ardo Cogen Facility,UN-A,1989.0,3.0,2.8,3.0,2.5,NG,Natural Gas Fired Combustion Turbine,OS,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9333333333333332,1.0,WECC,CISO,CA,35.953293,-120.859952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.212727539005527 -55184,Aera San Ardo Cogen Facility,UN-B,1989.0,3.2,2.8,3.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1989.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8749999999999999,0.9375,WECC,CISO,CA,35.953293,-120.859952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.212727971676085 -55187,Channelview Cogeneration Plant,GT1,2002.0,192.1,159.0,166.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.827693909422176,0.8641332639250391,TRE,ERCO,TX,29.836952,-95.121744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55187,Channelview Cogeneration Plant,GT2,2002.0,192.1,161.0,168.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8381051535658511,0.8745445080687142,TRE,ERCO,TX,29.836952,-95.121744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55187,Channelview Cogeneration Plant,GT3,2002.0,192.1,160.0,167.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8328995314940135,0.8693388859968767,TRE,ERCO,TX,29.836952,-95.121744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55187,Channelview Cogeneration Plant,GT4,2001.0,192.1,159.0,163.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.827693909422176,0.8485163977095262,TRE,ERCO,TX,29.836952,-95.121744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55187,Channelview Cogeneration Plant,ST1,2002.0,149.9,136.0,126.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9072715143428952,0.8405603735823882,TRE,ERCO,TX,29.836952,-95.121744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55188,Cordova Energy,PT11,2001.0,210.0,165.0,205.0,147,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7857142857142857,0.9761904761904762,RFC,PJM,IL,41.712216,-90.279679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55188,Cordova Energy,PT21,2001.0,210.0,165.0,205.0,147,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7857142857142857,0.9761904761904762,RFC,PJM,IL,41.712216,-90.279679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55188,Cordova Energy,PT31,2001.0,191.2,191.2,191.2,134,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,IL,41.712216,-90.279679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55192,Osceola Generating Station (FL),CTG1,2001.0,197.2,157.0,157.0,100,NG,Natural Gas Fired Combustion Turbine,OS,GT,12.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7961460446247465,0.7961460446247465,SERC,FPC,FL,28.1289,-81.0978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55192,Osceola Generating Station (FL),CTG2,2001.0,197.2,157.0,157.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7961460446247465,0.7961460446247465,SERC,FPC,FL,28.1289,-81.0978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55192,Osceola Generating Station (FL),CTG3,2002.0,185.6,157.0,157.0,100,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8459051724137931,0.8459051724137931,SERC,FPC,FL,28.1289,-81.0978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55193,Ontelaunee Energy Center,CTG1,2002.0,250.0,184.4,201.3,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7376,0.8052,RFC,PJM,PA,40.4219,-75.9356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55193,Ontelaunee Energy Center,CTG2,2002.0,250.0,181.9,203.5,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7276,0.8140000000000001,RFC,PJM,PA,40.4219,-75.9356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55193,Ontelaunee Energy Center,STG,2002.0,228.0,186.5,217.7,95,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8179824561403508,0.9548245614035087,RFC,PJM,PA,40.4219,-75.9356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55196,Springdale 1 & 2,UNT1,1999.0,43.8,44.8,49.1,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,40.546667,-79.768333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55196,Springdale 1 & 2,UNT2,1999.0,43.8,43.7,49.2,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9977168949771691,1.0,RFC,PJM,PA,40.546667,-79.768333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55197,Caledonia,CTG1,2003.0,161.0,157.0,187.0,131.3,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9751552795031055,1.0,SERC,TVA,MS,33.6464,-88.2717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55197,Caledonia,CTG2,2003.0,161.0,157.0,187.0,131.3,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9751552795031055,1.0,SERC,TVA,MS,33.6464,-88.2717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55197,Caledonia,CTG3,2003.0,161.0,157.0,187.0,131.3,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9751552795031055,1.0,SERC,TVA,MS,33.6464,-88.2717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55197,Caledonia,STG1,2003.0,106.0,98.0,105.0,73.7,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9245283018867925,0.9905660377358491,SERC,TVA,MS,33.6464,-88.2717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55197,Caledonia,STG2,2003.0,106.0,98.0,105.0,73.7,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9245283018867925,0.9905660377358491,SERC,TVA,MS,33.6464,-88.2717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55197,Caledonia,STG3,2003.0,106.0,98.0,105.0,73.7,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9245283018867925,0.9905660377358491,SERC,TVA,MS,33.6464,-88.2717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55198,Riverside Generating LLC,GTG1,2001.0,230.0,165.0,190.0,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173913043478262,0.8260869565217391,RFC,PJM,KY,38.191661,-82.604586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55198,Riverside Generating LLC,GTG2,2001.0,230.0,165.0,190.0,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173913043478262,0.8260869565217391,RFC,PJM,KY,38.191661,-82.604586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55198,Riverside Generating LLC,GTG3,2001.0,230.0,165.0,190.0,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173913043478262,0.8260869565217391,RFC,PJM,KY,38.191661,-82.604586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55198,Riverside Generating LLC,GTG4,2002.0,230.0,165.0,190.0,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173913043478262,0.8260869565217391,RFC,PJM,KY,38.191661,-82.604586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55198,Riverside Generating LLC,GTG5,2002.0,230.0,165.0,190.0,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173913043478262,0.8260869565217391,RFC,PJM,KY,38.191661,-82.604586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT1,1999.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT2,1999.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT3,1999.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT4,1999.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT5,2001.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT6,2001.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT7,2001.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT8,2001.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55199,Elwood Energy LLC,GT9,2001.0,192.0,150.0,192.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.78125,1.0,RFC,PJM,IL,41.4388,-88.1236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55200,Arapahoe Combustion Turbine Project,UN5,2000.0,71.1,39.0,39.0,15,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.5485232067510548,0.5485232067510548,WECC,PSCO,CO,39.6692,-105.0018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55200,Arapahoe Combustion Turbine Project,UN6,2000.0,71.1,39.0,39.0,15,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.5485232067510548,0.5485232067510548,WECC,PSCO,CO,39.6692,-105.0018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55200,Arapahoe Combustion Turbine Project,UN7,2002.0,51.8,44.5,48.6,15,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8590733590733591,0.9382239382239383,WECC,PSCO,CO,39.6692,-105.0018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55201,Gibson City Energy Center LLC,1,2000.0,135.0,116.0,120.0,89,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8592592592592593,0.8888888888888888,SERC,MISO,IL,40.4705,-88.3987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55201,Gibson City Energy Center LLC,2,2000.0,135.0,116.0,120.0,89,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8592592592592593,0.8888888888888888,SERC,MISO,IL,40.4705,-88.3987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,1,2000.0,45.0,44.0,46.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9777777777777777,1.0,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,2,2000.0,45.0,44.0,46.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9777777777777777,1.0,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,3,2000.0,45.0,44.0,46.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9777777777777777,1.0,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,4,2000.0,45.0,44.0,46.0,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9777777777777777,1.0,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,5,2001.0,50.0,35.0,44.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.88,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,6,2001.0,50.0,35.0,44.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.88,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,7,2001.0,50.0,35.0,44.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.88,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55202,Pinckneyville,8,2001.0,50.0,35.0,44.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.88,SERC,MISO,IL,38.1114,-89.3467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55204,Kinmundy,1,2001.0,135.0,104.0,125.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7703703703703704,0.9259259259259259,SERC,MISO,IL,38.7619,-89.0128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55204,Kinmundy,2,2001.0,135.0,104.0,125.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7703703703703704,0.9259259259259259,SERC,MISO,IL,38.7619,-89.0128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55206,Corpus Christi Energy Center,CT1,2002.0,198.9,156.0,163.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7843137254901961,0.8195072900955254,TRE,ERCO,TX,27.8139,-97.4283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55206,Corpus Christi Energy Center,CT2,2002.0,198.9,156.0,163.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7843137254901961,0.8195072900955254,TRE,ERCO,TX,27.8139,-97.4283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55206,Corpus Christi Energy Center,ST1,2002.0,195.5,165.0,165.0,15,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8439897698209718,0.8439897698209718,TRE,ERCO,TX,27.8139,-97.4283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55207,Valmont Combustion Turbine Project,UN7,2000.0,71.1,39.9,39.9,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5611814345991561,0.5611814345991561,WECC,PSCO,CO,40.0205,-105.2009,Valmont 7,GT LM_LM6000,False,1.0,1.0,-1.0,33.3,33.3,1108.448,167.61,1.0,0.45,40.0,5.269162116193597,68.79031643434833,0.22908113632697769,-5.257611055831614,170.84761248156477,9.202270561321773,#TRUE#,#2000-06-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,8.88,40.0,40.0,CO,NG,Areo,#FALSE#,8.88,40, -55207,Valmont Combustion Turbine Project,UN8,2001.0,71.1,39.9,39.9,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5611814345991561,0.5611814345991561,WECC,PSCO,CO,40.0205,-105.2009,Valmont 8,GT LM_LM6000,False,1.0,1.0,-1.0,33.3,33.3,1108.448,167.61,1.0,0.45,40.0,5.269162116193597,68.79031643434833,0.22908113632697769,-5.257611055831614,170.84761248156477,9.202270561321773,#TRUE#,#2001-07-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,8.88,40.0,40.0,CO,NG,Areo,#FALSE#,8.88,40, -55208,Lake Benton I,EXIS,1998.0,107.2,103.5,103.5,1,WND,Onshore Wind Turbine,OP,WT,2.0,1998.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9654850746268656,0.9654850746268656,MRO,MISO,MN,44.2917,-96.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55210,Afton Generating Station,0001,2002.0,177.0,144.0,156.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8135593220338984,0.8813559322033898,WECC,PNM,NM,32.114185,-106.846483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.999993942955724 -55210,Afton Generating Station,0002,2007.0,110.0,94.6,103.4,50,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.86,0.9400000000000001,WECC,PNM,NM,32.114185,-106.846483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55211,ANP Bellingham Energy Project,U1,2002.0,289.0,270.3,300.5,150,NG,Natural Gas Fired Combined Cycle,OP,CS,11.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9352941176470588,1.0,NPCC,ISNE,MA,42.110577,-71.453468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55211,ANP Bellingham Energy Project,U2,2002.0,289.0,271.4,301.6,150,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9391003460207612,1.0,NPCC,ISNE,MA,42.110577,-71.453468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55212,ANP Blackstone Energy Project,U1,2001.0,289.0,246.6,280.7,150,NG,Natural Gas Fired Combined Cycle,OP,CS,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8532871972318339,0.971280276816609,NPCC,ISNE,MA,42.059876,-71.515811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55212,ANP Blackstone Energy Project,U2,2001.0,289.0,239.0,278.8,150,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8269896193771626,0.9647058823529412,NPCC,ISNE,MA,42.059876,-71.515811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55215,Odessa-Ector Power Plant,CTG1,2001.0,176.0,166.7,195.2,84.8,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9471590909090909,1.0,TRE,ERCO,TX,31.8403,-102.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55215,Odessa-Ector Power Plant,CTG2,2001.0,176.0,158.2,189.1,82.7,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8988636363636363,1.0,TRE,ERCO,TX,31.8403,-102.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55215,Odessa-Ector Power Plant,CTG3,2001.0,176.0,166.7,195.2,92.2,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9471590909090909,1.0,TRE,ERCO,TX,31.8403,-102.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55215,Odessa-Ector Power Plant,CTG4,2001.0,176.0,158.2,189.1,95.2,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8988636363636363,1.0,TRE,ERCO,TX,31.8403,-102.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55215,Odessa-Ector Power Plant,STG1,2001.0,224.4,206.0,217.0,53.3,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9180035650623886,0.9670231729055259,TRE,ERCO,TX,31.8403,-102.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55215,Odessa-Ector Power Plant,STG2,2001.0,224.4,206.0,217.0,55.6,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9180035650623886,0.9670231729055259,TRE,ERCO,TX,31.8403,-102.3264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55216,Morris Cogeneration LLC,STG1,2000.0,82.9,62.0,62.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7478890229191797,0.7478890229191797,RFC,PJM,IL,41.411944,-88.332778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55216,Morris Cogeneration LLC,UNT1,1998.0,45.3,44.0,44.0,22,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9713024282560707,0.9713024282560707,RFC,PJM,IL,41.411944,-88.332778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55216,Morris Cogeneration LLC,UNT2,1998.0,45.3,44.0,44.0,22,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9713024282560707,0.9713024282560707,RFC,PJM,IL,41.411944,-88.332778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55216,Morris Cogeneration LLC,UNT3,1998.0,45.3,44.0,45.0,22,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,1998.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9713024282560707,0.9933774834437087,RFC,PJM,IL,41.411944,-88.332778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55217,Los Medanos Energy Center,CTG1,2001.0,198.9,165.0,177.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8295625942684766,0.889894419306184,WECC,CISO,CA,38.030071,-121.873004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55217,Los Medanos Energy Center,CTG2,2001.0,198.9,165.0,177.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8295625942684766,0.889894419306184,WECC,CISO,CA,38.030071,-121.873004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55217,Los Medanos Energy Center,STG3,2001.0,280.5,237.0,244.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8449197860962567,0.8698752228163993,WECC,CISO,CA,38.030071,-121.873004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55218,Hinds Energy Facility,H01,2001.0,176.6,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,MS,32.378969,-90.219906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.693384242570218 -55218,Hinds Energy Facility,H02,2001.0,176.6,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,MS,32.378969,-90.219906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.56646010714776 -55218,Hinds Energy Facility,H03,2001.0,198.1,454.6,515.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,32.378969,-90.219906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55218,Hinds Energy Facility,H04BS,2020.0,49.1,27.4,33.4,17,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5580448065173116,0.680244399185336,SERC,MISO,MS,32.378969,-90.219906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55220,Attala,A01,2001.0,176.6,,,95,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,MS,33.0147,-89.6753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.693343906388456 -55220,Attala,A02,2001.0,176.6,,,95,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,MS,33.0147,-89.6753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.959646869901748 -55220,Attala,A03,2001.0,198.1,456.0,518.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,MS,33.0147,-89.6753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55221,Harry L. Oswald,G1,2002.0,51.0,47.0,47.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9215686274509804,0.9215686274509804,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.35781804735062 -55221,Harry L. Oswald,G2,2002.0,51.0,47.0,47.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9215686274509804,0.9215686274509804,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.766737664956011 -55221,Harry L. Oswald,G3,2002.0,51.0,47.0,47.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9215686274509804,0.9215686274509804,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.956369979811644 -55221,Harry L. Oswald,G4,2002.0,51.0,47.0,47.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9215686274509804,0.9215686274509804,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.48740322837943 -55221,Harry L. Oswald,G5,2002.0,51.0,47.0,47.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9215686274509804,0.9215686274509804,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.831713728261045 -55221,Harry L. Oswald,G6,2002.0,51.0,47.0,47.0,27,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9215686274509804,0.9215686274509804,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.94896519518424 -55221,Harry L. Oswald,G7,2002.0,83.5,76.0,76.0,34,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9101796407185628,0.9101796407185628,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.156200773445052 -55221,Harry L. Oswald,G8,2002.0,105.0,95.0,95.0,32,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9047619047619048,0.9047619047619048,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55221,Harry L. Oswald,G9,2002.0,105.0,95.0,95.0,32,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9047619047619048,0.9047619047619048,SERC,MISO,AR,34.5923,-92.2166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG1,2000.0,86.5,77.5,93.3,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8959537572254335,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG2,2000.0,86.5,77.8,93.4,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8994219653179191,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG3,2000.0,86.5,78.0,94.7,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9017341040462428,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG4,2000.0,86.5,78.0,93.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9017341040462428,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG5,2000.0,86.5,77.5,92.2,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8959537572254335,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG6,2000.0,86.5,77.3,92.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8936416184971098,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG7,2000.0,86.5,78.2,92.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9040462427745665,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55222,Lincoln Generating Facility,CTG8,2000.0,86.5,78.6,94.1,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9086705202312138,1.0,RFC,PJM,IL,41.393315,-87.943612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55223,Ennis Power Company LLC,GT1,2002.0,285.0,245.1,267.9,190,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.86,0.94,TRE,ERCO,TX,32.32,-96.675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55223,Ennis Power Company LLC,ST1,2002.0,133.0,114.4,125.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8601503759398497,0.9398496240601504,TRE,ERCO,TX,32.32,-96.675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55224,Wheatland Generating Facility,CTG1,2000.0,125.1,111.0,126.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8872901678657075,1.0,RFC,MISO,IN,38.6716,-87.2931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55224,Wheatland Generating Facility,CTG2,2000.0,125.1,112.0,126.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8952837729816148,1.0,RFC,MISO,IN,38.6716,-87.2931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55224,Wheatland Generating Facility,CTG3,2000.0,125.1,108.0,129.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8633093525179857,1.0,RFC,MISO,IN,38.6716,-87.2931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55224,Wheatland Generating Facility,CTG4,2000.0,125.1,111.0,127.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8872901678657075,1.0,RFC,MISO,IN,38.6716,-87.2931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55225,Oneta Energy Center,CTG1,2002.0,176.0,149.3,160.1,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8482954545454546,0.9096590909090909,MRO,SWPP,OK,36.0119,-95.6967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55225,Oneta Energy Center,CTG2,2002.0,176.0,149.3,160.1,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8482954545454546,0.9096590909090909,MRO,SWPP,OK,36.0119,-95.6967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55225,Oneta Energy Center,CTG3,2003.0,176.0,149.3,160.1,85,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8482954545454546,0.9096590909090909,MRO,SWPP,OK,36.0119,-95.6967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55225,Oneta Energy Center,CTG4,2003.0,176.0,149.3,160.1,85,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8482954545454546,0.9096590909090909,MRO,SWPP,OK,36.0119,-95.6967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55225,Oneta Energy Center,STG1,2002.0,255.0,244.6,243.9,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9592156862745098,0.9564705882352942,MRO,SWPP,OK,36.0119,-95.6967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55225,Oneta Energy Center,STG2,2003.0,255.0,244.6,243.9,60,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9592156862745098,0.9564705882352942,MRO,SWPP,OK,36.0119,-95.6967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55226,Freestone Energy Center,GT1,2002.0,166.7,167.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8907,-96.1131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.909136441611508 -55226,Freestone Energy Center,GT2,2002.0,166.7,167.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8907,-96.1131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.926481371821916 -55226,Freestone Energy Center,GT3,2002.0,166.7,167.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8907,-96.1131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.797630591724301 -55226,Freestone Energy Center,GT4,2002.0,166.7,167.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.8907,-96.1131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.136100555576583 -55226,Freestone Energy Center,ST3,2002.0,184.6,182.0,189.6,80,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9859154929577465,1.0,TRE,ERCO,TX,31.8907,-96.1131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55226,Freestone Energy Center,ST6,2002.0,184.6,182.0,189.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9859154929577465,1.0,TRE,ERCO,TX,31.8907,-96.1131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55228,Greenville Electric Generating Station,GT1,2000.0,59.0,49.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8305084745762712,1.0,RFC,PJM,OH,40.075783,-84.615136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55228,Greenville Electric Generating Station,GT2,2000.0,59.0,49.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8305084745762712,1.0,RFC,PJM,OH,40.075783,-84.615136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55228,Greenville Electric Generating Station,GT3,2000.0,59.0,49.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8305084745762712,1.0,RFC,PJM,OH,40.075783,-84.615136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55228,Greenville Electric Generating Station,GT4,2000.0,59.0,49.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8305084745762712,1.0,RFC,PJM,OH,40.075783,-84.615136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55229,Montpelier Electric Generating Station,GT1,2001.0,59.0,57.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9661016949152542,1.0,RFC,MISO,IN,40.6206,-85.3057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55229,Montpelier Electric Generating Station,GT2,2001.0,59.0,58.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9830508474576272,1.0,RFC,MISO,IN,40.6206,-85.3057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55229,Montpelier Electric Generating Station,GT3,2001.0,59.0,59.1,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,IN,40.6206,-85.3057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55229,Montpelier Electric Generating Station,GT4,2001.0,59.0,59.0,59.0,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,IN,40.6206,-85.3057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55230,Jack County,CT1,2006.0,170.0,165.0,170.0,164,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9705882352941176,1.0,TRE,ERCO,TX,33.101,-97.9574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55230,Jack County,CT2,2006.0,170.0,165.0,170.0,164,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9705882352941176,1.0,TRE,ERCO,TX,33.101,-97.9574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55230,Jack County,CT3,2011.0,170.0,165.0,170.0,164,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9705882352941176,1.0,TRE,ERCO,TX,33.101,-97.9574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55230,Jack County,CT4,2011.0,170.0,165.0,170.0,164,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9705882352941176,1.0,TRE,ERCO,TX,33.101,-97.9574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55230,Jack County,ST1,2006.0,300.0,290.5,300.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9683333333333334,1.0,TRE,ERCO,TX,33.101,-97.9574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55230,Jack County,ST2,2011.0,300.0,290.5,300.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9683333333333334,1.0,TRE,ERCO,TX,33.101,-97.9574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55231,Liberty Electric Power Plant,GTG1,2002.0,186.0,169.1,169.1,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9091397849462365,0.9091397849462365,RFC,PJM,PA,39.8614,-75.3358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55231,Liberty Electric Power Plant,GTG2,2002.0,186.0,169.1,169.1,95,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9091397849462365,0.9091397849462365,RFC,PJM,PA,39.8614,-75.3358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55231,Liberty Electric Power Plant,STG,2002.0,242.0,223.8,223.8,100,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9247933884297521,0.9247933884297521,RFC,PJM,PA,39.8614,-75.3358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55232,Marshall Energy Facility,CT1,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.662627765184604 -55232,Marshall Energy Facility,CT2,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853945654986344 -55232,Marshall Energy Facility,CT3,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.732431089045413 -55232,Marshall Energy Facility,CT4,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.09258762674569 -55232,Marshall Energy Facility,CT5,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,SB,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11202952773754 -55232,Marshall Energy Facility,CT6,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.33500161217201 -55232,Marshall Energy Facility,CT7,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.612801503809282 -55232,Marshall Energy Facility,CT8,2002.0,86.0,72.7,92.8,45,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8453488372093023,1.0,SERC,TVA,KY,37.0286,-88.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.48725642823181 -55233,Handsome Lake Energy LLC,GT01,2001.0,58.9,53.5,53.5,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9083191850594228,0.9083191850594228,RFC,PJM,PA,41.2908,-79.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55233,Handsome Lake Energy LLC,GT02,2001.0,58.9,53.5,53.5,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9083191850594228,0.9083191850594228,RFC,PJM,PA,41.2908,-79.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55233,Handsome Lake Energy LLC,GT03,2001.0,58.9,53.5,53.5,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9083191850594228,0.9083191850594228,RFC,PJM,PA,41.2908,-79.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55233,Handsome Lake Energy LLC,GT04,2001.0,58.9,53.5,53.5,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9083191850594228,0.9083191850594228,RFC,PJM,PA,41.2908,-79.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55233,Handsome Lake Energy LLC,GT05,2001.0,58.9,53.5,53.5,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9083191850594228,0.9083191850594228,RFC,PJM,PA,41.2908,-79.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT1,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT2,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT3,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT4,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT5,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT6,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT7,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55234,Audrain Generating Station,GT8,2001.0,101.8,75.0,92.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7367387033398821,0.9037328094302555,SERC,MISO,MO,39.3092,-91.5369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55236,Lee Energy Facility,CT1,2001.0,86.5,84.9,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9815028901734104,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.4248087860781 -55236,Lee Energy Facility,CT2,2001.0,86.5,84.9,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9815028901734104,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.626008064516128 -55236,Lee Energy Facility,CT3,2001.0,86.5,84.9,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9815028901734104,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.813299660441425 -55236,Lee Energy Facility,CT4,2001.0,86.5,84.1,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9722543352601155,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.007532364176571 -55236,Lee Energy Facility,CT5,2001.0,86.5,85.1,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.983815028901734,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.763150573005095 -55236,Lee Energy Facility,CT6,2001.0,86.5,85.1,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.983815028901734,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.604755942275043 -55236,Lee Energy Facility,CT7,2001.0,86.5,83.9,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9699421965317919,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.975575339558572 -55236,Lee Energy Facility,CT8,2001.0,86.5,83.9,89.5,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9699421965317919,1.0,RFC,PJM,IL,41.8287,-89.4054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.892154499151104 -55237,Energy Shelby County,CTG1,2000.0,60.5,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG2,2000.0,60.5,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG3,2000.0,60.5,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG4,2000.0,60.5,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG5,2000.0,60.5,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG6,2000.0,60.5,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.6942148760330579,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG7,2001.0,60.0,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.7,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55237,Energy Shelby County,CTG8,2001.0,60.0,42.0,42.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7,0.7,SERC,MISO,IL,39.2794,-88.4772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55238,NRG Rockford I,0001,2000.0,158.0,184.3,188.0,115,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,42.238558,-89.101202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.081386556954997 -55238,NRG Rockford I,0002,2000.0,158.0,181.6,188.0,115,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,42.238558,-89.101202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.458671723163128 -55239,Red Oak Power LLC,0001,2002.0,180.2,167.3,182.7,120,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9284128745837958,1.0,RFC,PJM,NJ,40.448674,-74.348879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55239,Red Oak Power LLC,0002,2002.0,180.2,167.3,182.7,120,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9284128745837958,1.0,RFC,PJM,NJ,40.448674,-74.348879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55239,Red Oak Power LLC,0003,2002.0,180.2,167.3,182.7,120,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9284128745837958,1.0,RFC,PJM,NJ,40.448674,-74.348879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55239,Red Oak Power LLC,0004,2002.0,280.5,274.0,275.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9768270944741533,0.9803921568627451,RFC,PJM,NJ,40.448674,-74.348879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55241,Hog Bayou Energy Center,CT01,2001.0,200.0,155.0,170.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.775,0.85,SERC,SOCO,AL,30.7478,-88.0575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55241,Hog Bayou Energy Center,ST01,2001.0,80.0,75.0,75.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9375,0.9375,SERC,SOCO,AL,30.7478,-88.0575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55242,Santa Rosa Energy Center,CT01,2003.0,200.0,161.4,173.4,95,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.807,0.867,SERC,FPL,FL,30.5664,-87.115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55242,Santa Rosa Energy Center,ST01,2003.0,74.5,74.5,74.5,50,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,FPL,FL,30.5664,-87.115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,2-1,1970.0,41.9,34.9,46.5,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8329355608591885,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,2-2,1970.0,41.9,34.3,45.6,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8186157517899761,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,2-3,1970.0,41.9,36.3,46.7,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8663484486873508,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,2-4,1970.0,41.9,32.5,45.4,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7756563245823389,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,3-1,1970.0,41.9,34.6,45.0,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8257756563245824,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,3-2,1970.0,41.9,35.7,45.3,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8520286396181385,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,3-3,1970.0,41.9,33.9,44.6,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8090692124105012,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,3-4,1970.0,41.9,34.9,45.5,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8329355608591885,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,4-1,1970.0,41.9,33.6,43.8,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.801909307875895,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,4-2,1970.0,41.9,34.3,44.3,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8186157517899761,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,4-3,1970.0,41.9,35.4,46.4,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8448687350835322,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55243,Astoria Gas Turbines,4-4,1970.0,41.9,35.2,44.1,18.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1970.0,5,2023,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8400954653937949,1.0,NPCC,NYIS,NY,40.787,-73.9048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55244,Doyle Energy Facility,CTG1,2000.0,64.0,56.0,64.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.875,1.0,SERC,SOCO,GA,33.837699,-83.699577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55244,Doyle Energy Facility,CTG2,2000.0,71.8,58.0,60.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.807799442896936,0.8356545961002786,SERC,SOCO,GA,33.837699,-83.699577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55244,Doyle Energy Facility,CTG3,2000.0,71.8,58.0,60.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.807799442896936,0.8356545961002786,SERC,SOCO,GA,33.837699,-83.699577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55244,Doyle Energy Facility,CTG4,2000.0,100.7,75.0,90.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7447864945382323,0.8937437934458788,SERC,SOCO,GA,33.837699,-83.699577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55244,Doyle Energy Facility,CTG5,2000.0,100.7,75.0,90.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7447864945382323,0.8937437934458788,SERC,SOCO,GA,33.837699,-83.699577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55247,"Darby Power, LLC",GT1,2001.0,94.0,80.0,90.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.9574468085106383,RFC,PJM,OH,39.7139,-83.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55247,"Darby Power, LLC",GT2,2001.0,94.0,80.0,90.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.9574468085106383,RFC,PJM,OH,39.7139,-83.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55247,"Darby Power, LLC",GT3,2001.0,94.0,80.0,90.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.9574468085106383,RFC,PJM,OH,39.7139,-83.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55247,"Darby Power, LLC",GT4,2001.0,94.0,80.0,90.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.9574468085106383,RFC,PJM,OH,39.7139,-83.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55247,"Darby Power, LLC",GT5,2002.0,94.0,80.0,90.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.9574468085106383,RFC,PJM,OH,39.7139,-83.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55247,"Darby Power, LLC",GT6,2002.0,94.0,80.0,90.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.851063829787234,0.9574468085106383,RFC,PJM,OH,39.7139,-83.1778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55250,University Park South,UPG1,2001.0,58.9,50.0,56.0,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.9507640067911715,RFC,PJM,IL,41.440893,-87.753189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55250,University Park South,UPG2,2001.0,58.9,50.0,56.0,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.9507640067911715,RFC,PJM,IL,41.440893,-87.753189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55250,University Park South,UPG3,2001.0,58.9,50.0,56.0,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.9507640067911715,RFC,PJM,IL,41.440893,-87.753189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55250,University Park South,UPG4,2001.0,58.9,50.0,56.0,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.9507640067911715,RFC,PJM,IL,41.440893,-87.753189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55250,University Park South,UPG5,2001.0,58.9,50.0,56.0,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.9507640067911715,RFC,PJM,IL,41.440893,-87.753189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55250,University Park South,UPG6,2001.0,58.9,50.0,56.0,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.9507640067911715,RFC,PJM,IL,41.440893,-87.753189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55251,Gleason Generating Facility,CTG1,2000.0,185.4,120.0,120.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6472491909385113,0.6472491909385113,SERC,TVA,TN,36.2454,-88.612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55251,Gleason Generating Facility,CTG2,2000.0,191.2,100.0,100.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5230125523012552,0.5230125523012552,SERC,TVA,TN,36.2454,-88.612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55251,Gleason Generating Facility,CTG3,2000.0,191.2,140.0,140.0,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7322175732217573,0.7322175732217573,SERC,TVA,TN,36.2454,-88.612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55253,Crete Energy Venture LLC,GT1,2002.0,89.0,75.0,87.2,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8426966292134832,0.9797752808988764,RFC,PJM,IL,41.429444,-87.6187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.142639657056401 -55253,Crete Energy Venture LLC,GT2,2002.0,89.0,75.0,87.2,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8426966292134832,0.9797752808988764,RFC,PJM,IL,41.429444,-87.6187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.61548087753215 -55253,Crete Energy Venture LLC,GT3,2002.0,89.0,75.0,87.2,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8426966292134832,0.9797752808988764,RFC,PJM,IL,41.429444,-87.6187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.279450785912413 -55253,Crete Energy Venture LLC,GT4,2002.0,89.0,75.0,87.2,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8426966292134832,0.9797752808988764,RFC,PJM,IL,41.429444,-87.6187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.360125745986382 -55259,Whiting Clean Energy,CT1,2002.0,181.9,150.0,172.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8246289169873556,0.9455744914788345,RFC,MISO,IN,41.6739,-87.4775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.442400952132008 -55259,Whiting Clean Energy,CT2,2002.0,181.9,150.0,172.0,92,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8246289169873556,0.9455744914788345,RFC,MISO,IN,41.6739,-87.4775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.921375741233268 -55259,Whiting Clean Energy,ST1,2002.0,213.0,213.0,213.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,IN,41.6739,-87.4775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55262,Bowling Green Generating Station,CT1,2000.0,33.0,26.0,33.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7878787878787878,1.0,RFC,PJM,OH,41.397369,-83.641236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.22798353909465 -55262,Bowling Green Generating Station,CT2,2000.0,16.5,12.0,16.5,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,1.0,RFC,PJM,OH,41.397369,-83.641236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55263,Galion Generating Station,CT1,2000.0,33.0,26.0,33.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7878787878787878,1.0,RFC,PJM,OH,40.7167,-82.789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.282394568040802 -55263,Galion Generating Station,CT2,2000.0,16.5,12.0,16.5,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,1.0,RFC,PJM,OH,40.7167,-82.789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55264,Napoleon Peaking Station,CT1,2000.0,33.0,26.0,33.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7878787878787878,1.0,RFC,PJM,OH,41.4079,-84.1095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.410600493216954 -55264,Napoleon Peaking Station,CT2,2000.0,16.5,12.0,16.5,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,1.0,RFC,PJM,OH,41.4079,-84.1095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55265,Lake Benton II,EXIS,1999.0,100.2,103.5,103.5,5.2,WND,Onshore Wind Turbine,OP,WT,6.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.129369,-96.116971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55267,Edward L. Addison Generating Plant,712,2000.0,175.3,148.5,177.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8471192241871077,1.0,SERC,SOCO,GA,32.9111,-84.3064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55267,Edward L. Addison Generating Plant,713,2000.0,175.3,149.0,175.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.849971477467199,1.0,SERC,SOCO,GA,32.9111,-84.3064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55267,Edward L. Addison Generating Plant,714,2000.0,175.3,148.5,174.7,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8471192241871077,0.9965772960638903,SERC,SOCO,GA,32.9111,-84.3064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55267,Edward L. Addison Generating Plant,715,2000.0,175.3,145.9,165.4,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8322875071306332,0.9435253850541928,SERC,SOCO,GA,32.9111,-84.3064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55269,TVA Southaven Combined Cycle,CTG1,2003.0,179.3,157.0,187.0,129.1,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756274400446179,1.0,SERC,TVA,MS,34.9939,-90.0378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55269,TVA Southaven Combined Cycle,CTG2,2003.0,179.3,157.0,187.0,129.1,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756274400446179,1.0,SERC,TVA,MS,34.9939,-90.0378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55269,TVA Southaven Combined Cycle,CTG3,2003.0,179.3,157.0,187.0,129.1,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756274400446179,1.0,SERC,TVA,MS,34.9939,-90.0378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55269,TVA Southaven Combined Cycle,STG1,2003.0,122.0,103.0,110.0,75.9,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8442622950819672,0.9016393442622951,SERC,TVA,MS,34.9939,-90.0378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55269,TVA Southaven Combined Cycle,STG2,2003.0,122.0,103.0,110.0,75.9,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8442622950819672,0.9016393442622951,SERC,TVA,MS,34.9939,-90.0378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55269,TVA Southaven Combined Cycle,STG3,2003.0,122.0,103.0,110.0,75.9,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8442622950819672,0.9016393442622951,SERC,TVA,MS,34.9939,-90.0378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55270,Jackson Generating Station,7EA,2002.0,79.0,72.5,75.5,45,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9177215189873418,0.9556962025316456,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.513125418207245 -55270,Jackson Generating Station,LM1,2002.0,60.0,46.2,48.1,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.77,0.8016666666666667,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.589143979412162 -55270,Jackson Generating Station,LM2,2002.0,60.0,45.0,46.8,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.75,0.7799999999999999,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.431719029709468 -55270,Jackson Generating Station,LM3,2002.0,60.0,44.3,46.1,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7383333333333333,0.7683333333333333,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.645272979855255 -55270,Jackson Generating Station,LM4,2002.0,60.0,44.4,46.2,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.74,0.77,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.863249711078495 -55270,Jackson Generating Station,LM5,2002.0,60.0,42.9,44.6,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.715,0.7433333333333334,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.877331600552735 -55270,Jackson Generating Station,LM6,2002.0,60.0,44.6,46.4,12,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7433333333333334,0.7733333333333333,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.728902139831133 -55270,Jackson Generating Station,ST1,2002.0,105.0,100.6,104.8,12,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.958095238095238,0.998095238095238,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55270,Jackson Generating Station,ST2,2002.0,105.0,97.3,101.5,12,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9266666666666666,0.9666666666666667,RFC,MISO,MI,42.2488,-84.3767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55271,Tenaska Lindsay Hill Generating Station,GTG1,2002.0,183.1,152.0,160.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8301474604041508,0.8738394320043692,SERC,SOCO,AL,32.6514,-86.7386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55271,Tenaska Lindsay Hill Generating Station,GTG2,2002.0,183.1,152.0,160.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8301474604041508,0.8738394320043692,SERC,SOCO,AL,32.6514,-86.7386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55271,Tenaska Lindsay Hill Generating Station,GTG3,2002.0,183.1,152.0,160.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8301474604041508,0.8738394320043692,SERC,SOCO,AL,32.6514,-86.7386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55271,Tenaska Lindsay Hill Generating Station,STG1,2002.0,390.1,392.0,394.0,35,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.6514,-86.7386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55274,State Farm Support Center East,2A,1998.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.086,-84.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55274,State Farm Support Center East,2B,1998.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.086,-84.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55274,State Farm Support Center East,3A,1998.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.086,-84.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55274,State Farm Support Center East,3B,1998.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.086,-84.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55274,State Farm Support Center East,4A,1998.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.086,-84.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55274,State Farm Support Center East,4B,1998.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.086,-84.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55276,Ceredo Generating Station,01,2001.0,86.5,75.0,86.0,64,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9942196531791907,RFC,PJM,WV,38.3681,-82.5339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.108993148463457 -55276,Ceredo Generating Station,02,2001.0,86.5,75.0,86.0,64,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9942196531791907,RFC,PJM,WV,38.3681,-82.5339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.710781869274502 -55276,Ceredo Generating Station,03,2001.0,86.5,75.0,86.0,64,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9942196531791907,RFC,PJM,WV,38.3681,-82.5339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.209021511420666 -55276,Ceredo Generating Station,04,2001.0,86.5,75.0,86.0,64,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9942196531791907,RFC,PJM,WV,38.3681,-82.5339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.993585364780365 -55276,Ceredo Generating Station,05,2001.0,86.5,75.0,86.0,64,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9942196531791907,RFC,PJM,WV,38.3681,-82.5339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.615953432022524 -55276,Ceredo Generating Station,06,2001.0,86.5,75.0,86.0,64,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9942196531791907,RFC,PJM,WV,38.3681,-82.5339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.395848628432502 -55278,Beaver Creek Gas Plant,1,1983.0,2.5,1.8,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OA,GT,12.0,1983.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.72,1.0,WECC,WACM,WY,42.8475,-108.3136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.232882832570088 -55278,Beaver Creek Gas Plant,2,1992.0,2.5,1.8,2.5,0.1,NG,Natural Gas Fired Combustion Turbine,OA,GT,11.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.72,1.0,WECC,WACM,WY,42.8475,-108.3136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.232882832570088 -55278,Beaver Creek Gas Plant,STG-1,2018.0,0.9,0.9,0.9,0.1,WH,All Other,OS,ST,10.0,2018.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,WACM,WY,42.8475,-108.3136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG1,2002.0,180.8,171.4,197.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9480088495575221,1.0,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG10,2001.0,60.5,49.8,51.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8231404958677686,0.8512396694214877,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG2,2001.0,180.8,168.3,192.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9308628318584071,1.0,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG3,2001.0,180.8,165.0,192.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9126106194690264,1.0,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG4,2001.0,180.8,164.3,192.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9087389380530974,1.0,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG5,2001.0,60.5,48.0,51.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.8512396694214877,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG6,2001.0,60.5,49.6,51.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8198347107438017,0.8512396694214877,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG7,2001.0,60.5,50.1,51.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8280991735537191,0.8512396694214877,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG8,2001.0,60.5,50.2,51.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8297520661157025,0.8512396694214877,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55279,Aurora,CTG9,2001.0,60.5,50.7,51.5,23,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8380165289256198,0.8512396694214877,RFC,PJM,IL,41.8151,-88.2265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT05,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT06,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT07,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT08,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT09,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT10,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT11,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55281,Southeast Chicago Energy Project,GT12,2002.0,50.9,37.0,40.0,25,NG,Natural Gas Fired Combustion Turbine,OS,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7269155206286837,0.7858546168958743,RFC,PJM,IL,41.7181,-87.5449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55282,Arlington Valley Energy Facility,CTG1,2002.0,198.0,162.0,162.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8181818181818181,0.8181818181818181,WECC,DEAA,AZ,33.3417,-112.8897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59859321973144 -55282,Arlington Valley Energy Facility,CTG2,2002.0,198.0,163.0,163.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8232323232323232,0.8232323232323232,WECC,DEAA,AZ,33.3417,-112.8897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.600532089003092 -55282,Arlington Valley Energy Facility,STG1,2002.0,317.0,255.0,255.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.804416403785489,0.804416403785489,WECC,DEAA,AZ,33.3417,-112.8897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55283,Front Range Power Plant,1,2003.0,153.9,135.0,140.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8771929824561403,0.9096816114359974,WECC,WACM,CO,38.6281,-104.7069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.522417931122607 -55283,Front Range Power Plant,2,2003.0,153.9,135.0,140.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8771929824561403,0.9096816114359974,WECC,WACM,CO,38.6281,-104.7069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.643364484769927 -55283,Front Range Power Plant,3,2003.0,246.5,190.0,200.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7707910750507099,0.8113590263691683,WECC,WACM,CO,38.6281,-104.7069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55284,Big Sandy Peaker Plant,BSG1,2001.0,58.9,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.967741935483871,RFC,PJM,WV,38.3441,-82.5938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55284,Big Sandy Peaker Plant,BSG2,2001.0,58.9,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.967741935483871,RFC,PJM,WV,38.3441,-82.5938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55284,Big Sandy Peaker Plant,BSG3,2001.0,58.9,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.967741935483871,RFC,PJM,WV,38.3441,-82.5938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55284,Big Sandy Peaker Plant,BSG4,2001.0,58.9,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.967741935483871,RFC,PJM,WV,38.3441,-82.5938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55284,Big Sandy Peaker Plant,BSG5,2001.0,58.9,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.967741935483871,RFC,PJM,WV,38.3441,-82.5938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55284,Big Sandy Peaker Plant,BSG6,2001.0,58.9,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8488964346349746,0.967741935483871,RFC,PJM,WV,38.3441,-82.5938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55285,Wolf Hills Energy,WHG1,2001.0,57.0,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8771929824561404,1.0,RFC,PJM,VA,36.6644,-82.1044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55285,Wolf Hills Energy,WHG2,2001.0,57.0,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8771929824561404,1.0,RFC,PJM,VA,36.6644,-82.1044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55285,Wolf Hills Energy,WHG3,2001.0,57.0,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8771929824561404,1.0,RFC,PJM,VA,36.6644,-82.1044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55285,Wolf Hills Energy,WHG4,2001.0,57.0,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8771929824561404,1.0,RFC,PJM,VA,36.6644,-82.1044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55285,Wolf Hills Energy,WHG5,2001.0,57.0,50.0,57.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8771929824561404,1.0,RFC,PJM,VA,36.6644,-82.1044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55286,Oleander Power Project LP,OG1,2002.0,198.9,163.8,180.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.823529411764706,0.9049773755656109,SERC,FPL,FL,28.3661,-80.7947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55286,Oleander Power Project LP,OG2,2002.0,198.9,163.0,180.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8195072900955254,0.9049773755656109,SERC,FPL,FL,28.3661,-80.7947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55286,Oleander Power Project LP,OG3,2002.0,198.9,163.0,180.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8195072900955254,0.9049773755656109,SERC,FPL,FL,28.3661,-80.7947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55286,Oleander Power Project LP,OG4,2002.0,198.9,163.0,180.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8195072900955254,0.9049773755656109,SERC,FPL,FL,28.3661,-80.7947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55286,Oleander Power Project LP,OG5,2007.0,198.8,163.0,180.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8199195171026157,0.9054325955734406,SERC,FPL,FL,28.3661,-80.7947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55287,Storm Lake II,EXIS,1999.0,80.2,76.5,76.5,1,WND,Onshore Wind Turbine,OP,WT,4.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.953865336658354,0.953865336658354,MRO,MISO,IA,42.8417,-95.405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55288,Medway Hydro,MW01,1923.0,0.8,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,45.6072,-68.5453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55288,Medway Hydro,MW02,1923.0,0.8,0.7,0.7,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,45.6072,-68.5453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55288,Medway Hydro,MW03,1923.0,0.8,0.7,0.7,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,ME,45.6072,-68.5453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55288,Medway Hydro,MW04,1925.0,0.8,0.9,0.9,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.6072,-68.5453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55288,Medway Hydro,MW05,1925.0,0.8,0.9,0.9,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,45.6072,-68.5453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55292,Decatur Energy Center,CTG1,2002.0,210.8,180.0,210.0,66,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8538899430740038,0.9962049335863377,SERC,TVA,AL,34.6292,-87.0214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55292,Decatur Energy Center,CTG2,2002.0,210.8,180.0,210.0,66,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8538899430740038,0.9962049335863377,SERC,TVA,AL,34.6292,-87.0214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55292,Decatur Energy Center,CTG3,2003.0,210.8,180.0,210.0,66,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8538899430740038,0.9962049335863377,SERC,TVA,AL,34.6292,-87.0214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55292,Decatur Energy Center,STG1,2002.0,270.0,260.0,265.0,30,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.962962962962963,0.9814814814814815,SERC,TVA,AL,34.6292,-87.0214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55293,Morgan Energy Center,CTG1,2004.0,210.0,161.0,181.0,64,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7666666666666666,0.861904761904762,SERC,TVA,AL,34.6397,-87.0639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55293,Morgan Energy Center,CTG2,2003.0,210.0,161.0,181.0,64,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7666666666666666,0.861904761904762,SERC,TVA,AL,34.6397,-87.0639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55293,Morgan Energy Center,CTG3,2003.0,210.0,161.0,181.0,64,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7666666666666666,0.861904761904762,SERC,TVA,AL,34.6397,-87.0639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55293,Morgan Energy Center,STG1,2003.0,270.0,266.0,266.0,30,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9851851851851852,0.9851851851851852,SERC,TVA,AL,34.6397,-87.0639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55294,Westbrook Energy Center Power Plant,GTG1,2001.0,184.2,171.2,190.9,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9294245385450597,1.0,NPCC,ISNE,ME,43.6575,-70.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55294,Westbrook Energy Center Power Plant,GTG2,2001.0,184.2,174.6,192.2,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9478827361563518,1.0,NPCC,ISNE,ME,43.6575,-70.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55294,Westbrook Energy Center Power Plant,STG3,2001.0,195.5,188.9,192.7,60,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9662404092071611,0.9856777493606137,NPCC,ISNE,ME,43.6575,-70.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55295,Blythe Energy Inc,CT1,2003.0,182.0,156.5,160.5,70,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8598901098901099,0.8818681318681318,WECC,CISO,CA,33.6157,-114.6865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55295,Blythe Energy Inc,CT2,2003.0,182.0,156.5,160.5,70,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8598901098901099,0.8818681318681318,WECC,CISO,CA,33.6157,-114.6865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55295,Blythe Energy Inc,ST1,2003.0,227.0,201.0,204.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8854625550660793,0.8986784140969163,WECC,CISO,CA,33.6157,-114.6865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55296,Calumet Energy Team LLC,CT11,2002.0,156.4,162.0,176.0,109,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,41.6835,-87.5563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55296,Calumet Energy Team LLC,CT12,2002.0,156.4,164.1,176.0,109,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,41.6835,-87.5563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55297,New Covert Generating Facility,1,2004.0,245.0,226.2,235.7,140,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.923265306122449,0.9620408163265306,RFC,PJM,MI,42.32238,-86.29368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55297,New Covert Generating Facility,1A,2004.0,147.0,136.0,139.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9251700680272109,0.9455782312925171,RFC,PJM,MI,42.32238,-86.29368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55297,New Covert Generating Facility,2,2004.0,245.0,225.5,264.9,140,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9204081632653062,1.0,RFC,PJM,MI,42.32238,-86.29368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55297,New Covert Generating Facility,2A,2004.0,147.0,137.0,137.0,75,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9319727891156463,0.9319727891156463,RFC,PJM,MI,42.32238,-86.29368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55297,New Covert Generating Facility,3,2004.0,245.0,224.8,261.0,140,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9175510204081633,1.0,RFC,PJM,MI,42.32238,-86.29368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55297,New Covert Generating Facility,3A,2004.0,147.0,135.3,136.4,75,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9204081632653062,0.9278911564625851,RFC,PJM,MI,42.32238,-86.29368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55298,Fairless Energy Center,CT1A,2004.0,198.9,191.0,207.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9602815485168426,1.0,RFC,PJM,PA,40.1475,-74.7411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55298,Fairless Energy Center,CT1B,2004.0,198.9,191.0,207.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9602815485168426,1.0,RFC,PJM,PA,40.1475,-74.7411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55298,Fairless Energy Center,CT2A,2004.0,198.9,191.0,207.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9602815485168426,1.0,RFC,PJM,PA,40.1475,-74.7411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55298,Fairless Energy Center,CT2B,2004.0,198.9,191.0,207.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9602815485168426,1.0,RFC,PJM,PA,40.1475,-74.7411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55298,Fairless Energy Center,ST1,2004.0,271.2,258.0,263.7,55,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9513274336283186,0.9723451327433629,RFC,PJM,PA,40.1475,-74.7411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55298,Fairless Energy Center,ST2,2004.0,271.2,258.0,263.7,55,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9513274336283186,0.9723451327433629,RFC,PJM,PA,40.1475,-74.7411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55299,Channel Energy Center LLC,CTG1,2001.0,215.0,185.0,210.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8604651162790697,0.9767441860465116,TRE,ERCO,TX,29.7189,-95.2319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.666865362795004 -55299,Channel Energy Center LLC,CTG2,2002.0,215.0,185.0,210.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8604651162790697,0.9767441860465116,TRE,ERCO,TX,29.7189,-95.2319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.651385348677259 -55299,Channel Energy Center LLC,CTG3,2014.0,208.8,183.0,189.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8764367816091954,0.9051724137931034,TRE,ERCO,TX,29.7189,-95.2319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.955397792300202 -55299,Channel Energy Center LLC,ST-1,2002.0,285.0,215.0,215.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7543859649122807,0.7543859649122807,TRE,ERCO,TX,29.7189,-95.2319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55304,Baconton Power Plant,CT1,2000.0,60.5,49.0,49.0,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8099173553719008,0.8099173553719008,SERC,SOCO,GA,31.3869,-84.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.3653974982031105 -55304,Baconton Power Plant,CT4,2000.0,60.5,49.0,49.0,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8099173553719008,0.8099173553719008,SERC,SOCO,GA,31.3869,-84.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666219332546438 -55304,Baconton Power Plant,CT5,2000.0,60.5,49.0,49.0,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8099173553719008,0.8099173553719008,SERC,SOCO,GA,31.3869,-84.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.962671106685747 -55304,Baconton Power Plant,CT6,2000.0,60.5,49.0,49.0,37,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8099173553719008,0.8099173553719008,SERC,SOCO,GA,31.3869,-84.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.11357590784103 -55306,Gila River Power Block 4,CTG7,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,SRP,AZ,32.975,-112.6944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55306,Gila River Power Block 4,CTG8,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,SRP,AZ,32.975,-112.6944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55306,Gila River Power Block 4,ST12,2003.0,271.0,242.0,249.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8929889298892989,0.9188191881918819,WECC,SRP,AZ,32.975,-112.6944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55308,Calvert City,GEN1,2000.0,26.7,23.0,28.5,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8614232209737828,1.0,SERC,TVA,KY,37.048333,-88.353889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55309,Air Products Port Arthur,GEN 5,2012.0,32.8,32.8,32.8,29,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,TX,29.866497,-93.96515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.60377839139089 -55309,Air Products Port Arthur,GEN1,2000.0,37.6,33.2,37.3,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8829787234042553,0.9920212765957446,SERC,MISO,TX,29.866497,-93.96515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.60377835882847 -55309,Air Products Port Arthur,GEN3,2006.0,20.5,20.5,20.5,18,NG,Natural Gas Steam Turbine,OP,ST,11.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,TX,29.866497,-93.96515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55309,Air Products Port Arthur,GEN4,2006.0,78.2,72.4,84.2,70,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9258312020460359,1.0,SERC,MISO,TX,29.866497,-93.96515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.603778365674417 -55311,BASF Freeport Works,GEN1,1999.0,81.0,75.0,85.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9259259259259259,1.0,TRE,ERCO,TX,29.002,-95.394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.504309301459894 -55311,BASF Freeport Works,GEN2,1999.0,11.7,11.7,11.7,1.2,WH,All Other,OP,ST,6.0,1999.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,TRE,ERCO,TX,29.002,-95.394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55313,Ingleside Cogeneration,CTG1,1999.0,170.1,155.0,179.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9112286890064668,1.0,TRE,ERCO,TX,27.882778,-97.242778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.802405915105844 -55313,Ingleside Cogeneration,CTG2,1999.0,170.1,155.0,179.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9112286890064668,1.0,TRE,ERCO,TX,27.882778,-97.242778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.550259937387343 -55313,Ingleside Cogeneration,STG,1999.0,176.8,150.0,150.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8484162895927602,0.8484162895927602,TRE,ERCO,TX,27.882778,-97.242778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55317,Fore River Generating Station,GT11,2003.0,278.6,228.8,265.7,140,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8212491026561378,0.953697056712132,NPCC,ISNE,MA,42.2422,-70.9661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55317,Fore River Generating Station,GT12,2003.0,278.6,228.1,264.9,140,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8187365398420674,0.9508255563531944,NPCC,ISNE,MA,42.2422,-70.9661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55317,Fore River Generating Station,ST15,2003.0,315.0,269.1,312.4,75,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8542857142857143,0.9917460317460317,NPCC,ISNE,MA,42.2422,-70.9661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55318,Indian River,1,1960.0,79.0,75.5,79.0,40,NG,Natural Gas Steam Turbine,OS,ST,2.0,1960.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9556962025316456,1.0,SERC,FMPP,FL,28.493176,-80.780246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55318,Indian River,2,1964.0,213.0,181.3,186.0,93,NG,Natural Gas Steam Turbine,OS,ST,12.0,1964.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8511737089201878,0.8732394366197183,SERC,FMPP,FL,28.493176,-80.780246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55318,Indian River,3,1974.0,317.0,319.6,320.0,160,NG,Natural Gas Steam Turbine,OS,ST,2.0,1974.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,FMPP,FL,28.493176,-80.780246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55319,Athens Regional Medical Center,CT1,1994.0,0.7,0.7,0.7,0,DFO,Petroleum Liquids,SB,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.9625,-83.3981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55319,Athens Regional Medical Center,CT3,1994.0,0.7,0.7,0.7,0,DFO,Petroleum Liquids,SB,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.9625,-83.3981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55319,Athens Regional Medical Center,STEG3,2007.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,SB,IC,6.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.9625,-83.3981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55319,Athens Regional Medical Center,STEG4,2007.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,SB,IC,6.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.9625,-83.3981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55319,Athens Regional Medical Center,STEG5,2007.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,SB,IC,6.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.9625,-83.3981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55319,Athens Regional Medical Center,STEG6,2007.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,SB,IC,12.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.9625,-83.3981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55320,Wise County Power LLC,GT1,2004.0,261.0,245.0,261.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9386973180076629,1.0,TRE,ERCO,TX,33.0583,-97.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55320,Wise County Power LLC,GT2,2004.0,261.0,245.0,261.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9386973180076629,1.0,TRE,ERCO,TX,33.0583,-97.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55320,Wise County Power LLC,ST1,2004.0,299.7,245.0,260.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8174841508174842,0.8675342008675342,TRE,ERCO,TX,33.0583,-97.9103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55322,Chuck Lenzie Generating Station,CTG1,2006.0,201.5,184.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.913151364764268,0.8883374689826302,WECC,NEVP,NV,36.383719,-114.921779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55322,Chuck Lenzie Generating Station,CTG2,2006.0,201.5,184.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.913151364764268,0.8883374689826302,WECC,NEVP,NV,36.383719,-114.921779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55322,Chuck Lenzie Generating Station,CTG3,2006.0,201.5,184.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.913151364764268,0.8883374689826302,WECC,NEVP,NV,36.383719,-114.921779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55322,Chuck Lenzie Generating Station,CTG4,2006.0,201.5,184.0,179.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.913151364764268,0.8883374689826302,WECC,NEVP,NV,36.383719,-114.921779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55322,Chuck Lenzie Generating Station,ST1,2006.0,329.8,253.0,265.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7671315949060036,0.8035172832019406,WECC,NEVP,NV,36.383719,-114.921779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55322,Chuck Lenzie Generating Station,ST2,2006.0,329.8,253.0,265.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7671315949060036,0.8035172832019406,WECC,NEVP,NV,36.383719,-114.921779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55327,Baytown Energy Center,CTG1,2002.0,219.3,175.0,190.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7979936160510716,0.8663930688554491,TRE,ERCO,TX,29.7731,-94.9019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55327,Baytown Energy Center,CTG2,2002.0,219.3,175.0,190.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7979936160510716,0.8663930688554491,TRE,ERCO,TX,29.7731,-94.9019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55327,Baytown Energy Center,CTG3,2002.0,219.3,175.0,190.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7979936160510716,0.8663930688554491,TRE,ERCO,TX,29.7731,-94.9019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55327,Baytown Energy Center,STG1,2002.0,275.0,275.0,275.0,25,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,29.7731,-94.9019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55328,Hermiston Power Partnership,CTG1,2002.0,212.5,184.0,195.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8658823529411764,0.9176470588235294,WECC,GRID,OR,45.794046,-119.313323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55328,Hermiston Power Partnership,CTG2,2002.0,212.5,184.0,195.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8658823529411764,0.9176470588235294,WECC,GRID,OR,45.794046,-119.313323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55328,Hermiston Power Partnership,STG1,2002.0,264.4,247.0,258.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9341906202723147,0.9757942511346446,WECC,GRID,OR,45.794046,-119.313323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55332,Washington County Power LLC,1,2003.0,198.9,151.0,186.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.759175465057818,0.9366515837104072,SERC,SOCO,GA,33.092239,-82.979992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55332,Washington County Power LLC,2,2003.0,198.9,157.9,186.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7938662644544998,0.9366515837104072,SERC,SOCO,GA,33.092239,-82.979992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55332,Washington County Power LLC,3,2003.0,198.9,157.9,186.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7938662644544998,0.9366515837104072,SERC,SOCO,GA,33.092239,-82.979992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55332,Washington County Power LLC,4,2003.0,198.9,156.6,186.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7873303167420814,0.9366515837104072,SERC,SOCO,GA,33.092239,-82.979992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55333,Delta Energy Center,CTG1,2002.0,212.0,193.0,197.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.910377358490566,0.9292452830188679,WECC,CISO,CA,38.0169,-121.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55333,Delta Energy Center,CTG2,2002.0,212.0,182.0,185.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8584905660377359,0.8726415094339622,WECC,CISO,CA,38.0169,-121.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55333,Delta Energy Center,CTG3,2002.0,213.5,182.0,185.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8524590163934427,0.8665105386416861,WECC,CISO,CA,38.0169,-121.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55333,Delta Energy Center,STG1,2002.0,306.0,287.0,291.0,80,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9379084967320261,0.9509803921568627,WECC,CISO,CA,38.0169,-121.8439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55334,Holland Energy Facility,CTG1,2002.0,178.5,150.9,177.9,100,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8453781512605042,0.9966386554621849,SERC,MISO,IL,39.223144,-88.758406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.061360641375 -55334,Holland Energy Facility,CTG2,2002.0,178.5,145.5,179.6,100,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8151260504201681,1.0,SERC,MISO,IL,39.223144,-88.758406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.84293760758138 -55334,Holland Energy Facility,STG1,2002.0,345.1,320.1,330.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9275572297884671,0.9562445667922341,SERC,MISO,IL,39.223144,-88.758406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55337,Ironwood LLC,CT1,2001.0,259.2,239.4,259.7,116.8,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9236111111111112,1.0,RFC,PJM,PA,40.3509,-76.3658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55337,Ironwood LLC,CT2,2001.0,259.2,239.4,259.7,116.8,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9236111111111112,1.0,RFC,PJM,PA,40.3509,-76.3658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55337,Ironwood LLC,ST4,2001.0,259.2,233.2,249.8,75,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8996913580246914,0.9637345679012347,RFC,PJM,PA,40.3509,-76.3658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55340,Dell Power Station,CTG1,2007.0,199.3,148.0,165.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7425990968389362,0.8278976417461114,SERC,AECI,AR,35.8619,-90.0253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55340,Dell Power Station,CTG2,2007.0,199.3,149.0,166.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7476166583040642,0.8329152032112392,SERC,AECI,AR,35.8619,-90.0253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55340,Dell Power Station,STG,2007.0,280.5,173.0,180.0,62,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6167557932263814,0.6417112299465241,SERC,AECI,AR,35.8619,-90.0253,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55342,Woodstock Windfarm,WIND,1999.0,9.2,9.2,9.2,0,WND,Onshore Wind Turbine,OP,WT,5.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.985833,-96.078611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55343,Luna Energy Facility,CTG1,2006.0,175.0,150.5,164.5,80,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.86,0.94,WECC,PNM,NM,32.299349,-107.7834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.191580236551085 -55343,Luna Energy Facility,CTG2,2006.0,175.0,150.5,164.5,80,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.86,0.94,WECC,PNM,NM,32.299349,-107.7834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.686616152815207 -55343,Luna Energy Facility,STG1,2006.0,300.0,258.0,282.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.86,0.94,WECC,PNM,NM,32.299349,-107.7834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55345,Otay Mesa Generating Project,1-01,2009.0,198.9,152.8,165.9,85,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7682252388134742,0.8340874811463047,WECC,CISO,CA,32.581481,-116.914969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55345,Otay Mesa Generating Project,1-02,2009.0,198.9,152.8,165.9,85,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7682252388134742,0.8340874811463047,WECC,CISO,CA,32.581481,-116.914969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55345,Otay Mesa Generating Project,1-03,2009.0,290.7,265.4,274.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.91296869625043,0.9425524595803234,WECC,CISO,CA,32.581481,-116.914969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55347,Armstrong,1,2002.0,172.0,168.4,208.9,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9790697674418605,1.0,RFC,PJM,PA,40.638021,-79.351725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.328175089718142 -55347,Armstrong,2,2002.0,172.0,163.6,202.9,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9511627906976744,1.0,RFC,PJM,PA,40.638021,-79.351725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.031817741942833 -55347,Armstrong,3,2002.0,172.0,169.0,209.6,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9825581395348837,1.0,RFC,PJM,PA,40.638021,-79.351725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.974968594474001 -55347,Armstrong,4,2002.0,172.0,169.7,208.3,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9866279069767441,1.0,RFC,PJM,PA,40.638021,-79.351725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.049397309746663 -55348,Troy Energy LLC,1,2002.0,198.9,170.0,196.6,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8547008547008547,0.988436400201106,RFC,PJM,OH,41.47724,-83.45983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.913391702476604 -55348,Troy Energy LLC,2,2002.0,198.9,169.0,196.5,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8496732026143791,0.9879336349924585,RFC,PJM,OH,41.47724,-83.45983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.37167260746631 -55348,Troy Energy LLC,3,2002.0,198.9,168.5,196.6,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8471593765711413,0.988436400201106,RFC,PJM,OH,41.47724,-83.45983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.893673364706569 -55348,Troy Energy LLC,4,2002.0,198.9,168.1,196.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8451483157365509,0.9854198089492207,RFC,PJM,OH,41.47724,-83.45983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.363625491159853 -55349,Pleasants Energy LLC,1,2002.0,172.0,171.6,171.6,105,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9976744186046511,0.9976744186046511,RFC,PJM,WV,39.3325,-81.3642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.065503391121887 -55349,Pleasants Energy LLC,2,2002.0,172.0,167.9,167.9,105,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9761627906976744,0.9761627906976744,RFC,PJM,WV,39.3325,-81.3642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.037995260919566 -55350,Dresden Energy Facility,1,2012.0,198.9,158.3,183.3,90,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.79587732528909,0.9215686274509804,RFC,PJM,OH,40.0928,-82.0276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55350,Dresden Energy Facility,2,2012.0,198.9,158.3,183.3,90,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.79587732528909,0.9215686274509804,RFC,PJM,OH,40.0928,-82.0276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55350,Dresden Energy Facility,3,2012.0,280.5,223.4,258.4,173,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7964349376114082,0.9212121212121211,RFC,PJM,OH,40.0928,-82.0276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55353,Lakota Ridge LLC,NMO1,1999.0,11.2,11.2,11.2,1,WND,Onshore Wind Turbine,OP,WT,4.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.39956,-96.428367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55354,Shaokatan Hills LLC,6150,1999.0,11.8,11.8,11.8,11.8,WND,Onshore Wind Turbine,OP,WT,8.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.421711,-96.434694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55357,Jack Fusco Energy Center,CTG1,2003.0,200.0,166.0,182.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.83,0.91,TRE,MISO,TX,29.4731,-95.6244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.16730943309547 -55357,Jack Fusco Energy Center,CTG2,2003.0,200.0,166.0,182.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.83,0.91,TRE,MISO,TX,29.4731,-95.6244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.935928167424162 -55357,Jack Fusco Energy Center,STG1,2003.0,275.6,193.0,230.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7002902757619738,0.8345428156748911,TRE,MISO,TX,29.4731,-95.6244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55358,Cottonwood Energy Project,CT1,2003.0,198.9,146.0,157.7,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.73403720462544,0.7928607340372046,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.517943006962286 -55358,Cottonwood Energy Project,CT2,2003.0,198.9,149.0,164.3,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7491201608848668,0.8260432378079438,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.839255616068575 -55358,Cottonwood Energy Project,CT3,2003.0,198.9,146.0,158.3,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.73403720462544,0.79587732528909,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.743835592858398 -55358,Cottonwood Energy Project,CT4,2003.0,198.9,147.0,157.7,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7390648567119156,0.7928607340372046,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.54259918876663 -55358,Cottonwood Energy Project,ST1,2003.0,159.5,135.3,141.7,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8482758620689655,0.8884012539184952,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55358,Cottonwood Energy Project,ST2,2003.0,159.5,142.3,139.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8921630094043888,0.8714733542319749,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55358,Cottonwood Energy Project,ST3,2003.0,159.5,140.3,140.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8796238244514107,0.877742946708464,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55358,Cottonwood Energy Project,ST4,2003.0,159.5,139.3,139.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8733542319749217,0.8714733542319749,SERC,MISO,TX,30.2588,-93.7353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55364,Sugar Creek Power,CT01,2002.0,203.2,164.4,171.3,85,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8090551181102363,0.8430118110236222,RFC,MISO,IN,39.3931,-87.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55364,Sugar Creek Power,CT02,2002.0,203.2,166.6,173.1,85,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8198818897637795,0.8518700787401575,RFC,MISO,IN,39.3931,-87.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55364,Sugar Creek Power,ST1,2003.0,213.0,218.0,218.6,130,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,IN,39.3931,-87.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55365,Exelon LaPorte Generating Station,GT1,2001.0,59.0,36.0,42.0,36,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6101694915254237,0.711864406779661,TRE,ERCO,TX,29.7028,-95.0718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55365,Exelon LaPorte Generating Station,GT2,2001.0,59.0,36.0,42.0,36,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6101694915254237,0.711864406779661,TRE,ERCO,TX,29.7028,-95.0718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55365,Exelon LaPorte Generating Station,GT3,2001.0,59.0,36.0,42.0,36,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6101694915254237,0.711864406779661,TRE,ERCO,TX,29.7028,-95.0718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55365,Exelon LaPorte Generating Station,GT4,2001.0,59.0,36.0,42.0,36,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6101694915254237,0.711864406779661,TRE,ERCO,TX,29.7028,-95.0718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55368,Wethersfield Wind Farm,V47,2000.0,6.6,6.6,6.6,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.678819,-78.243792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55369,Hamakua Energy Plant,CT1,2000.0,23.0,21.7,21.7,5.8,WO,Petroleum Liquids,OP,CT,7.0,2000.0, , ,,,,,oil,oil,Waste/Other Oil ,Combined Cycle Combustion Turbine Part,0.9434782608695652,0.9434782608695652,non-conus,non-conus,HI,20.0939,-155.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.035848564922834 -55369,Hamakua Energy Plant,CT2,2000.0,23.0,21.7,21.7,5.8,WO,Petroleum Liquids,OP,CT,10.0,2000.0, , ,,,,,oil,oil,Waste/Other Oil ,Combined Cycle Combustion Turbine Part,0.9434782608695652,0.9434782608695652,non-conus,non-conus,HI,20.0939,-155.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.762384657151722 -55369,Hamakua Energy Plant,ST1,2000.0,20.0,17.4,17.4,0,WO,Petroleum Liquids,OP,CA,10.0,2000.0, , ,,,,,oil,oil,Waste/Other Oil ,Combined Cycle Steam Part,0.8699999999999999,0.8699999999999999,non-conus,non-conus,HI,20.0939,-155.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55370,"Green Mountain Storage, LLC",BGM,2016.0,10.4,10.4,10.4,0,MWH,Batteries,OP,BA,5.0,2016.0, , ,10.4,10.4,10.4,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,PA,39.851389,-79.070556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55372,Harquahala Generating Project,CTG1,2004.0,281.7,239.9,244.0,135.4,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8516151934682287,0.8661696840610579,WECC,HGMA,AZ,33.47596,-113.113434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.583443472870359 -55372,Harquahala Generating Project,CTG2,2004.0,281.7,226.6,247.8,137.4,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8044018459353923,0.8796592119275826,WECC,HGMA,AZ,33.47596,-113.113434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.12705799481733 -55372,Harquahala Generating Project,CTG3,2004.0,281.7,226.2,245.2,135.3,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8029818956336529,0.8704295349662762,WECC,HGMA,AZ,33.47596,-113.113434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.062085180329271 -55372,Harquahala Generating Project,STG1,2004.0,144.0,119.8,121.8,88.8,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8319444444444444,0.8458333333333333,WECC,HGMA,AZ,33.47596,-113.113434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55372,Harquahala Generating Project,STG2,2004.0,144.0,114.9,121.1,85.9,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7979166666666667,0.8409722222222222,WECC,HGMA,AZ,33.47596,-113.113434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55372,Harquahala Generating Project,STG3,2004.0,144.0,115.5,120.4,87.1,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8020833333333334,0.8361111111111111,WECC,HGMA,AZ,33.47596,-113.113434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55375,Astoria Energy,CT1,2006.0,170.0,165.0,189.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9705882352941176,1.0,NPCC,NYIS,NY,40.7825,-73.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.103349931770804 -55375,Astoria Energy,CT2,2006.0,170.0,165.0,189.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9705882352941176,1.0,NPCC,NYIS,NY,40.7825,-73.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.182826681662275 -55375,Astoria Energy,ST1,2006.0,255.0,228.0,266.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8941176470588236,1.0,NPCC,NYIS,NY,40.7825,-73.8964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55377,Gans,UNT8,2000.0,43.8,45.7,48.7,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.7475,-79.838888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55377,Gans,UNT9,2000.0,43.8,47.0,49.2,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.7475,-79.838888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG1,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG2,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG3,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG4,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG5,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG6,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG7,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,CTG8,2003.0,176.0,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,STG1,2003.0,255.0,506.2,582.8,140,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,STG2,2003.0,255.0,496.0,571.3,140,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,STG3,2003.0,255.0,507.0,580.3,140,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55380,Union Power Station,STG4,2003.0,255.0,503.1,578.0,140,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,AR,33.296146,-92.589364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT1,2000.0,57.5,45.9,47.2,35,DFO,Petroleum Liquids,SB,GT,8.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7982608695652174,0.8208695652173914,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT2,2000.0,57.5,44.6,47.7,35,DFO,Petroleum Liquids,SB,GT,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7756521739130435,0.8295652173913044,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT3,2000.0,57.5,45.3,46.9,35,DFO,Petroleum Liquids,SB,GT,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7878260869565217,0.8156521739130435,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT4,2001.0,57.5,44.6,45.5,35,DFO,Petroleum Liquids,SB,GT,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7756521739130435,0.7913043478260869,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT5,2001.0,57.5,46.0,47.1,35,DFO,Petroleum Liquids,SB,GT,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8,0.8191304347826087,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT6,2001.0,57.5,45.8,45.9,35,DFO,Petroleum Liquids,SB,GT,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7965217391304347,0.7982608695652174,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55381,Commonwealth Chesapeake,UNT7,2001.0,57.5,44.3,46.7,35,DFO,Petroleum Liquids,SB,GT,8.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.7704347826086956,0.8121739130434783,RFC,PJM,VA,37.9892,-75.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55382,Thomas A Smith Energy Facility,1GT1,2002.0,147.0,185.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,GA,34.7094,-84.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55382,Thomas A Smith Energy Facility,1GT2,2002.0,147.0,185.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,GA,34.7094,-84.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55382,Thomas A Smith Energy Facility,1STG,2002.0,302.0,302.0,311.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,GA,34.7094,-84.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55382,Thomas A Smith Energy Facility,2GT1,2002.0,147.0,185.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,GA,34.7094,-84.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55382,Thomas A Smith Energy Facility,2GT2,2002.0,147.0,185.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,GA,34.7094,-84.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55382,Thomas A Smith Energy Facility,2STG,2002.0,302.0,302.0,310.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,GA,34.7094,-84.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55386,Columbia Energy Center (SC),CT1,2004.0,197.0,166.7,197.8,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8461928934010152,1.0,SERC,SCEG,SC,33.8697,-81.0178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55386,Columbia Energy Center (SC),CT2,2004.0,197.0,151.5,180.1,100,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7690355329949239,0.9142131979695431,SERC,SCEG,SC,33.8697,-81.0178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55386,Columbia Energy Center (SC),ST1,2004.0,274.5,240.0,273.0,20,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8743169398907104,0.994535519125683,SERC,SCEG,SC,33.8697,-81.0178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55390,State Farm Insur Support Center Central,2A,1998.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.9192,-96.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.274959083469723 -55390,State Farm Insur Support Center Central,2B,1998.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.9192,-96.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.274959083469723 -55390,State Farm Insur Support Center Central,3A,1998.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.9192,-96.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.274959083469723 -55390,State Farm Insur Support Center Central,3B,1998.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.9192,-96.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.274959083469723 -55390,State Farm Insur Support Center Central,4A,1998.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.9192,-96.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.274959083469723 -55390,State Farm Insur Support Center Central,4B,1998.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.9192,-96.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.274959083469723 -55391,RockGen Energy Center,01,2001.0,187.0,163.0,163.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8716577540106951,0.8716577540106951,MRO,MISO,WI,42.9767,-89.0492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55391,RockGen Energy Center,02,2001.0,187.0,163.0,163.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8716577540106951,0.8716577540106951,MRO,MISO,WI,42.9767,-89.0492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55391,RockGen Energy Center,03,2001.0,187.0,163.0,163.0,102,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8716577540106951,0.8716577540106951,MRO,MISO,WI,42.9767,-89.0492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55392,Zion Energy Center,CTG1,2002.0,198.9,152.0,181.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7642031171442936,0.9100050276520865,RFC,PJM,IL,42.4776,-87.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55392,Zion Energy Center,CTG2,2002.0,198.9,152.0,181.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7642031171442936,0.9100050276520865,RFC,PJM,IL,42.4776,-87.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55392,Zion Energy Center,CTG3,2003.0,198.9,152.0,181.0,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7642031171442936,0.9100050276520865,RFC,PJM,IL,42.4776,-87.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55393,Metcalf Energy Center,CTG1,2005.0,200.0,172.0,188.0,116,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.86,0.94,WECC,CISO,CA,37.2207,-121.7457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55393,Metcalf Energy Center,CTG2,2005.0,200.0,172.0,188.0,116,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.86,0.94,WECC,CISO,CA,37.2207,-121.7457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55393,Metcalf Energy Center,STG1,2005.0,235.0,202.1,220.9,70,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.86,0.9400000000000001,WECC,CISO,CA,37.2207,-121.7457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55395,Crossroads Energy Center,CT01,2002.0,76.6,77.0,77.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,MS,34.183,-90.5621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.072121601799086 -55395,Crossroads Energy Center,CT02,2002.0,76.6,77.0,77.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,MS,34.183,-90.5621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.539809603639057 -55395,Crossroads Energy Center,CT03,2002.0,76.6,77.0,77.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,MS,34.183,-90.5621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.740407881219495 -55395,Crossroads Energy Center,CT04,2002.0,76.6,77.0,77.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,MS,34.183,-90.5621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.44065094170862 -55396,Green Power I,WGNS,1975.0,16.5,16.5,16.5,4.9,WND,Onshore Wind Turbine,OP,WT,7.0,1975.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9014,-116.7167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55397,Washington Energy Facility,CT1,2002.0,198.9,179.0,188.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8999497234791353,0.9451985922574158,RFC,PJM,OH,39.58,-81.6564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.045631302115135 -55397,Washington Energy Facility,CT2,2002.0,198.9,179.0,188.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8999497234791353,0.9451985922574158,RFC,PJM,OH,39.58,-81.6564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.908182713256105 -55397,Washington Energy Facility,ST1,2002.0,317.1,303.0,310.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.955534531693472,0.97760958688111,RFC,PJM,OH,39.58,-81.6564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55400,Elk Hills Power LLC,CTG1,2003.0,199.0,156.0,165.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7839195979899498,0.8291457286432161,WECC,CISO,CA,35.280318,-119.470707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55400,Elk Hills Power LLC,CTG2,2003.0,199.0,156.0,165.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7839195979899498,0.8291457286432161,WECC,CISO,CA,35.280318,-119.470707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55400,Elk Hills Power LLC,STG,2003.0,225.0,213.0,219.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9466666666666667,0.9733333333333334,WECC,CISO,CA,35.280318,-119.470707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55401,Rolling Hills Generating,CT1,2003.0,195.5,182.0,209.0,115.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9309462915601023,1.0,RFC,PJM,OH,39.0839,-82.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55401,Rolling Hills Generating,CT2,2003.0,195.5,166.9,197.5,115.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8537084398976982,1.0,RFC,PJM,OH,39.0839,-82.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55401,Rolling Hills Generating,CT3,2003.0,195.5,181.6,209.0,115.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9289002557544757,1.0,RFC,PJM,OH,39.0839,-82.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55401,Rolling Hills Generating,CT4,2003.0,195.5,165.7,197.8,115.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8475703324808184,1.0,RFC,PJM,OH,39.0839,-82.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55401,Rolling Hills Generating,CT5,2003.0,195.5,182.0,209.0,115.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9309462915601023,1.0,RFC,PJM,OH,39.0839,-82.3328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55402,Renaissance Power Plant,CT1,2002.0,195.5,163.0,194.0,116,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8337595907928389,0.9923273657289002,RFC,MISO,MI,43.1864,-84.8429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.857788641307031 -55402,Renaissance Power Plant,CT2,2002.0,195.5,163.0,194.0,116,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8337595907928389,0.9923273657289002,RFC,MISO,MI,43.1864,-84.8429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.786472741634311 -55402,Renaissance Power Plant,CT3,2002.0,195.5,163.0,194.0,116,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8337595907928389,0.9923273657289002,RFC,MISO,MI,43.1864,-84.8429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.549920947399906 -55402,Renaissance Power Plant,CT4,2002.0,195.5,163.0,194.0,116,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8337595907928389,0.9923273657289002,RFC,MISO,MI,43.1864,-84.8429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.617944016750254 -55404,Carville Energy LLC,CTG1,2003.0,187.0,170.0,180.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909091,0.9625668449197861,SERC,MISO,LA,30.2294,-91.065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55404,Carville Energy LLC,CTG2,2003.0,187.0,170.0,180.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909091,0.9625668449197861,SERC,MISO,LA,30.2294,-91.065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55404,Carville Energy LLC,STG,2003.0,181.0,181.0,181.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,30.2294,-91.065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55405,Athens Generating Plant,CT1,2004.0,270.3,220.9,269.4,165.7,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8172401035886052,0.9966703662597113,NPCC,NYIS,NY,42.2728,-73.8492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55405,Athens Generating Plant,CT2,2004.0,270.3,220.4,263.2,165.3,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8153903070662227,0.9737328893821678,NPCC,NYIS,NY,42.2728,-73.8492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55405,Athens Generating Plant,CT3,2003.0,270.3,222.9,272.1,167.2,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8246392896781354,1.0,NPCC,NYIS,NY,42.2728,-73.8492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55405,Athens Generating Plant,ST1,2004.0,136.9,108.7,136.9,81.5,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7940102264426588,1.0,NPCC,NYIS,NY,42.2728,-73.8492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55405,Athens Generating Plant,ST2,2004.0,136.9,109.2,133.8,81.9,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7976625273922571,0.9773557341124909,NPCC,NYIS,NY,42.2728,-73.8492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55405,Athens Generating Plant,ST3,2004.0,136.9,108.4,136.0,81.3,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7918188458729,0.9934258582907232,NPCC,NYIS,NY,42.2728,-73.8492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55406,Effingham Energy Facility,STG,2003.0,197.8,176.0,182.0,66,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8897876643073811,0.9201213346814964,SERC,SOCO,GA,32.277252,-81.284411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55406,Effingham Energy Facility,UNT1,2003.0,199.4,169.0,175.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8475426278836509,0.8776328986960882,SERC,SOCO,GA,32.277252,-81.284411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55406,Effingham Energy Facility,UNT2,2003.0,199.4,169.0,175.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8475426278836509,0.8776328986960882,SERC,SOCO,GA,32.277252,-81.284411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55409,Calhoun Energy Center,CAL1,2003.0,187.0,158.0,188.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8449197860962567,1.0,SERC,SOCO,AL,33.5883,-85.9731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55409,Calhoun Energy Center,CAL2,2003.0,187.0,158.0,188.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8449197860962567,1.0,SERC,SOCO,AL,33.5883,-85.9731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55409,Calhoun Energy Center,CAL3,2003.0,187.0,158.0,188.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8449197860962567,1.0,SERC,SOCO,AL,33.5883,-85.9731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55409,Calhoun Energy Center,CAL4,2003.0,187.0,158.0,188.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8449197860962567,1.0,SERC,SOCO,AL,33.5883,-85.9731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55411,Hillabee Energy Center,HEC1,2010.0,258.4,234.4,261.0,145,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9071207430340559,1.0,SERC,SOCO,AL,33.000669,-85.903278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55411,Hillabee Energy Center,HEC2,2010.0,258.4,234.4,261.0,145,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9071207430340559,1.0,SERC,SOCO,AL,33.000669,-85.903278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55411,Hillabee Energy Center,HECS,2010.0,306.0,283.9,293.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9277777777777777,0.9575163398692811,SERC,SOCO,AL,33.000669,-85.903278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55412,Osprey Energy Center Power Plant,OEC1,2004.0,192.1,173.0,187.0,173,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9005726184279021,0.9734513274336284,SERC,TEC,FL,28.0525,-81.8083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55412,Osprey Energy Center Power Plant,OEC2,2004.0,192.1,173.0,189.0,173,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9005726184279021,0.9838625715773035,SERC,TEC,FL,28.0525,-81.8083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55412,Osprey Energy Center Power Plant,OECS,2004.0,260.0,230.0,235.0,230,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8846153846153846,0.9038461538461539,SERC,TEC,FL,28.0525,-81.8083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55414,Shady Hills Generating Station,G101,2002.0,180.4,154.4,170.2,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8558758314855877,0.9434589800443458,SERC,FPC,FL,28.3665,-82.558611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55414,Shady Hills Generating Station,G201,2002.0,180.4,154.4,170.2,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8558758314855877,0.9434589800443458,SERC,FPC,FL,28.3665,-82.558611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55414,Shady Hills Generating Station,G301,2002.0,180.4,154.4,170.2,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8558758314855877,0.9434589800443458,SERC,FPC,FL,28.3665,-82.558611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55415,Vandolah Power Station,G101,2002.0,182.0,165.5,175.5,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9093406593406593,0.9642857142857143,SERC,FPC,FL,27.523607,-81.923951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55415,Vandolah Power Station,G201,2002.0,182.0,165.5,175.5,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9093406593406593,0.9642857142857143,SERC,FPC,FL,27.523607,-81.923951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55415,Vandolah Power Station,G301,2002.0,182.0,165.5,175.5,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9093406593406593,0.9642857142857143,SERC,FPC,FL,27.523607,-81.923951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55415,Vandolah Power Station,G401,2002.0,182.0,163.5,173.5,110,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8983516483516484,0.9532967032967032,SERC,FPC,FL,27.523607,-81.923951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55417,Raccoon Creek Energy Center,CT01,2002.0,114.0,75.0,92.0,39,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6578947368421053,0.8070175438596492,SERC,MISO,IL,38.6996,-88.5392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55417,Raccoon Creek Energy Center,CT02,2002.0,114.0,75.0,92.0,39,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6578947368421053,0.8070175438596492,SERC,MISO,IL,38.6996,-88.5392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55417,Raccoon Creek Energy Center,CT03,2002.0,114.0,75.0,92.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6578947368421053,0.8070175438596492,SERC,MISO,IL,38.6996,-88.5392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55417,Raccoon Creek Energy Center,CT04,2002.0,114.0,75.0,92.0,39,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6578947368421053,0.8070175438596492,SERC,MISO,IL,38.6996,-88.5392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55418,Hot Spring Generating Facility,CT1,2002.0,198.9,,,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,34.29759,-92.868344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55418,Hot Spring Generating Facility,CT2,2002.0,198.9,,,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,AR,34.29759,-92.868344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55418,Hot Spring Generating Facility,ST1,2002.0,317.0,592.5,639.6,35,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,AR,34.29759,-92.868344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55419,Plaquemine Cogeneration Plant,G500,2004.0,198.0,151.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7626262626262627,0.9393939393939394,SERC,MISO,LA,30.3217,-91.2347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55419,Plaquemine Cogeneration Plant,G600,2004.0,198.0,151.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7626262626262627,0.9393939393939394,SERC,MISO,LA,30.3217,-91.2347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55419,Plaquemine Cogeneration Plant,G700,2004.0,198.0,151.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7626262626262627,0.9393939393939394,SERC,MISO,LA,30.3217,-91.2347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55419,Plaquemine Cogeneration Plant,G800,2004.0,198.0,151.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7626262626262627,0.9393939393939394,SERC,MISO,LA,30.3217,-91.2347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55419,Plaquemine Cogeneration Plant,ST5,2004.0,195.0,189.0,189.0,8,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9692307692307692,0.9692307692307692,SERC,MISO,LA,30.3217,-91.2347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55429,Kentucky Mills,01,2001.0,88.0,49.0,60.0,15,BLQ,Wood/Wood Waste Biomass,OP,ST,6.0,2001.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5568181818181819,0.6818181818181819,SERC,MISO,KY,37.8948,-86.6854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55433,Bayou Cove Peaking Power,0001,2002.0,104.0,73.2,73.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7038461538461539,0.7038461538461539,SERC,MISO,LA,30.2825,-92.5997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55433,Bayou Cove Peaking Power,0002,2002.0,104.0,73.4,73.4,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7057692307692308,0.7057692307692308,SERC,MISO,LA,30.2825,-92.5997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55433,Bayou Cove Peaking Power,0003,2002.0,104.0,72.7,72.7,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6990384615384615,0.6990384615384615,SERC,MISO,LA,30.2825,-92.5997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55433,Bayou Cove Peaking Power,0004,2002.0,104.0,69.7,69.7,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6701923076923078,0.6701923076923078,SERC,MISO,LA,30.2825,-92.5997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55438,Elgin Energy Center LLC,CT01,2002.0,135.0,121.1,125.0,92.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.897037037037037,0.9259259259259259,RFC,PJM,IL,42.000061,-88.244572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.513533131306819 -55438,Elgin Energy Center LLC,CT02,2002.0,135.0,121.5,125.1,92.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,0.9266666666666666,RFC,PJM,IL,42.000061,-88.244572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.485838982786092 -55438,Elgin Energy Center LLC,CT03,2002.0,135.0,121.5,125.0,90.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,0.9259259259259259,RFC,PJM,IL,42.000061,-88.244572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.798164297541316 -55438,Elgin Energy Center LLC,CT04,2002.0,135.0,123.3,123.3,92.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9133333333333333,0.9133333333333333,RFC,PJM,IL,42.000061,-88.244572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.695918054297229 -55439,Tenaska Virginia Generating Station,CTG1,2004.0,207.0,171.4,203.4,80,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280193236714977,0.9826086956521739,SERC,PJM,VA,37.8667,-78.3813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55439,Tenaska Virginia Generating Station,CTG2,2004.0,207.0,173.5,204.7,80,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8381642512077294,0.9888888888888888,SERC,PJM,VA,37.8667,-78.3813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55439,Tenaska Virginia Generating Station,CTG3,2004.0,207.0,182.7,203.4,80,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8826086956521738,0.9826086956521739,SERC,PJM,VA,37.8667,-78.3813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55439,Tenaska Virginia Generating Station,STG1,2004.0,390.4,402.2,400.4,50,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,PJM,VA,37.8667,-78.3813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55440,Central Alabama Generating Station,CTG1,2003.0,179.0,170.4,190.1,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9519553072625698,1.0,SERC,SOCO,AL,32.6497,-86.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55440,Central Alabama Generating Station,CTG2,2003.0,179.0,175.8,189.1,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.982122905027933,1.0,SERC,SOCO,AL,32.6497,-86.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55440,Central Alabama Generating Station,CTG3,2003.0,179.0,171.4,189.7,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9575418994413408,1.0,SERC,SOCO,AL,32.6497,-86.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55440,Central Alabama Generating Station,ST1,2003.0,390.1,399.4,401.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,AL,32.6497,-86.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55447,Columbia Energy Center,CT01,2001.0,40.7,35.0,40.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8599508599508598,0.9828009828009827,SERC,MISO,MO,39.0192,-92.2629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.048604302885135 -55447,Columbia Energy Center,CT02,2001.0,40.7,35.0,40.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8599508599508598,0.9828009828009827,SERC,MISO,MO,39.0192,-92.2629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.278451133985024 -55447,Columbia Energy Center,CT03,2001.0,40.7,35.0,40.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8599508599508598,0.9828009828009827,SERC,MISO,MO,39.0192,-92.2629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.483105673161994 -55447,Columbia Energy Center,CT04,2001.0,40.7,35.0,40.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8599508599508598,0.9828009828009827,SERC,MISO,MO,39.0192,-92.2629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.682103018924926 -55451,Magnolia Power Plant,CTG1,2003.0,178.5,156.0,183.0,82.4,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8739495798319328,1.0,SERC,TVA,MS,34.835,-89.2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55451,Magnolia Power Plant,CTG2,2003.0,178.5,156.0,183.0,82.4,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8739495798319328,1.0,SERC,TVA,MS,34.835,-89.2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55451,Magnolia Power Plant,CTG3,2003.0,178.5,156.0,183.0,82.4,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8739495798319328,1.0,SERC,TVA,MS,34.835,-89.2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55451,Magnolia Power Plant,STG1,2003.0,156.0,150.0,150.0,67.6,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9615384615384616,0.9615384615384616,SERC,TVA,MS,34.835,-89.2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55451,Magnolia Power Plant,STG2,2003.0,156.0,150.0,150.0,67.6,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9615384615384616,0.9615384615384616,SERC,TVA,MS,34.835,-89.2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55451,Magnolia Power Plant,STG3,2003.0,156.0,150.0,150.0,67.6,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9615384615384616,0.9615384615384616,SERC,TVA,MS,34.835,-89.2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55453,Fountain Valley Power Facility,S1,2001.0,38.0,39.0,42.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,38.5569,-104.6875,Fountain Valley 1,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,8.8,1.0,0.45,42.0,5.4291562830126505,86.00856821133684,0.39583958196388297,-16.561331333784732,368.6584539557078,8.982020623035238,#TRUE#,#2001-09-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,16.0,42.0,35.0,CO,NG,Industrial,#FALSE#,16,42, -55453,Fountain Valley Power Facility,S2,2001.0,38.0,39.0,42.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,38.5569,-104.6875,Fountain Valley 2,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,8.8,1.0,0.45,42.0,4.949984273940083,90.12132868453016,0.3725620274397625,-15.747342254266986,356.14986775090125,8.672739594921206,#TRUE#,#2001-09-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,16.0,42.0,35.0,CO,NG,Industrial,#FALSE#,16,42, -55453,Fountain Valley Power Facility,S3,2001.0,38.0,39.0,42.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,38.5569,-104.6875,Fountain Valley 3,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,8.8,1.0,0.45,42.0,4.723115345176741,101.72906719475773,0.4404596844977222,-20.709952144093993,447.28447184201025,8.6676134668951,#TRUE#,#2001-09-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,18.0,42.0,35.0,CO,NG,Industrial,#FALSE#,18,42, -55453,Fountain Valley Power Facility,S4,2001.0,38.0,39.0,42.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,38.5569,-104.6875,Fountain Valley 4,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,8.8,1.0,0.45,42.0,5.018313904813238,93.13712671699622,0.4354177728005798,-20.1236231366587,434.73698580093816,8.629663458369038,#TRUE#,#2001-09-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,18.0,42.0,35.0,CO,NG,Industrial,#FALSE#,18,42, -55453,Fountain Valley Power Facility,S5,2001.0,38.0,39.0,42.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,38.5569,-104.6875,Fountain Valley 5,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,8.8,1.0,0.45,42.0,4.988713864209765,94.72847489258646,0.4317426582853931,-19.941014507475543,433.4450883435812,8.661767216519547,#TRUE#,#2001-09-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,18.0,42.0,35.0,CO,NG,Industrial,#FALSE#,18,42, -55453,Fountain Valley Power Facility,S6,2001.0,38.0,39.0,42.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,PSCO,CO,38.5569,-104.6875,Fountain Valley 6,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,8.8,1.0,0.45,42.0,5.466732892826995,84.58246433033686,0.43732479712594186,-19.78531962937099,427.6784449610726,8.74637931917815,#TRUE#,#2001-09-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,18.0,42.0,35.0,CO,NG,Industrial,#FALSE#,18,42, -55455,Red Hawk,CT1A,2002.0,187.5,148.0,166.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7893333333333333,0.8853333333333333,WECC,SRP,AZ,33.334562,-112.840641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55455,Red Hawk,CT1B,2002.0,181.6,148.0,166.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8149779735682819,0.9140969162995595,WECC,SRP,AZ,33.334562,-112.840641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55455,Red Hawk,CT2A,2002.0,181.6,148.0,166.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8149779735682819,0.9140969162995595,WECC,SRP,AZ,33.334562,-112.840641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55455,Red Hawk,CT2B,2002.0,181.6,148.0,161.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8149779735682819,0.8865638766519824,WECC,SRP,AZ,33.334562,-112.840641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55455,Red Hawk,ST1,2002.0,204.0,171.0,174.0,0,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8382352941176471,0.8529411764705882,WECC,SRP,AZ,33.334562,-112.840641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55455,Red Hawk,ST2,2002.0,204.0,171.0,174.0,0,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8382352941176471,0.8529411764705882,WECC,SRP,AZ,33.334562,-112.840641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55457,McClain Energy Facility,CT1,2001.0,176.6,159.0,159.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9003397508493771,0.9003397508493771,MRO,SWPP,OK,35.29774,-97.58985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.193322954424563 -55457,McClain Energy Facility,CT2,2001.0,176.6,160.8,160.8, ,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9105322763306909,0.9105322763306909,MRO,SWPP,OK,35.29774,-97.58985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.136026010090749 -55457,McClain Energy Facility,ST1,2001.0,198.1,171.2,171.2,240,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8642099949520444,0.8642099949520444,MRO,SWPP,OK,35.29774,-97.58985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55460,Indeck Niles Energy Center,CT1,2022.0,386.8,358.4,375.4,110,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9265770423991726,0.9705274043433298,RFC,PJM,MI,41.862114,-86.221394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55460,Indeck Niles Energy Center,CT2,2022.0,386.8,358.4,375.4,110,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9265770423991726,0.9705274043433298,RFC,PJM,MI,41.862114,-86.221394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55460,Indeck Niles Energy Center,ST1,2022.0,400.8,364.7,346.3,106,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9099301397205588,0.8640219560878244,RFC,PJM,MI,41.862114,-86.221394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,CT01,2004.0,198.9,390.0,390.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,CT02,2004.0,198.9,390.0,390.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,CT03,2004.0,198.9,390.0,390.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,CT04,2004.0,198.9,390.0,390.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,ST01,2004.0,159.5,312.0,312.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,ST02,2004.0,159.5,312.0,312.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,ST03,2004.0,159.5,312.0,312.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55463,Redbud Power Plant,ST04,2004.0,159.5,312.0,312.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,SWPP,OK,35.6856,-97.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55464,Deer Park Energy Center,CTG1,2003.0,180.0,186.8,201.2,102,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.713414,-95.134508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.532513928127473 -55464,Deer Park Energy Center,CTG2,2003.0,180.0,186.8,201.2,102,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.713414,-95.134508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.825133126192762 -55464,Deer Park Energy Center,CTG3,2004.0,180.0,186.8,201.2,102,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.713414,-95.134508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.718153293513053 -55464,Deer Park Energy Center,CTG4,2004.0,180.0,186.8,201.2,102,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.713414,-95.134508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.058281274566323 -55464,Deer Park Energy Center,CTG6,2014.0,180.0,186.8,201.2,102,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,29.713414,-95.134508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55464,Deer Park Energy Center,STG1,2004.0,276.0,282.0,282.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,29.713414,-95.134508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55467,Ouachita,CTG1,2002.0,179.3,,,94,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,LA,32.7061,-92.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55467,Ouachita,CTG2,2002.0,179.3,,,94,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,LA,32.7061,-92.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55467,Ouachita,CTG3,2002.0,179.3,,,94,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,LA,32.7061,-92.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55467,Ouachita,STG1,2002.0,122.0,242.5,278.0,71,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,32.7061,-92.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55467,Ouachita,STG2,2002.0,122.0,236.5,270.8,71,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,32.7061,-92.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55467,Ouachita,STG3,2002.0,122.0,248.6,284.9,71,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,32.7061,-92.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55470,Green Power 2,ST1,2003.0,110.0,75.0,75.0,19,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6818181818181819,0.6818181818181819,TRE,ERCO,TX,29.378097,-94.932773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55470,Green Power 2,ST805,2009.0,250.0,75.0,75.0,25,NG,Natural Gas Fired Combined Cycle,OS,CA,5.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.30000000000000004,0.30000000000000004,TRE,ERCO,TX,29.378097,-94.932773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55470,Green Power 2,TR1,2003.0,167.0,158.0,165.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9461077844311377,0.9880239520958084,TRE,ERCO,TX,29.378097,-94.932773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55470,Green Power 2,TR2,2003.0,167.0,158.0,165.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9461077844311377,0.9880239520958084,TRE,ERCO,TX,29.378097,-94.932773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55470,Green Power 2,TR3,2003.0,167.0,158.0,165.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9461077844311377,0.9880239520958084,TRE,ERCO,TX,29.378097,-94.932773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55477,Neil Simpson Gas Turbine #2,GT2,2001.0,40.0,34.0,38.0,24.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.95,WECC,WACM,WY,44.285,-105.3786,Neil Simpson GT2,GT LM_LM6000 PD,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,38.0,1.9003331136233532,187.21333949973322,-9.493807520083125e-06,1.9008666656094892,187.20609686375408,8.802859738685195,#TRUE#,#2001-05-01#,#2050-12-31#,Existing,WACM,RM_WACM,20.0,38.0,23.0,WY,NG,Areo,#FALSE#,20,38, -55478,Lange Gas Turbines,0001,2002.0,40.0,34.0,38.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.95,WECC,WACM,SD,44.1203,-103.26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55479,Wygen 1,0001,2003.0,90.0,85.0,86.0,57.2,SUB,Conventional Steam Coal,OP,ST,1.0,2003.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9555555555555556,WECC,WACM,WY,44.2858,-105.3833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55480,Forney Energy Center,ST1,2003.0,382.5,406.0,418.0,88,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55480,Forney Energy Center,ST2,2003.0,382.5,406.0,418.0,88,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55480,Forney Energy Center,U1,2003.0,188.2,165.0,195.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8767268862911797,1.0,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.881621985977471 -55480,Forney Energy Center,U2,2003.0,188.2,157.0,185.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8342189160467588,0.9829968119022318,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.735608778847336 -55480,Forney Energy Center,U3,2003.0,188.2,157.0,185.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8342189160467588,0.9829968119022318,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.589979186171197 -55480,Forney Energy Center,U4,2003.0,188.2,165.0,195.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8767268862911797,1.0,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.67102786856754 -55480,Forney Energy Center,U5,2003.0,188.2,157.0,185.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8342189160467588,0.9829968119022318,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.124297953157951 -55480,Forney Energy Center,U6,2003.0,188.2,157.0,185.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8342189160467588,0.9829968119022318,TRE,ERCO,TX,32.7563,-96.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23042274975965 -55481,Mesquite Generating Station Block 2,GT3,2003.0,185.3,162.0,162.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8742579600647598,0.8742579600647598,WECC,SRP,AZ,33.345047,-112.864227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55481,Mesquite Generating Station Block 2,GT4,2003.0,185.3,162.0,162.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8742579600647598,0.8742579600647598,WECC,SRP,AZ,33.345047,-112.864227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55481,Mesquite Generating Station Block 2,ST2,2003.0,321.0,300.0,300.0,110,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9345794392523364,0.9345794392523364,WECC,SRP,AZ,33.345047,-112.864227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55482,Goldendale Generating Station,G1,2004.0,188.5,153.1,194.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8122015915119363,1.0,WECC,PSEI,WA,45.8114,-120.833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55482,Goldendale Generating Station,G2,2004.0,114.3,110.6,110.6,55,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9676290463692039,0.9676290463692039,WECC,PSEI,WA,45.8114,-120.833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55486,Washington Parish Energy Center,CTG01,2020.0,199.8,184.4,207.2,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9229229229229229,1.0,SERC,MISO,LA,30.791389,-89.909166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.088700931346532 -55486,Washington Parish Energy Center,CTG02,2020.0,199.8,185.6,208.2,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9289289289289289,1.0,SERC,MISO,LA,30.791389,-89.909166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.326152522187806 -55488,Blackburn Landfill Co-Generation,BB1,1999.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,9.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.6067,-81.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.692124708319152 -55488,Blackburn Landfill Co-Generation,BB2,1999.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.6067,-81.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.692124708319152 -55488,Blackburn Landfill Co-Generation,BB3,2002.0,0.9,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,3.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.6067,-81.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.692123799557436 -55496,Goose Creek Energy Center,CT01,2003.0,114.0,72.0,92.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.631578947368421,0.8070175438596492,SERC,MISO,IL,40.106931,-88.599867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55496,Goose Creek Energy Center,CT02,2003.0,114.0,72.0,92.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.631578947368421,0.8070175438596492,SERC,MISO,IL,40.106931,-88.599867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55496,Goose Creek Energy Center,CT03,2003.0,114.0,72.0,92.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.631578947368421,0.8070175438596492,SERC,MISO,IL,40.106931,-88.599867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55496,Goose Creek Energy Center,CT04,2003.0,114.0,72.0,92.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.631578947368421,0.8070175438596492,SERC,MISO,IL,40.106931,-88.599867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55496,Goose Creek Energy Center,CT05,2003.0,114.0,72.0,92.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.631578947368421,0.8070175438596492,SERC,MISO,IL,40.106931,-88.599867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55496,Goose Creek Energy Center,CT06,2003.0,114.0,72.0,92.0,47,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.631578947368421,0.8070175438596492,SERC,MISO,IL,40.106931,-88.599867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55499,CalPeak Power Vaca Dixon Peaker Plant,CPP1,2002.0,60.5,48.0,50.6,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.8363636363636364,WECC,CISO,CA,38.398867,-121.923973,VacaDixonPeaker,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,43.641,43.641,1452.665,219.6597,1.0,0.45,50.6,16.386957704887593,88.70711319437281,0.16692592955696872,7.580021253465752,177.03073230159745,21.64201397811289,#TRUE#,#2002-06-21#,#2050-12-31#,Existing,CIPV,CA_CISO,6.325,50.6,48.0,CA,NG,Areo,#FALSE#,6.325,50.6, -55501,Kiamichi Energy Facility,CTG1,2003.0,183.9,151.0,176.9,70,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8210984230560087,0.9619358346927678,TRE,ERCO,OK,34.6831,-95.9349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55501,Kiamichi Energy Facility,CTG2,2003.0,183.9,148.5,176.5,70,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8075040783034257,0.9597607395323545,TRE,ERCO,OK,34.6831,-95.9349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55501,Kiamichi Energy Facility,CTG3,2003.0,183.9,152.1,177.2,70,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8270799347471451,0.9635671560630776,TRE,ERCO,OK,34.6831,-95.9349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55501,Kiamichi Energy Facility,CTG4,2003.0,183.9,149.4,172.7,70,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8123980424143556,0.9390973355084284,TRE,ERCO,OK,34.6831,-95.9349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55501,Kiamichi Energy Facility,STG1,2003.0,317.2,313.7,285.3,70,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9889659520807061,0.8994325346784364,TRE,ERCO,OK,34.6831,-95.9349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55501,Kiamichi Energy Facility,STG2,2003.0,317.2,314.9,288.7,70,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.992749054224464,0.9101513240857503,TRE,ERCO,OK,34.6831,-95.9349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55502,"Lawrenceburg Power, LLC",0100,2004.0,268.0,258.0,263.0,125,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9626865671641791,0.9813432835820896,RFC,PJM,IN,39.0911,-84.8669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55502,"Lawrenceburg Power, LLC",0200,2004.0,268.0,258.0,263.0,125,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9626865671641791,0.9813432835820896,RFC,PJM,IN,39.0911,-84.8669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55502,"Lawrenceburg Power, LLC",1100,2004.0,174.0,166.0,188.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9540229885057472,1.0,RFC,PJM,IN,39.0911,-84.8669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55502,"Lawrenceburg Power, LLC",1200,2004.0,174.0,171.0,193.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9827586206896551,1.0,RFC,PJM,IN,39.0911,-84.8669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55502,"Lawrenceburg Power, LLC",2100,2004.0,174.0,166.0,188.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9540229885057472,1.0,RFC,PJM,IN,39.0911,-84.8669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55502,"Lawrenceburg Power, LLC",2200,2004.0,174.0,171.0,193.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9827586206896551,1.0,RFC,PJM,IN,39.0911,-84.8669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55503,"Waterford Power, LLC",CTG1,2003.0,174.2,168.0,190.0,94,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9644087256027555,1.0,RFC,PJM,OH,39.5333,-81.7178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55503,"Waterford Power, LLC",CTG2,2003.0,174.2,168.0,190.0,94,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9644087256027555,1.0,RFC,PJM,OH,39.5333,-81.7178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55503,"Waterford Power, LLC",CTG3,2003.0,174.2,168.0,190.0,94,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9644087256027555,1.0,RFC,PJM,OH,39.5333,-81.7178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55503,"Waterford Power, LLC",ST1,2003.0,399.0,362.0,390.0,94,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9072681704260652,0.9774436090225564,RFC,PJM,OH,39.5333,-81.7178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55504,Limon Generating Station,L1,2002.0,77.1,67.0,75.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8690012970168612,0.972762645914397,WECC,WACM,CO,39.2038,-103.7005,Limon CT 1,GT E_7EA,False,1.0,1.0,-1.0,6.45,6.45,3807.411,14.19,1.0,0.56,75.0,3.4614451346325636,394.42229102534515,1.0468401098370885,-124.9313203385002,4275.535047702871,10.14941254567,#TRUE#,#2002-01-01#,#2050-12-31#,Existing,WACM,RM_WACM,50.0,75.0,40.0,CO,NG,Industrial,#FALSE#,50,75,16.113673423423425 -55504,Limon Generating Station,L2,2002.0,77.1,67.0,75.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8690012970168612,0.972762645914397,WECC,WACM,CO,39.2038,-103.7005,Limon CT 2,GT E_7EA,False,1.0,1.0,-1.0,6.45,6.45,3807.411,14.19,1.0,0.56,75.0,1.1180430666790186,501.0840913373197,0.6981028011233328,-81.44785631062524,2892.4407986576757,10.031018844040037,#TRUE#,#2002-01-01#,#2050-12-31#,Existing,WACM,RM_WACM,46.0,75.0,40.0,CO,NG,Industrial,#FALSE#,46,75,10.045555706916593 -55505,Frank Knutson,BR1,2002.0,77.1,67.0,75.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8690012970168612,0.972762645914397,WECC,PSCO,CO,39.941129,-104.682015,Frank Knutson 1,GT E_7EA,False,1.0,1.0,-1.0,58.05,58.05,1932.294,292.185,1.0,0.45,75.0,4.366326508291834,307.6307710346997,0.9796413119319679,-110.42573041183479,3595.386448148516,9.90724380650811,#TRUE#,#2002-06-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,45.0,75.0,49.1,CO,NG,Areo,#FALSE#,45,75,12.565167128467111 -55505,Frank Knutson,BR2,2002.0,77.1,67.0,75.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8690012970168612,0.972762645914397,WECC,PSCO,CO,39.941129,-104.682015,Frank Knutson 2,GT E_7EA,False,1.0,1.0,-1.0,58.05,58.05,1932.294,292.185,1.0,0.45,75.0,2.9090289264677973,398.99132846334874,0.7880766974206964,-89.43592998068091,3043.8401272516267,10.095494527048087,#TRUE#,#2002-06-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,45.0,75.0,49.1,CO,NG,Areo,#FALSE#,45,75,12.528851271394348 -55508,CalPeak Power Panoche Peaker Plant,CPP2,2001.0,60.5,48.0,52.0,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.859504132231405,WECC,CISO,CA,36.652905,-120.580609,CPeakPanochePkr,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,58.0,14.20068727797249,88.10059481201982,0.1262073826106543,6.568222289491636,175.84063625352923,18.75385502477607,#TRUE#,#2001-12-27#,#2050-12-31#,Existing,CIPV,CA_CISO,7.25,58.0,48.0,CA,NG,Areo,#FALSE#,7.25,58, -55510,CalPeak Power Border Peaker Plant,CPP4,2001.0,60.5,48.0,51.3,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.8479338842975206,WECC,CISO,CA,32.562448,-116.943869,BorderPeaker,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,44.964,44.964,1496.704,10.9912,1.0,0.45,48.0,4.439888411177427,259.7813307606233,-0.018027813295475828,6.099366644361569,221.6162049767718,10.11554318217782,#TRUE#,#2001-10-26#,#2050-12-31#,Existing,CISD,CA_CISO,44.0,48.0,46.5,CA,NG,Industrial,#FALSE#,44,48, -55512,Cuyamaca Peak Energy Plant,CPP6,2002.0,48.7,48.7,48.7,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.796491,-116.972071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55513,CalPeak Power Enterprise Peaker Plant,CPP7,2001.0,58.9,48.0,48.1,21,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8149405772495756,0.8166383701188455,WECC,CISO,CA,33.121943,-117.117441,EnterprisePeakr,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,42.21,42.21,1405.032,10.318,1.0,0.45,48.0,17.27423008521094,88.71020729097322,0.18549629099521286,7.990386524432444,177.0329193210027,22.81408324285435,#TRUE#,#2001-10-23#,#2050-12-31#,Existing,CISD,CA_CISO,6.0,48.0,44.0,CA,NG,Industrial,#FALSE#,6,48, -55514,Apex Generating Station,CTG1,2003.0,174.0,164.6,181.6,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9459770114942528,1.0,WECC,NEVP,NV,36.415999,-114.960916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55514,Apex Generating Station,CTG2,2003.0,174.0,164.6,181.6,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9459770114942528,1.0,WECC,NEVP,NV,36.415999,-114.960916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55514,Apex Generating Station,STG1,2003.0,252.6,195.2,213.4,55,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7727632620744259,0.8448139350752177,WECC,NEVP,NV,36.415999,-114.960916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55516,Fayette Energy Facility,CTG1,2003.0,198.9,177.7,201.9,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8934137757667169,1.0,RFC,PJM,PA,39.8592,-79.9182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.865794560873523 -55516,Fayette Energy Facility,CTG2,2003.0,198.9,177.7,201.9,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8934137757667169,1.0,RFC,PJM,PA,39.8592,-79.9182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.610336107127642 -55516,Fayette Energy Facility,STG1,2003.0,317.1,312.2,302.1,120,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9845474613686533,0.9526963103122044,RFC,PJM,PA,39.8592,-79.9182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG1,2001.0,50.0,46.5,50.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9299999999999999,1.0,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG2,2001.0,50.0,45.3,49.5,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9059999999999999,0.99,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG3,2001.0,50.0,46.1,50.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.922,1.0,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG4,2001.0,50.0,45.7,49.7,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.914,0.9940000000000001,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG5,2001.0,50.0,46.1,50.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.922,1.0,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG6,2018.0,50.0,47.4,49.8,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.948,0.996,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55517,Wallingford Energy,CTG7,2018.0,50.0,46.2,50.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.924,1.0,NPCC,ISNE,CT,41.448694,-72.835364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55518,High Desert Power Plant,CTG1,2003.0,173.0,162.3,174.8,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9381502890173411,1.0,WECC,CISO,CA,34.5953,-117.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.034973611010853 -55518,High Desert Power Plant,CTG2,2003.0,173.0,161.1,172.6,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9312138728323699,0.9976878612716763,WECC,CISO,CA,34.5953,-117.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.967083575407843 -55518,High Desert Power Plant,CTG3,2003.0,173.0,162.2,177.4,110,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.93757225433526,1.0,WECC,CISO,CA,34.5953,-117.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.054008890684987 -55518,High Desert Power Plant,STG1,2003.0,333.0,305.3,310.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9168168168168168,0.9309309309309309,WECC,CISO,CA,34.5953,-117.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55522,Sundance,CT1,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 01,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT10,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 10,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44,12.700102908965146 -55522,Sundance,CT2,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 02,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT3,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 03,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT4,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 04,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.642218459201912,132.40645425644,0.5323112920036331,-28.223800814622162,613.6253752979434,9.388328645233825,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT5,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 05,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT6,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 06,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT7,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 07,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT8,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 08,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55522,Sundance,CT9,2002.0,60.5,41.0,44.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6776859504132231,0.7272727272727273,WECC,WALC,AZ,32.9285,-111.5899,Sundance AZ 09,GT LM_LM6000,False,1.0,1.0,-1.0,39.6,39.6,1318.154,199.32,1.0,0.45,44.0,4.801513334013385,132.90209016668481,0.42912661998885254,-21.693670120875414,520.840314713248,9.565389592366973,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,20.0,44.0,40.0,AZ,NG,Areo,#FALSE#,20,44, -55524,York Energy Center,CTG1,2011.0,120.0,113.0,113.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9416666666666667,0.9416666666666667,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55524,York Energy Center,CTG2,2011.0,120.0,122.0,122.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55524,York Energy Center,CTG3,2011.0,120.0,122.0,122.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55524,York Energy Center,CTG5,2019.0,234.9,216.3,231.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9208173690932312,0.983397190293742,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55524,York Energy Center,CTG6,2019.0,234.9,216.3,231.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9208173690932312,0.983397190293742,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55524,York Energy Center,STG1,2011.0,200.0,188.0,188.0,112,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.94,0.94,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55524,York Energy Center,STG2,2019.0,419.6,395.1,396.9, ,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9416110581506196,0.9459008579599617,RFC,PJM,PA,39.7375,-76.306666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55525,MMSD South Shore Wastewater,1,2000.0,1.5,1.4,1.4,0.1,OBG,Other Waste Biomass,OP,IC,8.0,2000.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,RFC,MISO,WI,42.8869,-87.8422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.141900212077143 -55525,MMSD South Shore Wastewater,1CAT,2009.0,0.9,0.9,0.9,0.1,OBG,Other Waste Biomass,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.8869,-87.8422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.141900399715581 -55525,MMSD South Shore Wastewater,2CAT,2010.0,0.9,0.9,0.9,0.1,OBG,Other Waste Biomass,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.8869,-87.8422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.141900399715581 -55525,MMSD South Shore Wastewater,3CAT,2009.0,0.9,0.9,0.9,0.1,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.8869,-87.8422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.141900399715581 -55525,MMSD South Shore Wastewater,4CAT,2009.0,0.9,0.9,0.9,0.1,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,42.8869,-87.8422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.141900399715581 -55534,Water Filter Plant #2,1299,2013.0,1.8,1.7,1.7,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,DUK,NC,35.737748,-81.7278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55538,Escondido Energy Center,CTG1,2014.0,54.0,54.0,54.0,24.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.1261,-117.1172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.691209394501602 -55540,Chula Vista Energy Center,GEN1,2001.0,37.2,37.2,37.2,30,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.591667,-117.058611,Chula_Vista,GT Aero_FT4,False,1.0,1.0,-1.0,31.95,31.95,1063.51,160.815,1.0,0.45,35.0,17.85468060128211,66.86047347828898,0.26288609120898937,8.26098697056082,133.4114665443691,23.58095855911484,#TRUE#,#2006-06-08#,#2050-12-31#,Existing,CISD,CA_CISO,4.375,35.0,36.5,CA,NG,Areo,#FALSE#,4.375,35, -55541,Indigo Energy Facility,CTG1,2001.0,49.9,46.7,46.7,37.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.935871743486974,0.935871743486974,WECC,CISO,CA,33.910873,-116.552994,Indigo1,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,40.5,40.5,1348.112,203.85,1.0,0.45,47.0,-3.025101495483686,486.031761769198,-0.00041057211479713886,-2.9910240398091354,485.328042689285,8.743090736743023,#TRUE#,#2001-09-19#,#2050-12-31#,Existing,CISC,CA_CISO,37.0,47.0,40.0,CA,NG,Areo,#FALSE#,37,47, -55541,Indigo Energy Facility,CTG2,2001.0,49.9,47.6,47.6,38.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9539078156312626,0.9539078156312626,WECC,CISO,CA,33.910873,-116.552994,Indigo2,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,40.5,40.5,1348.112,203.85,1.0,0.45,47.0,-2.8310513397262387,481.7524043693887,-0.00041057203146502736,-2.7969740467360142,481.0486928325471,8.833525646599579,#TRUE#,#2001-09-19#,#2050-12-31#,Existing,CISC,CA_CISO,37.0,47.0,40.0,CA,NG,Areo,#FALSE#,37,47, -55541,Indigo Energy Facility,CTG3,2001.0,49.9,48.2,48.2,38.6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.965931863727455,0.965931863727455,WECC,CISO,CA,33.910873,-116.552994,Indigo3,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,40.5,40.5,1348.112,203.85,1.0,0.45,48.0,-1.9585558326721846,443.6426723329301,-0.00029450715292445587,-1.9338466855492618,443.1273377930766,8.677556054581938,#TRUE#,#2001-09-19#,#2050-12-31#,Existing,CISC,CA_CISO,37.0,48.0,40.0,CA,NG,Areo,#FALSE#,37,48, -55542,Larkspur Energy Facility,CTG1,2001.0,49.9,45.6,45.6,36.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9138276553106213,0.9138276553106213,WECC,CISO,CA,32.567041,-116.944197,Larkspur1,GT LM_LM6000,False,1.0,1.0,-1.0,40.5,40.5,1348.112,9.9,1.0,0.45,46.0,-0.19901295158241764,380.28258665491796,-0.0005957436194756616,-0.15010240147483317,379.2826786924984,9.101872716090066,#TRUE#,#2001-09-13#,#2050-12-31#,Existing,CISD,CA_CISO,37.0,46.0,0.0,CA,NG,Industrial,#FALSE#,37,46, -55542,Larkspur Energy Facility,CTG2,2001.0,49.9,46.0,46.0,36.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9218436873747495,0.9218436873747495,WECC,CISO,CA,32.567041,-116.944197,Larkspur2,GT LM_LM6000,False,1.0,1.0,-1.0,40.5,40.5,1348.112,9.9,1.0,0.45,46.0,-1.8206462244694983,440.57171714212234,-0.0004492793409945899,-1.7838294614591856,439.8204904194977,8.954780559054056,#TRUE#,#2001-09-13#,#2050-12-31#,Existing,CISD,CA_CISO,37.0,46.0,0.0,CA,NG,Industrial,#FALSE#,37,46, -55544,Klamath Expansion Project,GT1,2002.0,29.4,25.0,28.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8503401360544218,0.979591836734694,WECC,AVRN,OR,42.172718,-121.814393,KlamathExpGT1,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,26.46,26.46,880.7664,133.182,1.0,0.45,29.0,5.452743605729931,85.20943415681289,-4.2838572151676635e-06,5.4529166405290095,85.20777732831533,9.911889453610685,#TRUE#,#2002-05-01#,#2050-12-31#,Existing,PACW,NW_PACW,13.0,29.0,0.0,OR,NG,Areo,#FALSE#,13,29,8.917022330671399 -55544,Klamath Expansion Project,GT2,2002.0,29.4,25.0,28.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8503401360544218,0.979591836734694,WECC,AVRN,OR,42.172718,-121.814393,KlamathExpGT2,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,26.46,26.46,880.7664,133.182,1.0,0.45,29.0,5.452743605729931,85.20943415681289,-4.2838572151676635e-06,5.4529166405290095,85.20777732831533,9.911889453610685,#TRUE#,#2002-05-03#,#2050-12-31#,Existing,PACW,NW_PACW,13.0,29.0,49.8,OR,NG,Areo,#FALSE#,13,29,10.705019668737059 -55544,Klamath Expansion Project,GT3,2002.0,29.4,25.0,28.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8503401360544218,0.979591836734694,WECC,AVRN,OR,42.172718,-121.814393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.14899896480331 -55544,Klamath Expansion Project,GT4,2002.0,29.4,25.0,28.8,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8503401360544218,0.979591836734694,WECC,AVRN,OR,42.172718,-121.814393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.172737947352855 -55545,Hidalgo Energy Center,CTG1,2000.0,176.6,159.0,178.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9003397508493771,1.0,TRE,ERCO,TX,26.34172,-98.175759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55545,Hidalgo Energy Center,CTG2,2000.0,176.6,149.0,168.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8437146092865233,0.9513023782559457,TRE,ERCO,TX,26.34172,-98.175759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55545,Hidalgo Energy Center,STG1,2000.0,198.1,172.0,182.0,62,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8682483594144372,0.9187279151943464,TRE,ERCO,TX,26.34172,-98.175759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55556,Security,GEN5,2003.0,1.7,1.7,1.7,0.2,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,TX,30.3225,-95.2681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.79591836734694 -55556,Security,UNT2,2003.0,1.7,1.7,1.7,0.2,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,TX,30.3225,-95.2681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.79591836734694 -55557,Wilmington Hydrogen Plant,T101,1996.0,31.9,28.1,27.7,0,WH,All Other,OP,ST,3.0,1996.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8808777429467085,0.8683385579937304,WECC,LDWP,CA,33.7803,-118.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55558,Combined Locks Energy Center,GEN1,2002.0,60.5,45.9,47.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7586776859504132,0.7768595041322314,RFC,MISO,WI,44.2717,-88.3011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55558,Combined Locks Energy Center,GEN2,2002.0,6.0,6.0,6.0,1,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,WI,44.2717,-88.3011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55560,FPL Energy Vansycle LLC (WA),V-47,2001.0,176.9,176.9,176.9,15,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,46.06,-118.917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55561,Tsar Nicholas LLC,TN30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.42,-96.4347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55562,Sun River LLC,SU30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.4289,-96.4358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55563,Julia Hills LLC,JH30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.4231,-96.4458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55564,Jessica Mills LLC,JM30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.4278,-96.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55565,Jack River LLC,JR30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.4233,-96.4411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55566,Autumn Hills LLC,AH30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.4131,-96.4325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55567,Winters Spawn LLC,WS30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2081,-96.1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55568,Twin Lake Hills LLC,TL30,2000.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2258,-96.2789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55569,Spartan Hills LLC,SH30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2358,-96.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55570,Soliloquoy Ridge LLC,SR30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2364,-96.2331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55571,Ruthton Ridge LLC,RR30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2128,-96.2131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55572,Hope Creek LLC,HC30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2275,-96.2192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55573,Hadley Ridge LLC,HR30,2000.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2253,-96.235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55574,Florence Hills LLC,FH30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2297,-96.225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55576,Agassiz Beach LLC,AB30,2001.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,47.0053,-96.4356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55579,Llano Estacado Wind Ranch,EXIS,2001.0,80.0,80.0,80.0,5.2,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.4677,-101.2533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55581,King Mountain Wind Ranch 1,EXIS,2001.0,278.0,278.0,278.0,14.1,WND,Onshore Wind Turbine,OP,WT,6.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.2092,-102.2417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55589,GRS Fall River,3,2000.0,5.3,4.4,4.8,4.2,LFG,Landfill Gas,OP,GT,7.0,2000.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8301886792452831,0.9056603773584906,NPCC,ISNE,MA,41.748669,-71.106469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.1900826446281 -55596,GRS Arbor Hills,0001,1996.0,5.0,3.8,4.2,1,LFG,Landfill Gas,OP,CT,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.76,0.8400000000000001,RFC,MISO,MI,42.395335,-83.557999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.562659676918297 -55596,GRS Arbor Hills,0002,1996.0,5.0,3.8,4.2,1,LFG,Landfill Gas,OP,CT,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.76,0.8400000000000001,RFC,MISO,MI,42.395335,-83.557999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.743068729971327 -55596,GRS Arbor Hills,0003,1996.0,5.0,3.8,4.2,1,LFG,Landfill Gas,OP,CT,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.76,0.8400000000000001,RFC,MISO,MI,42.395335,-83.557999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.84213566220112 -55596,GRS Arbor Hills,0004,1996.0,10.0,7.6,8.4,7,LFG,Landfill Gas,OP,CA,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Steam Part,0.76,0.8400000000000001,RFC,MISO,MI,42.395335,-83.557999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55596,GRS Arbor Hills,0005,2005.0,5.3,4.8,5.3,4.2,LFG,Landfill Gas,OP,CT,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.9056603773584906,1.0,RFC,MISO,MI,42.395335,-83.557999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.321595160040344 -55597,GRS C&C,1,1995.0,1.0,0.9,0.9,0.8,LFG,Landfill Gas,OP,IC,2.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,42.356343,-85.005779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.07524264424168 -55597,GRS C&C,2,1995.0,1.0,0.9,0.9,0.8,LFG,Landfill Gas,OS,IC,2.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,42.356343,-85.005779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.07524264424168 -55597,GRS C&C,3,1995.0,1.0,0.9,0.9,0.8,LFG,Landfill Gas,OP,IC,2.0,1995.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,RFC,MISO,MI,42.356343,-85.005779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.07524264424168 -55597,GRS C&C,4,2007.0,2.7,2.3,2.6,2.2,LFG,Landfill Gas,OP,GT,2.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8518518518518517,0.9629629629629629,RFC,MISO,MI,42.356343,-85.005779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.901744662089815 -55599,GRS CMS,1,1999.0,5.3,4.3,4.8,4.2,LFG,Landfill Gas,OP,GT,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8113207547169812,0.9056603773584906,SERC,DUK,NC,35.353269,-80.668024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.08056338028169 -55602,North City - Landfill Gas Engines South,UNT1,1999.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OS,IC,3.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.8817,-117.1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.982582582582582 -55602,North City - Landfill Gas Engines South,UNT2,1999.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OS,IC,3.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.8817,-117.1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.982582582582582 -55602,North City - Landfill Gas Engines South,UNT3,1999.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OS,IC,3.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.8817,-117.1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.982582582582582 -55602,North City - Landfill Gas Engines South,UNT4,1999.0,0.9,0.9,0.9,0.7,LFG,Landfill Gas,OS,IC,3.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,32.8817,-117.1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.982582582582582 -55607,Foote Creek I,GEN1,1999.0,41.4,41.4,41.4,0,WND,Onshore Wind Turbine,OP,WT,4.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,41.6283,-106.2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55619,Watchtower Educational Center,GEN1,1996.0,0.7,0.7,0.7,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,2.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.498392,-73.57456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55619,Watchtower Educational Center,GEN2,1993.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,SB,IC,6.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.498392,-73.57456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55619,Watchtower Educational Center,GEN3,2000.0,0.7,0.7,0.7,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,2.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.498392,-73.57456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55620,Perryville Power Station,2-CT,2001.0,186.2,151.1,186.6,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8114930182599356,1.0,SERC,MISO,LA,32.6908,-92.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55620,Perryville Power Station,CT-1,2002.0,198.9,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,LA,32.6908,-92.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55620,Perryville Power Station,CT-2,2002.0,198.9,,,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,MISO,LA,32.6908,-92.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55620,Perryville Power Station,ST-1,2002.0,240.1,578.5,632.0,140,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,32.6908,-92.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55622,West Valley Generation Project,U1,2002.0,43.4,37.0,41.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8525345622119815,0.9447004608294931,WECC,PACE,UT,40.6667,-112.0317,West_Valley1,GT LM_LM6000,False,1.0,1.0,-1.0,35.1,35.1,1168.364,176.67,1.0,0.45,44.0,5.415140960668517,77.76840755421465,0.21406204646817667,-5.405177922731225,193.16283953892278,9.457286249185454,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,PAUT,BS_PACE,9.768,44.0,37.5,UT,NG,Areo,#FALSE#,9.768,44,8.017791018229437 -55622,West Valley Generation Project,U2,2002.0,43.4,37.0,41.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8525345622119815,0.9447004608294931,WECC,PACE,UT,40.6667,-112.0317,West_Valley2,GT LM_LM6000,False,1.0,1.0,-1.0,35.1,35.1,1168.364,176.67,1.0,0.45,44.0,5.415140960668517,77.76840755421465,0.21406204646817667,-5.405177922731225,193.16283953892278,9.457286249185454,#TRUE#,#2001-10-01#,#2050-12-31#,Existing,PAUT,BS_PACE,9.768,44.0,37.5,UT,NG,Areo,#FALSE#,9.768,44,6.551417851753076 -55622,West Valley Generation Project,U3,2001.0,43.4,37.0,41.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8525345622119815,0.9447004608294931,WECC,PACE,UT,40.6667,-112.0317,West_Valley3,GT LM_LM6000,False,1.0,1.0,-1.0,35.1,35.1,1168.364,176.67,1.0,0.45,44.0,8.362590760715705,120.07122851200101,0.3305492963179698,-8.345876702419892,298.2604377383084,14.603497137484146,#TRUE#,#2002-06-01#,#2050-12-31#,Existing,PAUT,BS_PACE,9.768,44.0,37.5,UT,NG,Areo,#FALSE#,9.768,44,14.07941223440357 -55622,West Valley Generation Project,U4,2001.0,43.4,37.0,41.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8525345622119815,0.9447004608294931,WECC,PACE,UT,40.6667,-112.0317,West_Valley4,GT LM_LM6000,False,1.0,1.0,-1.0,35.1,35.1,1168.364,176.67,1.0,0.45,44.0,8.843907274653757,126.9988402426961,0.34957796793545576,-8.826414082715848,315.4458509714049,15.444888056936838,#TRUE#,#2002-06-01#,#2050-12-31#,Existing,PAUT,BS_PACE,9.768,44.0,37.5,UT,NG,Areo,#FALSE#,9.768,44,12.274748985922692 -55622,West Valley Generation Project,U5,2002.0,43.4,37.0,41.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8525345622119815,0.9447004608294931,WECC,PACE,UT,40.6667,-112.0317,West_Valley5,GT LM_LM6000,False,1.0,1.0,-1.0,35.1,35.1,1168.364,176.67,1.0,0.45,44.0,8.544049463316467,122.70000180058764,0.33770985426749023,-8.526367078988683,304.74925742980076,14.921590804040317,#TRUE#,#2002-10-01#,#2050-12-31#,Existing,PAUT,BS_PACE,9.768,44.0,37.5,UT,NG,Areo,#FALSE#,9.768,44,11.112729405048029 -55625,Creed Energy Center,CT1,2003.0,47.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106383,0.9574468085106383,WECC,CISO,CA,38.242158,-121.854722,Creed_Energy,GT LM_LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,50.0,4.504421090543516,129.05321810498032,0.33094596612915217,-18.451877819627782,505.073961981497,8.648121793993282,#TRUE#,#2003-01-06#,#2050-12-31#,Existing,CIPB,CA_CISO,22.0,50.0,45.72034,CA,NG,Areo,#FALSE#,22,50, -55626,Lambie Energy Center,CT1,2003.0,47.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106383,0.9574468085106383,WECC,CISO,CA,38.221577,-121.868333,Lambie_EC,GT LM_LM6000PC,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,48.0,3.6625957283942965,150.51396817005636,0.45504671443106537,-27.07764841979736,643.5005986537516,8.585738460950454,#TRUE#,#2003-01-06#,#2050-12-31#,Existing,CIPB,CA_CISO,22.0,48.0,47.5,CA,NG,Areo,#FALSE#,22,48, -55627,Goose Haven Energy Center,CT1,2003.0,47.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106383,0.9574468085106383,WECC,CISO,CA,38.226752,-121.843271,Goose_Haven,GT LM_LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,47.0,3.6703405472831734,153.87116022253164,0.419333385217117,-24.277362596819586,597.2380545344013,8.751431843706284,#TRUE#,#2003-01-06#,#2050-12-31#,Existing,CIPB,CA_CISO,22.0,47.0,45.72035,CA,NG,Areo,#FALSE#,22,47, -55640,University Park North,1,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,10,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,11,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,12,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,2,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,3,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,4,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,5,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,6,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,7,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,8,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55640,University Park North,9,2002.0,60.5,45.0,45.0,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,RFC,PJM,IL,41.4425,-87.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55641,Riverside Energy Center,CTG1,2004.0,198.9,155.2,166.7,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7802916038210155,0.8381096028154851,MRO,MISO,WI,42.583056,-89.035833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55641,Riverside Energy Center,CTG2,2004.0,198.9,153.3,164.6,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.770739064856712,0.8275515334338863,MRO,MISO,WI,42.583056,-89.035833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55641,Riverside Energy Center,STG1,2004.0,277.1,251.9,257.3,65,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9090581017683146,0.92854565138939,MRO,MISO,WI,42.583056,-89.035833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55645,Blue Spruce Energy Center,CT01,2003.0,198.9,130.0,144.0,66,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.65359477124183,0.7239819004524887,WECC,PSCO,CO,39.747875,-104.681404,Blue Spruce 1,GT F_Frame F,False,1.0,1.0,-1.0,14.6,14.6,8618.327,32.12,1.0,0.56,150.0,4.561482429797843,454.57163020842347,0.3282612921008751,-70.51190026042863,4616.800855421049,8.664252250894688,#TRUE#,#2003-04-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,81.0,150.0,140.0,CO,NG,Industrial,#FALSE#,81,150, -55645,Blue Spruce Energy Center,CT02,2003.0,198.9,134.0,148.0,71,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6737053795877326,0.7440925087983912,WECC,PSCO,CO,39.747875,-104.681404,Blue Spruce 2,GT F_Frame F,False,1.0,1.0,-1.0,14.6,14.6,8618.327,32.12,1.0,0.56,150.0,5.614958458815495,350.32456189918724,0.3395358732143442,-71.68606414419696,4611.550854485732,8.795230807666345,#TRUE#,#2003-04-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,80.0,150.0,135.0,CO,NG,Industrial,#FALSE#,80,150, -55650,Plains End,GE10,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G10,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE11,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G11,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE12,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G12,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE13,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G13,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE14,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G14,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE15,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G15,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE16,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G16,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE17,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G17,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE18,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G18,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE19,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G19,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GE20,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G20,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN1,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G01,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN2,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G02,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN3,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G03,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN4,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G04,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN5,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G05,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN6,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G06,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN7,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G07,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN8,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G08,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55650,Plains End,GEN9,2002.0,5.7,5.7,5.7,3.6,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.857499,-105.225967,Plains End 1 G09,IC_18V34SG,False,1.0,1.0,-1.0,5.225,5.225,55.0,0.55,1.0,0.0,5.5,6.0101299327604485,11.615285458444845,-9.123401190476769e-07,6.010135985559742,11.615276575417113,9.901233303255955,#TRUE#,#2002-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,1.65,5.5,4.8,CO,NG,,#FALSE#,1.65,5.5,10.600951733514616 -55651,Spring Creek Energy Center,CT01,2001.0,84.5,71.5,,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8461538461538461,,MRO,SWPP,OK,35.7422,-97.655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55651,Spring Creek Energy Center,CT02,2001.0,84.5,69.4,,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.821301775147929,,MRO,SWPP,OK,35.7422,-97.655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55651,Spring Creek Energy Center,CT03,2001.0,84.5,70.4,,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8331360946745563,,MRO,SWPP,OK,35.7422,-97.655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55651,Spring Creek Energy Center,CT04,2001.0,84.5,69.8,,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8260355029585799,,MRO,SWPP,OK,35.7422,-97.655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55654,Chambersburg,UN12,2001.0,43.8,49.7,49.2,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.866944,-77.685833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55654,Chambersburg,UN13,2001.0,43.8,48.5,49.3,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,39.866944,-77.685833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55655,WFEC GenCo LLC,GEN1,2001.0,45.0,45.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.0833,-98.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.44481602286887 -55655,WFEC GenCo LLC,GEN2,2001.0,45.0,45.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,35.0833,-98.2264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.44481602286887 -55656,"Pastoria Energy Facility, LLC",CT01,2005.0,168.0,175.0,185.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,34.9556,-118.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55656,"Pastoria Energy Facility, LLC",CT02,2005.0,168.0,173.0,183.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,34.9556,-118.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55656,"Pastoria Energy Facility, LLC",CT04,2005.0,168.0,171.0,181.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,34.9556,-118.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55656,"Pastoria Energy Facility, LLC",ST03,2005.0,185.0,174.0,184.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9405405405405405,0.9945945945945946,WECC,CISO,CA,34.9556,-118.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55656,"Pastoria Energy Facility, LLC",ST05,2005.0,90.0,87.0,89.0,50,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9666666666666667,0.9888888888888889,WECC,CISO,CA,34.9556,-118.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55661,Newington,GT-1,2002.0,185.6,164.4,201.5,105,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8857758620689655,1.0,NPCC,ISNE,NH,43.1047,-70.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55661,Newington,GT-2,2002.0,185.6,164.4,201.5,105,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8857758620689655,1.0,NPCC,ISNE,NH,43.1047,-70.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55661,Newington,ST,2002.0,234.3,231.7,230.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9889031156636789,0.9816474605207,NPCC,ISNE,NH,43.1047,-70.8061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55662,Chehalis Generating Facility,CA,2003.0,230.0,157.0,167.0,100,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2003.0,12,2043,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.682608695652174,0.7260869565217392,WECC,BPAT,WA,46.6225,-122.9131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55662,Chehalis Generating Facility,CT1,2003.0,234.0,160.0,170.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0,12,2043,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6837606837606838,0.7264957264957265,WECC,BPAT,WA,46.6225,-122.9131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.641207071928335 -55662,Chehalis Generating Facility,CT2,2003.0,234.0,160.0,170.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2003.0,12,2043,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6837606837606838,0.7264957264957265,WECC,BPAT,WA,46.6225,-122.9131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.415034962459456 -55664,Harrison County Power Project,GT-1,2003.0,170.0,144.5,166.6,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.85,0.98,MRO,SWPP,TX,32.3958,-94.4367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.600234319172769 -55664,Harrison County Power Project,GT-2,2003.0,170.0,144.5,166.6,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.85,0.98,MRO,SWPP,TX,32.3958,-94.4367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900521622431222 -55664,Harrison County Power Project,ST-1,2003.0,230.0,225.4,225.4,50,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.98,0.98,MRO,SWPP,TX,32.3958,-94.4367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55667,Lower Mount Bethel Energy,G1,2004.0,211.5,195.3,195.3,96,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.923404255319149,0.923404255319149,RFC,PJM,PA,40.801924,-75.107563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55667,Lower Mount Bethel Energy,G2,2004.0,211.5,191.3,191.3,96,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9044917257683216,0.9044917257683216,RFC,PJM,PA,40.801924,-75.107563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55667,Lower Mount Bethel Energy,G3,2004.0,228.6,215.0,215.0,135,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9405074365704287,0.9405074365704287,RFC,PJM,PA,40.801924,-75.107563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55672,AL Sandersville LLC,CT1,2002.0,86.5,72.1,86.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8335260115606936,1.0,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55672,AL Sandersville LLC,CT2,2002.0,86.5,72.1,86.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8335260115606936,1.0,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55672,AL Sandersville LLC,CT3,2002.0,86.5,72.0,86.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.880020743834667 -55672,AL Sandersville LLC,CT4,2002.0,86.5,72.0,86.8,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,1.0,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.318710798707716 -55672,AL Sandersville LLC,CT5,2002.0,86.5,72.1,82.6,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8335260115606936,0.9549132947976878,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.182751781797285 -55672,AL Sandersville LLC,CT6,2002.0,86.5,72.1,82.6,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8335260115606936,0.9549132947976878,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.124524678856006 -55672,AL Sandersville LLC,CT7,2002.0,86.5,72.0,82.5,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,0.953757225433526,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.806594577169166 -55672,AL Sandersville LLC,CT8,2002.0,86.5,72.0,82.5,60,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8323699421965318,0.953757225433526,SERC,SOCO,GA,33.1189,-82.8608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.299353156777137 -55684,Flambeau Crowley Rapids Project,GEN1,1930.0,1.0,1.0,1.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.8683,-90.5844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55684,Flambeau Crowley Rapids Project,GEN2,1930.0,0.5,0.5,0.5,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1930.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.8683,-90.5844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55685,Flambeau Lower Project,GEN1,1923.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.913526,-90.44746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55685,Flambeau Lower Project,GEN2,1923.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.913526,-90.44746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55685,Flambeau Lower Project,GEN3,1923.0,0.4,0.4,0.4,0,WAT,Conventional Hydroelectric,OP,HY,1.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.913526,-90.44746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55687,Higgins Generating Station,A01,2004.0,178.0,177.0,167.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9943820224719101,0.9382022471910112,WECC,NEVP,NV,35.6139,-115.3561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55687,Higgins Generating Station,A02,2004.0,178.0,177.0,167.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9943820224719101,0.9382022471910112,WECC,NEVP,NV,35.6139,-115.3561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55687,Higgins Generating Station,ST1,2004.0,332.4,266.0,283.0,110,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8002406738868834,0.8513838748495789,WECC,NEVP,NV,35.6139,-115.3561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,CTG1,2002.0,127.0,118.0,118.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9291338582677166,0.9291338582677166,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,CTG2,2002.0,127.0,127.0,127.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,CTG3,2002.0,127.0,127.0,127.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,CTG5,2003.0,127.0,118.0,118.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9291338582677166,0.9291338582677166,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,CTG6,2003.0,127.0,127.0,127.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,CTG7,2003.0,127.0,127.0,127.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,STG4,2003.0,195.5,195.0,195.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9974424552429667,0.9974424552429667,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55690,Bethlehem Power Plant,STG8,2003.0,195.5,195.0,195.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9974424552429667,0.9974424552429667,RFC,PJM,PA,40.6175,-75.3147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55694,Quantum Choctaw Power LLC,CT1,2006.0,270.0,220.0,240.0,0.9,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8148148148148149,0.8888888888888888,SERC,TVA,MS,33.3792,-89.2089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55694,Quantum Choctaw Power LLC,CT2,2006.0,270.0,220.0,240.0,0.9,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8148148148148149,0.8888888888888888,SERC,TVA,MS,33.3792,-89.2089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55694,Quantum Choctaw Power LLC,ST1,2006.0,310.5,270.0,285.0,0.9,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8695652173913043,0.9178743961352657,SERC,TVA,MS,33.3792,-89.2089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55698,Hanford Energy Park Peaker,HEP1,2001.0,46.1,45.9,48.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9956616052060737,1.0,WECC,CISO,CA,36.270072,-119.648055,HanfordEnergy1,GT LM_LM6000,False,1.0,1.0,-1.0,43.2,43.2,1437.986,217.44,1.0,0.45,49.0,6.03378588982213,97.26189482358573,0.27348129164020535,-13.28709959071288,423.96515317447364,9.038440634412506,#TRUE#,#2001-08-27#,#2050-12-31#,Existing,CIPV,CA_CISO,24.0,49.0,49.23,CA,NG,Areo,#FALSE#,24,49,9.939586419098143 -55698,Hanford Energy Park Peaker,HEP2,2001.0,46.1,45.9,48.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9956616052060737,1.0,WECC,CISO,CA,36.270072,-119.648055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.432645835543767 -55699,Bayswater Peaking Facility LLC,1,2002.0,60.5,52.8,58.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8727272727272727,0.9586776859504132,NPCC,NYIS,NY,40.610654,-73.762218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.7101777022377 -55700,Mint Farm Generating Station,1STG,2008.0,133.0,120.0,129.0,58,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9022556390977443,0.9699248120300752,WECC,PSEI,WA,46.138824,-122.985506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55700,Mint Farm Generating Station,CTG1,2008.0,186.0,150.0,207.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8064516129032258,1.0,WECC,PSEI,WA,46.138824,-122.985506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.834686267444305 -55701,Fremont Energy Center,CA01,2012.0,358.7,345.1,345.1,127,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9620853080568721,0.9620853080568721,RFC,PJM,OH,41.377116,-83.161388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55701,Fremont Energy Center,CT01,2012.0,190.4,170.0,170.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8928571428571428,0.8928571428571428,RFC,PJM,OH,41.377116,-83.161388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.837969201126477 -55701,Fremont Energy Center,CT02,2012.0,190.4,170.0,170.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8928571428571428,0.8928571428571428,RFC,PJM,OH,41.377116,-83.161388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.026134784294074 -55706,Choctaw County,CTG1,2003.0,179.0,164.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9162011173184358,1.0,SERC,TVA,MS,33.2881,-89.4201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.057252160759592 -55706,Choctaw County,CTG2,2003.0,179.0,164.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9162011173184358,1.0,SERC,TVA,MS,33.2881,-89.4201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.105449798404743 -55706,Choctaw County,CTG3,2003.0,179.0,164.0,186.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9162011173184358,1.0,SERC,TVA,MS,33.2881,-89.4201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.560357977928815 -55706,Choctaw County,STG1,2003.0,362.0,289.0,326.0,140,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7983425414364641,0.9005524861878453,SERC,TVA,MS,33.2881,-89.4201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55708,Nacogdoches Power,STG4,2012.0,114.0,100.0,100.0,70,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,2012.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8771929824561404,0.8771929824561404,TRE,ERCO,TX,31.832132,-94.90064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55710,Allegheny Energy Units 3 4 & 5,UNT3,2003.0,184.0,182.1,202.4,128,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9896739130434782,1.0,RFC,PJM,PA,40.545278,-79.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55710,Allegheny Energy Units 3 4 & 5,UNT4,2003.0,184.0,181.6,202.8,128,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9869565217391304,1.0,RFC,PJM,PA,40.545278,-79.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55710,Allegheny Energy Units 3 4 & 5,UNT5,2003.0,188.0,198.8,178.5,127,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,0.949468085106383,RFC,PJM,PA,40.545278,-79.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55714,Magnet Cove,GT1,2005.0,242.0,208.1,227.5,142,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599173553719008,0.9400826446280992,SERC,MISO,AR,34.4297,-92.8317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55714,Magnet Cove,GT2,2006.0,242.0,208.1,227.5,142,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8599173553719008,0.9400826446280992,SERC,MISO,AR,34.4297,-92.8317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55714,Magnet Cove,ST1,2005.0,262.0,225.3,246.3,83,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8599236641221375,0.9400763358778627,SERC,MISO,AR,34.4297,-92.8317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55718,Dean,GT1,2002.0,89.4,78.0,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.87248322147651,1.0,RFC,MISO,MI,42.77412,-82.48203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55718,Dean,GT2,2002.0,89.4,78.0,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.87248322147651,1.0,RFC,MISO,MI,42.77412,-82.48203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55718,Dean,GT3,2002.0,89.4,78.0,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.87248322147651,1.0,RFC,MISO,MI,42.77412,-82.48203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55718,Dean,GT4,2002.0,89.4,78.0,96.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.87248322147651,1.0,RFC,MISO,MI,42.77412,-82.48203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55733,Bennett Mountain,1,2005.0,172.8,203.9,170.4,120.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.986111111111111,WECC,IPCO,ID,43.147153,-115.666637,BennettMountain,GT F_501F,False,1.0,1.0,-1.0,147.6,147.6,4913.119,742.92,1.0,0.45,195.0,2.934687243469837,832.7138706634491,0.17796673802337132,-52.679936717997776,5094.278638045821,8.369940542306043,#TRUE#,#2005-04-01#,#2050-12-31#,Existing,IPTV,BS_IPCO,120.0,195.0,151.9,ID,NG,Areo,#FALSE#,120,195, -55734,Gray County Wind Energy,V47,2001.0,112.2,112.2,112.2,5.6,WND,Onshore Wind Turbine,OP,WT,11.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.613256,-100.378197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55736,Hanging Rock Energy Facility,1GT1,2003.0,198.9,181.0,200.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9100050276520865,1.0,RFC,PJM,OH,38.5731,-82.7833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55736,Hanging Rock Energy Facility,1GT2,2003.0,198.9,183.0,201.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9200603318250377,1.0,RFC,PJM,OH,38.5731,-82.7833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55736,Hanging Rock Energy Facility,1ST,2003.0,317.1,316.0,311.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9965310627562283,0.9807631661936297,RFC,PJM,OH,38.5731,-82.7833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55736,Hanging Rock Energy Facility,2GT1,2003.0,198.9,185.0,201.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.930115635997989,1.0,RFC,PJM,OH,38.5731,-82.7833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55736,Hanging Rock Energy Facility,2GT2,2003.0,198.9,186.0,201.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9351432880844646,1.0,RFC,PJM,OH,38.5731,-82.7833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55736,Hanging Rock Energy Facility,2ST,2003.0,317.1,314.0,312.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9902239041311889,0.9839167455061494,RFC,PJM,OH,38.5731,-82.7833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55738,Buchanan Generation LLC,1,2002.0,44.0,43.0,45.7,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9772727272727273,1.0,RFC,PJM,VA,37.175278,-81.961388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44551517892953 -55738,Buchanan Generation LLC,2,2002.0,44.0,41.0,44.3,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9318181818181819,1.0,RFC,PJM,VA,37.175278,-81.961388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.571687434976525 -55739,Condon Windpower LLC,GEN1,2001.0,24.6,24.6,24.6,1,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.2766,-120.2794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55739,Condon Windpower LLC,GEN2,2002.0,25.2,25.2,25.2,1,WND,Onshore Wind Turbine,OP,WT,5.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.2766,-120.2794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55740,Rock River I LLC,GEN1,2001.0,50.0,50.0,50.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,41.7172,-106.1077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55741,Ridge Crest Wind Partners,A1,2001.0,29.7,29.7,29.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.945911,-103.162028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55742,Montfort Wind Energy Center,ER15,2002.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,WI,42.9625,-90.386667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55747,NWP Indian Mesa Wind Farm,NWP2,2001.0,82.5,82.5,82.5,4.1,WND,Onshore Wind Turbine,OP,WT,5.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.931467,-102.201433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55748,Los Esteros Critical Energy Center,CAG5,2013.0,126.1,126.1,126.1,126.1,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,37.425,-121.9319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55748,Los Esteros Critical Energy Center,CTG1,2003.0,45.0,45.0,45.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.425,-121.9319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.166268360650825 -55748,Los Esteros Critical Energy Center,CTG2,2003.0,45.0,45.0,45.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.425,-121.9319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.28771359429674 -55748,Los Esteros Critical Energy Center,CTG3,2003.0,45.0,45.0,45.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.425,-121.9319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.38135655612174 -55748,Los Esteros Critical Energy Center,CTG4,2003.0,45.0,45.0,45.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.425,-121.9319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.293150767158584 -55749,Hardin Generator Project,UNT1,2006.0,115.7,107.0,107.0,50,SUB,Conventional Steam Coal,OP,ST,3.0,2006.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9248055315471045,0.9248055315471045,WECC,NWMT,MT,45.7578,-107.6,Hardin,ST-Col,False,48.0,108.0,-1.0,2.14,2.14,15864.2,998.31,1.0,1.79,107.0,12.119825698788393,20.985481130864706,0.11711733912570187,-8.202254812898804,888.9114493227256,12.371971782085238,#TRUE#,#2006-04-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,70.0,107.0,108.0,MT,Coal,,#FALSE#,70,107, -55752,Sonoma Central Landfill Phase I,P-11,1993.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,7.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.220438912545038 -55752,Sonoma Central Landfill Phase I,P-12,1993.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,7.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.220438912545038 -55752,Sonoma Central Landfill Phase I,P-13,1993.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,7.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.220438912545038 -55752,Sonoma Central Landfill Phase I,P-14,1993.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,7.0,1993.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.220438912545038 -55753,Sonoma Central Landfill Phase II,P-21,1996.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.54293659621802 -55753,Sonoma Central Landfill Phase II,P-22,1996.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.54293659621802 -55753,Sonoma Central Landfill Phase II,P-23,1996.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.54293659621802 -55753,Sonoma Central Landfill Phase II,P-24,1996.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,6.0,1996.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.54293659621802 -55757,Model City Energy Facility,GEN1,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55757,Model City Energy Facility,GEN2,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55757,Model City Energy Facility,GEN3,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55757,Model City Energy Facility,GEN4,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55757,Model City Energy Facility,GEN5,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55757,Model City Energy Facility,GEN6,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55757,Model City Energy Facility,GEN7,2001.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,6.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.357497520742756 -55765,Green Knight Energy Center,TG1,2001.0,3.3,2.4,2.9,0.6,LFG,Landfill Gas,OP,GT,2.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7272727272727273,0.8787878787878788,RFC,PJM,PA,40.8592,-75.2627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.2540056302521 -55765,Green Knight Energy Center,TG2,2001.0,3.3,2.4,2.9,0.6,LFG,Landfill Gas,OP,GT,2.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7272727272727273,0.8787878787878788,RFC,PJM,PA,40.8592,-75.2627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.2540056302521 -55765,Green Knight Energy Center,TG3,2001.0,3.3,2.4,2.9,0.6,LFG,Landfill Gas,OP,GT,2.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7272727272727273,0.8787878787878788,RFC,PJM,PA,40.8592,-75.2627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.2540056302521 -55766,Kiefer Landfill,361A,1999.0,3.0,2.8,2.8,2.5,LFG,Landfill Gas,OP,IC,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,WECC,BANC,CA,38.5136,-121.1944,Kiefer Landfill 1-1,OT IC,True,6.0,6.0,-1.0,4.0,4.0,19.71653,0.35,1.0,2.027986,3.5,10.864285685160699,4.395000049634448,-4.6549967719355934e-07,10.86428755535581,4.394998495767198,13.661450520934958,#TRUE#,#2005-12-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.7,3.5,0.0,CA,Landfill Gas,Internal Combustion,#FALSE#,.7,3.5,13.32238272675611 -55766,Kiefer Landfill,361B,1999.0,3.0,2.8,2.8,2.5,LFG,Landfill Gas,OP,IC,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,WECC,BANC,CA,38.5136,-121.1944,Kiefer Landfill 1-2,OT IC,True,6.0,6.0,-1.0,4.0,4.0,19.71653,0.35,1.0,2.027986,3.5,10.864285685160699,4.395000049634448,-4.6549967719355934e-07,10.86428755535581,4.394998495767198,13.661450520934958,#TRUE#,#2005-12-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.7,3.5,0.0,CA,Landfill Gas,Internal Combustion,#FALSE#,.7,3.5,13.32238272675611 -55766,Kiefer Landfill,361C,1999.0,3.0,2.8,2.8,2.5,LFG,Landfill Gas,OP,IC,12.0,1999.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,WECC,BANC,CA,38.5136,-121.1944,Kiefer Landfill 1-3,OT IC,True,6.0,6.0,-1.0,4.0,4.0,19.71653,0.35,1.0,2.027986,3.5,10.864285685160699,4.395000049634448,-4.6549967719355934e-07,10.86428755535581,4.394998495767198,13.661450520934958,#TRUE#,#1999-12-01#,#2050-12-31#,Existing,BANC,CA_BANC,0.7,3.5,0.0,CA,Landfill Gas,Internal Combustion,#FALSE#,.7,3.5,13.32238272675611 -55769,Madison Windpower LLC,MADW,2000.0,11.5,11.5,11.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2000.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.894722,-75.451666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55782,Noble Ridge LLC,WH01,2001.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.754739,-95.853447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55786,Edgewood Energy LLC,CT01,2002.0,50.0,42.5,47.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.94,NPCC,NYIS,NY,40.7861,-73.2931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.835102958037147 -55786,Edgewood Energy LLC,CT02,2002.0,50.0,42.5,47.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.94,NPCC,NYIS,NY,40.7861,-73.2931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.077898303141481 -55787,Shoreham Energy LLC,CT01,2002.0,50.0,42.5,47.0,25,KER,Petroleum Liquids,OP,GT,7.0,2002.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.85,0.94,NPCC,NYIS,NY,40.957053,-72.865877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.261287407913354 -55787,Shoreham Energy LLC,CT02,2002.0,50.0,42.5,47.0,25,KER,Petroleum Liquids,OP,GT,7.0,2002.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.85,0.94,NPCC,NYIS,NY,40.957053,-72.865877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.489490169293067 -55790,Fenner Wind,1,2001.0,30.0,30.0,30.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.988989,-75.762536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55795,Woodward Mountain II,01,2001.0,78.0,78.0,78.0,8,WND,Onshore Wind Turbine,OP,WT,7.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.9514,-102.414067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55796,Woodward Mountain I,01,2001.0,82.0,82.0,82.0,8,WND,Onshore Wind Turbine,OP,WT,7.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.9514,-102.414067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55799,Otsego Mill Power Plant,NRTH,1995.0,10.6,8.8,10.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8301886792452831,0.9905660377358491,RFC,MISO,MI,42.4628,-85.6961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55799,Otsego Mill Power Plant,SOTH,1995.0,10.6,8.8,10.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8301886792452831,0.9905660377358491,RFC,MISO,MI,42.4628,-85.6961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55801,Marcus Hook Energy LP,CT13,2004.0,188.2,182.7,197.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9707757704569607,1.0,RFC,PJM,PA,39.807038,-75.421606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55801,Marcus Hook Energy LP,CT1A,2004.0,188.2,182.7,197.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9707757704569607,1.0,RFC,PJM,PA,39.807038,-75.421606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55801,Marcus Hook Energy LP,CTIB,2004.0,188.2,182.7,197.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9707757704569607,1.0,RFC,PJM,PA,39.807038,-75.421606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55801,Marcus Hook Energy LP,STG,2004.0,271.5,307.0,307.0,184,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,PA,39.807038,-75.421606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55802,Valencia Energy Facility,CTG1,2008.0,159.5,144.3,150.2,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9047021943573669,0.941692789968652,WECC,PNM,NM,34.611549,-106.732234,Valencia NM 1,GT F_7FA,False,1.0,1.0,-1.0,14.5,14.5,8559.297,31.9,1.0,0.56,158.0,4.871727342911401,375.57960966249306,0.2295128316932448,-49.15560031544833,3438.85457699884,8.187690809392855,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,PNM,SW_PNM,80.0,158.0,122.0,NM,NG,Industrial,#FALSE#,80,158,11.310108425637166 -55803,Somerset Windpower LLC,EW,2001.0,9.0,9.0,9.0,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.979167,-79.012778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55804,Northern Iowa Windfarm,NM,2001.0,80.0,80.0,80.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.3833,-93.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55805,Mill Run Windpower LLC,G1,2001.0,15.0,15.0,15.0,0.8,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.913408,-79.393644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55807,Henrietta Peaker,HPP1,2002.0,49.0,46.3,48.3,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9448979591836734,0.9857142857142857,WECC,CISO,CA,36.2397,-119.9044,Henrietta1,GT LM_LM6000,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,50.0,5.937738048582274,121.85042431929463,0.46302994259546004,-30.233473221767394,812.50372781788,9.22980194607148,#TRUE#,#2002-07-01#,#2050-12-31#,Existing,CIPV,CA_CISO,30.0,50.0,51.08,CA,NG,Areo,#FALSE#,30,50,10.496065699728819 -55807,Henrietta Peaker,HPP2,2002.0,49.0,46.1,47.8,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9408163265306123,0.9755102040816326,WECC,CISO,CA,36.2397,-119.9044,Henrietta2,GT LM_LM6000,False,1.0,1.0,-1.0,44.0991,44.0991,1467.914,221.97,1.0,0.45,50.0,5.937738048582274,121.85042431929463,0.46302994259546004,-30.233473221767394,812.50372781788,9.22980194607148,#TRUE#,#2002-07-01#,#2050-12-31#,Existing,CIPV,CA_CISO,30.0,50.0,50.52,CA,NG,Areo,#FALSE#,30,50,9.626209918645738 -55809,Kas Brothers Windfarm,G1,2001.0,1.5,1.5,1.5,1,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0119,-96.1125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55810,Gilroy Peaking Energy Center,S3,2001.0,45.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.999,-121.5363,GilroyEnergyPeaking1,GT LM_Aero/LM6000,False,1.0,1.0,-1.0,41.31,41.31,1375.074,207.927,1.0,0.45,48.0,4.112785526951167,116.39721511266858,0.33230624476679643,-17.608640118475904,449.19125767928057,8.122552875423823,#TRUE#,#2002-01-29#,#2050-12-31#,Existing,CIPB,CA_CISO,20.0,48.0,47.6,CA,NG,Areo,#FALSE#,20,48, -55810,Gilroy Peaking Energy Center,S4,2001.0,45.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.999,-121.5363,GilroyEnergyPeaking2,GT LM_Aero/LM6000,False,1.0,1.0,-1.0,41.31,41.31,1375.074,207.927,1.0,0.45,48.0,0.3323905218676133,205.96959242632917,0.5527618655479095,-35.79926559331519,759.5427775973266,7.427836454056641,#TRUE#,#2002-01-29#,#2050-12-31#,Existing,CIPB,CA_CISO,20.0,48.0,47.6,CA,NG,Areo,#FALSE#,20,48, -55810,Gilroy Peaking Energy Center,S5,2002.0,45.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.999,-121.5363,GilroyEnergyPeaking3,GT LM_Aero/LM6000,False,1.0,1.0,-1.0,41.31,41.31,1375.074,207.927,1.0,0.45,48.0,4.242275128218528,100.8141218664472,0.4604458975989715,-25.85508707112889,561.9359238567707,7.715220539616313,#TRUE#,#2002-02-28#,#2050-12-31#,Existing,CIPB,CA_CISO,20.0,48.0,46.2,CA,NG,Areo,#FALSE#,20,48, -55811,King City Peaking,CTG1,2002.0,47.3,44.0,44.5,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.930232558139535,0.9408033826638479,WECC,CISO,CA,36.224758,-121.124633,KingCityPeaking,GT LM_Aero/LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,50.0,4.499313972245034,125.25283376433563,0.3199467438097446,-16.993950750939682,461.7215767323146,8.73356158292704,#TRUE#,#2002-01-14#,#2050-12-31#,Existing,CIPV,CA_CISO,20.0,50.0,44.6,CA,NG,Areo,#FALSE#,20,50,10.337475038828488 -55813,Yuba City Energy Center,CTG1,2002.0,47.3,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9513742071881608,0.9513742071881608,WECC,CISO,CA,39.1392,-121.6387,Yuba_City_EC,GT LM_Aero/LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,48.0,5.4954070247383475,93.85421921031197,0.22829874301489403,-9.427497350646053,322.4881000471246,8.728590768366798,#TRUE#,#2002-07-26#,#2050-12-31#,Existing,CIPV,CA_CISO,20.0,48.0,30.0,CA,NG,Areo,#FALSE#,20,48,10.6852698467466 -55816,Hawkeye Power Partners LLC,48M,1999.0,42.0,42.0,42.0,2.1,WND,Onshore Wind Turbine,OP,WT,4.0,1999.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.047222,-93.4775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55818,Frederickson Power LP,FICT,2002.0,192.0,164.0,180.0,95,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8541666666666666,0.9375,WECC,BPAT,WA,47.086111,-122.365674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55818,Frederickson Power LP,FIST,2002.0,126.3,82.0,85.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.6492478226444973,0.6730007917656373,WECC,BPAT,WA,47.086111,-122.365674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55821,Curtis H Stanton Energy Center,A,2003.0,203.2,188.0,188.0,56,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9251968503937008,0.9251968503937008,SERC,FPC,FL,28.488246,-81.166944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55821,Curtis H Stanton Energy Center,B,2003.0,203.2,188.0,188.0,56,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9251968503937008,0.9251968503937008,SERC,FPC,FL,28.488246,-81.166944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55821,Curtis H Stanton Energy Center,C,2003.0,281.9,281.0,281.0,58,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9968073785030154,0.9968073785030154,SERC,FPC,FL,28.488246,-81.166944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55824,MNDOT Standby Generation,UNT1,1995.0,2.0,1.9,1.9,0.5,DFO,Petroleum Liquids,SB,IC,7.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,MN,44.953014,-93.105692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.043478260869565 -55835,Rocky Mountain Energy Center,CTG1,2004.0,175.1,145.0,157.0,82,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280982295830954,0.8966304968589378,WECC,PSCO,CO,40.0908,-104.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55835,Rocky Mountain Energy Center,CTG2,2004.0,175.1,145.0,157.0,82,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8280982295830954,0.8966304968589378,WECC,PSCO,CO,40.0908,-104.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55835,Rocky Mountain Energy Center,STG1,2004.0,334.9,290.0,301.0,64,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8659301283965364,0.898775753956405,WECC,PSCO,CO,40.0908,-104.5953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55836,Island Street Peaking Plant,FT81,2004.0,60.5,52.4,60.0,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8661157024793388,0.9917355371900827,MRO,MISO,WI,44.2761,-88.2658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55841,Silverhawk,CT1,2004.0,197.2,180.0,171.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9127789046653144,0.8671399594320487,WECC,NEVP,NV,36.4078,-114.9606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55841,Silverhawk,CT2,2004.0,197.2,180.0,171.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9127789046653144,0.8671399594320487,WECC,NEVP,NV,36.4078,-114.9606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55841,Silverhawk,ST1,2004.0,270.3,260.0,268.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9618941916389196,0.9914909359970403,WECC,NEVP,NV,36.4078,-114.9606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55847,Feather River Energy Center,CTG1,2003.0,47.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106383,0.9574468085106383,WECC,CISO,CA,39.109344,-121.60931,Feather_River,GT LM_Aero/LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,48.0,3.9580985709809857,136.3718203917542,0.517713215564934,-31.015521875536923,697.2498542799642,8.41866754441055,#TRUE#,#2002-12-23#,#2050-12-31#,Existing,CIPV,CA_CISO,22.0,48.0,47.7,CA,NG,Areo,#FALSE#,22,48, -55851,Valero Refinery Cogeneration Unit 1,GT 1,2002.0,49.9,45.4,46.8,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9098196392785571,0.937875751503006,WECC,CISO,CA,38.0736,-122.1411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.140840703064438 -55855,Wolfskill Energy Center,CTG1,2003.0,47.0,45.0,45.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9574468085106383,0.9574468085106383,WECC,CISO,CA,38.228522,-122.07525,Wolfskill,GT LM_LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,48.0,4.046280254563402,141.82162355508916,0.344980058807788,-18.50357795947501,487.30808508061426,8.931892980676498,#TRUE#,#2003-03-22#,#2050-12-31#,Existing,CIPV,CA_CISO,20.0,48.0,47.87,CA,NG,Areo,#FALSE#,20,48, -55856,Prairie State Generating Station,PC1,2012.0,883.0,815.0,815.0,420,BIT,Conventional Steam Coal,OP,ST,6.0,2012.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9229898074745186,0.9229898074745186,SERC,MISO,IL,38.279167,-89.666944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55856,Prairie State Generating Station,PC2,2012.0,883.0,815.0,815.0,420,BIT,Conventional Steam Coal,OP,ST,11.0,2012.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9229898074745186,0.9229898074745186,SERC,MISO,IL,38.279167,-89.666944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55857,Oak Point Cogen,5121,1999.0,4.7,4.6,4.7,0.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.978723404255319,1.0,SERC,MISO,LA,29.811956,-90.00843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.534504159784984 -55857,Oak Point Cogen,5131,1999.0,4.7,4.6,4.7,0.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.978723404255319,1.0,SERC,MISO,LA,29.811956,-90.00843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.534504159784984 -55857,Oak Point Cogen,5141,1999.0,4.7,4.2,4.7,0.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8936170212765957,1.0,SERC,MISO,LA,29.811956,-90.00843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.534504159784984 -55857,Oak Point Cogen,5151,1999.0,4.7,4.2,4.7,0.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8936170212765957,1.0,SERC,MISO,LA,29.811956,-90.00843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.534504159784984 -55857,Oak Point Cogen,5161,1999.0,4.7,4.6,4.7,0.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.978723404255319,1.0,SERC,MISO,LA,29.811956,-90.00843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.534504159784984 -55860,Quinebaug Lower Project,5-M,1990.0,0.3,0.3,0.3,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.798656,-71.886759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55860,Quinebaug Lower Project,MF,1990.0,0.1,0.1,0.1,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,CT,41.798656,-71.886759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55860,Quinebaug Lower Project,U2,1990.0,0.8,0.8,0.7,0.2,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8749999999999999,NPCC,ISNE,CT,41.798656,-71.886759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55860,Quinebaug Lower Project,UI,1990.0,1.3,1.2,1.2,0.3,WAT,Conventional Hydroelectric,OP,HY,8.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,ISNE,CT,41.798656,-71.886759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55861,Stevens Point Mill,SP,2002.0,7.6,7.0,7.0,7,NG,Natural Gas Steam Turbine,OP,ST,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9210526315789475,0.9210526315789475,RFC,MISO,WI,44.3528,-89.5836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.08429118773947 -55864,Kaheka Hydro,KAH1,1925.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,20.8886,-156.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55864,Kaheka Hydro,KAH2,1925.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,20.8886,-156.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55864,Kaheka Hydro,KAH3,1925.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1925.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,20.8886,-156.3569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55866,Basin Creek Plant,1,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek1,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,5.9,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,2,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek2,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,5.9,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,3,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek3,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,5.9,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,4,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek4,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,0.0,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,5,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek5,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,0.0,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,6,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek6,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,0.0,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,7,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek7,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,0.0,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,8,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek8,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,0.0,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55866,Basin Creek Plant,9,2006.0,6.1,6.0,6.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9836065573770493,0.9836065573770493,WECC,NWMT,MT,45.9293,-112.5194,BasinCreek9,IC,False,1.0,1.0,-1.0,5.4625,5.4625,57.5,0.575,1.0,0.0,5.75,5.699293440178688,10.543812615340565,-4.7238661021412193e-07,5.699296488525805,10.543808537618453,9.783964179593063,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,1.15,5.75,0.0,MT,NG,,#FALSE#,1.15,5.75,9.269467073941199 -55871,Klondike Wind Power,Ph 1,2002.0,24.5,24.0,24.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9795918367346939,0.9795918367346939,WECC,AVRN,OR,45.5563,-120.5507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55874,Panoche Peaker,8,1973.0,56.7,56.7,56.7,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,1973.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,36.6535,-120.5783,PanochePeakerCT,GT Aero_FT8 TwinPac,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,49.0,4.988299203101268,174.91533715529627,-2.938990457043711e-06,4.988492463813449,174.91236846964028,10.716845896547088,#TRUE#,#2005-06-14#,#2050-12-31#,Existing,CIPV,CA_CISO,19.6,49.0,48.3,CA,NG,Areo,#FALSE#,19.6,49, -55880,Sonoma Central Landfill Phase III,P-31,2004.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,7.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55880,Sonoma Central Landfill Phase III,P-32,2004.0,0.8,0.7,0.7,0.4,LFG,Landfill Gas,OP,IC,7.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,CISO,CA,38.3017,-122.7489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55882,Sierra Pacific Aberdeen,GEN1,2003.0,18.0,17.4,18.0,8,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,2003.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9666666666666666,1.0,WECC,BPAT,WA,46.9728,-123.7739,Aberdeen,OT ST,True,8.0,8.0,-1.0,4.0,4.0,101.3993,1.8,1.0,2.027986,18.0,13.909999858888849,-38.51999823567595,-4.201054803235186e-06,13.910105347359858,-38.52062647058803,10.668445475716627,#TRUE#,#2003-02-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,8.1,18.0,8.0,WA,Bio,,#FALSE#,8.1,18, -55925,Ridgeview,GEN1,2002.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.175007,-87.828519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.387813259575895 -55925,Ridgeview,GEN2,2002.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2002.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.175007,-87.828519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.387813259575895 -55925,Ridgeview,GEN5,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.175007,-87.828519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.387813259575895 -55925,Ridgeview,GEN6,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.175007,-87.828519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.387813259575895 -55925,Ridgeview,GEN7,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.175007,-87.828519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.387813259575895 -55925,Ridgeview,GEN8,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.175007,-87.828519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.387813259575895 -55927,Jasper,CT1,2004.0,212.8,170.0,184.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7988721804511278,0.8646616541353382,SERC,SCEG,SC,32.3594,-81.1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55927,Jasper,CT2,2004.0,198.9,177.0,190.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.889894419306184,0.955253896430367,SERC,SCEG,SC,32.3594,-81.1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55927,Jasper,CT3,2004.0,212.8,158.0,185.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7424812030075187,0.869360902255639,SERC,SCEG,SC,32.3594,-81.1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55927,Jasper,ST1,2004.0,443.7,390.0,402.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8789722785665991,0.9060175794455714,SERC,SCEG,SC,32.3594,-81.1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55928,McMinnville,1,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,10,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,11,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,12,2005.0,2.0,1.8,1.8,0.5,OBL,Other Waste Biomass,OP,IC,7.0,2005.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,2,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,3,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,4,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,5,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,6,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,7,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,8,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55928,McMinnville,9,2001.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,35.705,-85.7439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.911918699186991 -55931,Boulder City Silver Lake Hydro,0001,2000.0,3.3,3.3,3.3,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,2000.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSCO,CO,39.991311,-105.50003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55933,Tracy Combined Cycle Power Plant,TCC1,2012.0,167.3,156.2,167.3,30,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9336521219366406,1.0,WECC,CISO,CA,37.7107,-121.4906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55933,Tracy Combined Cycle Power Plant,TPP1,2003.0,84.4,82.1,87.5,58,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9727488151658766,1.0,WECC,CISO,CA,37.7107,-121.4906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.98776401074 -55933,Tracy Combined Cycle Power Plant,TPP2,2003.0,84.4,81.8,87.4,58,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9691943127962084,1.0,WECC,CISO,CA,37.7107,-121.4906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.109089245327656 -55934,Century Generating Facility,C1,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0606,-117.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.102096627164997 -55934,Century Generating Facility,C2,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0606,-117.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.102096627164997 -55934,Century Generating Facility,C3,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0606,-117.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.102096627164997 -55934,Century Generating Facility,C4,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0606,-117.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.102096627164997 -55935,Drews Generating Facility,D1,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0609,-117.3532,Drews1,GT_GE10Ba,False,1.0,1.0,-1.0,42.48,42.48,1414.02,50.736,1.0,0.45,47.2,9.079490347626255,29.24085473642231,-4.0327285137295443e-07,9.079509959296512,29.240673896681198,10.838330094475074,#TRUE#,#2001-08-14#,#2050-12-31#,Existing,CISC,CA_CISO,5.6,47.2,45.0,CA,NG,Areo,#FALSE#,5.6,47.2,17.444839857651246 -55935,Drews Generating Facility,D2,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0609,-117.3532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.444839857651246 -55935,Drews Generating Facility,D3,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0609,-117.3532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.444839857651246 -55935,Drews Generating Facility,D4,2001.0,11.2,9.5,11.0,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8482142857142858,0.9821428571428572,WECC,CISO,CA,34.0609,-117.3532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.444839857651246 -55936,NRG Rockford II Energy Center,GT3,2002.0,168.0,179.1,188.0,115,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,42.2383,-89.1011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55938,NAEA Ocean Peaking Power LLC,OPP3,2003.0,191.5,162.8,187.7,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8501305483028722,0.9801566579634464,RFC,PJM,NJ,40.0633,-74.1672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.866581487844732 -55938,NAEA Ocean Peaking Power LLC,OPP4,2003.0,191.5,162.8,187.7,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8501305483028722,0.9801566579634464,RFC,PJM,NJ,40.0633,-74.1672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.811336653899302 -55939,Warren County,CT01,2014.0,297.5,297.5,297.5,173,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,PJM,VA,38.971667,-78.177222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55939,Warren County,CT02,2014.0,297.5,297.5,297.5,173,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,PJM,VA,38.971667,-78.177222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55939,Warren County,CT03,2014.0,297.5,297.5,297.5,173,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,PJM,VA,38.971667,-78.177222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55939,Warren County,ST01,2014.0,579.7,579.7,579.7,60,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,PJM,VA,38.971667,-78.177222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55944,Bay Windpower I,BAY,2001.0,1.8,1.8,1.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,45.7644,-84.7381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55950,Elk Hills Cogen,U1,1994.0,23.3,23.3,24.1,14,NG,Natural Gas Fired Combustion Turbine,SB,GT,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.479146,-119.737464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.381857296522051 -55950,Elk Hills Cogen,U2,1994.0,23.3,23.3,24.1,14,NG,Natural Gas Fired Combustion Turbine,SB,GT,11.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.479146,-119.737464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.381857296522051 -55951,Agua Mansa Power Plant,AMP1,2003.0,60.5,40.0,43.0,36,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.7107438016528926,WECC,CISO,CA,34.0414,-117.3603,Agua_Mansa,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,38.7,38.7,1288.196,194.79,1.0,0.45,50.0,-1.5236594948473028,431.8829670689226,-0.0002395147435313273,-1.502869615064521,431.4346721118311,8.491037681674934,#TRUE#,#2003-06-27#,#2050-12-31#,Existing,CISC,CA_CISO,38.0,50.0,45.0,CA,NG,Areo,#FALSE#,38,50, -55953,Pretlow,1,2001.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.659167,-76.926667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.976470588235294 -55953,Pretlow,2,2001.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.659167,-76.926667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.976470588235294 -55954,Downtown,1,1992.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.680278,-76.921944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.7987987987988 -55954,Downtown,2,1992.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,OP,IC,11.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.680278,-76.921944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.7987987987988 -55963,Riverview Energy Center,CTG1,2003.0,47.0,46.1,46.1,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9808510638297873,0.9808510638297873,WECC,CISO,CA,38.014423,-121.790679,Riverview_EC,GT LM_LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,48.0,4.334807770918733,131.83172682827407,0.3212299123490922,-16.662606009664653,453.5331846993811,8.876278571720103,#TRUE#,#2003-05-02#,#2050-12-31#,Existing,CIPB,CA_CISO,20.0,48.0,48.73,CA,NG,Areo,#FALSE#,20,48, -55964,Brown Station Road Plant II,1,2003.0,1.0,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,38.847585,-76.785912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55964,Brown Station Road Plant II,2,2003.0,1.0,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,38.847585,-76.785912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55964,Brown Station Road Plant II,3,2003.0,1.0,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,38.847585,-76.785912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55964,Brown Station Road Plant II,4,2003.0,1.0,0.8,0.8,0.4,LFG,Landfill Gas,OA,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8,0.8,RFC,PJM,MD,38.847585,-76.785912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55965,Wansley Combined Cycle,CT6A,2002.0,203.1,176.8,189.3,115,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8705071393402266,0.9320531757754802,SERC,SOCO,GA,33.406385,-85.036988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55965,Wansley Combined Cycle,CT6B,2002.0,203.1,176.8,189.3,115,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8705071393402266,0.9320531757754802,SERC,SOCO,GA,33.406385,-85.036988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55965,Wansley Combined Cycle,CT7A,2002.0,203.1,175.6,187.4,115,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8645987198424421,0.9226981782373216,SERC,SOCO,GA,33.406385,-85.036988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55965,Wansley Combined Cycle,CT7B,2002.0,203.1,175.6,187.4,115,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8645987198424421,0.9226981782373216,SERC,SOCO,GA,33.406385,-85.036988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55965,Wansley Combined Cycle,ST6,2002.0,213.3,240.0,240.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,GA,33.406385,-85.036988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55965,Wansley Combined Cycle,ST7,2002.0,213.3,240.0,240.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,GA,33.406385,-85.036988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55966,Nikiski Combined Cycle,GT1,1986.0,40.8,37.9,42.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,1986.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.928921568627451,1.0,non-conus,non-conus,AK,60.676539,-151.377713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.819503484641372 -55966,Nikiski Combined Cycle,ST1,2013.0,40.0,38.0,40.0,13,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.95,1.0,non-conus,non-conus,AK,60.676539,-151.377713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55968,Trent Wind Farm LP,WTG1,2001.0,152.0,152.0,152.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.4301,-100.235652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55969,Hawkeye Energy Greenport LLC,U-01,2003.0,54.0,53.7,54.1,20,KER,Petroleum Liquids,OP,GT,7.0,2003.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.9944444444444445,1.0,NPCC,NYIS,NY,41.10603,-72.376155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.93285895328993 -55970,Cosumnes,1,2006.0,190.0,171.0,178.6,160,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9,0.94,WECC,BANC,CA,38.338475,-121.123978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55970,Cosumnes,2,2006.0,196.8,185.0,202.0,160,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.940040650406504,1.0,WECC,BANC,CA,38.338475,-121.123978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.067828519829927 -55970,Cosumnes,3,2006.0,170.0,189.0,201.0,160,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,BANC,CA,38.338475,-121.123978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.06287934498061 -55972,Cass County,CT-1,2003.0,172.5,162.0,117.0,113,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9391304347826087,0.6782608695652175,MRO,SWPP,NE,40.947913,-95.964026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55972,Cass County,CT-2,2003.0,172.5,161.8,121.7,113,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9379710144927537,0.7055072463768116,MRO,SWPP,NE,40.947913,-95.964026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55976,Hunterstown Power Plant,101,2003.0,179.0,165.0,205.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9217877094972067,1.0,RFC,PJM,PA,39.8725,-77.1672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55976,Hunterstown Power Plant,201,2003.0,179.0,165.0,205.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9217877094972067,1.0,RFC,PJM,PA,39.8725,-77.1672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55976,Hunterstown Power Plant,301,2003.0,179.0,165.0,205.0,85,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9217877094972067,1.0,RFC,PJM,PA,39.8725,-77.1672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55976,Hunterstown Power Plant,401,2003.0,361.0,315.0,315.0,194,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8725761772853186,0.8725761772853186,RFC,PJM,PA,39.8725,-77.1672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55977,Bluffview,CTG1,2005.0,40.0,31.0,40.0,12,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.775,1.0,WECC,WACM,NM,36.716628,-108.215282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55977,Bluffview,STG1,2005.0,27.0,27.0,27.0,0,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,WACM,NM,36.716628,-108.215282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55983,Salton Sea Power LLC - Unit 5,TG51,2000.0,58.3,46.0,46.0,2,GEO,Geothermal,OP,ST,4.0,2000.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7890222984562607,0.7890222984562607,WECC,IID,CA,33.1533,-115.6384,Salton Sea 5,GEO,True,6.0,16.0,-1.0,2.17,2.17,0.0,0.0,1.0,3.098312,50.0,-1.761428192090378,293.5714069558256,-7.37029208030041e-06,-1.7608938459137364,293.5621019620446,6.6790010923025545,#TRUE#,#2000-06-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,50.0,46.0,CA,Geo,Double flash,#FALSE#,25,50, -55984,CE Turbo LLC,TG21,2000.0,11.5,10.0,10.0,2,GEO,Geothermal,OP,ST,7.0,2000.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8695652173913043,0.8695652173913043,WECC,IID,CA,33.1669,-115.5114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55985,Palomar Energy,CTG1,2005.0,165.0,179.6,180.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.1197,-117.117778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.339072822949994 -55985,Palomar Energy,CTG2,2005.0,165.0,179.8,181.0,65,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.1197,-117.117778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.146056013295963 -55985,Palomar Energy,STG,2006.0,229.0,222.0,229.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9694323144104804,1.0,WECC,CISO,CA,33.1197,-117.117778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55986,Mountaineer Wind Energy Center,WT1,2002.0,66.0,66.0,66.0,3.3,WND,Onshore Wind Turbine,OP,WT,12.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,39.1828,-79.5372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55989,FPL Energy Vansycle LLC (OR),V-47,2001.0,122.8,122.8,122.8,15,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,46.01279,-118.816246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55990,Ashtabula,1,2001.0,4.9,4.4,5.4,1.6,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8979591836734694,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.090894509125237 -55990,Ashtabula,2,2001.0,4.9,4.4,5.4,1.6,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8979591836734694,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.10358432648152 -55990,Ashtabula,3,2001.0,4.9,4.4,5.4,1.6,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8979591836734694,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19495302782324 -55990,Ashtabula,4,2001.0,4.9,4.4,5.4,1.6,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8979591836734694,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.088299196517347 -55990,Ashtabula,5,2001.0,4.9,4.4,5.4,1.6,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8979591836734694,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.902022386223862 -55990,Ashtabula,6,2001.0,0.8,0.7,0.8,0.2,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8749999999999999,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55990,Ashtabula,7,2001.0,0.8,0.7,0.8,0.2,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8749999999999999,1.0,RFC,PJM,OH,41.890026,-80.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55991,Brady,OEC,2002.0,6.5,4.3,6.5,4.3,GEO,Geothermal,OP,BT,8.0,2002.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6615384615384615,1.0,WECC,NEVP,NV,39.796032,-119.010013,Brady Hot Springs OEC,GEO,True,6.0,16.0,-1.0,5.61,5.61,0.0,0.0,1.0,0.0,6.5,-1.7614155416560469,38.164200732603575,-5.198939680477974e-06,-1.7613664386580823,38.16408959562658,6.678995569618467,#TRUE#,#2002-08-01#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,6.5,6.0,NV,Geo,,#FALSE#,3.25,6.5, -55991,Brady,OEC1,2018.0,15.0,10.0,15.0,10,GEO,Geothermal,OP,BT,3.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.796032,-119.010013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55992,Desert Sky,1,2002.0,167.7,167.7,167.7,0,WND,Onshore Wind Turbine,OP,WT,1.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.9178,-102.0867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55995,Minot Wind Project,MWP2,2009.0,4.5,4.5,4.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,48.021271,-101.280517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55996,Alliant SBD0201 Ingredion,01,2003.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.97007,-91.66623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.608222336065575 -55996,Alliant SBD0201 Ingredion,02,2003.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.97007,-91.66623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.60922190201729 -55996,Alliant SBD0201 Ingredion,03,2003.0,1.6,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.97007,-91.66623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.60922190201729 -55996,Alliant SBD0201 Ingredion,04,2003.0,1.1,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.97007,-91.66623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.60993502410396 -55997,Orchard Park,10,2003.0,6.0,5.8,5.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,RFC,PJM,PA,39.9109,-77.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.25141995030174 -55997,Orchard Park,11,2003.0,6.0,5.8,5.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,RFC,PJM,PA,39.9109,-77.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.25141995030174 -55997,Orchard Park,8,2003.0,6.0,5.8,5.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,RFC,PJM,PA,39.9109,-77.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.25141995030174 -55997,Orchard Park,9,2003.0,6.0,5.8,5.8,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9666666666666667,0.9666666666666667,RFC,PJM,PA,39.9109,-77.6667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.25141995030174 -55998,Danbury Diesel,GT1,1981.0,6.7,4.0,4.0,0.1,DFO,Petroleum Liquids,OP,GT,11.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5970149253731343,0.5970149253731343,MRO,MISO,WI,46.002834,-92.371377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55998,Danbury Diesel,IC1,1982.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,1982.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,46.002834,-92.371377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -55998,Danbury Diesel,IC2,1966.0,0.6,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1966.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,MRO,MISO,WI,46.002834,-92.371377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56001,Waymart Wind,GE15,2003.0,64.5,64.5,64.5,3.2,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,41.5533,-75.4542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56002,Minwind,1,2002.0,3.8,3.8,3.8,3.8,WND,Onshore Wind Turbine,OP,WT,10.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.5564,-96.303611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56004,Mount Clinton,D-2,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,9.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4681,-78.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.443266171792153 -56004,Mount Clinton,D-3,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,9.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4681,-78.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.443266171792153 -56004,Mount Clinton,D-5,2004.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4681,-78.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.443266171792153 -56004,Mount Clinton,D-7,2009.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4681,-78.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.443266171792153 -56004,Mount Clinton,D-8,2009.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4681,-78.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.443266171792153 -56004,Mount Clinton,MC-1,1999.0,14.0,9.0,12.0,0.5,DFO,Petroleum Liquids,OP,GT,5.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6428571428571428,0.8571428571428572,SERC,PJM,VA,38.4681,-78.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.024551463644947 -56005,Pleasant Valley (VA),D-4,2002.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,9.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4006,-78.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44915254237288 -56005,Pleasant Valley (VA),D-6,2006.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.4006,-78.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44915254237288 -56005,Pleasant Valley (VA),PV-1,1997.0,16.5,9.0,13.0,0.5,DFO,Petroleum Liquids,OP,GT,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5454545454545454,0.7878787878787878,SERC,PJM,VA,38.4006,-78.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.016460905349795 -56010,Hancock County Wind Energy Center,V-47,2002.0,98.0,98.0,98.0,4.9,WND,Onshore Wind Turbine,OP,WT,12.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.052758,-93.629956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56011,Cabazon Wind Partners,V-47,2002.0,41.0,41.0,41.0,2.6,WND,Onshore Wind Turbine,OP,WT,10.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9172,-116.735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56012,Whitewater Hill Wind Partners,1,2002.0,61.5,61.5,61.5,2.6,WND,Onshore Wind Turbine,OP,WT,10.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.925,-116.617778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56013,Exira,U1,2004.0,60.5,46.7,46.7,25,DFO,Petroleum Liquids,OP,GT,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.771900826446281,0.771900826446281,MRO,MISO,IA,41.514365,-94.919729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56013,Exira,U2,2004.0,60.5,46.7,46.7,25,DFO,Petroleum Liquids,OP,GT,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.771900826446281,0.771900826446281,MRO,MISO,IA,41.514365,-94.919729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56013,Exira,U3,2007.0,60.5,46.7,46.7,25,DFO,Petroleum Liquids,OP,GT,4.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.771900826446281,0.771900826446281,MRO,MISO,IA,41.514365,-94.919729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56015,Walton Bainbridge Power Facility,SEG1,2000.0,40.0,37.0,40.0,37,DFO,Petroleum Liquids,OP,GT,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.925,1.0,SERC,SOCO,GA,30.910985,-84.547304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56015,Walton Bainbridge Power Facility,SEGC,2000.0,40.0,37.0,40.0,37,DFO,Petroleum Liquids,OP,GT,7.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.925,1.0,SERC,SOCO,GA,30.910985,-84.547304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56016,Grimes Way,1,2005.0,1.1,1.0,1.0,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,AVA,WA,46.7289,-117.1514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.56164383561644 -56016,Grimes Way,2,2005.0,1.1,1.0,1.0,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,AVA,WA,46.7289,-117.1514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.56164383561644 -56016,Grimes Way,3,2005.0,1.8,1.7,1.7,0.4,DFO,Petroleum Liquids,SB,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,WECC,AVA,WA,46.7289,-117.1514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.561643835616437 -56018,AMEA Peaking,1,2004.0,49.3,47.5,48.3,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9634888438133875,0.9797160243407708,SERC,SOCO,AL,33.1661,-86.2825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.86655065998827 -56018,AMEA Peaking,2,2004.0,49.3,47.5,48.3,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9634888438133875,0.9797160243407708,SERC,SOCO,AL,33.1661,-86.2825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.890840920234192 -56022,Waste Water Plant Generator,1,1993.0,1.6,1.6,1.6,0.5,DFO,Petroleum Liquids,SB,IC,3.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.227778,-96.989722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.5 -56025,Traer East,6,2004.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,SB,IC,3.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1817,-92.4663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56025,Traer East,7,2004.0,2.0,2.0,2.0,1.6,DFO,Petroleum Liquids,SB,IC,3.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.1817,-92.4663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56026,Donald Von Raesfeld Power Plant,CTG1,2005.0,50.0,50.0,50.0,10,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.3767,-121.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56026,Donald Von Raesfeld Power Plant,CTG2,2005.0,50.0,50.0,50.0,10,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.3767,-121.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56026,Donald Von Raesfeld Power Plant,STG,2005.0,54.0,47.8,47.8,13,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8851851851851851,0.8851851851851851,WECC,CISO,CA,37.3767,-121.9508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56031,Fox Energy Center,CTG1,2006.0,198.9,170.8,200.3,140,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8587229763700353,1.0,RFC,MISO,WI,44.3204,-88.208889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56031,Fox Energy Center,CTG2,2005.0,198.9,162.8,200.3,140,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8185017596782302,1.0,RFC,MISO,WI,44.3204,-88.208889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56031,Fox Energy Center,STG,2005.0,221.0,243.9,244.2,140,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,WI,44.3204,-88.208889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56032,Equus Freeport Power,0001,2004.0,60.0,45.9,47.7,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.765,0.795,NPCC,NYIS,NY,40.6439,-73.5683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.5830652965171 -56032,Equus Freeport Power,001,2004.0,60.0,48.1,49.7,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8016666666666667,0.8283333333333334,NPCC,NYIS,NY,40.6439,-73.5683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56035,Smithfield Packaged Meats Corp.,1,2002.0,1.4,1.3,1.3,1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9285714285714286,0.9285714285714286,SERC,CPLE,NC,35.694344,-77.91919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.285714285714286 -56035,Smithfield Packaged Meats Corp.,2,2002.0,1.4,1.3,1.3,1,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9285714285714286,0.9285714285714286,SERC,CPLE,NC,35.694344,-77.91919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.285714285714286 -56036,WWTP Power Generation Station,GEN1,1985.0,2.2,2.0,2.0,1.5,OBG,Other Waste Biomass,OP,IC,8.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.8258,-122.2961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.868232891401833 -56036,WWTP Power Generation Station,GEN2,1985.0,2.2,2.0,2.0,1.5,OBG,Other Waste Biomass,OP,IC,8.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.8258,-122.2961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.868232891401833 -56036,WWTP Power Generation Station,GEN3,1985.0,2.2,2.0,2.0,1.5,OBG,Other Waste Biomass,OP,IC,8.0,1985.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.8258,-122.2961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.868232891401833 -56038,UMCP CHP Plant,1,2003.0,11.0,9.4,10.8,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8545454545454546,0.9818181818181819,RFC,PJM,MD,38.985844,-76.935478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56038,UMCP CHP Plant,2,2003.0,11.0,9.4,10.8,6,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8545454545454546,0.9818181818181819,RFC,PJM,MD,38.985844,-76.935478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56038,UMCP CHP Plant,3,2003.0,5.4,2.0,5.1,2,NG,Natural Gas Steam Turbine,OP,ST,7.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.37037037037037035,0.9444444444444443,RFC,PJM,MD,38.985844,-76.935478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56039,H. Gonzales,G1,1987.0,5.9,5.4,5.9,5.4,NG,Natural Gas Fired Combustion Turbine,OS,GT,1.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9152542372881356,1.0,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.928 -56039,H. Gonzales,G2,1987.0,5.9,5.4,5.9,5.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9152542372881356,1.0,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.928 -56041,Malburg,M1,2005.0,40.0,44.0,44.0,22,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.770830289481912 -56041,Malburg,M2,2005.0,40.0,44.0,44.0,22,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.85451932157838 -56041,Malburg,M3,2005.0,50.0,51.0,51.0,13,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,33.9986,-118.2219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56046,Magnolia Power Project,1,2005.0,198.9,161.0,165.0,39,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8094519859225742,0.8295625942684766,WECC,LDWP,CA,34.1786,-118.3153,Magnolia Anaheim,CC,False,6.0,2.0,-1.0,6.54,6.54,8484.734,90.24,1.0,2.1,109.0,0.4549489286391645,508.45666414276474,0.5008665352893635,-79.32237563708713,3550.5982902917813,7.133077604976081,#TRUE#,#2019-10-01#,#2050-12-31#,Existing,LDWP,CA_LDWP,52.18,109.0,0.0,CA,NG,Single shaft,#FALSE#,52.18,109,12.381600616096339 -56046,Magnolia Power Project,2,2005.0,188.7,140.0,140.0,48,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7419183889772125,0.7419183889772125,WECC,LDWP,CA,34.1786,-118.3153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56047,CPV Towantic Energy Center,CTG1,2018.0,280.5,248.0,288.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8841354723707665,1.0,NPCC,ISNE,CT,41.481243,-73.123108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56047,CPV Towantic Energy Center,CTG2,2018.0,280.5,248.0,288.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8841354723707665,1.0,NPCC,ISNE,CT,41.481243,-73.123108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56047,CPV Towantic Energy Center,STG,2018.0,280.5,273.9,293.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9764705882352941,1.0,NPCC,ISNE,CT,41.481243,-73.123108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56050,Inner Harbor East Heating,1,2004.0,2.1,2.1,2.1,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,9.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.283677,-76.59941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56051,THUMS,GEN1,2003.0,57.4,45.0,45.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7839721254355401,0.7839721254355401,WECC,CISO,CA,33.7684,-118.2141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.096071132928502 -56052,"Meyersdale Windpower, LLC",GE15,2003.0,30.0,30.0,30.0,1.5,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.790739,-79.002047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56053,Casey City of,1,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.310555,-87.992592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.025275631890796 -56053,Casey City of,2,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.310555,-87.992592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.025275631890796 -56053,Casey City of,3,2002.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.310555,-87.992592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.025275631890796 -56054,G McNeilus Wind Farm Dodge Center,GM1,2002.0,32.0,32.0,32.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2002.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.978486,-92.851078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56054,G McNeilus Wind Farm Dodge Center,GM2,2003.0,8.0,8.0,8.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.978486,-92.851078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56054,G McNeilus Wind Farm Dodge Center,GM3,2004.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.978486,-92.851078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56055,Hana Substation,MH1,2001.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.765833,-155.996111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.116504854368932 -56055,Hana Substation,MH2,2001.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,OP,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,20.765833,-155.996111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.116504854368932 -56059,"High Point, Fairfield",1,2002.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.924393,-79.990124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56062,"Statesville, Highway 64",1,2002.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.798462,-80.942709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56063,"Shelby, Toms Street",1,2002.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3036,-81.5225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56064,"Morganton, Parker Road",1,2002.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.7208,-81.66243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56067,Lexington Health Center,1,2002.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.830877,-80.242154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56068,Elm Road Generating Station,1,2010.0,701.3,635.9,637.3,340,SUB,Conventional Steam Coal,OP,ST,2.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9067446171395979,0.9087409097390561,RFC,MISO,WI,42.8492,-87.8336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.200880437736576 -56068,Elm Road Generating Station,2,2011.0,701.3,634.9,638.1,340,SUB,Conventional Steam Coal,OP,ST,1.0,2011.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9053186938542707,0.9098816483673179,RFC,MISO,WI,42.8492,-87.8336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.606181669613315 -56069,Berlin Landfill Gas,1,2001.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.9603,-88.9158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.132836784062505 -56069,Berlin Landfill Gas,2,2001.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.9603,-88.9158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.132836784062505 -56069,Berlin Landfill Gas,3,2001.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.9603,-88.9158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.132836784062505 -56070,Diesel Generators,1,2001.0,54.0,53.8,53.8,0,DFO,Petroleum Liquids,OP,IC,6.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9962962962962962,0.9962962962962962,MRO,MISO,WI,43.0802,-89.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.193684210526316 -56073,Alliant SBG 9802 Toyota,01,1998.0,1.0,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,12.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.02771,-91.7111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.580310880829016 -56075,High Winds LLC,1,2003.0,145.8,145.8,145.8,8.1,WND,Onshore Wind Turbine,OP,WT,7.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.1381,-121.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56075,High Winds LLC,2,2003.0,16.2,16.2,16.2,1.1,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.1381,-121.8053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56076,ABC Coke,1,1997.0,3.8,3.8,3.8,1.2,OG,Other Gases,OP,ST,8.0,1997.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,AL,33.582793,-86.779866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.604651162790697 -56078,Walnut Energy Center,1,2006.0,94.9,84.0,84.0,42,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8851422550052687,0.8851422550052687,WECC,TIDC,CA,37.4878,-120.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11299628222452 -56078,Walnut Energy Center,2,2006.0,94.9,84.0,84.0,42,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8851422550052687,0.8851422550052687,WECC,TIDC,CA,37.4878,-120.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.310344207658524 -56078,Walnut Energy Center,3,2006.0,110.8,101.0,101.0,38,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9115523465703972,0.9115523465703972,WECC,TIDC,CA,37.4878,-120.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56080,SJ/SC WPCP,EG4,2020.0,3.5,3.2,3.2,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9142857142857144,WECC,CISO,CA,37.4344,-121.9464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.042082269230152 -56080,SJ/SC WPCP,EG5,2020.0,3.5,3.2,3.2,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9142857142857144,WECC,CISO,CA,37.4344,-121.9464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.042082269230152 -56080,SJ/SC WPCP,EG6,2020.0,3.5,3.2,3.2,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9142857142857144,WECC,CISO,CA,37.4344,-121.9464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.042082269230152 -56080,SJ/SC WPCP,EG7,2020.0,3.5,3.2,3.2,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9142857142857144,0.9142857142857144,WECC,CISO,CA,37.4344,-121.9464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.042082269230152 -56081,Blue Canyon Windpower,EW,2003.0,74.3,74.3,74.3,2.9,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.850781,-98.577311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56090,Blacksand Generating Facility,D182,2000.0,4.0,2.5,2.5,2.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.625,0.625,WECC,CISO,CA,33.9328,-117.855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.06390156777138 -56090,Blacksand Generating Facility,D189,2000.0,3.7,3.0,3.0,2.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8108108108108107,0.8108108108108107,WECC,CISO,CA,33.9328,-117.855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.06390118483871 -56090,Blacksand Generating Facility,D190,2012.0,0.3,0.3,0.3,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9328,-117.855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.063906290609186 -56092,South Dakota Wind Energy Cente,GE15,2003.0,40.5,40.5,40.5,2,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,WACM,SD,44.5492,-99.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56093,TransAlta Wyoming Wind,GE15,2003.0,144.0,142.2,142.2,8,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9874999999999999,0.9874999999999999,WECC,PACE,WY,41.2874,-110.5556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56094,Oklahoma Wind Energy Center,GE15,2003.0,51.0,51.0,51.0,5.1,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.603967,-99.340047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56094,Oklahoma Wind Energy Center,GSOO,2003.0,51.0,51.0,51.0,5.1,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.603967,-99.340047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56097,New Mexico Wind Energy Center,GE15,2003.0,204.0,204.0,204.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.63566,-104.04733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56098,Hillsboro,1,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,47.396944,-97.060555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.625 -56098,Hillsboro,2,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,ND,47.396944,-97.060555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.625 -56099,FPL Energy North Dakota Wind I/II,GE15,2003.0,61.5,61.5,61.5,3.1,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.327169,-98.898356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56100,St. Charles Power Plant,1,2004.0,2.2,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,43.9742,-92.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.133333333333333 -56100,St. Charles Power Plant,2,2004.0,2.2,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,43.9742,-92.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.133333333333333 -56100,St. Charles Power Plant,3,2004.0,2.2,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,43.9742,-92.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.133333333333333 -56100,St. Charles Power Plant,4,2004.0,2.2,2.0,2.0,1.6,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,MN,43.9742,-92.0597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.133333333333333 -56102,Currant Creek,CT1A,2005.0,172.0,135.0,143.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7848837209302326,0.8313953488372093,WECC,PACE,UT,39.82144,-111.89345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56102,Currant Creek,CT1B,2005.0,172.0,135.0,143.0,75,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7848837209302326,0.8313953488372093,WECC,PACE,UT,39.82144,-111.89345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56102,Currant Creek,ST1,2006.0,305.0,254.0,269.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8327868852459016,0.8819672131147541,WECC,PACE,UT,39.82144,-111.89345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56104,Mankato Energy Center,CTG1,2019.0,188.7,187.0,210.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9909909909909911,1.0,MRO,MISO,MN,44.1988,-94.003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56104,Mankato Energy Center,CTG2,2006.0,192.1,167.0,205.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8693388859968767,1.0,MRO,MISO,MN,44.1988,-94.003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56104,Mankato Energy Center,STG1,2006.0,360.0,300.0,305.0,145,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8333333333333334,0.8472222222222222,MRO,MISO,MN,44.1988,-94.003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56106,Kimball Wind,KIM01,2018.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,WACM,NE,41.2736,-103.6983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56108,T J Labbe Electric Generating,U-1,2005.0,50.4,47.9,47.9,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9503968253968254,0.9503968253968254,SERC,MISO,LA,30.2554,-92.0433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.663707709459953 -56108,T J Labbe Electric Generating,U-2,2005.0,50.4,47.6,46.4,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9444444444444445,0.9206349206349207,SERC,MISO,LA,30.2554,-92.0433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.049212257614121 -56111,Brazos Wind Farm,GEN1,2003.0,160.0,160.0,160.0,10.4,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.94793,-101.147784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56112,Mountain View III,V47,2003.0,22.4,22.4,22.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9141,-116.5914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56114,IMEA Highland,1,1996.0,1.8,1.8,1.8,0.9,DFO,Petroleum Liquids,SB,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7417,-89.6847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56114,IMEA Highland,2,1996.0,1.8,1.8,1.8,0.9,DFO,Petroleum Liquids,SB,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.7417,-89.6847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56116,IMEA Flora,10,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6658,-88.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479166666666668 -56116,IMEA Flora,6,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6658,-88.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479166666666668 -56116,IMEA Flora,7,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6658,-88.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479166666666668 -56116,IMEA Flora,8,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6658,-88.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479166666666668 -56116,IMEA Flora,9,2000.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6658,-88.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479166666666668 -56117,Flora Site A,1,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6693,-88.4635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.691819545402101 -56117,Flora Site A,2,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6693,-88.4635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.691819545402101 -56117,Flora Site A,3,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6693,-88.4635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.691819545402101 -56118,Flora Site B,4,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6714,-88.4894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666666666666666 -56118,Flora Site B,5,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,38.6714,-88.4894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666666666666666 -56119,Middlesex County Utilities Authority,100,2001.0,6.0,4.1,4.9,3,LFG,Landfill Gas,OP,CT,10.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.6833333333333333,0.8166666666666668,RFC,PJM,NJ,40.4903,-74.3156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.351896246806838 -56119,Middlesex County Utilities Authority,200,2001.0,6.0,4.1,4.9,3,LFG,Landfill Gas,OP,CT,10.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.6833333333333333,0.8166666666666668,RFC,PJM,NJ,40.4903,-74.3156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.761658489888717 -56119,Middlesex County Utilities Authority,300,1961.0,10.5,10.6,10.6,1.5,LFG,Landfill Gas,OP,CA,1.0,1961.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,NJ,40.4903,-74.3156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56120,Lee County Landfill,L1,2005.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,1.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,SERC,SC,SC,34.181042,-80.267777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.61663807890223 -56120,Lee County Landfill,L2,2005.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,1.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,SERC,SC,SC,34.181042,-80.267777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.61663807890223 -56120,Lee County Landfill,L3,2005.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,1.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,SERC,SC,SC,34.181042,-80.267777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.61663807890223 -56120,Lee County Landfill,L4,2006.0,5.5,5.2,5.2,3.7,LFG,Landfill Gas,OP,GT,9.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9454545454545454,0.9454545454545454,SERC,SC,SC,34.181042,-80.267777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.615180032733225 -56121,Anderson Regional Landfill,A2,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OS,IC,7.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,DUK,SC,34.5739,-82.4621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56121,Anderson Regional Landfill,A3,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OS,IC,7.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,DUK,SC,34.5739,-82.4621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56122,Richland County Landfill,R1,2006.0,5.7,5.2,5.2,3.7,LFG,Landfill Gas,OP,GT,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9122807017543859,0.9122807017543859,SERC,SC,SC,34.102996,-80.790494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.01290684624018 -56122,Richland County Landfill,R2,2010.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,SC,SC,34.102996,-80.790494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.009188746931839 -56122,Richland County Landfill,R3,2010.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,SC,SC,34.102996,-80.790494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.009188746931839 -56125,Springville Hydroelectric,4152,1994.0,1.0,1.0,1.0,0.4,WAT,Conventional Hydroelectric,OP,HY,3.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,CISO,CA,34.2253,-119.0858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56126,Sub 2 Generating Station,1,2004.0,1.8,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,1.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.7503,-92.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56126,Sub 2 Generating Station,2,2004.0,1.8,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,1.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.7503,-92.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56127,Macon Energy Center,1,2003.0,10.0,10.9,11.9,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,AECI,MO,39.748975,-92.384476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.766073326248671 -56128,Sub 3 Generating Station,1,2003.0,1.8,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.761389,-92.453333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56128,Sub 3 Generating Station,2,2003.0,1.8,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.761389,-92.453333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56128,Sub 3 Generating Station,3,2003.0,1.8,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.761389,-92.453333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56128,Sub 3 Generating Station,4,2003.0,1.8,1.8,1.8,1.3,DFO,Petroleum Liquids,SB,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,AECI,MO,39.761389,-92.453333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56129,Thermal Kem,1,2003.0,2.9,2.4,2.4,2,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8275862068965517,0.8275862068965517,SERC,DUK,SC,34.8894,-81.0725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.3125 -56131,Valenite,1,2003.0,2.9,2.4,2.4,2,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8275862068965517,0.8275862068965517,SERC,DUK,SC,34.65724,-83.03832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.058823529411764 -56132,Honea Path,1,2003.0,2.9,2.4,2.4,2,DFO,Petroleum Liquids,OP,IC,7.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8275862068965517,0.8275862068965517,SERC,DUK,SC,34.44128,-82.3652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.298507462686567 -56134,Regional Wastewater Control Facility,0101,2000.0,1.0,1.0,1.0,0.8,OBG,Other Waste Biomass,OP,IC,11.0,2000.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.9369,-121.3294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.495115681233933 -56134,Regional Wastewater Control Facility,0301,2000.0,1.0,1.0,1.0,0.8,OBG,Other Waste Biomass,OP,IC,11.0,2000.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.9369,-121.3294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.495115681233933 -56134,Regional Wastewater Control Facility,0401,2000.0,1.0,1.0,1.0,0.8,OBG,Other Waste Biomass,OP,IC,11.0,2000.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.9369,-121.3294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.495115681233933 -56134,Regional Wastewater Control Facility,0501,2000.0,1.8,1.0,1.0,0.8,DFO,Petroleum Liquids,SB,IC,11.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5555555555555556,0.5555555555555556,WECC,CISO,CA,37.9369,-121.3294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.495115681233933 -56135,Ripon Generation Station,1,2006.0,60.5,50.0,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8264462809917356,0.8264462809917356,WECC,BANC,CA,37.7315,-121.116,Ripon 1,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,50.0,5.063580966955512,102.51680784137396,0.31855024369798846,-15.638860878098889,411.1261144793813,8.729186972860996,#TRUE#,#2006-06-01#,#2050-12-31#,Existing,BANC,CA_BANC,18.0,50.0,45.0,CA,NG,Areo,#FALSE#,18,50,16.26479798596277 -56135,Ripon Generation Station,2,2006.0,60.5,50.0,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8264462809917356,0.8264462809917356,WECC,BANC,CA,37.7315,-121.116,Ripon 2,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,50.0,6.042458224295402,66.80936289374397,0.45650596151386014,-24.62452900067781,546.8891376319309,8.300989043137214,#TRUE#,#2006-06-01#,#2050-12-31#,Existing,BANC,CA_BANC,20.0,50.0,45.0,CA,NG,Areo,#FALSE#,20,50,8.715655681009054 -56138,Anderson Erickson,1,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.6014,-93.5765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.23076923076923 -56139,Neptune Gas Processing Plant,NPCG,2004.0,4.5,3.1,3.5,1.6,OTH,All Other,OP,OT,2.0,2004.0, , ,,,,,other,other,Other,Other,0.6888888888888889,0.7777777777777778,SERC,MISO,LA,29.7336,-91.4431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,214.375 -56141,Jamaica Bay Peaking,2,2003.0,60.5,55.8,60.5,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9223140495867768,1.0,NPCC,NYIS,NY,40.6097,-73.7622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.412929779204184 -56143,Riverside Energy Resource Center,1,2006.0,50.0,50.0,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9636,-117.4528,RiversideERC1,GT LM_LM6000,False,1.0,1.0,-1.0,43.65,43.65,1452.965,219.705,1.0,0.45,55.0,5.852402619671631,96.48517077281745,0.17497974192580032,-7.07779779447875,319.144248758685,8.817620263004907,#TRUE#,#2006-06-01#,#2050-12-31#,Existing,CISC,CA_CISO,22.0,55.0,45.0,CA,NG,Areo,#FALSE#,22,55,10.605481263382124 -56143,Riverside Energy Resource Center,2,2006.0,50.0,50.0,50.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9636,-117.4528,RiversideERC2,GT LM_LM6000,False,1.0,1.0,-1.0,43.65,43.65,1452.965,219.705,1.0,0.45,55.0,6.676922261431504,82.78326979050489,0.15012853946253615,-4.416884484547003,273.81942531299853,9.221048060136932,#TRUE#,#2006-06-01#,#2050-12-31#,Existing,CISC,CA_CISO,22.0,55.0,45.0,CA,NG,Areo,#FALSE#,22,55,10.80158345923282 -56143,Riverside Energy Resource Center,3,2011.0,48.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9636,-117.4528,RiversideERC3,GT LM_LM6000,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,54.0,6.288339249161137,84.28861177908836,0.1600635205691873,-5.394627810056859,283.5279216942643,8.900796307341242,#TRUE#,#2011-04-01#,#2050-12-31#,Existing,CISC,CA_CISO,22.0,54.0,45.0,CA,NG,Areo,#FALSE#,22,54,10.775056444977919 -56143,Riverside Energy Resource Center,4,2011.0,48.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9636,-117.4528,RiversideERC4,GT LM_LM6000,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,52.0,5.890169355411602,92.56006671645372,0.19346384879096507,-7.880128210847871,322.781059115497,8.8092874713134,#TRUE#,#2011-04-01#,#2050-12-31#,Existing,CISC,CA_CISO,22.0,52.0,45.0,CA,NG,Areo,#FALSE#,22,52,11.40500599744134 -56144,Springs Generating Station,1,2002.0,10.0,10.0,10.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9308,-117.2933,Springs1,GT_GE10,False,1.0,1.0,-1.0,9.9,9.9,329.5385,49.83,1.0,0.45,11.0,0.7662654788001296,35.81839792405272,2.46318648667175,-38.22351351601244,182.60047447644618,5.533780837126335,#TRUE#,#2002-06-13#,#2050-12-31#,Existing,CISC,CA_CISO,4.95,11.0,9.0,CA,NG,Areo,#FALSE#,4.95,11,14.066024759284732 -56144,Springs Generating Station,2,2002.0,10.0,10.0,10.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9308,-117.2933,Springs2,GT_GE10,False,1.0,1.0,-1.0,9.9,9.9,329.5385,49.83,1.0,0.45,11.0,0.7662654788001296,35.81839792405272,2.46318648667175,-38.22351351601244,182.60047447644618,5.533780837126335,#TRUE#,#2002-06-13#,#2050-12-31#,Existing,CISC,CA_CISO,4.95,11.0,9.0,CA,NG,Areo,#FALSE#,4.95,11,14.066024759284732 -56144,Springs Generating Station,3,2002.0,10.0,10.0,10.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9308,-117.2933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.066024759284732 -56144,Springs Generating Station,4,2002.0,10.0,10.0,10.0,8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.9308,-117.2933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.066024759284732 -56146,False Island,1,2003.0,1.3,1.3,1.3,0.5,DFO,Petroleum Liquids,OP,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.48918,-133.1345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.3993399339934 -56147,Viking,1,2003.0,1.0,1.0,1.0,0.4,DFO,Petroleum Liquids,OS,IC,2.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.540708,-133.102344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56148,Ft. Pierre,5,2004.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,10.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,44.368056,-100.380833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.98766233766234 -56148,Ft. Pierre,6,2004.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,10.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,44.368056,-100.380833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.98766233766234 -56148,Ft. Pierre,7,2004.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,10.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,SD,44.368056,-100.380833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.98766233766234 -56150,McIntosh Combined Cycle Facility,10ST,2005.0,281.9,295.0,295.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,GA,32.3478,-81.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56150,McIntosh Combined Cycle Facility,11ST,2005.0,281.9,295.0,295.0,130,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,SOCO,GA,32.3478,-81.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56150,McIntosh Combined Cycle Facility,C10A,2005.0,203.2,181.8,192.6,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8946850393700788,0.9478346456692913,SERC,SOCO,GA,32.3478,-81.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56150,McIntosh Combined Cycle Facility,C10B,2005.0,203.2,181.8,192.6,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8946850393700788,0.9478346456692913,SERC,SOCO,GA,32.3478,-81.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56150,McIntosh Combined Cycle Facility,C11A,2005.0,203.2,181.0,192.3,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8907480314960631,0.9463582677165355,SERC,SOCO,GA,32.3478,-81.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56150,McIntosh Combined Cycle Facility,C11B,2005.0,203.2,181.0,192.3,125,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8907480314960631,0.9463582677165355,SERC,SOCO,GA,32.3478,-81.1817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56151,South Harper,GT1,2005.0,117.0,104.6,104.6,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.894017094017094,0.894017094017094,MRO,SWPP,MO,38.6803,-94.4824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56151,South Harper,GT2,2005.0,117.0,104.6,104.6,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.894017094017094,0.894017094017094,MRO,SWPP,MO,38.6803,-94.4824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56151,South Harper,GT3,2005.0,117.0,103.6,103.6,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8854700854700854,0.8854700854700854,MRO,SWPP,MO,38.6803,-94.4824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56152,Freeport Energy Center,CTG1,2007.0,180.0,169.4,188.7,110,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9411111111111111,1.0,TRE,ERCO,TX,28.988761,-95.395417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.046342012072127 -56152,Freeport Energy Center,STG1,2007.0,80.0,50.0,70.0,4,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.625,0.875,TRE,ERCO,TX,28.988761,-95.395417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56160,"Mendota Hills, LLC",GEN1,2003.0,76.2,76.2,76.2,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.7194,-89.0492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56162,Ainsworth Wind,1,2005.0,59.4,59.4,59.4,0,WND,Onshore Wind Turbine,OP,WT,10.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.4489,-99.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56163,Kennecott Power Plant,RCHP,2010.0,6.4,5.9,6.4,0.3,NG,Natural Gas Fired Combustion Turbine,OA,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.921875,1.0,WECC,PACE,UT,40.7119,-112.1225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56163,Kennecott Power Plant,SM58,1995.0,31.8,31.8,31.8,3.1,WH,All Other,OP,ST,1.0,1995.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,UT,40.7119,-112.1225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56164,Faribault Energy Park,EU01,2005.0,212.5,153.0,182.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.72,0.8564705882352941,MRO,MISO,MN,44.3356,-93.290556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56164,Faribault Energy Park,HRSG,2007.0,122.0,108.0,108.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8852459016393442,0.8852459016393442,MRO,MISO,MN,44.3356,-93.290556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56166,Sheboygan Falls,1,2005.0,173.4,151.9,172.6,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8760092272203,0.9953863898500576,MRO,MISO,WI,43.751826,-87.878056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.473932134153417 -56166,Sheboygan Falls,2,2005.0,173.4,149.2,169.5,100,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8604382929642445,0.9775086505190311,MRO,MISO,WI,43.751826,-87.878056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.322283202455095 -56172,Flying Cloud Power Partners LLC,FC,2003.0,43.5,43.5,43.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.3897,-95.2997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56173,Colorado Green Holdings LLC,CG,2003.0,162.0,162.0,162.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,37.7033,-102.6231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56174,Moraine Wind LLC,MOR,2003.0,51.0,51.0,51.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0667,-96.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56177,Nebo Power Station,GT1,2004.0,65.0,65.0,65.0,5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,PACE,UT,40.0614,-111.7294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56177,Nebo Power Station,ST1,2004.0,75.0,65.0,75.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8666666666666667,1.0,WECC,PACE,UT,40.0614,-111.7294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56181,Genoa Diesel Generating Station,1,2004.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5092,-83.3606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.41385614174889 -56181,Genoa Diesel Generating Station,2,2004.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5092,-83.3606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.41385614174889 -56181,Genoa Diesel Generating Station,3,2004.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.5092,-83.3606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.41385614174889 -56184,Red Bluff,IC1,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,Red_Bluff_IC1,IC,False,1.0,1.0,-1.0,47.5,47.5,500.0,0.29,1.0,0.0,50.0,8.274342344882383,4.782882038915104,-4.264537174954175e-08,8.27434368568039,4.782882869066293,9.356719270144298,#TRUE#,#2001-08-11#,#2050-12-31#,Existing,CIPV,CA_CISO,0.58,50.0,44.1,CA,NG,,#FALSE#,.58,50,10.142465809741939 -56184,Red Bluff,IC10,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC11,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC12,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC13,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC14,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC15,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC16,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC2,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC3,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC4,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC5,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC6,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC7,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC8,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56184,Red Bluff,IC9,2001.0,2.9,2.8,2.8,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9655172413793103,0.9655172413793103,WECC,CISO,CA,40.1501,-122.2124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.142465809741939 -56185,Chowchilla II,IC1,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,Chowchilla2_01,IC,False,1.0,1.0,-1.0,49.875,49.875,525.0,5.25,1.0,0.0,52.5,6.268690432046276,105.90875137069337,-6.715173949418015e-07,6.268729911216041,105.9082687614999,10.762345825133275,#TRUE#,#2001-06-13#,#2050-12-31#,Existing,CIPV,CA_CISO,10.5,52.5,48.0,CA,NG,,#FALSE#,10.5,52.5,10.171326094824465 -56185,Chowchilla II,IC10,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC11,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC12,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC13,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC14,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC15,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC16,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC2,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC3,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC4,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC5,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC6,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC7,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC8,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56185,Chowchilla II,IC9,2001.0,3.1,3.1,3.1,2.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.1073,-120.2485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.171326094824465 -56188,Pinelawn Power LLC,CTG,2005.0,50.0,47.0,47.0,40,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.94,0.94,NPCC,NYIS,NY,40.736611,-73.388424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56188,Pinelawn Power LLC,STG,2005.0,32.0,27.5,30.1,5,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.859375,0.940625,NPCC,NYIS,NY,40.736611,-73.388424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56189,"Waterside Power, LLC",4,2004.0,23.2,23.3,23.9,15,DFO,Petroleum Liquids,OP,GT,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.0372,-73.5564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.06591225184233 -56189,"Waterside Power, LLC",5,2004.0,23.2,23.3,23.9,15,DFO,Petroleum Liquids,OP,GT,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.0372,-73.5564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.358134631184587 -56189,"Waterside Power, LLC",7,2006.0,23.2,23.3,23.9,15,DFO,Petroleum Liquids,OP,GT,5.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.0372,-73.5564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.721676777042497 -56190,Central Michigan University,GT1,1990.0,3.8,3.2,3.9,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8421052631578948,1.0,RFC,MISO,MI,43.590456,-84.779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.734017363851619 -56190,Central Michigan University,STM1,1987.0,1.0,1.0,1.0,0.2,NG,Natural Gas Steam Turbine,OP,ST,12.0,1987.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,43.590456,-84.779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.304870198804946 -56192,Georgia-Pacific Wauna Mill,1,1996.0,39.8,24.0,26.0,4,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,1996.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6030150753768845,0.6532663316582915,WECC,BPAT,OR,46.153955,-123.40658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56193,Medford Operation,1,1956.0,3.5,3.1,3.1,1,WDS,Wood/Wood Waste Biomass,OS,ST,6.0,1956.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8857142857142858,0.8857142857142858,WECC,PACW,OR,42.355517,-122.904642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56193,Medford Operation,2,1965.0,5.0,4.4,4.4,1,WDS,Wood/Wood Waste Biomass,OS,ST,1.0,1965.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8800000000000001,0.8800000000000001,WECC,PACW,OR,42.355517,-122.904642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56194,Dike City Power Plant,001,2005.0,2.2,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,MRO,MISO,IA,42.4622,-92.6264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.0 -56195,Combine Hills I,001,2003.0,43.0,43.0,43.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.943,-118.591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56196,500MW CC,CA01,2005.0,188.0,168.7,195.6,53,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8973404255319148,1.0,NPCC,NYIS,NY,40.7889,-73.9069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56196,500MW CC,CT01,2005.0,170.0,153.3,192.7,75,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.901764705882353,1.0,NPCC,NYIS,NY,40.7889,-73.9069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56196,500MW CC,CT02,2005.0,170.0,153.3,192.7,75,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.901764705882353,1.0,NPCC,NYIS,NY,40.7889,-73.9069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56199,TG Windfarm LLC,1,2003.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9897,-96.2236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56200,CG Windfarm LLC,I,2003.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9931,-96.2186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56201,Bisson Windfarm LLC,I,2003.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.984444,-96.219444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56202,Tofteland Windfarm LLC,I,2003.0,2.0,2.0,2.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.980278,-96.223333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56203,Westridge Windfarm LLC,1,2003.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.988611,-96.215556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56204,Fey Windfarm LLC,1,2003.0,2.0,2.0,2.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0364,-96.0736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56205,Windcurrent Farms LLC,1,2003.0,2.0,2.0,2.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0236,-96.0789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56206,K-Brink Windfarm LLC,1,2003.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,2.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0197,-96.1183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56207,DL Windy Acres LLC,1,2003.0,2.0,2.0,2.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.651389,-95.368611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56208,S&P Windfarm LLC,1,2003.0,2.0,2.0,2.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.651389,-95.3825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56209,Boeve Windfarm LLC,1,2003.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,8.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.05,-96.0933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56210,B&K Energy Systems LLC,1,2003.0,2.0,2.0,2.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.651389,-95.3755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56211,Sweetwater Wind 1 LLC,SW1,2003.0,37.5,37.5,37.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.3606,-100.3389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56212,Sweetwater Wind 2 LLC,SW2,2005.0,98.8,98.8,98.8,0,WND,Onshore Wind Turbine,OP,WT,2.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.3472,-100.3703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56215,Allendorf,A1,1998.0,1.2,1.2,1.2,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,1998.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.4,-95.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56215,Allendorf,ET,2020.0,2.0,1.8,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9,1.0,MRO,MISO,IA,43.4,-95.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56215,Allendorf,ST,1998.0,0.6,0.6,0.6,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,1998.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.4,-95.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56215,Allendorf,WT,2003.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.4,-95.6333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56224,TS Power Plant,001,2008.0,242.0,218.4,219.2,80,SUB,Conventional Steam Coal,OP,ST,6.0,2008.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9024793388429753,0.9057851239669421,WECC,NEVP,NV,40.7461,-116.5297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.944722267164256 -56225,Aeolus Wind Facility,V90,2003.0,3.0,3.0,3.0,0.9,WND,Onshore Wind Turbine,OS,WT,12.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.4725,-101.3278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56226,Bowling Green Wind,1,2004.0,1.8,1.8,1.8,1.8,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.3786,-83.7383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56226,Bowling Green Wind,2,2003.0,1.8,1.8,1.8,1.8,WND,Onshore Wind Turbine,OP,WT,11.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.3786,-83.7383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56226,Bowling Green Wind,3,2003.0,1.8,1.8,1.8,1.8,WND,Onshore Wind Turbine,OP,WT,11.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.3786,-83.7383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56226,Bowling Green Wind,4,2004.0,1.8,1.8,1.8,1.8,WND,Onshore Wind Turbine,OP,WT,11.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.3786,-83.7383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56227,Port Westward,1,2007.0,312.0,256.2,267.9,135,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8211538461538461,0.8586538461538461,WECC,PGE,OR,46.17894,-123.172039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56227,Port Westward,2,2007.0,171.0,136.0,138.5,94.5,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7953216374269005,0.8099415204678363,WECC,PGE,OR,46.17894,-123.172039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56228,Prescott Airport,PV1,2002.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2002.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,34.6584,-112.4008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56229,Cogeneration 1,CT1,2002.0,9.0,8.3,6.6,3.5,NG,Natural Gas Fired Combined Cycle,OP,CS,11.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9222222222222223,0.7333333333333333,WECC,TEPC,AZ,32.229922,-110.952797,U of AZ Cogen 1,CC,False,6.0,2.0,-1.0,0.6,0.6,778.416,90.24,1.0,2.1,9.0,6.377249776734743,3.777751522780506,-1.0500788237373902e-05,6.37739258041771,3.777279863103958,6.9495157220687975,#TRUE#,#2002-11-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,5.0,9.0,0.0,AZ,NG,Single shaft,#FALSE#,5,9,12.054106833342871 -56231,Emory Hillandale Hospital,01,2005.0,0.8,0.7,0.7,0,DFO,Petroleum Liquids,SB,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,SOCO,GA,33.7036,-84.1494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.91156462585034 -56231,Emory Hillandale Hospital,02,2005.0,0.8,0.7,0.7,0,DFO,Petroleum Liquids,SB,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,SOCO,GA,33.7036,-84.1494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.91156462585034 -56232,Miramar Energy Facility,1,2005.0,53.0,47.0,47.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8867924528301887,0.8867924528301887,WECC,CISO,CA,32.8769,-117.166389,MiramarEnergy1,GT LM_LM6000,False,1.0,1.0,-1.0,42.03,42.03,1399.041,10.274,1.0,0.45,50.0,-3.069638694551003,563.1819170266806,-0.0009236024951523912,-2.9852730673061565,561.2592519288136,9.006394168168859,#TRUE#,#2005-07-27#,#2050-12-31#,Existing,CISD,CA_CISO,44.0,50.0,0.0,CA,NG,Industrial,#FALSE#,44,50,11.092069515363253 -56232,Miramar Energy Facility,2,2009.0,53.0,47.0,47.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8867924528301887,0.8867924528301887,WECC,CISO,CA,32.8769,-117.166389,MiramarEnergy2,GT LM_LM6000,False,1.0,1.0,-1.0,44.55,44.55,1482.923,10.89,1.0,0.45,50.0,-3.069638694551003,563.1819170266806,-0.0009236024951523912,-2.9852730673061565,561.2592519288136,9.006394168168859,#TRUE#,#2009-08-07#,#2050-12-31#,Existing,CISD,CA_CISO,44.0,50.0,0.0,CA,NG,Industrial,#FALSE#,44,50,9.386687987100242 -56233,EG178 Facility,CT02,2005.0,60.5,42.0,45.0,12,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6942148760330579,0.743801652892562,TRE,ERCO,TX,32.747058,-100.954661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.913100438503 -56233,EG178 Facility,CTG1,2005.0,60.5,42.0,45.0,12,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6942148760330579,0.743801652892562,TRE,ERCO,TX,32.747058,-100.954661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.916533437380041 -56233,EG178 Facility,STG,2005.0,32.9,16.0,16.0,4,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.4863221884498481,0.4863221884498481,TRE,ERCO,TX,32.747058,-100.954661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56234,Caithness Long Island Energy Center,CT01,2009.0,196.2,187.7,216.0,150,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9566768603465852,1.0,NPCC,NYIS,NY,40.8142,-72.9403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56234,Caithness Long Island Energy Center,ST01,2009.0,152.7,129.6,149.2,80,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8487229862475443,0.977079240340537,NPCC,NYIS,NY,40.8142,-72.9403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56237,Lake Side Power Plant,CT01,2007.0,203.0,169.0,174.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8325123152709359,0.8571428571428572,WECC,PACE,UT,40.331667,-111.754167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.455398352563725 -56237,Lake Side Power Plant,CT02,2007.0,203.0,169.0,174.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8325123152709359,0.8571428571428572,WECC,PACE,UT,40.331667,-111.754167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.540552995205443 -56237,Lake Side Power Plant,CT21,2014.0,206.0,178.0,183.2, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8640776699029127,0.8893203883495145,WECC,PACE,UT,40.331667,-111.754167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56237,Lake Side Power Plant,CT22,2014.0,206.0,178.0,183.2, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8640776699029127,0.8893203883495145,WECC,PACE,UT,40.331667,-111.754167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56237,Lake Side Power Plant,ST01,2007.0,251.0,209.0,215.0,140,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8326693227091634,0.8565737051792829,WECC,PACE,UT,40.331667,-111.754167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56237,Lake Side Power Plant,ST2,2014.0,316.0,273.0,281.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8639240506329113,0.8892405063291139,WECC,PACE,UT,40.331667,-111.754167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56238,Groton Generation Station,GT01,2006.0,108.2,85.0,95.0,46.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7855822550831792,0.878003696857671,MRO,SWPP,SD,45.3735,-98.098689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56238,Groton Generation Station,GT02,2008.0,108.2,85.0,93.0,46.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7855822550831792,0.8595194085027726,MRO,SWPP,SD,45.3735,-98.098689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56239,Malaga Power LLC,GT-1,2005.0,60.5,48.0,48.0,46,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.7933884297520661,WECC,CISO,CA,36.68957,-119.73989,KingsRiverGT1,GT LM_LM6000 Spring,False,1.0,1.0,-1.0,43.2,43.2,1437.986,217.44,1.0,0.45,49.0,-17.955400728263125,1297.7355798757987,-0.564938605712684,36.1681119510096,1.606517929241294,9.141097769589992,#TRUE#,#2005-09-19#,#2050-12-31#,Existing,CIPV,CA_CISO,47.0,49.0,48.5,CA,NG,Areo,#FALSE#,47,49,10.662345928376574 -56239,Malaga Power LLC,GT-2,2005.0,60.5,48.0,48.0,46,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7933884297520661,0.7933884297520661,WECC,CISO,CA,36.68957,-119.73989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.801705496546521 -56240,Buffalo Gap Wind Farm,1,2006.0,120.6,120.6,120.6,0,WND,Onshore Wind Turbine,OP,WT,4.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.311556,-100.061589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56241,Cannon Falls Energy Center,UNT1,2008.0,173.4,158.0,181.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9111880046136102,1.0,MRO,MISO,MN,44.536688,-92.915528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56241,Cannon Falls Energy Center,UNT2,2008.0,173.4,158.0,181.0,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9111880046136102,1.0,MRO,MISO,MN,44.536688,-92.915528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56242,Kindred School,1,2001.0,2.0,2.0,1.3,1,DFO,Petroleum Liquids,SB,IC,10.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,0.65,MRO,MISO,ND,46.64974,-97.00953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.293103448275862 -56244,State Auto Insurance,1,2001.0,1.7,1.7,1.7,1,DFO,Petroleum Liquids,SB,IC,4.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,SD,45.220717,-96.616781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571428571428571 -56245,Stevens Community Medical Center,1,2004.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,SB,IC,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.585,-95.9042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.904761904761905 -56247,West Group Data Center F,1,2004.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8283,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736263736263735 -56247,West Group Data Center F,2,2004.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8283,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736263736263735 -56247,West Group Data Center F,3,2004.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8283,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736263736263735 -56247,West Group Data Center F,4,2004.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8283,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.736263736263735 -56248,Shell Chemical,101G,2002.0,40.0,34.5,38.2,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8625,0.9550000000000001,SERC,MISO,LA,30.187508,-90.983963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.788795555704294 -56248,Shell Chemical,201G,2002.0,40.0,34.5,38.2,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8625,0.9550000000000001,SERC,MISO,LA,30.187508,-90.983963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.788795555704294 -56249,Anson County Generation Facility,1,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.968651,-79.921738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56249,Anson County Generation Facility,2,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.968651,-79.921738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56249,Anson County Generation Facility,3,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.968651,-79.921738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56249,Anson County Generation Facility,4,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.968651,-79.921738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56249,Anson County Generation Facility,5,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.968651,-79.921738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56249,Anson County Generation Facility,6,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.968651,-79.921738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56250,Ontario LFGTE,GEN1,2003.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN10,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN11,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN2,2003.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN3,2003.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN4,2003.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN5,2005.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,5.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN6,2005.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,5.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN7,2005.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,5.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN8,2010.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56250,Ontario LFGTE,GEN9,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.8586,-77.0872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.001943888602781 -56251,Intrepid,INWF,2004.0,160.5,160.5,160.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5539,-95.3283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56251,Intrepid,INWF2,2005.0,15.0,15.0,15.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5539,-95.3283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56252,Century,CWF,2005.0,150.0,150.0,150.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5644,-93.6369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56252,Century,CWF2,2007.0,35.0,35.0,35.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5644,-93.6369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56252,Century,CWF3,2007.0,16.2,16.2,16.2,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5644,-93.6369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56253,Millcreek Power Generation,MC1,2006.0,40.0,36.8,39.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9199999999999999,0.975,WECC,PACE,UT,37.112092,-113.516581,MillcreekPwrGen1,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,43.0,2.5212294716661625,255.79711996724336,-0.001578939846364434,2.646442053995969,253.31943822940957,8.976664383705439,#TRUE#,#2006-05-01#,#2050-12-31#,Existing,PAUT,BS_PACE,37.0,43.0,35.0,UT,NG,Areo,#FALSE#,37,43, -56253,Millcreek Power Generation,MC2,2010.0,40.0,36.8,39.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9199999999999999,0.975,WECC,PACE,UT,37.112092,-113.516581,MillcreekPwrGen2,GT LM_LM6000 Sprint,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,43.0,2.519112804996918,255.67313663394597,-0.0021147313575868277,2.6868682264378965,252.3525861249595,8.971418806365183,#TRUE#,#2010-07-01#,#2050-12-31#,Existing,PAUT,BS_PACE,37.0,43.0,35.0,UT,NG,Areo,#FALSE#,37,43, -56255,Hopkins Ridge Wind,1,2005.0,149.4,149.4,149.4,0,WND,Onshore Wind Turbine,OP,WT,11.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,46.4211,-117.8331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56255,Hopkins Ridge Wind,2,2008.0,7.2,7.2,7.2,0,WND,Onshore Wind Turbine,OP,WT,8.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,46.4211,-117.8331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56258,Kapaia Power Station,CT1,2002.0,39.1,27.5,27.5,8,OTH,All Other,OP,GT,9.0,2002.0, , ,,,,,other,other,Other,Combustion (Gas) Turbine,0.7033248081841432,0.7033248081841432,non-conus,non-conus,HI,21.996451,-159.375803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.431199297879406 -56259,Empire Generating Co LLC,CT11,2010.0,179.0,155.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8659217877094972,1.0,NPCC,NYIS,NY,42.625239,-73.750021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56259,Empire Generating Co LLC,CT12,2010.0,179.0,155.0,190.0,90,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8659217877094972,1.0,NPCC,NYIS,NY,42.625239,-73.750021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56259,Empire Generating Co LLC,ST13,2010.0,295.7,270.0,295.7,135,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9130875887724045,1.0,NPCC,NYIS,NY,42.625239,-73.750021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56260,"High Point, Pump Station Rd",Unit1,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9861,-79.9497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.364864864864863 -56260,"High Point, Pump Station Rd",Unit2,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9861,-79.9497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.364864864864863 -56261,Lexington,Unit1,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.7736,-80.2594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56261,Lexington,Unit2,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.7736,-80.2594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56262,"Gastonia, Tulip Drive",DG3,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.28914,-81.205219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.27333224240441 -56262,"Gastonia, Tulip Drive",Unit1,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.28914,-81.205219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.27333224240441 -56262,"Gastonia, Tulip Drive",Unit2,2005.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.28914,-81.205219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.27333224240441 -56263,Albemarle Prime Power Park,Unit1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.407208,-80.151849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.165605095541402 -56263,Albemarle Prime Power Park,Unit2,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.407208,-80.151849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.165605095541402 -56265,South Fork,1,2005.0,2.0,1.9,1.8,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,2005.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.9,non-conus,non-conus,AK,55.563333,-132.891111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56269,IBM West,1,2005.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.0587,-92.5119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.91891891891892 -56269,IBM West,2,2005.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.0587,-92.5119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.91891891891892 -56270,Callahan Divide Wind Energy Center,1,2005.0,114.0,114.0,114.0,5.7,WND,Onshore Wind Turbine,OP,WT,3.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.303889,-100.021667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56271,Diablo Winds LLC,VEST,2004.0,18.0,18.0,18.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.763653,-121.614392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56273,Weatherford Wind Energy Center,1,2005.0,106.5,106.5,106.5,7.4,WND,Onshore Wind Turbine,OP,WT,4.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.5094,-98.7346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56273,Weatherford Wind Energy Center,2,2005.0,40.5,40.5,40.5,7.4,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.5094,-98.7346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56274,Valley Queen Cheese,1,2002.0,1.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.33333333333333337,0.33333333333333337,MRO,MISO,SD,45.221111,-96.637222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.499596169378101 -56274,Valley Queen Cheese,2,2002.0,1.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,4.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.33333333333333337,0.33333333333333337,MRO,MISO,SD,45.221111,-96.637222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.499596169378101 -56274,Valley Queen Cheese,3,2004.0,1.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.33333333333333337,0.33333333333333337,MRO,MISO,SD,45.221111,-96.637222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.499596169378101 -56275,Helzel & Schwarzhoff 86,WGNS,1986.0,2.4,2.4,2.4,2,WND,Onshore Wind Turbine,OP,WT,12.0,1986.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0925,-118.3952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56276,ZCO,WGNS,1985.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,1985.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0772,-118.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56277,Bavarian LFGTE,1,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.8608,-84.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.182353817391196 -56277,Bavarian LFGTE,2,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.8608,-84.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.182353817391196 -56277,Bavarian LFGTE,3,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.8608,-84.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.182353817391196 -56277,Bavarian LFGTE,4,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.8608,-84.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.182353817391196 -56277,Bavarian LFGTE,5,2016.0,1.6,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,PJM,KY,38.8608,-84.6556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.182355121240812 -56278,Green Valley LFGTE,1,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.396737,-82.808819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72269905256483 -56278,Green Valley LFGTE,2,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.396737,-82.808819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72269905256483 -56278,Green Valley LFGTE,3,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.396737,-82.808819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.72269905256483 -56279,Laurel Ridge LFGTE,1,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.035,-84.0933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047897766071603 -56279,Laurel Ridge LFGTE,2,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.035,-84.0933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047897766071603 -56279,Laurel Ridge LFGTE,3,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.035,-84.0933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047897766071603 -56279,Laurel Ridge LFGTE,4,2003.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.035,-84.0933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047897766071603 -56279,Laurel Ridge LFGTE,5,2006.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.035,-84.0933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047897766071603 -56280,Hardin County LFGTE,1,2006.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.7258,-85.7258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.936584231123847 -56280,Hardin County LFGTE,2,2006.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.7258,-85.7258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.936584231123847 -56280,Hardin County LFGTE,3,2006.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,37.7258,-85.7258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.936584231123847 -56283,Hargis-Hebert Electric Generating,U-1,2006.0,50.4,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9523809523809524,0.9523809523809524,SERC,MISO,LA,30.1694,-91.9923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.026510433729792 -56283,Hargis-Hebert Electric Generating,U-2,2006.0,50.4,47.1,45.6,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9345238095238095,0.9047619047619048,SERC,MISO,LA,30.1694,-91.9923,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.000319445433611 -56288,Salem Water Plant,1,2003.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2875,-80.0771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.818181818181818 -56289,Salem Street Dept,1,2005.0,1.8,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2794,-80.0447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.372881355932204 -56290,Maple Ridge Wind Farm,1,2005.0,137.0,137.0,137.0,1.1,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.7853,-75.5753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56290,Maple Ridge Wind Farm,1A,2006.0,61.1,61.1,61.1,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.7853,-75.5753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56290,Maple Ridge Wind Farm,2,2006.0,33.0,33.0,33.0,0.3,WND,Onshore Wind Turbine,OP,WT,6.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.7853,-75.5753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56290,Maple Ridge Wind Farm,3,2006.0,90.1,91.0,91.0,0.7,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.7853,-75.5753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56291,Horse Hollow Wind Energy Center,1,2005.0,213.0,213.0,213.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.214024,-100.05712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56291,Horse Hollow Wind Energy Center,2,2006.0,223.5,223.5,223.5,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.214024,-100.05712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56291,Horse Hollow Wind Energy Center,3,2006.0,299.0,299.0,299.0,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.214024,-100.05712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56292,Hamlet Generating Facility,ES1,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.842311,-79.736087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56292,Hamlet Generating Facility,ES2,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.842311,-79.736087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56292,Hamlet Generating Facility,ES3,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.842311,-79.736087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56292,Hamlet Generating Facility,ES4,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.842311,-79.736087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56292,Hamlet Generating Facility,ES5,2007.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.842311,-79.736087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56292,Hamlet Generating Facility,ES6,2013.0,57.3,56.5,61.1,28,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9860383944153578,1.0,SERC,CPLE,NC,34.842311,-79.736087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56293,Caprock Wind Farm,1,2004.0,60.0,60.0,60.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,34.980556,-103.353889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56293,Caprock Wind Farm,2,2005.0,20.0,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,34.980556,-103.353889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56294,Bayway Refinery,FGX,1967.0,11.2,11.2,11.2,0,WH,All Other,OP,OT,12.0,1967.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,1.0,1.0,RFC,PJM,NJ,40.637554,-74.221219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56295,Kumeyaay Wind,1,2005.0,50.0,50.0,50.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,32.705556,-116.3425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56296,Trimont Area Wind Farm,1,2005.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,11.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.7938,-94.8499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56297,Crescent Ridge,1,2005.0,53.0,53.0,53.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.25,-89.5708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56298,Roseville Energy Park,0001,2007.0,40.0,38.0,42.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.95,1.0,WECC,BANC,CA,38.7928,-121.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56298,Roseville Energy Park,0002,2007.0,40.0,38.0,42.0,23,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.95,1.0,WECC,BANC,CA,38.7928,-121.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56298,Roseville Energy Park,0003,2007.0,85.0,75.0,78.0,23,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8823529411764706,0.9176470588235294,WECC,BANC,CA,38.7928,-121.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56298,Roseville Energy Park,0004,2022.0,30.0,30.6,33.6, ,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,BANC,CA,38.7928,-121.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56298,Roseville Energy Park,0005,2022.0,30.0,30.6,33.6, ,NG,Natural Gas Fired Combustion Turbine,SB,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,BANC,CA,38.7928,-121.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56299,Wind Park Bear Creek,1,2006.0,24.0,24.0,24.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,41.235278,-75.753056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56300,Jersey-Atlantic Wind Farm,1,2006.0,7.5,7.5,7.5,0,WND,Onshore Wind Turbine,OP,WT,3.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,NJ,39.382222,-74.4475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56301,Wolverine Creek,1,2006.0,64.5,64.5,64.5,0,WND,Onshore Wind Turbine,OP,WT,2.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,ID,43.4195,-111.8294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56302,Oasis Wind,1,2004.0,60.3,60.3,60.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.06094,-118.292406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56303,Elk River Wind,1,2005.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.5797,-96.5503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56304,San Juan Mesa Wind Project LLC,1,2005.0,120.0,120.0,120.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.9716,-103.8604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56307,Adams Wind Farm,1,2003.0,13.5,13.5,13.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.554778,-92.724139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56307,Adams Wind Farm,2,2004.0,9.8,9.8,9.8,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.554778,-92.724139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56308,Fossil Gulch,1,2005.0,10.5,10.5,10.5,0,WND,Onshore Wind Turbine,OP,WT,2.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.858056,-114.949444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56309,Trigen St. Louis,CT-1,1999.0,7.8,5.0,7.8,0.5,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.641025641025641,1.0,SERC,MISO,MO,38.6359,-90.1809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.315621238668394 -56309,Trigen St. Louis,CT-2,1999.0,7.8,5.0,7.8,0.5,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.641025641025641,1.0,SERC,MISO,MO,38.6359,-90.1809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.986520896761693 -56309,Trigen St. Louis,IC-1,1999.0,1.2,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,SERC,MISO,MO,38.6359,-90.1809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56309,Trigen St. Louis,ST-3,2000.0,18.2,18.0,18.0,1.1,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2000.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.989010989010989,0.989010989010989,SERC,MISO,MO,38.6359,-90.1809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56309,Trigen St. Louis,ST-4,1999.0,1.5,1.5,1.5,0.1,NG,Natural Gas Steam Turbine,OP,ST,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.6359,-90.1809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56309,Trigen St. Louis,ST-5,1999.0,1.5,1.5,1.5,0.1,NG,Natural Gas Steam Turbine,OP,ST,6.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,MO,38.6359,-90.1809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56311,Sweetwater Wind 3 LLC,SW3,2005.0,135.0,144.0,144.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.290833,-100.4219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56312,Shute Creek Facility,021A,2005.0,48.0,32.9,37.0,12.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6854166666666666,0.7708333333333334,WECC,PACE,WY,41.8805,-110.0904,Shute_Creek021A,OT GT,False,1.0,1.0,-1.0,3.579,3.579,2112.671,7.8738,1.0,0.56,35.79,14.8505328106202,-129.0196334565258,-0.0842116452791641,19.198410472261834,-182.19892135388326,9.755897987910071,#TRUE#,#2005-05-01#,#2022-12-31#,Existing,PAWY,BS_PACE,16.106,35.79,31.0,WY,NG,Industrial,#FALSE#,16.106,35.79,12.848668612782639 -56312,Shute Creek Facility,021B,2005.0,48.0,32.9,37.0,12.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6854166666666666,0.7708333333333334,WECC,PACE,WY,41.8805,-110.0904,Shute_Creek021B,OT GT,False,1.0,1.0,-1.0,3.579,3.579,2112.671,7.8738,1.0,0.56,35.79,14.8505328106202,-129.0196334565258,-0.0842116452791641,19.198410472261834,-182.19892135388326,9.755897987910071,#TRUE#,#2005-05-01#,#2022-12-31#,Existing,PAWY,BS_PACE,16.106,35.79,31.0,WY,NG,Industrial,#FALSE#,16.106,35.79,12.848668612782639 -56312,Shute Creek Facility,021C,2005.0,48.0,32.9,36.6,12.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6854166666666666,0.7625000000000001,WECC,PACE,WY,41.8805,-110.0904,Shute_Creek021C,OT GT,False,1.0,1.0,-1.0,3.6,3.6,2125.067,7.92,1.0,0.56,36.0,14.850132158328279,-129.76281608249846,-0.08370940555348441,19.19738869713058,-183.24570186778294,9.755952353893228,#TRUE#,#1999-05-01#,#2022-12-31#,Existing,PAWY,BS_PACE,16.2,36.0,31.0,WY,NG,Industrial,#FALSE#,16.2,36,12.848668612782639 -56313,Coleman Falls,CGH2,1983.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OS,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.5035,-79.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56313,Coleman Falls,CGH3,1983.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OS,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.5035,-79.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56313,Coleman Falls,CHG1,1983.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OS,HY,6.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,VA,37.5035,-79.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56314,Holcomb Rock,HG1,1920.0,0.6,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OS,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.33333333333333337,RFC,PJM,VA,37.5035,-79.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56314,Holcomb Rock,HG2,1920.0,0.6,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OS,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.33333333333333337,RFC,PJM,VA,37.5035,-79.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56314,Holcomb Rock,HG3,1920.0,0.6,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OS,HY,6.0,1920.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.33333333333333337,0.33333333333333337,RFC,PJM,VA,37.5035,-79.3006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56317,Raft River Geothermal Power Plant,1,2008.0,18.0,10.0,12.2,0.5,GEO,Geothermal,OP,BT,4.0,2008.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5555555555555556,0.6777777777777778,WECC,BPAT,ID,42.099417,-113.38245,Raft River Geothermal,GEO,True,6.0,16.0,1.0,6.67,6.67,0.0,0.0,0.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2007-11-01#,#2050-12-31#,Existing,IPMV,BS_IPCO,5.5,12.0,0.0,ID,Geo,Binary,#FALSE#,5.5,12, -56319,Wygen 2,0001,2008.0,95.0,90.0,91.0,62,SUB,Conventional Steam Coal,OP,ST,1.0,2008.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9473684210526316,0.9578947368421052,WECC,WACM,WY,44.2919,-105.3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56320,Spring Canyon,1,2006.0,60.0,60.0,60.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.983,-102.9647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56321,Richard Burdette Geothermal,1,2005.0,15.0,10.0,15.0,7.8,GEO,Geothermal,OP,BT,11.0,2005.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.390843,-119.754593,Richard Burdette 1,GEO,True,6.0,16.0,-1.0,0.63,0.63,0.0,0.0,1.0,3.098312,15.0,-1.761426846535443,88.07140194862235,-6.364662294755519e-06,-1.7612884851552515,88.07067955290421,6.679000507896345,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,15.0,5.732475,NV,Geo,Binary,#FALSE#,7.5,15, -56321,Richard Burdette Geothermal,OEC2,2005.0,15.0,10.0,15.0,7.8,GEO,Geothermal,OP,BT,11.0,2005.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.390843,-119.754593,Richard Burdette 2,GEO,True,6.0,16.0,-1.0,0.21,0.21,0.0,0.0,1.0,3.098312,15.0,-1.761426846535443,88.07140194862235,-6.364662294755519e-06,-1.7612884851552515,88.07067955290421,6.679000507896345,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,15.0,5.732475,NV,Geo,Binary,#FALSE#,7.5,15, -56322,Wild Horse,1,2006.0,228.6,228.6,228.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSEI,WA,47.036269,-120.206494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56322,Wild Horse,WH2,2009.0,44.0,44.0,44.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSEI,WA,47.036269,-120.206494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56322,Wild Horse,WHS1,2007.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSEI,WA,47.036269,-120.206494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56323,Modern Innovative Energy LLC,GEN1,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.259587020648967 -56323,Modern Innovative Energy LLC,GEN2,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.259587020648967 -56323,Modern Innovative Energy LLC,GEN3,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,SB,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.259587020648967 -56323,Modern Innovative Energy LLC,GEN4,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,SB,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.2094,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.259587020648967 -56324,Colonie LFGTE Facility,GEN1,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.803325,-73.726741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.165198594974331 -56324,Colonie LFGTE Facility,GEN2,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.803325,-73.726741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.165198594974331 -56324,Colonie LFGTE Facility,GEN3,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.803325,-73.726741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.165198594974331 -56324,Colonie LFGTE Facility,GEN4,2016.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.803325,-73.726741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.165198594974331 -56325,Delta Power,6,1976.0,23.1,23.1,26.0,3,DFO,Petroleum Liquids,SB,GT,11.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,AK,64.028056,-145.719444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -56326,Mustang Station Unit 4,GEN1,2006.0,153.0,152.4,161.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.996078431372549,1.0,MRO,SWPP,TX,32.974554,-102.743607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.271386809827396 -56326,Mustang Station Unit 4,GEN2,2007.0,153.0,148.9,171.1,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.973202614379085,1.0,MRO,SWPP,TX,32.974554,-102.743607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.200417683695974 -56326,Mustang Station Unit 4,GEN3,2013.0,166.1,158.0,165.5,90,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9512341962673089,0.9963877182420229,MRO,SWPP,TX,32.974554,-102.743607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.912612042303962 -56327,Pendleton County LFGTE,1,2007.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,2.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.734218,-84.405901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499800439034125 -56327,Pendleton County LFGTE,2,2007.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,2.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.734218,-84.405901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499800439034125 -56327,Pendleton County LFGTE,3,2007.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,2.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.734218,-84.405901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499800439034125 -56327,Pendleton County LFGTE,4,2007.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,2.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.734218,-84.405901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.499800439034125 -56328,Harry D Mattison Gas Plant,1,2007.0,86.5,75.0,84.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9710982658959537,MRO,SWPP,AR,36.1855,-94.2841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.868087045430006 -56328,Harry D Mattison Gas Plant,2,2007.0,86.5,75.0,84.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,12.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8670520231213873,0.9710982658959537,MRO,SWPP,AR,36.1855,-94.2841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.078110047520504 -56328,Harry D Mattison Gas Plant,3,2007.0,88.0,72.0,84.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,7.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8181818181818181,0.9545454545454546,MRO,SWPP,AR,36.1855,-94.2841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.64122232754743 -56328,Harry D Mattison Gas Plant,4,2007.0,88.0,72.0,84.0,40,NG,Natural Gas Fired Combustion Turbine,SB,GT,7.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8181818181818181,0.9545454545454546,MRO,SWPP,AR,36.1855,-94.2841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.29708502911599 -56329,Campbell Industrial Park,CIP1,2009.0,113.0,113.0,113.0,42,DFO,Petroleum Liquids,OP,GT,7.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,non-conus,non-conus,HI,21.3025,-158.101667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.473045716960524 -56333,Gauley River Power Partners,GEN1,2001.0,40.0,40.0,25.0,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.625,RFC,PJM,WV,38.21921,-80.89061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56333,Gauley River Power Partners,GEN2,2001.0,40.0,40.0,25.0,0.1,WAT,Conventional Hydroelectric,OP,HY,7.0,2001.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.625,RFC,PJM,WV,38.21921,-80.89061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56335,Blue Canyon Windpower II,EW2,2005.0,151.4,151.4,151.4,7.1,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.8661,-98.6056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56336,Aragonne Wind LLC,1,2006.0,90.0,90.0,90.0,5,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.8147,-105.0108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56336,Aragonne Wind LLC,AREXP,2022.0,145.0,145.0,145.0,5,WND,Onshore Wind Turbine,OP,WT,2.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.8147,-105.0108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56337,Sweetwater Wind 4 LLC,SW4,2007.0,241.0,241.0,241.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.3122,-100.5303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56338,High Trail Wind Farm LLC,1,2007.0,210.9,210.9,210.9,1.5,WND,Onshore Wind Turbine,OP,WT,3.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,40.4792,-88.7989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56339,Albemarle Hospital Unit,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3636,-80.1939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.23529411764706 -56340,Cherryville City Hall,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3778,-81.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.82 -56341,Lincolnton High School,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.477415,-81.262259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68.28571428571429 -56342,Maiden Community Center,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.5772,-81.2081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.026315789473685 -56343,Monroe Middle School,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,34.973274,-80.540038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.27777777777778 -56344,Morganton Station 5,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.729,-81.748075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56345,Pineville Delivery 2,1,2006.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.0767,-80.8816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56346,Bear Valley Power Plant,ICE1,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56346,Bear Valley Power Plant,ICE2,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56346,Bear Valley Power Plant,ICE3,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56346,Bear Valley Power Plant,ICE4,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56346,Bear Valley Power Plant,ICE5,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56346,Bear Valley Power Plant,ICE6,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56346,Bear Valley Power Plant,ICE7,2005.0,1.2,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.2506,-116.9025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.10223959845523 -56347,Cedar Ridge,1,2008.0,67.7,67.7,67.7,1.7,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,43.692647,-88.329742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56348,Laverne Diesel Generating Plant,1,2006.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,36.7106,-99.8906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56348,Laverne Diesel Generating Plant,2,2006.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,36.7106,-99.8906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56349,Quail Run Energy Center,CT1A,2007.0,90.6,70.0,84.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.772626931567329,0.9271523178807948,TRE,ERCO,TX,31.8414,-102.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.065997859895676 -56349,Quail Run Energy Center,CT1B,2007.0,90.6,70.0,84.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.772626931567329,0.9271523178807948,TRE,ERCO,TX,31.8414,-102.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.493925185765297 -56349,Quail Run Energy Center,CT2A,2002.0,86.5,68.0,84.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7861271676300579,0.9710982658959537,TRE,ERCO,TX,31.8414,-102.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.531383069907145 -56349,Quail Run Energy Center,CT2B,2002.0,86.5,68.0,84.0,55,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7861271676300579,0.9710982658959537,TRE,ERCO,TX,31.8414,-102.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.731920450504992 -56349,Quail Run Energy Center,ST1,2007.0,98.1,98.1,98.1,58,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,31.8414,-102.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56349,Quail Run Energy Center,ST2,2008.0,98.1,98.1,98.1,58,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,31.8414,-102.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56350,Colorado Bend Energy Center,CT1A,2002.0,90.0,85.0,85.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,0.9444444444444444,TRE,ERCO,TX,29.2878,-96.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.644722540604523 -56350,Colorado Bend Energy Center,CT1B,2002.0,90.0,85.0,85.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,0.9444444444444444,TRE,ERCO,TX,29.2878,-96.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.922329558336907 -56350,Colorado Bend Energy Center,CT2A,2002.0,90.0,85.0,85.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,0.9444444444444444,TRE,ERCO,TX,29.2878,-96.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.502098411134375 -56350,Colorado Bend Energy Center,CT2B,2002.0,90.0,85.0,85.0,45,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9444444444444444,0.9444444444444444,TRE,ERCO,TX,29.2878,-96.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.722475365697663 -56350,Colorado Bend Energy Center,ST1,2007.0,105.1,103.0,103.0,35,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9800190294957184,0.9800190294957184,TRE,ERCO,TX,29.2878,-96.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56350,Colorado Bend Energy Center,ST2,2008.0,115.0,103.0,103.0,35,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8956521739130435,0.8956521739130435,TRE,ERCO,TX,29.2878,-96.0683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56351,Spearville,1,2006.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.8641,-99.7528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56351,Spearville,2,2010.0,48.0,48.0,48.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.8641,-99.7528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56355,Whispering Willow Wind Farm - East,1,2009.0,199.7,199.7,199.7,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.630513,-93.206389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56356,Clearwater Power Plant,CT1,2005.0,41.0,21.0,21.0,15,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.5121951219512195,0.5121951219512195,WECC,CISO,CA,33.8912,-117.6085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.548764494691008 -56356,Clearwater Power Plant,ST1,2005.0,8.0,7.0,7.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2005.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.875,0.875,WECC,CISO,CA,33.8912,-117.6085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56357,FPL Energy Burleigh County Wind,GE,2006.0,18.0,18.0,18.0,2.5,WND,Onshore Wind Turbine,OP,WT,2.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1167,-100.7333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56357,FPL Energy Burleigh County Wind,GE15,2005.0,31.5,31.5,31.5,2.5,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1167,-100.7333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56358,Western Renewable Energy,1,2004.0,3.0,2.5,2.5,0.2,WDS,Wood/Wood Waste Biomass,OS,ST,2.0,2004.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8333333333333334,0.8333333333333334,WECC,AZPS,AZ,34.093006,-109.289979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56359,Klondike Windpower II,PH2,2005.0,75.0,81.0,81.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.571,-120.593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56360,Leaning Juniper,1,2006.0,110.4,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9103260869565217,0.9103260869565217,WECC,BPAT,OR,45.652457,-120.209783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56361,Big Horn Wind Project,1,2006.0,199.0,199.0,199.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,WA,45.8877,-120.2896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56362,Shiloh I Wind Project,1,2006.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.12,-121.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56363,Danville New Design Plant,GEN 1,2005.0,1.8,1.2,1.2,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.6666666666666666,RFC,PJM,VA,36.6308,-79.3894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.54875283446712 -56364,Danville Kentuck Road Plant,GEN 1,2005.0,1.8,1.2,1.2,0.5,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666666,0.6666666666666666,RFC,PJM,VA,36.6533,-79.2906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.066202090592334 -56367,Electric Avenue Facility,1,2004.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.28,-77.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.97989133976763 -56367,Electric Avenue Facility,2,2004.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.28,-77.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.97989133976763 -56367,Electric Avenue Facility,3,2004.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.28,-77.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.97989133976763 -56367,Electric Avenue Facility,4,1997.0,1.5,1.5,1.5,1,DFO,Petroleum Liquids,OP,IC,2.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.28,-77.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.979914967437365 -56368,Water Treatment Plant Generators,WP1,2007.0,1.8,1.7,1.7,0.3,DFO,Petroleum Liquids,OP,IC,4.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.9444444444444444,SERC,PJM,VA,38.760695,-77.62089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.5 -56369,Casselman Wind Power Project,1,2007.0,34.5,34.5,34.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.85,-79.138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56371,Cedar Creek Wind,1,2007.0,221.0,221.0,221.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.8944,-104.0206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56371,Cedar Creek Wind,2,2007.0,79.5,79.5,79.5,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.8944,-104.0206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56372,Sweetwater Wind 5,SW5,2007.0,80.5,80.5,80.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.236944,-100.4833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56374,Robert Mueller Energy Center,CT1,2006.0,4.6,3.7,4.6,3.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8043478260869567,1.0,TRE,ERCO,TX,30.304994,-97.707675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.637090356651957 -56374,Robert Mueller Energy Center,DG1,2006.0,1.5,1.5,1.5,1.5,DFO,Petroleum Liquids,SB,IC,7.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.304994,-97.707675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.0 -56376,Pike County Wind Power,WTG1,2005.0,1.7,1.7,1.7,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,39.6189,-90.8461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56377,Judith Gap Wind Energy Center,1,2005.0,135.0,135.0,135.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.5725,-109.7531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56378,Pakini Nui Wind Farm,1,2007.0,21.0,21.0,21.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,18.9742,-155.6914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56379,Victory Wind Farm,VWF,2006.0,105.0,99.0,99.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9428571428571428,0.9428571428571428,MRO,MISO,IA,42.1169,-95.1292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56380,Centennial Wind Farm,WT1,2006.0,120.0,120.0,120.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.637733,-99.601869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56383,Northern Iowa Windpower II,TOI2,2008.0,80.0,80.0,80.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.3608,-93.2978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56386,Top of Iowa Windfarm III,TOI3,2008.0,29.7,29.7,29.7,0,WND,Onshore Wind Turbine,OP,WT,2.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.3597,-93.3208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56391,Blue Sky Green Field Wind Project,1,2008.0,145.2,145.2,145.2,0,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,WI,43.8794,-88.2708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56392,FPL Energy Oliver Wind I LLC,1,2006.0,50.6,50.6,50.6,2.5,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.152847,-101.197716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56394,Forest Creek Wind Farm LLC,1,2006.0,124.2,124.2,124.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.039,-101.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56395,Mesquite Wind Power LLC,1,2007.0,200.0,200.0,200.0,50,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.6256,-99.4928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56397,Hunlock Unit 4,4,2000.0,44.0,44.8,50.5,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,41.2025,-76.068333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.735829115729034 -56399,Lempster Wind LLC,1,2008.0,24.0,24.0,24.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,NH,43.233,-72.1455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56400,Treasure Coast Energy Center,CT1,2008.0,219.6,158.8,188.8,80,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7231329690346084,0.859744990892532,SERC,FMPP,FL,27.383889,-80.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56400,Treasure Coast Energy Center,ST1,2008.0,191.8,159.2,163.3,65,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.830031282586027,0.85140771637122,SERC,FMPP,FL,27.383889,-80.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56404,Noble Hill Landfill,NHLC,2006.0,3.2,3.0,3.0,1,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,MO,37.3811,-93.3514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.327804329491144 -56405,Nevada Solar One,ONE,2007.0,75.7,68.5,40.0, ,SUN,Solar Thermal without Energy Storage,OP,ST,6.0,2007.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.904887714663144,0.5284015852047557,WECC,NEVP,NV,35.799798,-114.98173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56406,Sierra Pacific Burlington Facility,GEN1,2007.0,28.0,24.6,24.7,13,WDS,Wood/Wood Waste Biomass,OP,ST,3.0,2007.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8785714285714287,0.8821428571428571,WECC,PSEI,WA,48.4481,-122.4331,Burlington,OT ST,True,4.0,8.0,-1.0,1.8,1.8,157.7323,2.8,1.0,2.027986,28.0,12.47466626121711,9.142281621604013,0.5017210458014777,-5.519165719924027,152.24357049391196,13.057495267806496,#TRUE#,#2007-04-01#,#2050-12-31#,Existing,PSEI,NW_PSEI,8.4,28.0,20.0,WA,Bio,,#FALSE#,8.4,28, -56407,West County Energy Center,1A,2009.0,298.0,257.6,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644295302013424,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,1B,2009.0,298.0,257.6,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644295302013424,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,1C,2009.0,298.0,257.6,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644295302013424,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,1ST,2009.0,527.0,486.2,482.2,350,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9225806451612903,0.9149905123339658,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,2A,2009.0,298.0,257.7,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8647651006711409,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,2B,2009.0,298.0,257.7,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8647651006711409,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,2C,2009.0,298.0,257.7,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8647651006711409,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,2ST,2009.0,527.0,485.9,482.2,350,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.922011385199241,0.9149905123339658,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,3A,2011.0,298.0,257.6,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644295302013424,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,3B,2011.0,298.0,257.6,295.6,244,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644295302013424,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,3C,2011.0,298.0,257.6,295.6,232,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8644295302013424,0.9919463087248322,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56407,West County Energy Center,3ST,2011.0,527.0,486.2,482.2,350,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9225806451612903,0.9149905123339658,SERC,FPL,FL,26.6986,-80.3747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56408,Agriwind,AWND1,2007.0,8.4,8.4,8.4,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IL,41.3017,-89.6236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56409,Stahl Wind Energy,1,2004.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0256,-96.4303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56410,Carstensen Wind,1,2004.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0247,-96.4369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56411,Northern Lights Wind LLC,1,2004.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.015,-96.4367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56412,Lucky Wind,1,2004.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0211,-96.4406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56413,Greenback Energy,1,2004.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.0208,-96.4331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56414,Redwood Falls Wind,WND1,2004.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.502778,-95.175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56414,Redwood Falls Wind,WND2,2005.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.502778,-95.175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56415,Fairmont Wind,WND1,2003.0,1.0,0.9,0.9,0.4,WND,Onshore Wind Turbine,OP,WT,3.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9,0.9,MRO,MISO,MN,43.575,-94.446667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56415,Fairmont Wind,WND2,2003.0,1.0,0.9,0.9,0.4,WND,Onshore Wind Turbine,OP,WT,3.0,2003.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9,0.9,MRO,MISO,MN,43.575,-94.446667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56415,Fairmont Wind,WND3,2004.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.575,-94.446667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56415,Fairmont Wind,WND4,2005.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.575,-94.446667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56416,Michigan Wind 1,1,2008.0,69.0,69.0,69.0,0.9,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.7092,-82.9633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56419,Beecher Gas Recovery,B1,2006.0,1.1,1.1,1.1,1.1,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.38109,-87.637542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.210074305057354 -56419,Beecher Gas Recovery,B2,2006.0,1.1,1.1,1.1,1.1,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.38109,-87.637542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.210074305057354 -56419,Beecher Gas Recovery,B3,2008.0,1.1,1.1,1.1,1.1,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.38109,-87.637542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.210074305057354 -56420,Renick Run Pumping Station 03-04,0003,2006.0,1.4,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7857142857142858,0.7857142857142858,RFC,PJM,OH,39.9294,-83.012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.89795918367347 -56420,Renick Run Pumping Station 03-04,0004,2006.0,1.4,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7857142857142858,0.7857142857142858,RFC,PJM,OH,39.9294,-83.012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.89795918367347 -56421,PS ST-8 Engine No 1,0005,2008.0,2.0,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,PJM,OH,39.961419,-83.049072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.93877551020408 -56422,ST-1/1A Engine No 1,0006,2008.0,1.3,1.1,1.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.8461538461538463,RFC,PJM,OH,39.95,-83.015833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -56423,Dodge Park Engine No 1,0007,2008.0,2.0,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,RFC,PJM,OH,39.952367,-83.014425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.816326530612244 -56424,Mower County Wind Energy Center,1,2006.0,98.9,98.9,98.9,4.9,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.61407,-92.59882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56426,Ameresco Chicopee Energy,UNIT4,2010.0,2.1,2.0,2.0,1,LFG,Landfill Gas,OP,IC,3.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9523809523809523,0.9523809523809523,NPCC,ISNE,MA,42.162647,-72.536701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.617521339441629 -56426,Ameresco Chicopee Energy,Unit1,2004.0,1.9,1.9,1.9,1,LFG,Landfill Gas,OP,IC,2.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.162647,-72.536701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.617521151199288 -56426,Ameresco Chicopee Energy,Unit2,2004.0,1.9,1.9,1.9,1,LFG,Landfill Gas,OP,IC,2.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.162647,-72.536701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.617521151199288 -56426,Ameresco Chicopee Energy,Unit3,2004.0,1.9,1.9,1.9,1,LFG,Landfill Gas,OP,IC,2.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.162647,-72.536701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.617521151199288 -56427,Ameresco Janesville,Unit1,2004.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,10.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.7083,-89.0208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.44255983055728 -56427,Ameresco Janesville,Unit2,2004.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,10.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.7083,-89.0208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.44255983055728 -56427,Ameresco Janesville,Unit3,2004.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,10.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.7083,-89.0208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.44255983055728 -56428,Ameresco Santa Cruz Energy,Unit1,2006.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.9178,-121.8156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.127756290691961 -56428,Ameresco Santa Cruz Energy,Unit2,2006.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.9178,-121.8156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.127756290691961 -56428,Ameresco Santa Cruz Energy,Unit3,2006.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.9178,-121.8156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.127756290691961 -56429,Ameresco Delaware South,1,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,38.5992,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.788766219800701 -56429,Ameresco Delaware South,2,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,38.5992,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.788766219800701 -56429,Ameresco Delaware South,3,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,38.5992,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.788766219800701 -56429,Ameresco Delaware South,4,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,38.5992,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.788766219800701 -56429,Ameresco Delaware South,5,2010.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,5.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,38.5992,-75.4342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.788766219800701 -56430,Ameresco Delaware Central,1C,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.0339,-75.7233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.114618539786711 -56430,Ameresco Delaware Central,2C,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.0339,-75.7233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.114618539786711 -56430,Ameresco Delaware Central,3C,2006.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.0339,-75.7233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.114618539786711 -56430,Ameresco Delaware Central,4C,2014.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.0339,-75.7233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.114618539786711 -56430,Ameresco Delaware Central,5C,2014.0,1.0,1.0,1.0,0.6,LFG,Landfill Gas,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.0339,-75.7233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.114618539786711 -56432,Wildorado Wind LLC,1,2007.0,161.0,161.0,161.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.291944,-102.303056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56433,Pine Tree Wind Power Project,1,2009.0,135.0,135.0,135.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,LDWP,CA,35.248006,-118.175356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56434,Burley Butte Windpark,BBWP,2011.0,21.3,21.3,21.3,0,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.490341,-113.926605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56435,Golden Valley Wind Park LLC,GVWP,2011.0,12.0,12.0,12.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.436804,-113.925536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56437,Milner Dam Wind Park LLC,MDWP,2011.0,19.5,19.5,19.5,14,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.460629,-114.017297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56439,Oregon Trail Wind Park,OTWP,2011.0,13.5,13.5,13.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.840556,-114.989722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56440,Pilgrim Stage Wind Park,PSWP,2011.0,10.5,10.5,10.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.7975,-114.998611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56441,Salmon Falls Wind Park,SFWP,2011.0,21.0,21.0,21.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.681944,-114.989167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56442,Thousand Springs Wind Park,TSWP,2011.0,12.0,12.0,12.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.870278,-114.967778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56443,Tuana Gulch Wind Park,TGWP,2011.0,10.5,10.5,10.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.836854,-114.969342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56445,Spindle Hill Energy Center,GEN1,2007.0,210.0,135.0,155.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6428571428571428,0.7380952380952381,WECC,PSCO,CO,40.092192,-104.887844,Spindle Hill 1,GT F_7FA,False,1.0,1.0,1.0,15.4,15.4,9090.563,33.88,0.0,0.56,160.0,4.167813295408962,450.35601325456696,0.18227195726823323,-39.279754156764355,2944.7771374696813,8.094555264739606,#TRUE#,#2007-06-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,81.0,160.0,0.0,CO,NG,Industrial,#FALSE#,81,160, -56445,Spindle Hill Energy Center,GEN2,2007.0,210.0,135.0,155.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6428571428571428,0.7380952380952381,WECC,PSCO,CO,40.092192,-104.887844,Spindle Hill 2,GT F_7FA,False,1.0,1.0,1.0,15.4,15.4,9090.563,33.88,0.0,0.56,160.0,5.3981982711539755,317.97582868401355,0.22082320496387658,-47.01048611063991,3309.916139598305,8.186646172247464,#TRUE#,#2007-06-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,80.0,160.0,0.0,CO,NG,Industrial,#FALSE#,80,160, -56446,Buena Vista Energy LLC,1,2006.0,38.0,38.0,38.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.805,-121.6672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56447,Hawi Wind Farm,V-47,2006.0,10.6,10.6,10.6,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,20.257252,-155.850382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56448,Mars Hill Wind Farm Project,1,2007.0,42.0,42.0,42.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NBSO,ME,46.54422,-67.8111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56449,Kaheawa Pastures Wind Farm Hybrid,1,2006.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,20.81421,-156.551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56450,GSG LLC,1,2007.0,80.0,80.0,80.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.643611,-89.173056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56451,Allegheny Ridge Wind Farm,1,2007.0,80.0,80.0,80.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.383889,-78.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56456,Plum Point Energy Station,STG1,2010.0,720.0,680.0,680.0,285,SUB,Conventional Steam Coal,OP,ST,9.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9444444444444444,0.9444444444444444,SERC,MISO,AR,35.6644,-89.9489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56457,Post Wind Farm LP,1,2006.0,84.0,84.0,84.0,4.2,WND,Onshore Wind Turbine,OP,WT,4.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.92544,-101.219397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56458,Hobbs Generating Station,CHW-T,2008.0,7.2,4.3,,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5972222222222222,,MRO,SWPP,NM,32.728333,-103.309444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56458,Hobbs Generating Station,GT1,2008.0,196.9,160.6,179.7,110,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8156424581005586,0.9126460132046723,MRO,SWPP,NM,32.728333,-103.309444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56458,Hobbs Generating Station,GT2,2008.0,196.9,159.5,178.8,110,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8100558659217877,0.9080751650584054,MRO,SWPP,NM,32.728333,-103.309444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56458,Hobbs Generating Station,ST3,2008.0,280.5,253.7,275.5,54,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9044563279857397,0.982174688057041,MRO,SWPP,NM,32.728333,-103.309444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56459,MinnDakota Wind LLC,2,2008.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.2667,-96.3444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56460,Twin Buttes Wind Project,WT1,2007.0,75.0,75.0,75.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,37.6735,-102.8622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56461,Dry Creek LFG to Energy Project,DC1,2007.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OA,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACW,OR,42.3844,-122.7718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.338284194191974 -56461,Dry Creek LFG to Energy Project,DC2,2007.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OA,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACW,OR,42.3844,-122.7718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.338284194191974 -56462,Geneva Generation Facility,GEN 1,2005.0,5.9,5.4,5.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9152542372881356,0.983050847457627,RFC,PJM,IL,41.8911,-88.2711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.053107789142409 -56462,Geneva Generation Facility,GEN 2,2005.0,5.9,5.4,5.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9152542372881356,0.983050847457627,RFC,PJM,IL,41.8911,-88.2711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.053107789142409 -56462,Geneva Generation Facility,GEN 3,2005.0,5.9,5.4,5.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9152542372881356,0.983050847457627,RFC,PJM,IL,41.8911,-88.2711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.053107789142409 -56462,Geneva Generation Facility,GEN 4,2005.0,5.9,5.4,5.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9152542372881356,0.983050847457627,RFC,PJM,IL,41.8911,-88.2711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.053107789142409 -56462,Geneva Generation Facility,GEN 5,2005.0,5.9,5.4,5.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9152542372881356,0.983050847457627,RFC,PJM,IL,41.8911,-88.2711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.053107789142409 -56463,Oak Ridge LFGTE,1,2003.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.721322,-86.342144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499978844933361 -56463,Oak Ridge LFGTE,2,2003.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.721322,-86.342144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499978844933361 -56463,Oak Ridge LFGTE,3,2003.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.721322,-86.342144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499978844933361 -56463,Oak Ridge LFGTE,4,2003.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.721322,-86.342144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499978844933361 -56464,Jay County LFGTE,1,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,4.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,40.379703,-85.088192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500122759636632 -56464,Jay County LFGTE,2,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,4.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,40.379703,-85.088192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500122759636632 -56464,Jay County LFGTE,3,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,4.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,40.379703,-85.088192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500122759636632 -56464,Jay County LFGTE,4,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,4.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,40.379703,-85.088192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500122759636632 -56465,Liberty I & II LFGTE,1,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,1-II,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,1-III,2017.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966118539936 -56465,Liberty I & II LFGTE,2,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,2-II,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,2-III,2017.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966118539936 -56465,Liberty I & II LFGTE,3,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,3-II,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,3-III,2017.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966118539936 -56465,Liberty I & II LFGTE,4,2005.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,8.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,4-II,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966028189375 -56465,Liberty I & II LFGTE,4-III,2017.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.885556,-86.704444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.499966118539936 -56466,Marengo Wind Plant,1,2007.0,156.0,156.0,156.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,WA,46.3747,-117.7772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56466,Marengo Wind Plant,2,2008.0,78.0,78.0,78.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,WA,46.3747,-117.7772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56467,Russell City Energy Center,CTG1,2013.0,200.0,182.0,192.0,117,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.91,0.96,WECC,CISO,CA,37.63466,-122.13381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56467,Russell City Energy Center,CTG2,2013.0,200.0,182.0,192.0,117,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.91,0.96,WECC,CISO,CA,37.63466,-122.13381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56467,Russell City Energy Center,STG1,2013.0,255.0,248.0,248.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9725490196078431,0.9725490196078431,WECC,CISO,CA,37.63466,-122.13381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56468,Klondike Windpower III,1,2007.0,221.0,221.0,221.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.5836,-120.5042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56468,Klondike Windpower III,2,2008.0,76.5,76.5,76.5,0,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.5836,-120.5042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56469,Roseburg Forest Products Biomass,1,2010.0,13.4,9.0,9.0,5,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2010.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6716417910447761,0.6716417910447761,WECC,PACW,CA,41.435556,-122.376944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56470,Locust Ridge,LRWF,2007.0,26.0,26.0,26.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.855,-76.1292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56471,McGrath Peaker,1,2012.0,49.8,49.0,49.0,45.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9839357429718876,0.9839357429718876,WECC,CISO,CA,34.205556,-119.246944,McGrathPeaker,GT LM_LM6000,False,1.0,1.0,-1.0,42.48,42.48,1414.02,213.816,1.0,0.45,49.0,9.197602459666973,147.12245455794917,0.3263822671509035,-9.174918092890232,365.3220487412302,16.064345451859516,#TRUE#,#2012-11-01#,#2050-12-31#,Existing,CISC,CA_CISO,10.878,49.0,47.2,CA,NG,Areo,#FALSE#,10.878,49, -56472,Grapeland Hybrid,1,2007.0,49.8,46.0,46.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9236947791164659,0.9236947791164659,WECC,CISO,CA,34.0903,-117.5343,GrapelandPeaker,GT LM_LM6000,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,48.0,5.502225413077599,92.76402057457635,0.4172027289121586,-22.681504006047682,544.7513701207055,8.536432266347385,#TRUE#,#2007-09-20#,#2050-12-31#,Existing,CISC,CA_CISO,22.0,48.0,46.0,CA,NG,Areo,#FALSE#,22,48, -56472,Grapeland Hybrid,BA1,2016.0,10.0,10.0,10.0,1,MWH,Batteries,OP,BA,12.0,2016.0, , ,10.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.0903,-117.5343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56473,Mira Loma Peaker,1,2007.0,49.8,49.0,49.0,45.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9839357429718876,0.9839357429718876,WECC,CISO,CA,34.0053,-117.5604,MiraLomaPeaker,GT LM_LM6000,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,52.0,1.9286608304828188,360.4296175480739,-0.0015844199863022778,2.086237276730314,356.51706894396847,9.338968420618304,#TRUE#,#2007-09-20#,#2050-12-31#,Existing,CISC,CA_CISO,46.0,52.0,47.2,CA,NG,Areo,#FALSE#,46,52, -56474,Barre Peaker,1,2007.0,49.8,49.0,49.0,46.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9839357429718876,0.9839357429718876,WECC,CISO,CA,33.8073,-117.9832,BarrePeaker,GT LM_LM6000,False,1.0,1.0,-1.0,44.1,44.1,1467.944,221.97,1.0,0.45,55.0,-5.884916048957157,733.7503670697816,-0.0016083164607302736,-5.72187503931538,729.6268341695437,8.646093426939839,#TRUE#,#2007-09-20#,#2050-12-31#,Existing,CISC,CA_CISO,47.0,55.0,47.0,CA,NG,Areo,#FALSE#,47,55, -56475,Center Hybrid,1,2007.0,49.8,47.0,47.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9437751004016065,0.9437751004016065,WECC,CISO,CA,33.9296,-118.1046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56475,Center Hybrid,BA1,2016.0,10.0,10.0,10.0,1,MWH,Batteries,OP,BA,12.0,2016.0, , ,10.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.9296,-118.1046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56476,Gateway Generating Station,A,2009.0,203.2,177.0,181.4,75,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8710629921259843,0.892716535433071,WECC,CISO,CA,38.0175,-121.7587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56476,Gateway Generating Station,B,2009.0,203.2,177.0,181.4,75,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8710629921259843,0.892716535433071,WECC,CISO,CA,38.0175,-121.7587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56476,Gateway Generating Station,C,2009.0,213.3,209.4,223.0,55,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9817158931082981,1.0,WECC,CISO,CA,38.0175,-121.7587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56478,MJMEUC Generating Station #1,0001,2007.0,13.3,11.3,13.0,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.849624060150376,0.9774436090225563,SERC,MISO,MO,39.251076,-91.640071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.460396605968157 -56479,Sand Bluff Wind Farm,2,2007.0,89.5,89.5,89.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.991442,-101.302637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56480,Marshfield Utilities Gas Plant,M1,2011.0,60.4,53.3,60.2,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8824503311258278,0.9966887417218544,MRO,MISO,WI,44.634722,-90.134444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56481,SunE Alamosa,1,2007.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.690304,-105.880501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56481,SunE Alamosa,2,2007.0,7.2,6.7,6.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9305555555555556,0.9305555555555556,WECC,PSCO,CO,37.690304,-105.880501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56482,Black Mountain Generating Station,1,2008.0,60.5,45.0,45.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,WECC,TEPC,AZ,35.0361,-114.1594,Black Mountain 1,GT LM_LM6000PC Sprint,False,1.0,1.0,-1.0,40.509,40.509,1348.411,214.269,1.0,0.45,50.0,-2.1428577183798043,491.29287506153975,-0.0007943954088714559,-2.0707798898594283,489.6632854831356,8.798764227873313,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,TEPC,SW_TEPC,41.0,50.0,45.0,AZ,NG,Areo,#FALSE#,41,50,10.990241184571532 -56482,Black Mountain Generating Station,2,2008.0,60.5,45.0,45.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.743801652892562,0.743801652892562,WECC,TEPC,AZ,35.0361,-114.1594,Black Mountain 2,GT LM_LM6000PC Sprint,False,1.0,1.0,-1.0,40.509,40.509,1348.411,214.269,1.0,0.45,46.0,-9.20226660730681,777.9182457577092,-0.006119962212532328,-8.675207064022619,766.5876148023228,8.804153487749318,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,TEPC,SW_TEPC,41.0,46.0,45.0,AZ,NG,Areo,#FALSE#,41,46,9.960336881211902 -56483,Post Oak Wind LLC,1,2008.0,200.0,200.0,200.0,50,WND,Onshore Wind Turbine,OP,WT,3.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.5144,-99.6564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56484,Buffalo Gap 2 Wind Farm,1,2007.0,232.5,232.5,232.5,0,WND,Onshore Wind Turbine,OP,WT,7.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.318221,-100.176986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56485,Biglow Canyon Wind Farm,1,2007.0,125.4,125.4,125.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PGE,OR,45.653745,-120.603414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56485,Biglow Canyon Wind Farm,2,2009.0,163.3,163.3,163.3,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PGE,OR,45.653745,-120.603414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56485,Biglow Canyon Wind Farm,3,2010.0,161.0,161.0,161.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PGE,OR,45.653745,-120.603414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56487,White Creek Wind Farm,1,2007.0,204.0,204.0,204.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,45.815467,-120.341883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56488,Smoky Hills Wind Project Phase I,1,2008.0,100.8,100.8,100.8,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.879936,-98.160159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56489,Elkins Generating Center,A,2010.0,22.0,20.0,20.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,SERC,SWPP,AR,35.9714,-94.0014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.576462225832657 -56489,Elkins Generating Center,B,2010.0,22.0,20.0,20.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,SERC,SWPP,AR,35.9714,-94.0014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.576462225832657 -56489,Elkins Generating Center,C,2013.0,22.0,20.0,20.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,SERC,SWPP,AR,35.9714,-94.0014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.576462225832657 -56493,Buffalo Mountain Energy Center,4,2004.0,27.0,27.0,27.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,TVA,TN,36.127092,-84.344168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56494,Prairie Star Wind Farm,HP2,2007.0,100.7,100.7,100.7,0.8,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.6861,-92.6272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56495,NedPower Mount Storm,MS1,2008.0,164.0,164.0,164.0,8.6,WND,Onshore Wind Turbine,OP,WT,3.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,39.2175,-79.2094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56495,NedPower Mount Storm,MS2,2008.0,100.0,100.0,100.0,8.6,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,39.2175,-79.2094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56496,Phillips 66 Billings Refinery,3701,2007.0,1.6,1.5,1.5, ,OG,Other Gases,OA,ST,12.0,2007.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9375,0.9375,WECC,NWMT,MT,45.7769,-108.4911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56497,Goodman Energy Center,1,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,10,2016.0,9.3,9.2,9.2,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9892473118279569,0.9892473118279569,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763371954283 -56497,Goodman Energy Center,11,2016.0,9.3,9.2,9.2,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9892473118279569,0.9892473118279569,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763371954283 -56497,Goodman Energy Center,12,2016.0,9.3,9.2,9.2,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9892473118279569,0.9892473118279569,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763371954283 -56497,Goodman Energy Center,2,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,3,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,4,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,5,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,6,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,7,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,8,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56497,Goodman Energy Center,9,2008.0,8.4,8.2,8.2,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.976190476190476,0.976190476190476,MRO,SWPP,KS,38.9303,-99.3617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.126763281083912 -56498,Mora Drop Hydroelectric Project,1,2006.0,1.7,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.47058823529411764,0.47058823529411764,WECC,IPCO,ID,43.460012,-116.47254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56499,Tiber Dam Hydroelectric Plant,HY1,2004.0,7.5,7.5,7.5,1,WAT,Conventional Hydroelectric,OP,HY,6.0,2004.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WAUW,MT,48.318,-111.1018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56500,Western 102 Power Plant,A101,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western A101,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,B102,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western B102,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,B202,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western B202,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,C102,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western C102,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,C202,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western C202,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,D101,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western D101,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,E102,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western E102,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,E202,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western E202,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,F102,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western F102,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,F202,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western F202,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,8.3,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,G102,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western G102,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,0.0,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,G202,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western G202,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,0.0,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,H102,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western H102,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,0.0,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,H202,2005.0,8.4,7.9,8.4,7,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9404761904761905,1.0,WECC,NEVP,NV,39.5603,-119.5108,Western H202,IC_LM2500,False,1.0,1.0,-1.0,7.885,7.885,83.0,0.83,1.0,0.0,8.3,5.456566222953542,14.570100188588063,-5.12270775718697e-07,5.456570960977827,14.57009109541083,9.366880518864177,#TRUE#,#2005-11-01#,#2050-12-31#,Existing,SPPC,SW_NVE,1.66,8.3,0.0,NV,NG,,#FALSE#,1.66,8.3,8.656379697921228 -56500,Western 102 Power Plant,PV1,2007.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.5603,-119.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56501,Pomeroy Wind Farm,PWF,2007.0,123.0,123.0,123.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5842,-94.7467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56501,Pomeroy Wind Farm,PWF2,2007.0,75.0,78.0,78.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5842,-94.7467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56501,Pomeroy Wind Farm,PWF3,2008.0,58.5,62.2,62.2,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5842,-94.7467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56501,Pomeroy Wind Farm,PWF4,2011.0,29.9,33.7,33.7,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.5842,-94.7467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,1,2008.0,54.0,44.5,44.5,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8240740740740741,0.8240740740740741,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,2,2008.0,54.0,44.4,44.4,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8222222222222222,0.8222222222222222,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,3,2008.0,54.0,43.8,43.8,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8111111111111111,0.8111111111111111,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,4,2008.0,54.0,44.5,44.5,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8240740740740741,0.8240740740740741,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,5,2008.0,171.4,161.4,,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.941656942823804,,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,6,2009.0,171.4,155.1,,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9049008168028004,,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56502,Emporia Energy Center,7,2009.0,171.4,159.8,,95,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9323220536756126,,MRO,SWPP,KS,38.445883,-96.065247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56503,Riley Generating Station,1,2006.0,2.0,2.0,2.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8333,-86.0053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.830018083182642 -56503,Riley Generating Station,2,2006.0,2.0,2.0,2.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8333,-86.0053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.830018083182642 -56503,Riley Generating Station,3,2006.0,2.0,2.0,2.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8333,-86.0053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.830018083182642 -56503,Riley Generating Station,4,2006.0,2.0,2.0,2.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8333,-86.0053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.830018083182642 -56503,Riley Generating Station,5,2006.0,2.0,2.0,2.1,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8333,-86.0053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.830018083182642 -56504,Municipal Power Plant,1,2002.0,1.0,1.0,1.0,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8129,-86.0335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.141104294478527 -56504,Municipal Power Plant,2,2002.0,1.0,1.0,1.0,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.8129,-86.0335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.141104294478527 -56505,Jonesboro City Water & Light Plant,SN01,1999.0,24.5,20.0,23.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8163265306122449,0.9387755102040817,SERC,MISO,AR,35.848561,-90.725377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56505,Jonesboro City Water & Light Plant,SN02,1999.0,21.4,19.0,22.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8878504672897197,1.0,SERC,MISO,AR,35.848561,-90.725377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56505,Jonesboro City Water & Light Plant,SN04,2000.0,60.5,46.0,49.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7603305785123967,0.8099173553719008,SERC,MISO,AR,35.848561,-90.725377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.531758994736893 -56505,Jonesboro City Water & Light Plant,SN06,2003.0,57.4,46.0,49.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8013937282229966,0.8536585365853658,SERC,MISO,AR,35.848561,-90.725377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56505,Jonesboro City Water & Light Plant,SN07,2007.0,60.5,46.0,49.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7603305785123967,0.8099173553719008,SERC,MISO,AR,35.848561,-90.725377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.9400517143446 -56506,Scurry County Wind LP,SCW,2007.0,130.5,130.5,130.5,0,WND,Onshore Wind Turbine,OP,WT,5.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.7204,-100.9952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56509,Tesoro SLC Cogeneration Plant,1,2004.0,15.2,11.5,12.8,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7565789473684211,0.8421052631578948,WECC,PACE,UT,40.7931,-111.9038,TesoroCgn1,OT GT,True,1.0,1.0,-1.0,1.25,1.25,737.8704,2.75,1.0,0.56,12.5,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2004-06-01#,#2022-12-31#,Existing,PAUT,BS_PACE,12.5,12.5,12.0,UT,NG,Industrial,#FALSE#,12.5,12.5,11.261170386016166 -56509,Tesoro SLC Cogeneration Plant,2,2004.0,15.2,11.5,12.8,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7565789473684211,0.8421052631578948,WECC,PACE,UT,40.7931,-111.9038,TesoroCgn2,OT GT,True,1.0,1.0,-1.0,1.25,1.25,737.8704,2.75,1.0,0.56,12.5,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2004-06-01#,#2022-12-31#,Existing,PAUT,BS_PACE,12.5,12.5,12.0,UT,NG,Industrial,#FALSE#,12.5,12.5,11.261170386016166 -56510,Frey Farm Landfill,GEN2,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.9589,-76.4442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.436582270832075 -56511,Pennsauken Landfill,GEN1,2004.0,0.9,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,12.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.120156119319766 -56511,Pennsauken Landfill,GEN2,2004.0,0.9,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,12.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.120156119319766 -56512,GLRA Landfill,GEN1,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.3664,-76.4931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.318519577022006 -56512,GLRA Landfill,GEN2,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.3664,-76.4931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.318519577022006 -56513,Whitemarsh Central Utility Plant,CGE,2007.0,1.6,1.6,1.6,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.0975,-75.2428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.755555555555556 -56516,Plains End II LLC,2G01,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G01,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G02,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G02,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G03,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G03,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G04,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G04,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G05,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G05,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G06,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G06,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G07,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G07,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G08,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G08,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G09,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G09,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G10,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G10,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G11,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G11,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G12,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G12,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G13,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G13,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56516,Plains End II LLC,2G14,2008.0,8.4,8.3,8.3,4.2,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9880952380952381,0.9880952380952381,WECC,PSCO,CO,39.8586,-105.2256,Plains End 2 G14,IC_20V34SG,False,1.0,1.0,-1.0,7.98,7.98,84.0,0.84,1.0,0.0,8.4,5.822142793476417,17.1852003214505,-1.5387865203164708e-06,5.822158790383753,17.185163140752437,9.591617931069546,#TRUE#,#2008-05-01#,#2033-12-31#,Existing,PSCO,RM_PSCO,2.52,8.4,7.2,CO,NG,,#FALSE#,2.52,8.4,9.460121432027092 -56517,West Diesel Generation Unit,East,2006.0,2.0,1.9,1.9,1.9,DFO,Petroleum Liquids,SB,IC,6.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.730291,-94.664394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56517,West Diesel Generation Unit,West,2006.0,2.0,1.9,1.9,1.9,DFO,Petroleum Liquids,SB,IC,6.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.95,0.95,MRO,MISO,IA,42.730291,-94.664394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56518,South Energy Center,GT1,2009.0,4.1,4.3,4.3,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,GVL,FL,29.6383,-82.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.907396271797955 -56518,South Energy Center,REG1,2017.0,7.4,7.4,7.4,4,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,GVL,FL,29.6383,-82.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.739551188683437 -56519,Salem Electric Department,1,2007.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.2894,-80.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.207792207792208 -56520,Deertrack Park Gas Recovery,GEN1,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN2,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN3,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN4,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN5,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN6,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN7,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56520,Deertrack Park Gas Recovery,GEN8,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OS,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,43.089999,-88.739677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.23400512789935 -56521,Lake Mills Gas Recovery,GEN1,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.3864,-93.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.126251260960657 -56521,Lake Mills Gas Recovery,GEN2,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.3864,-93.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.126251260960657 -56521,Lake Mills Gas Recovery,GEN3,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.3864,-93.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.126251260960657 -56521,Lake Mills Gas Recovery,GEN4,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.3864,-93.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.126251260960657 -56521,Lake Mills Gas Recovery,GEN5,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,43.3864,-93.5589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.126251260960657 -56522,Springhill Gas Recovery Plant,GEN1,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.928333,-85.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.649546103286385 -56522,Springhill Gas Recovery Plant,GEN2,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.928333,-85.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.649546103286385 -56522,Springhill Gas Recovery Plant,GEN3,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.928333,-85.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.649546103286385 -56522,Springhill Gas Recovery Plant,GEN4,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.928333,-85.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.649546103286385 -56522,Springhill Gas Recovery Plant,GEN5,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.928333,-85.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.649546103286385 -56522,Springhill Gas Recovery Plant,GEN6,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,FL,30.928333,-85.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.649546103286385 -56523,Two Pine Landfill Gas Recovery,GEN 7,2017.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.8332,-92.157103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.440566389268414 -56523,Two Pine Landfill Gas Recovery,GEN1,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.8332,-92.157103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.440566389268414 -56523,Two Pine Landfill Gas Recovery,GEN2,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.8332,-92.157103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.440566389268414 -56523,Two Pine Landfill Gas Recovery,GEN3,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.8332,-92.157103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.440566389268414 -56523,Two Pine Landfill Gas Recovery,GEN4,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.8332,-92.157103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.440566389268414 -56523,Two Pine Landfill Gas Recovery,GEN5,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,34.8332,-92.157103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.440566389268414 -56524,Austin Gas Recovery,GEN1,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.3344,-97.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.906302179578311 -56524,Austin Gas Recovery,GEN2,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.3344,-97.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.906302179578311 -56524,Austin Gas Recovery,GEN3,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.3344,-97.6217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.906302179578311 -56525,Timberline Trail Gas Recovery,GEN2,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.4533,-91.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.209009115662365 -56525,Timberline Trail Gas Recovery,GEN3,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.4533,-91.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.209009115662365 -56525,Timberline Trail Gas Recovery,GEN4,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.4533,-91.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.209009115662365 -56525,Timberline Trail Gas Recovery,GEN5,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.4533,-91.3583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.209009115662365 -56526,Chaffee Gas Recovery,GEN1,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN2,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN3,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN4,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN5,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN6,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN7,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56526,Chaffee Gas Recovery,GEN8,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,10.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.5831,-78.4864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.954828486620395 -56527,Fitchburg Gas Recovery,GEN1,2007.0,1.6,1.6,1.6,0.5,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.535393,-71.848058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.118524803171653 -56527,Fitchburg Gas Recovery,GEN2,2007.0,1.6,1.6,1.6,0.5,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.535393,-71.848058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.118524803171653 -56527,Fitchburg Gas Recovery,GEN3,2009.0,1.6,1.6,1.6,0.5,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.535393,-71.848058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.118524803171653 -56529,Five Oaks Gas Recovery,GEN1,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.5678,-89.3683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.487730536756729 -56529,Five Oaks Gas Recovery,GEN2,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.5678,-89.3683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.487730536756729 -56529,Five Oaks Gas Recovery,GEN3,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.5678,-89.3683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.487730536756729 -56529,Five Oaks Gas Recovery,GEN4,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,39.5678,-89.3683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.487730536756729 -56530,DADS Gas Recovery,GEN1,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.6522,-104.7161,WM Landfill1,OT IC,False,1.0,1.0,-1.0,0.76,0.76,8.0,0.31,1.0,0.0,0.8,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2008-07-31#,#2023-07-30#,Existing,PSCO,RM_PSCO,0.8,0.8,0.0,CO,NG,,#FALSE#,.8,.8,12.70519084708045 -56530,DADS Gas Recovery,GEN2,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.6522,-104.7161,WM Landfill2,OT IC,False,1.0,1.0,-1.0,0.76,0.76,8.0,0.31,1.0,0.0,0.8,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2008-07-31#,#2023-07-30#,Existing,PSCO,RM_PSCO,0.8,0.8,0.0,CO,NG,,#FALSE#,.8,.8,12.70519084708045 -56530,DADS Gas Recovery,GEN3,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.6522,-104.7161,WM Landfill3,OT IC,False,1.0,1.0,-1.0,0.76,0.76,8.0,0.31,1.0,0.0,0.8,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2008-07-31#,#2023-07-30#,Existing,PSCO,RM_PSCO,0.8,0.8,0.0,CO,NG,,#FALSE#,.8,.8,12.70519084708045 -56530,DADS Gas Recovery,GEN4,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.6522,-104.7161,WM Landfill4,OT IC,False,1.0,1.0,-1.0,0.76,0.76,8.0,0.31,1.0,0.0,0.8,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2008-07-31#,#2023-07-30#,Existing,PSCO,RM_PSCO,0.8,0.8,0.0,CO,NG,,#FALSE#,.8,.8,12.70519084708045 -56531,Waste Management Bethel LFGTE,GEN1,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.076352,-76.444373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.074109879825906 -56531,Waste Management Bethel LFGTE,GEN2,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.076352,-76.444373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.074109879825906 -56531,Waste Management Bethel LFGTE,GEN3,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.076352,-76.444373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.074109879825906 -56531,Waste Management Bethel LFGTE,GEN4,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.076352,-76.444373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.074109879825906 -56531,Waste Management Bethel LFGTE,GEN5,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.076352,-76.444373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.074109879825906 -56531,Waste Management Bethel LFGTE,GEN6,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.076352,-76.444373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.074109879825906 -56532,Colusa Generating Station,A,2010.0,181.5,167.0,181.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9201101928374655,0.9972451790633609,WECC,CISO,CA,39.3661,-122.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56532,Colusa Generating Station,B,2010.0,181.5,167.0,181.0,110,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9201101928374655,0.9972451790633609,WECC,CISO,CA,39.3661,-122.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56532,Colusa Generating Station,C,2010.0,349.4,306.0,306.0,40,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8757870635374929,0.8757870635374929,WECC,CISO,CA,39.3661,-122.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56536,Cow Branch,1,2008.0,50.4,50.4,50.4,0.3,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,AECI,MO,40.4535,-95.4683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56537,Conception,1,2008.0,50.4,50.4,50.4,0.3,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,AECI,MO,40.2572,-94.6722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56538,Loess Hills,1,2008.0,5.0,5.0,5.0,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,AECI,MO,40.4144,-95.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56540,Galena 2 Geothermal Power Plant,GEN1,2007.0,13.5,9.0,13.5,9,GEO,Geothermal,OP,BT,4.0,2007.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.373189,-119.764507,Galena 2,GEO,True,6.0,16.0,-1.0,20.02,20.02,0.0,0.0,1.0,0.0,13.5,-1.7614224001511278,79.26420173402857,-5.994926112917742e-06,-1.7613050671608246,79.26365011412224,6.678998563100414,#TRUE#,#2007-05-01#,#2050-12-31#,Existing,SPPC,SW_NVE,7.0,13.5,0.0,NV,Geo,,#FALSE#,7,13.5, -56540,Galena 2 Geothermal Power Plant,GLSOL,2022.0,3.0,3.0,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5,WECC,NEVP,NV,39.373189,-119.764507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56541,Galena 3 Geothermal Power Plant,GEN1,2008.0,15.0,10.0,15.0,7.9,GEO,Geothermal,OP,BT,2.0,2008.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.388722,-119.748908,Galena 3-1,GEO,True,6.0,16.0,-1.0,1.31,1.31,0.0,0.0,1.0,3.098312,15.0,-1.761426846535443,88.07140194862235,-6.364662294755519e-06,-1.7612884851552515,88.07067955290421,6.679000507896345,#TRUE#,#2008-02-01#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,15.0,5.382475,NV,Geo,Binary,#FALSE#,7.5,15, -56541,Galena 3 Geothermal Power Plant,GEN2,2008.0,15.0,10.0,15.0,7.9,GEO,Geothermal,OP,BT,2.0,2008.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.388722,-119.748908,Galena 3-2,GEO,True,6.0,16.0,-1.0,5.0,5.0,0.0,0.0,1.0,3.098312,15.0,-1.761426846535443,88.07140194862235,-6.364662294755519e-06,-1.7612884851552515,88.07067955290421,6.679000507896345,#TRUE#,#2008-02-21#,#2028-12-31#,Existing,SPPC,SW_NVE,2.0,15.0,5.382475,NV,Geo,Binary,#FALSE#,7.5,15, -56542,Kasidaya Creek Hydro,1,2008.0,3.0,3.0,3.0,1.2,WAT,Conventional Hydroelectric,OP,HY,10.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,59.4072,-135.3408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56543,Eastridge Wind Project,1,2006.0,10.4,10.4,10.4,1,WND,Onshore Wind Turbine,OP,WT,4.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9358,-95.9222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56544,Windom Wind Project,1,2006.0,15.6,15.6,15.6,1,WND,Onshore Wind Turbine,OP,WT,3.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9578,-95.1306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56545,Seneca City of,PPG1,2004.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,DUK,SC,34.6875,-82.9525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.191489361702127 -56545,Seneca City of,PPG2,2004.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,DUK,SC,34.6875,-82.9525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.191489361702127 -56545,Seneca City of,PPG3,2004.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,DUK,SC,34.6875,-82.9525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.191489361702127 -56545,Seneca City of,WPG1,2004.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,DUK,SC,34.6875,-82.9525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.191489361702127 -56545,Seneca City of,WPG2,2004.0,2.0,1.8,1.8,0.5,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,SERC,DUK,SC,34.6875,-82.9525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.191489361702127 -56546,Cornelius Delivery No 1,1,2007.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,DUK,NC,35.483274,-80.856916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56547,Bostic Delivery No 2,1,2007.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3619,-81.8344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56548,Drexel Operations Center,1,2007.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,DUK,NC,35.7481,-81.6072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44.888888888888886 -56549,Granite Falls Walmart,1,2007.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,DUK,NC,35.7811,-81.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.73684210526316 -56550,Huntersville Delivery No 2,1,2007.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,DUK,NC,35.383222,-80.832879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56551,Landis Delivery No 2,1,2007.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,DUK,NC,35.541982,-80.612301,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56552,Statesville Delivery No 3,1,2007.0,2.2,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,DUK,NC,35.7972,-80.8542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56553,Catawba River Pollution Control,1234,2009.0,1.3,1.1,1.0,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8461538461538463,0.7692307692307692,SERC,DUK,NC,35.7766,-81.6643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -56554,Salt Lake Energy Systems,Unit1,2006.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.7461,-112.0339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.098711571393624 -56554,Salt Lake Energy Systems,Unit2,2006.0,0.8,0.8,0.8,0.3,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.7461,-112.0339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.098711571393624 -56554,Salt Lake Energy Systems,Unit3,2006.0,1.6,1.5,1.5,0.3,LFG,Landfill Gas,OP,IC,6.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACE,UT,40.7461,-112.0339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.098711571393624 -56555,Bluegrass Ridge,1,2007.0,56.7,56.7,56.7,0.4,WND,Onshore Wind Turbine,OP,WT,6.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,AECI,MO,40.1006,-94.4869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56556,PPS Power Plant No 1,1,2010.0,60.0,55.0,62.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9166666666666666,1.0,SERC,LGEE,KY,37.03385,-88.615862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56556,PPS Power Plant No 1,2,2010.0,60.0,55.0,62.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9166666666666666,1.0,SERC,LGEE,KY,37.03385,-88.615862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56560,Porterhouse Wind (4) LLC,JDW4,2008.0,79.8,79.8,79.8,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.4144,-101.3864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56561,Filet Wind (5) LLC,JDW5,2006.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.4453,-101.8761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56562,Tenderloin Wind (6) LLC,JDW6,2007.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.4669,-101.8222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56563,Peetz Table Wind Energy,GE,2007.0,199.5,199.5,199.5,10,WND,Onshore Wind Turbine,OP,WT,9.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.986,-103.436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56564,John W Turk Jr Power Plant,1,2012.0,609.0,650.0,650.0,350,SUB,Conventional Steam Coal,OP,ST,12.0,2012.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,AR,33.649722,-93.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56565,J Lamar Stall Unit,6A,2010.0,184.0,159.0,169.0,97,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8641304347826086,0.9184782608695652,MRO,SWPP,LA,32.51947,-93.760125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56565,J Lamar Stall Unit,6B,2010.0,184.0,163.0,172.0,97,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8858695652173914,0.9347826086956522,MRO,SWPP,LA,32.51947,-93.760125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56565,J Lamar Stall Unit,6STG,2010.0,256.0,189.0,193.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.73828125,0.75390625,MRO,SWPP,LA,32.51947,-93.760125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56568,Nellis Air Force Base Solar Array,NS1,2007.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.260278,-115.0544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56568,Nellis Air Force Base Solar Array,NS2,2007.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.260278,-115.0544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56568,Nellis Air Force Base Solar Array,NS3,2007.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.260278,-115.0544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56569,Niland Gas Turbine Plant,1,2008.0,60.5,43.8,45.1,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7239669421487602,0.7454545454545455,WECC,IID,CA,33.238842,-115.504456,Niland 1,GT Aero_LM6000 PD Sprint,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,48.0,1.4673662650415848,265.8544152946176,-2.9984143506727595e-05,1.4696510592098895,265.8116913951725,8.578031789308772,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,IID,CA_IID,30.0,48.0,45.0,CA,NG,Areo,#FALSE#,30,48,8.72889385775862 -56569,Niland Gas Turbine Plant,2,2008.0,60.5,42.6,45.8,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7041322314049587,0.7570247933884298,WECC,IID,CA,33.238842,-115.504456,Niland 2,GT Aero_LM6000 PD Sprint,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,48.0,2.3538495984803016,239.57521529051564,-2.9978758001278014e-05,2.356133980398251,239.53249913692974,8.761639448226866,#TRUE#,#2008-06-01#,#2050-12-31#,Existing,IID,CA_IID,30.0,48.0,45.0,CA,NG,Areo,#FALSE#,30,48,11.10879523866539 -56570,Terra-Gen VG Wind LLC,WGNS,1984.0,7.4,7.4,7.4,0,WND,Onshore Wind Turbine,OP,WT,1.0,1984.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.1161,-118.3789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56571,Eastern Landfill Gas LLC,1,2006.0,1.0,1.3,1.3,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.389728,-76.392006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.427778478617384 -56571,Eastern Landfill Gas LLC,2,2006.0,1.0,1.3,1.3,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.389728,-76.392006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.427778478617384 -56571,Eastern Landfill Gas LLC,3,2006.0,1.0,1.3,1.3,0.5,LFG,Landfill Gas,OP,IC,10.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.389728,-76.392006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.427778478617384 -56571,Eastern Landfill Gas LLC,4,2022.0,1.0,1.3,1.3,0.5,LFG,Landfill Gas,OP,IC,6.0,2022.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.389728,-76.392006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.427778478617384 -56573,FPL Energy Oliver Wind II LLC,2,2007.0,48.0,48.0,48.0,2.4,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.152847,-101.197716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56575,Steel Winds Wind Farm,1,2007.0,20.0,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.8167,-78.8675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56577,Shane's Wind Machine,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,7.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.1508,-96.1361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56580,Blue Breezes LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.6558,-94.1536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56581,Blue Breezes II LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.6558,-94.1564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56586,Sunset Breeze LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.5811,-95.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56587,Minnesota Breeze LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.5833,-95.7781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56588,G Flow Wind LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.586111,-95.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56589,Wolf Wind Enterprises LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.581111,-95.775833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56590,Green Acres Breeze LLC,1,2006.0,1.3,1.3,1.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.586111,-95.780278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56591,Horseshoe Bend Wind Park,HBWP,2006.0,9.0,9.7,9.7,1.6,WND,Onshore Wind Turbine,OP,WT,2.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,47.4983,-111.4392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56592,Champion Wind Farm LLC,CH1,2008.0,126.5,126.5,126.5,0,WND,Onshore Wind Turbine,OP,WT,2.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.3983,-100.6481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56593,Roscoe Wind Farm LLC,RO1,2008.0,209.0,209.0,209.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.4694,-100.6664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56594,Munnsville Wind Farm LLC,MU1,2007.0,34.5,34.5,34.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.9086,-75.5697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56596,Wygen III,5,2010.0,116.0,100.0,103.0,71.5,SUB,Conventional Steam Coal,OP,ST,4.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8620689655172413,0.8879310344827587,WECC,WACM,WY,44.2919,-105.3806,Wygen 3,ST-Col,False,48.0,108.0,-1.0,2.0,2.0,14826.35,960.99,1.0,1.79,103.0,11.05904867379716,13.688599589971027,0.12225215334439052,-9.911665553390893,902.6794934908771,11.224150492363268,#TRUE#,#2010-04-01#,#2050-12-31#,Existing,WACM,RM_WACM,71.5,103.0,110.0,WY,Coal,,#FALSE#,71.5,103, -56597,Elm Street Substation Generators,EP01,2002.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,10.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7814,-90.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.238142857142858 -56597,Elm Street Substation Generators,EP02,2002.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,10.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7814,-90.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.238142857142858 -56597,Elm Street Substation Generators,EP03,2002.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,10.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7814,-90.4156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.238142857142858 -56598,Walton Street Substation,EP07,2003.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,1.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7881,-90.4336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42.0 -56600,Overall Road Station,EP11,2003.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7608,-90.4526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.548387096774194 -56600,Overall Road Station,EP12,2003.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7608,-90.4526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.548387096774194 -56600,Overall Road Station,EP13,2003.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7608,-90.4526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.548387096774194 -56600,Overall Road Station,EP14,2003.0,2.0,1.3,1.5,0.9,DFO,Petroleum Liquids,SB,IC,3.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.65,0.75,SERC,MISO,MO,37.7608,-90.4526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.548387096774194 -56603,San Jacinto County Peaking Facility,SJC1,2001.0,85.0,73.0,85.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8588235294117648,1.0,SERC,MISO,TX,30.4193,-95.0118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56603,San Jacinto County Peaking Facility,SJC2,2001.0,85.0,73.0,85.0,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8588235294117648,1.0,SERC,MISO,TX,30.4193,-95.0118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56604,Hardin County Peaking Facility,HC1,2001.0,86.5,71.7,86.3,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8289017341040463,0.9976878612716763,SERC,MISO,TX,30.3038,-94.2526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56604,Hardin County Peaking Facility,HC2,2001.0,86.5,70.5,84.8,42,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.815028901734104,0.9803468208092485,SERC,MISO,TX,30.3038,-94.2526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56605,"Langdon Renewables, LLC",GE15,2007.0,118.5,118.5,118.5,5.9,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,48.63,-98.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56606,Culbertson Generation Station,01,2010.0,108.2,85.0,95.0,46.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7855822550831792,0.878003696857671,MRO,SWPP,MT,48.21,-104.391667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56607,Prairie Winds ND1,ND1,2009.0,115.5,115.5,115.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,47.933621,-101.269189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56608,Prairie Winds SD1,SD1,2011.0,150.0,159.3,159.3,0,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.886389,-98.7875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56608,Prairie Winds SD1,SD2,2011.0,10.5,11.1,11.1,0,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.886389,-98.7875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56608,Prairie Winds SD1,SD3,2011.0,1.5,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.886389,-98.7875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56609,Dry Fork Station,01,2011.0,483.7,390.0,405.0,260,SUB,Conventional Steam Coal,OP,ST,11.0,2011.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8062848873268555,0.8372958445317346,WECC,WACM,WY,44.388889,-105.460833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.11941210383094 -56610,Deer Creek Station,01,2012.0,154.0,150.0,150.0,45,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.974025974025974,0.974025974025974,MRO,SWPP,SD,44.39624,-96.53332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.888885469495598 -56610,Deer Creek Station,02,2012.0,170.0,145.0,150.0,115,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8529411764705882,0.8823529411764706,MRO,SWPP,SD,44.39624,-96.53332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56611,Sandy Creek Energy Station,S01,2013.0,1008.0,932.6,932.6,360,SUB,Conventional Steam Coal,OP,ST,5.0,2013.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9251984126984127,0.9251984126984127,TRE,ERCO,TX,31.474378,-96.957149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.395821526635968 -56613,Logan Wind Energy,1,2007.0,201.0,201.0,201.0,10.1,WND,Onshore Wind Turbine,OP,WT,10.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.941,-103.259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56614,Old Trail Wind Farm,2,2007.0,213.8,213.8,213.8,1.5,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,40.4792,-88.7989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56616,Novo BioPower Plant,G3,2008.0,27.2,22.2,22.2,3,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,2008.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8161764705882353,0.8161764705882353,WECC,AZPS,AZ,34.503158,-110.334953,Snowflake White Mtn,OT ST,True,8.0,8.0,-1.0,1.8,1.8,90.13273,1.6,1.0,2.027986,16.0,2.985607387272006,24.348999281580177,0.7510252765016259,-12.467488493880694,95.99214601777194,5.638933593322663,#TRUE#,#2008-06-10#,#2050-12-31#,Existing,AZPS,SW_AZPS,4.8,16.0,16.0,AZ,Bio,,#FALSE#,4.8,16, -56617,Fenton Wind Farm,1,2007.0,205.5,205.5,205.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.852778,-96.018333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56618,Clinton,1,2008.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,44.8914,-74.0061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56619,Ellenburg,1,2008.0,81.0,81.0,81.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,44.8914,-74.0061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56620,Bliss,1,2008.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.5367,-78.3047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56621,Sleeping Bear LLC,1,2007.0,94.5,94.5,94.5,1,WND,Onshore Wind Turbine,OP,WT,10.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.640278,-99.500556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56622,Providence Heights Wind LLC,1,2008.0,72.0,72.0,72.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.2294,-89.5572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56623,Elkhorn Valley Wind Farm,EH1,2007.0,100.7,100.7,100.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,45.085221,-117.816273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56626,"Ewington Energy Systems, LLC",1,2008.0,22.5,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8888888888888888,0.8888888888888888,MRO,MISO,MN,43.6181,-95.4172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56629,Waterbury Generation,10,2009.0,96.0,96.0,100.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.5444,-73.0417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.141196865203762 -56630,Taconite Ridge 1 Wind Energy Center,1,2008.0,25.0,25.0,25.0,0.3,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,47.5747,-92.5917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56633,Dutch Hill Wind Project,1,2009.0,37.5,37.5,37.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.5456,-77.4967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56634,Cohocton Wind Project,1,2009.0,87.5,87.5,87.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.45,-77.52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56635,Harvest,1,2008.0,52.8,51.2,51.2,0.9,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9696969696969698,0.9696969696969698,RFC,MISO,MI,43.83,-83.2064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56636,Mountain Home,1,2008.0,21.0,21.0,21.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.0272,-115.4656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56637,Bennett Creek Windfarm LLC - Mountain Home,1,2008.0,21.0,21.0,21.0,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.0536,-115.4803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56638,Buffalo Gap 3 Wind Farm,GEN1,2008.0,170.2,170.2,170.2,0,WND,Onshore Wind Turbine,OP,WT,8.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.2878,-100.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56639,Midway Peaking LLC,1,2009.0,69.9,55.6,60.0,23.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7954220314735336,0.8583690987124463,WECC,CISO,CA,36.654114,-120.579727,Starwood1,GT Aero_FT8-3 Swift-Pac,False,1.0,1.0,-1.0,54.81,54.81,1824.445,275.877,1.0,0.45,60.0,8.877831321026848,53.82544551730581,0.0820211222872648,2.265849864187297,178.03505098455474,10.394166036617408,#TRUE#,#2009-05-03#,#2050-12-31#,Existing,CIPV,CA_CISO,24.0,60.0,59.96,CA,NG,Areo,#FALSE#,24,60,10.974162759722962 -56639,Midway Peaking LLC,2,2009.0,69.9,55.6,60.0,23.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7954220314735336,0.8583690987124463,WECC,CISO,CA,36.654114,-120.579727,Starwood2,GT Aero_FT8-3 Swift-Pac,False,1.0,1.0,-1.0,54.81,54.81,1824.445,275.877,1.0,0.45,60.0,9.12202878476037,49.72428112783986,0.07577123105161772,3.013871162014712,164.46927949611998,10.522828219995628,#TRUE#,#2009-05-03#,#2050-12-31#,Existing,CIPV,CA_CISO,24.0,60.0,60.66,CA,NG,Areo,#FALSE#,24,60,12.302936956135678 -56640,Camp Grove Wind Farm,1,2007.0,150.0,150.0,150.0,150,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.090583,-89.639811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56643,St Paul Cogeneration,1,2003.0,37.0,33.0,25.0,15,WDS,Wood/Wood Waste Biomass,OP,ST,4.0,2003.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8918918918918919,0.6756756756756757,MRO,MISO,MN,44.942889,-93.096559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56644,Stanton Wind Energy LLC,1,2008.0,120.0,120.0,120.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.2353,-101.8367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56645,Osceola Windpower LLC,CL25,2008.0,98.2,98.2,98.2,5,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,IA,43.4303,-95.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56647,Butler Ridge,1,2009.0,54.0,54.0,54.0,2.6,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,43.400278,-88.481111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56648,Majestic 1 Wind Farm,1,2009.0,79.5,79.5,79.5,4,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.3919,-101.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56649,South Trent Wind Farm,1,2009.0,101.2,101.2,101.2,1,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.4081,-100.1286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56650,Wessington Springs,1,2009.0,51.0,51.0,51.0,2.6,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,44.0025,-98.590833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56651,North Allegheny Windpower Project,1,2009.0,70.0,70.0,70.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.4381,-78.5436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56654,Hatchet Ridge Wind Project,1,2010.0,101.2,101.2,101.2,101.2,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,40.8981,-121.8036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56659,Michigan Wind 2,1,2011.0,90.0,90.0,90.0,0.7,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.663056,-82.746944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56661,Pattern Gulf Wind,1,2008.0,283.2,283.2,283.2,283.2,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.0011,-97.5994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56665,Dempsey Ridge Wind Farm,DR,2012.0,132.0,132.0,132.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.529778,-99.814456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56666,Goodnoe Hills,1,2008.0,103.4,94.0,94.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9090909090909091,0.9090909090909091,WECC,BPAT,WA,45.781825,-120.521151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0001,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0002,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0003,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0004,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0005,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0006,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0007,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0008,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0009,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0010,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0011,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56667,Lanai Solar-Electric Plant,0012,2008.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7667,-156.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56668,NIH Cogeneration Facility,CGT,2018.0,28.0,27.6,28.4,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9857142857142858,1.0,RFC,PJM,MD,39,-77.0939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56669,Tatanka Wind Power LLC,TW1,2008.0,180.0,180.0,180.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,45.959325,-98.946325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56670,Velva Windfarm LLC,VW1,2005.0,11.9,11.9,11.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,48.083625,-100.9215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56671,Longview Power Plant,MKA01,2011.0,807.5,710.0,710.0,280,BIT,Conventional Steam Coal,OP,ST,12.0,2011.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8792569659442724,0.8792569659442724,RFC,PJM,WV,39.707893,-79.958974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56673,Whirlwind Energy Center,WEC,2007.0,59.8,57.0,57.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9531772575250836,0.9531772575250836,TRE,ERCO,TX,34.105,-101.0986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56674,Winchester Power Park,CGT1,2010.0,60.5,44.0,46.0,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7603305785123967,TRE,ERCO,TX,30.02547,-96.9945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56674,Winchester Power Park,CGT2,2010.0,60.5,44.0,46.0,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7603305785123967,TRE,ERCO,TX,30.02547,-96.9945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56674,Winchester Power Park,CGT3,2010.0,60.5,44.0,46.0,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7603305785123967,TRE,ERCO,TX,30.02547,-96.9945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56674,Winchester Power Park,CGT4,2010.0,60.5,44.0,46.0,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7272727272727273,0.7603305785123967,TRE,ERCO,TX,30.02547,-96.9945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56677,Charles City Wind Farm,CCWF,2008.0,80.0,75.0,75.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9375,0.9375,MRO,MISO,IA,43.0003,-92.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56679,Benton County Wind Farm,1,2008.0,130.5,130.5,130.5,130.5,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IN,40.695,-87.4886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56680,Wicomico,1,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,10,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,11,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,12,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,13,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,14,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,15,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,16,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,17,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,18,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,2,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,3,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,4,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,5,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,6,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,7,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,8,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56680,Wicomico,9,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,38.3847,-75.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.493540338734048 -56681,Amelia,1,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,10,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,11,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,12,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,13,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,14,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,15,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,16,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,17,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,18,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,19,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,2,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,20,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,21,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,22,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,23,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,24,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,25,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,26,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,27,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,28,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,29,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,3,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,30,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,31,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,32,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,33,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,34,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,35,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,36,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,37,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,38,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,39,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,4,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,40,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,41,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,42,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,43,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,44,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,45,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,46,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,47,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,48,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,5,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,6,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,7,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,8,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56681,Amelia,9,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3097,-78.0589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.012424253382445 -56682,Brunswick Landfill Gas,10,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,11,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,12,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,13,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,14,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,15,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,16,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,17,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,18,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,19,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,2,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,20,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,21,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,22,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,23,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,24,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,25,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,26,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,27,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,28,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,29,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,3,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,30,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,31,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,32,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,33,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,34,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,35,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,36,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,4,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,5,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,6,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,7,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,8,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56682,Brunswick Landfill Gas,9,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7639,-77.8108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.578587328788014 -56683,Charles City,1,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,10,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,11,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,12,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,13,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,14,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,15,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,16,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,17,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,18,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,19,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,2,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,20,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,21,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,22,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,23,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,24,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,25,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,26,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,27,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,28,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,29,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,3,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,30,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,31,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,32,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,33,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,34,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,35,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,36,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,37,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,38,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,39,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,4,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,40,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,41,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,42,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,43,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,44,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,45,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,46,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,47,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,48,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,5,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,6,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,7,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,8,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56683,Charles City,9,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.438889,-77.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.771297551224388 -56684,Chesterfield Landfill Gas,1,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,10,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,11,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,12,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,13,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,14,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,15,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,16,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,17,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,18,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,19,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,2,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,20,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,21,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,22,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,23,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,24,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,25,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,26,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,27,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,28,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,29,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,3,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,30,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,31,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,32,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,33,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,34,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,35,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,36,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,37,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,38,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,39,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,4,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,40,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,41,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,42,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,43,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,44,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,45,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,46,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,47,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,48,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,5,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,6,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,7,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,8,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56684,Chesterfield Landfill Gas,9,2004.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,6.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.3517,-77.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.701069935785172 -56686,King & Queen,1,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,10,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,11,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,12,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,13,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,14,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,15,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,16,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,17,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,18,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,19,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,2,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,20,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,21,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,22,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,23,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,24,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,25,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,26,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,27,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,28,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,29,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,3,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,30,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,31,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,32,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,33,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,34,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,35,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,36,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,4,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,5,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,6,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,7,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,8,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56686,King & Queen,9,2008.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6711,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.982156513171098 -56687,Mountain View,1,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,10,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,11,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,12,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,13,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,14,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,15,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,16,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,17,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,18,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,19,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,2,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,20,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,21,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,22,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,23,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,24,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,25,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,26,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,27,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,28,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,29,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,3,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,30,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,31,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,32,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,33,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,34,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,35,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,36,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,37,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,38,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,39,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,4,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,40,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,41,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,42,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,43,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,44,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,45,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,46,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,47,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,48,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,5,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,6,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,7,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,8,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56687,Mountain View,9,2003.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8014,-77.7883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.909554482018251 -56688,New Bern,1,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,10,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,11,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,12,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,13,2011.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,14,2011.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,15,2011.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,16,2011.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,17,2011.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,18,2011.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,2,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,3,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,4,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,5,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,6,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,7,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,8,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56688,New Bern,9,2007.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.1681,-77.2267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.628171826175704 -56690,Pine Grove,1,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,10,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,11,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,12,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,13,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,14,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,15,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,16,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,17,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,18,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,2,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,3,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,4,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,5,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,6,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,7,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,8,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56690,Pine Grove,9,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.5553,-76.3886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994002998500749 -56692,Rockville 1 & 2,1A,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1B,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1C,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1D,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1E,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1F,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1G,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1H,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1I,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1J,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1K,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1L,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1M,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1N,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,1O,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2A,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2B,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2C,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2D,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2E,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2F,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2G,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2H,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2I,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2J,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2K,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2L,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2M,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2N,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2O,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2P,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2Q,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2R,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2S,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2T,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56692,Rockville 1 & 2,2U,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.7036,-77.6639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.756756756756756 -56693,Virginia Beach,1,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,10,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,11,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,12,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,13,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,14,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,15,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,16,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,17,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,18,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,19,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,2,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,20,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,21,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,22,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,23,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,24,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,25,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,26,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,27,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,28,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,29,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,3,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,30,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,31,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,32,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,33,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,34,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,35,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,36,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,4,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,5,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,6,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,7,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,8,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56693,Virginia Beach,9,2001.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,11.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,36.7858,-76.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.686386382335884 -56694,Russell D Smith,1,1982.0,6.1,6.1,,0.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,BPAT,WA,46.7392,-119.1122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56695,Summer Falls Power Plant,1,1985.0,46.0,46.0,,14,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,AVA,WA,47.5025,-119.2917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56695,Summer Falls Power Plant,2,1985.0,46.0,46.0,,14,WAT,Conventional Hydroelectric,OP,HY,1.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,AVA,WA,47.5025,-119.2917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56696,Eltopia Branch Canal 4.6,1,1983.0,2.2,2.2,,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,BPAT,WA,46.378381,-119.254522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56697,Potholes East Canal 66.0,1,1985.0,2.3,2.3,,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1985.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,BPAT,WA,46.378469,-119.254443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56698,Main Canal Headworks,1,1987.0,26.8,26.8,,3,WAT,Conventional Hydroelectric,OP,HY,1.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,AVA,WA,47.6164,-119.2992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56699,Forward Windpower LLC,1,2008.0,29.4,29.4,29.4,1,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.0853,-78.8633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56700,Lookout Windpower LLC,1,2008.0,37.8,37.8,37.8,1,WND,Onshore Wind Turbine,OP,WT,10.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.8794,-78.9183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56701,Haworth Water Treatment Plant,GEN1,2004.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.959257,-74.015107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.381972165282123 -56701,Haworth Water Treatment Plant,GEN2,2004.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.959257,-74.015107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.381972165282123 -56701,Haworth Water Treatment Plant,GEN3,2004.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.959257,-74.015107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.381972165282123 -56701,Haworth Water Treatment Plant,GEN4,2004.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.959257,-74.015107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.381972165282123 -56701,Haworth Water Treatment Plant,GEN5,2018.0,4.0,3.9,3.9,1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.975,0.975,RFC,PJM,NJ,40.959257,-74.015107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.381972165282123 -56701,Haworth Water Treatment Plant,GEN6,2018.0,4.0,3.9,3.9,1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.975,0.975,RFC,PJM,NJ,40.959257,-74.015107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.381972165282123 -56702,Tuolumne Wind Project,WPT1,2009.0,136.3,136.3,136.3,0,WND,Onshore Wind Turbine,OP,WT,5.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,45.8797,-120.8072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56703,Lyons Falls Hydroelectric,1,1923.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1923.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.61863,-75.358577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56703,Lyons Falls Hydroelectric,6,1963.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1963.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.61863,-75.358577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56703,Lyons Falls Hydroelectric,7,1966.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1966.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.61863,-75.358577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56703,Lyons Falls Hydroelectric,8,1974.0,1.3,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,1974.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.923076923076923,0.923076923076923,NPCC,NYIS,NY,43.61863,-75.358577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56703,Lyons Falls Hydroelectric,9,1971.0,0.9,0.9,0.9,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,1971.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.61863,-75.358577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56704,Gouldtown,3,1953.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,8.0,1953.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.612619,-75.339072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56705,Kosterville,4,1955.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,5.0,1955.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.614218,-75.332705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56705,Kosterville,5,1958.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,10.0,1958.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,43.614218,-75.332705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56706,Ampersand Chowchilla Biomass LLC,AMPC,2008.0,12.5,10.5,10.5,8,WDS,Wood/Wood Waste Biomass,OP,ST,5.0,2008.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.84,0.84,WECC,CISO,CA,37.106668,-120.248504,Amp_Chow_Bio,OT ST,True,8.0,8.0,-1.0,1.8,1.8,70.41619,1.25,1.0,2.027986,12.5,10.70402908126563,3.8277971506806043,0.9679524362552879,-4.909252022196125,59.63559939239163,11.242058399081749,#TRUE#,#2008-05-08#,#2050-12-31#,Existing,CIPV,CA_CISO,3.75,12.5,11.1,CA,Bio,,#FALSE#,3.75,12.5, -56707,El Nido Facility,AMPC,2008.0,12.5,10.5,10.5,8,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,2008.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.84,0.84,WECC,CISO,CA,37.1867,-120.4903,ElNidoFacility,OT ST,True,8.0,8.0,-1.0,1.8,1.8,70.41619,1.25,1.0,2.027986,12.5,10.719404218958129,3.512045469585834,0.9653024892796573,-4.7358711221045455,58.383770091697045,11.220931672099413,#TRUE#,#2008-08-24#,#2050-12-31#,Existing,CIPV,CA_CISO,3.75,12.5,11.26,CA,Bio,,#FALSE#,3.75,12.5, -56708,CFB Power Plant,G2101,2012.0,155.0,143.1,143.1,43,NG,Natural Gas Steam Turbine,OP,ST,5.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9232258064516129,0.9232258064516129,TRE,ERCO,TX,28.650278,-96.539722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56708,CFB Power Plant,G2201,2012.0,155.0,143.1,143.1,43,NG,Natural Gas Steam Turbine,OP,ST,3.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9232258064516129,0.9232258064516129,TRE,ERCO,TX,28.650278,-96.539722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56750,Jeffers Wind 20 LLC,1,2008.0,50.0,50.0,50.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.057778,-95.2525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56751,Spanish Fork Wind Park 2 LLC,1,2008.0,18.9,18.9,18.9,1,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,UT,40.071389,-111.582222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56752,Mountain Wind Power LLC,1,2008.0,61.0,61.0,61.0,1,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,41.288056,-110.480741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56753,Mountain Wind Power II LLC,1,2008.0,80.0,80.0,80.0,1,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,41.263889,-110.544444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56754,Goat Wind LP,1,2008.0,80.0,80.0,80.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.951944,-100.791389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56754,Goat Wind LP,2,2009.0,69.6,69.6,69.6,1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.951944,-100.791389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56755,Odin Wind Farm LLC,1,2008.0,20.0,20.0,20.0,1,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.8953,-94.9142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56763,Capricorn Ridge Wind LLC,1,2007.0,149.5,149.5,149.5,21.5,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.951958,-101.018936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56763,Capricorn Ridge Wind LLC,2,2007.0,214.5,214.5,214.5,7.5,WND,Onshore Wind Turbine,OP,WT,11.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.951958,-101.018936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56763,Capricorn Ridge Wind LLC,3,2008.0,186.0,186.0,186.0,14.9,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.951958,-101.018936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56763,Capricorn Ridge Wind LLC,4,2008.0,112.5,112.5,112.5,5.6,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.951958,-101.018936,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56764,Winnebago Wind Power Project,1,2008.0,20.0,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.315,-93.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56765,Barton Windpower LLC,1,2009.0,28.0,28.0,28.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.393,-93.091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56765,Barton Windpower LLC,2,2009.0,132.0,132.0,132.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.393,-93.091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56767,Farmers City Wind LLC,1,2009.0,146.0,146.0,146.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,MO,40.575,-95.5228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56768,CalRenew-1,CR1,2010.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.7575,-120.3658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56770,Locust Ridge II LLC,1,2009.0,102.0,102.0,102.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.8411,-76.1547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56771,Silver Star I Wind Power Project,1,2008.0,52.8,52.8,52.8,1,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.338659,-98.476051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56773,McAdoo Wind Energy LLC,1,2008.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.752201,-100.967402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56774,Turkey Track Wind Energy LLC,1,2008.0,169.5,169.5,169.5,0,WND,Onshore Wind Turbine,OP,WT,11.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.1981,-100.2686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56775,Scurry County Wind II,1,2007.0,120.0,120.0,120.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.718056,-100.793333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56776,Gunsight Mountain Wind Energy LLC,1,2016.0,120.0,120.0,120.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.240278,-101.473611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56777,Fowler Ridge Wind Farm LLC,FIA,2009.0,201.3,201.3,201.3,0.6,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.583889,-87.3336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56777,Fowler Ridge Wind Farm LLC,FIB,2009.0,100.0,100.0,100.0,20,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.583889,-87.3336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56777,Fowler Ridge Wind Farm LLC,FII,2009.0,200.0,200.0,200.0,3.6,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.583889,-87.3336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56777,Fowler Ridge Wind Farm LLC,FIII,2009.0,99.0,99.0,99.0,0.3,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.583889,-87.3336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56781,Evergreen BioPower LLC,1,2007.0,21.0,10.0,10.0,0.5,WDS,Wood/Wood Waste Biomass,OP,ST,9.0,2007.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.47619047619047616,0.47619047619047616,WECC,PACW,OR,44.770792,-122.611974,Evergreen_Bio,OT ST,False,1.0,1.0,-1.0,0.01,0.01,0.0,0.0,1.0,0.0,10.0,10.495273957376318,16.09439214278729,0.848510438570729,-0.23838319863804813,46.58349421862834,13.359700511365286,#TRUE#,#2007-09-01#,#2050-12-31#,Existing,PACW,NW_PACW,3.0,10.0,10.0,OR,Bio,,#FALSE#,3,10, -56782,Diamond Willow Wind Facility,DIAW,2007.0,30.0,30.0,30.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MT,46.2753,-104.1836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56783,Elbow Creek Wind Project LLC,1,2008.0,121.9,121.9,121.9,1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.1408,-101.3986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56784,Cloud County Wind Farm,1,2008.0,105.0,105.0,105.0,10,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.4375,-97.6644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56784,Cloud County Wind Farm,2,2008.0,96.0,96.0,96.0,10,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.4375,-97.6644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56785,Virginia Tech Power Plant,WG01,1976.0,6.3,2.5,6.3,1,NG,Natural Gas Steam Turbine,OP,ST,3.0,1976.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.39682539682539686,1.0,RFC,PJM,VA,37.2319,-80.4211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61.61265709156194 -56786,Spiritwood Station,1,2014.0,106.2,92.9,92.9,25,RC,Conventional Steam Coal,OP,ST,11.0,2014.0, , ,,,,,coal,coal,Refined Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8747645951035782,0.8747645951035782,MRO,MISO,ND,46.926423,-98.499713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56787,Geismar Cogen,GTG,2000.0,83.9,72.5,71.3,27,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2000.0,6,2030,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8641239570917758,0.8498212157330154,SERC,MISO,LA,30.209,-90.9921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.71803916194131 -56789,Pebble Springs Wind LLC,1,2009.0,98.7,98.7,98.7,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.7119,-120.125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56790,Hay Canyon Wind Power LLC,1,2009.0,100.8,100.8,100.8,0,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.52,-120.5744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56791,Dillon Wind LLC,1,2008.0,45.0,45.0,45.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9393,-116.5527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56792,Buffalo Ridge I LLC,1,2009.0,50.4,50.4,50.4,0,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,SD,44.4328,-96.4779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56793,Elm Creek Wind LLC,1,2008.0,99.0,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.7542,-94.9497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56794,Moraine II Wind LLC,1,2009.0,49.5,49.5,49.5,0,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.1238,-96.0784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56795,Penascal Wind Power LLC,1,2009.0,201.6,201.6,201.6,0,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.022112,-97.498478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56796,South Chestnut LLC,1,2012.0,50.4,50.4,50.4,0,WND,Onshore Wind Turbine,OP,WT,4.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.7513,-79.7271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56797,Pioneer Prairie Wind Farm,1,2008.0,300.0,300.0,300.0,2.4,WND,Onshore Wind Turbine,OP,WT,10.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.4839,-92.6131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56798,Kleen Energy Systems Project,ST,2011.0,295.0,268.0,233.0,177,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9084745762711864,0.7898305084745763,NPCC,ISNE,CT,41.553227,-72.596867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56798,Kleen Energy Systems Project,U1,2011.0,199.0,177.0,195.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8894472361809045,0.9798994974874372,NPCC,ISNE,CT,41.553227,-72.596867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.522218698939504 -56798,Kleen Energy Systems Project,U2,2011.0,199.0,177.0,195.0,120,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8894472361809045,0.9798994974874372,NPCC,ISNE,CT,41.553227,-72.596867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.468534231086531 -56799,Greenland Energy Center,1,2011.0,190.4,178.6,192.1,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9380252100840336,1.0,SERC,JEA,FL,30.159131,-81.518415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.13047889199247 -56799,Greenland Energy Center,2,2011.0,190.4,178.6,192.1,65,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9380252100840336,1.0,SERC,JEA,FL,30.159131,-81.518415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.841666641084448 -56800,Hull Wind II,HW2,2006.0,1.8,1.8,1.8,1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.261111,-70.856389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56803,Panoche Energy Center,1,2009.0,108.0,97.0,104.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8981481481481481,0.9648148148148148,WECC,CISO,CA,36.6514,-120.5833,PanocheEC4,GT LMS_LMS100,False,1.0,1.0,-1.0,92.25,92.25,3070.699,439.41,1.0,0.45,108.0,7.190214675745605,274.3199451473487,0.19869765569729242,-23.155449136204286,1370.9171878422376,10.995828288982137,#TRUE#,#2009-05-27#,#2050-12-31#,Existing,CIPV,CA_CISO,46.764,108.0,100.25,CA,NG,Areo,#FALSE#,46.764,108,8.67027669021632 -56803,Panoche Energy Center,2,2009.0,108.0,97.0,104.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8981481481481481,0.9648148148148148,WECC,CISO,CA,36.6514,-120.5833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.613513145519368 -56803,Panoche Energy Center,3,2009.0,108.0,97.0,104.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8981481481481481,0.9648148148148148,WECC,CISO,CA,36.6514,-120.5833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.242364897526192 -56803,Panoche Energy Center,4,2009.0,108.0,97.0,104.2,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8981481481481481,0.9648148148148148,WECC,CISO,CA,36.6514,-120.5833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.702692830114396 -56804,Red Hills Wind Project LLC,RH,2008.0,123.0,123.0,123.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.535,-99.3828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56805,EcoGrove Wind LLC,1,2009.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,7.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,42.451481,-89.878428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56806,Cedar Bayou 4,4,2009.0,178.5,172.0,185.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9635854341736695,1.0,TRE,ERCO,TX,29.751645,-94.92312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56806,Cedar Bayou 4,41,2009.0,178.5,165.0,207.0,130,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9243697478991597,1.0,TRE,ERCO,TX,29.751645,-94.92312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56806,Cedar Bayou 4,42,2009.0,178.5,165.0,207.0,130,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2009.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9243697478991597,1.0,TRE,ERCO,TX,29.751645,-94.92312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56807,Bear Garden,1A,2011.0,145.0,190.0,205.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,PJM,VA,37.695556,-78.285278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.9754611916903477 -56807,Bear Garden,1B,2011.0,152.0,190.0,205.0,78,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,PJM,VA,37.695556,-78.285278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56807,Bear Garden,1C,2011.0,262.0,242.0,244.0,134,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9236641221374046,0.9312977099236641,SERC,PJM,VA,37.695556,-78.285278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56808,Virginia City Hybrid Energy Center,1,2012.0,668.0,610.0,624.0,295,BIT,Conventional Steam Coal,OP,ST,7.0,2012.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9131736526946108,0.9341317365269461,RFC,PJM,VA,36.916389,-82.338055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.540021857783228 -56809,Carroll Wind Farm,CWF,2008.0,159.1,150.0,150.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9428032683846638,0.9428032683846638,MRO,MISO,IA,42.1622,-94.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56810,Adair Wind Farm,AWF,2008.0,174.8,174.8,174.8,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.4236,-94.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56811,Walnut Wind Farm,WWF,2008.0,165.2,150.0,150.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9079903147699758,0.9079903147699758,MRO,MISO,IA,41.4517,-95.2383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56812,Solana Generating Station,GEN 1,2013.0,140.0,147.8,147.8, ,SUN,Solar Thermal with Energy Storage,OP,CP,10.0,2013.0, , ,,,,nan,solar,solar,Solar,"Energy Storage, Concentrated Solar Power",1.0,1.0,WECC,AZPS,AZ,32.922294,-112.95594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56812,Solana Generating Station,GEN2,2013.0,140.0,147.8,147.8, ,SUN,Solar Thermal with Energy Storage,OP,CP,10.0,2013.0, , ,,,,nan,solar,solar,Solar,"Energy Storage, Concentrated Solar Power",1.0,1.0,WECC,AZPS,AZ,32.922294,-112.95594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56813,CSU Fresno Solar Project,1,2007.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.809841,-119.741665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56813,CSU Fresno Solar Project,2,2007.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.809841,-119.741665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56814,ELACC Photovoltaic Power Facility,PV1,2008.0,0.5,0.4,0.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.6,WECC,CISO,CA,34.040278,-118.148056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56814,ELACC Photovoltaic Power Facility,PV2,2008.0,0.5,0.4,0.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.6,WECC,CISO,CA,34.040278,-118.148056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56815,Denver Int Airport,1,2008.0,1.9,1.9,1.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9473684210526316,WECC,PSCO,CO,39.836789,-104.697149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56818,Central Plains Wind Farm,1,2009.0,99.0,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.503167,-101.161472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56819,Flat Ridge Wind Farm,1,2009.0,50.0,50.0,50.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.369167,-98.460278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56823,Hackberry Wind Farm,HWFG1,2008.0,165.6,162.3,162.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9800724637681161,0.9800724637681161,TRE,ERCO,TX,32.7683,-99.4228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56824,Marshall Wind 2 LLC,1,2007.0,4.2,4.2,4.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.3236,-95.8222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56825,Marshall Wind 3 LLC,1,2007.0,4.2,4.2,4.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.3211,-95.7942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56826,Marshall Wind 4 LLC,1,2007.0,4.2,4.2,4.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.3361,-95.8242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56827,Marshall Wind 5 LLC,1,2007.0,2.1,2.1,2.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.3303,-95.8344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56828,Marshall Wind 6 LLC,1,2007.0,2.1,2.1,2.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.3308,-95.8297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56829,Kibby Wind Facility,1,2009.0,66.0,66.0,66.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,45.3853,-70.5258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56829,Kibby Wind Facility,2,2010.0,66.0,66.0,66.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,45.3853,-70.5258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56831,Crane Creek Wind Energy Center,1,2009.0,99.0,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.397778,-92.473611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56832,North Brawley Geothermal Plant,GE1,2009.0,16.0,10.7,16.0,10,GEO,Geothermal,OP,BT,10.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,IID,CA,33.0139,-115.5439,North Brawley 01,GEO,True,6.0,16.0,-1.0,1.1,1.1,0.0,0.0,1.0,3.098312,16.0,-1.7614251809599786,93.94280209168515,-6.650247223638719e-06,-1.7612708952237568,93.94194234771678,6.678999778749029,#TRUE#,#2009-10-01#,#2050-12-31#,Existing,IID,CA_IID,3.2,16.0,12.0,CA,Geo,Binary,#FALSE#,3.2,16, -56832,North Brawley Geothermal Plant,GE2,2009.0,16.0,10.7,16.0,10,GEO,Geothermal,OP,BT,10.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,IID,CA,33.0139,-115.5439,North Brawley 02,GEO,True,6.0,16.0,-1.0,1.58,1.58,0.0,0.0,1.0,3.098312,16.0,-1.7614251809599786,93.94280209168515,-6.650247223638719e-06,-1.7612708952237568,93.94194234771678,6.678999778749029,#TRUE#,#2009-10-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,16.0,12.5,CA,Geo,Binary,#FALSE#,3.2,16, -56832,North Brawley Geothermal Plant,GE3,2009.0,16.0,10.7,16.0,10,GEO,Geothermal,OP,BT,10.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,IID,CA,33.0139,-115.5439,North Brawley 03,GEO,True,6.0,16.0,-1.0,0.5,0.5,0.0,0.0,1.0,3.098312,16.0,-1.7614251809599786,93.94280209168515,-6.650247223638719e-06,-1.7612708952237568,93.94194234771678,6.678999778749029,#TRUE#,#2009-10-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,16.0,0.0,CA,Geo,Binary,#FALSE#,3.2,16, -56832,North Brawley Geothermal Plant,GE4,2009.0,16.0,10.7,16.0,10,GEO,Geothermal,OP,BT,10.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,IID,CA,33.0139,-115.5439,North Brawley 04,GEO,True,6.0,16.0,-1.0,11.76,11.76,0.0,0.0,1.0,3.098312,16.0,-1.7614251809599786,93.94280209168515,-6.650247223638719e-06,-1.7612708952237568,93.94194234771678,6.678999778749029,#TRUE#,#2009-10-01#,#2050-12-31#,Existing,IID,CA_IID,0.0,16.0,12.5,CA,Geo,Binary,#FALSE#,3.2,16, -56832,North Brawley Geothermal Plant,GE5,2009.0,16.0,10.7,16.0,10,GEO,Geothermal,OP,BT,10.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,IID,CA,33.0139,-115.5439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56833,OREG 1 Inc,CS10,2006.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,10.0,2006.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2139,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56833,OREG 1 Inc,CS11,2006.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,8.0,2006.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2139,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56833,OREG 1 Inc,CS7,2006.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,7.0,2006.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2139,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56833,OREG 1 Inc,CS9,2006.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,8.0,2006.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2139,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56835,Ribeye Wind (11) LLC,1,2008.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.8119,-101.9789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56836,T-Bone Wind (10) LLC,1,2008.0,8.8,8.8,8.8,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.8081,-101.9986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56837,Tri-Tip Wind (9) LLC,1,2008.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.9614,-101.8033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56838,Brisket Wind (8) LLC,1,2008.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.0075,-101.8614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56839,Flat Iron Wind (7) LLC,1,2008.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.0264,-101.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56840,Marshall Wind 1 LLC,1,2007.0,2.1,2.1,2.1,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.3253,-95.8142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56841,Glenrock,1,2008.0,119.6,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8277591973244147,0.8277591973244147,WECC,PACE,WY,43.0181,-105.835278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56841,Glenrock,2,2009.0,46.0,39.0,39.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8478260869565217,0.8478260869565217,WECC,PACE,WY,43.0181,-105.835278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56842,Rolling Hills,1,2009.0,115.8,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8549222797927462,0.8549222797927462,WECC,PACE,WY,43.0572,-105.8543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56843,Seven Mile Hill,1,2008.0,122.1,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8108108108108109,0.8108108108108109,WECC,PACE,WY,41.9203,-106.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56843,Seven Mile Hill,2,2008.0,24.1,19.5,19.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8091286307053942,0.8091286307053942,WECC,PACE,WY,41.9203,-106.3758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56846,CPV St Charles Energy Center,GTG1,2017.0,223.6,215.0,228.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9615384615384616,1.0,RFC,PJM,MD,38.5686,-76.8919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56846,CPV St Charles Energy Center,GTG2,2017.0,223.6,214.6,227.6, ,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9597495527728086,1.0,RFC,PJM,MD,38.5686,-76.8919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56846,CPV St Charles Energy Center,STGEN,2017.0,328.1,303.6,324.1, ,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9253276440109722,0.9878085949405669,RFC,PJM,MD,38.5686,-76.8919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56847,Plainfield Renewable Energy LLC,STG,2013.0,43.0,37.5,37.5,20,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.872093023255814,0.872093023255814,NPCC,ISNE,CT,41.664376,-71.92418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56848,Haverhill North Cogeneration Facility,SCKG1,2008.0,67.0,53.0,53.0,10,OG,Other Gases,OP,ST,12.0,2008.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.791044776119403,0.791044776119403,RFC,PJM,OH,38.596657,-82.828642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56850,Lanchester Generating Station,1,2006.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.1108,-75.9547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.427594370643167 -56850,Lanchester Generating Station,2,2010.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,8.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.1108,-75.9547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.427594370643167 -56851,Bryon Center,1,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.7814,-85.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.994597443668468 -56851,Bryon Center,2,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.7814,-85.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.994597443668468 -56852,Pinconning White Feather,1,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,43.8983,-83.9494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.805090861378993 -56852,Pinconning White Feather,2,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,43.8983,-83.9494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.805090861378993 -56853,Trans-Jordan Generating Station,1,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACE,UT,40.55,-112.0631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.191154288025889 -56853,Trans-Jordan Generating Station,2,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACE,UT,40.55,-112.0631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.191154288025889 -56853,Trans-Jordan Generating Station,3,2009.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACE,UT,40.55,-112.0631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.191154288025889 -56854,Wheat Field Wind Power Project,GEN1,2009.0,102.9,102.9,102.9,0.3,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.675804,-120.31832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56855,Arlington Wind Power Project,GEN1,2008.0,102.9,102.9,102.9,0.3,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.7167,-120.2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56856,Rail Splitter Wind Farm,GEN1,2009.0,100.5,100.5,100.5,1.5,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.3692,-89.4022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56857,Marble River Wind Farm,GEN1,2012.0,215.3,215.3,215.3,1.5,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,44.975833,-73.929722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56858,Sagebrush Power Partners,GEN1,2010.0,100.7,100.7,100.7,2,WND,Onshore Wind Turbine,OP,WT,11.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,47.1356,-120.6872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56859,Crosswind Energy Project,1,2007.0,21.0,21.0,21.0,1,WND,Onshore Wind Turbine,OP,WT,6.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.0475,-94.9228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56860,Hardin Hilltop Wind LLC,1,2007.0,14.7,14.7,14.7,1,WND,Onshore Wind Turbine,OP,WT,5.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.0822,-94.365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56862,Bolthouse S&P and Rowen Farms Solar,1,2008.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.5644,-117.6933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56862,Bolthouse S&P and Rowen Farms Solar,2,2008.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.5644,-117.6933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56862,Bolthouse S&P and Rowen Farms Solar,3,2008.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.5644,-117.6933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56862,Bolthouse S&P and Rowen Farms Solar,4,2008.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.5644,-117.6933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56863,Model Gas Power Station,1,2001.0,1.4,1.4,1.4, ,LFG,Landfill Gas,OS,IC,3.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.8908,-83.0272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56863,Model Gas Power Station,2,2001.0,1.4,1.4,1.4, ,LFG,Landfill Gas,OS,IC,3.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.8908,-83.0272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56864,Covel Gardens Gas Recovery,1,2005.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.3467,-98.6536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.969799668663054 -56864,Covel Gardens Gas Recovery,2,2005.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.3467,-98.6536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.969799668663054 -56864,Covel Gardens Gas Recovery,3,2005.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.3467,-98.6536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.969799668663054 -56864,Covel Gardens Gas Recovery,4,2005.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.3467,-98.6536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.969799668663054 -56864,Covel Gardens Gas Recovery,5,2005.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.3467,-98.6536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.969799668663054 -56864,Covel Gardens Gas Recovery,6,2005.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.3467,-98.6536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.969799668663054 -56869,Loraine County Project,1,2001.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,12.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,10,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,11,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,12,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,13,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,14,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,15,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,16,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,17,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,18,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56869,Loraine County Project,2,2001.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,12.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,3,2001.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,12.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,4,2001.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,12.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,5,2001.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,12.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,6,2001.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,12.0,2001.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,7,2003.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,7.0,2003.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,8,2003.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,7.0,2003.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.592797153024913 -56869,Loraine County Project,9,2012.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0,2,2023,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3006,-82.1803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.59279715302491 -56870,Taylor,1,2003.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,2,2003.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,3,2003.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,4,2003.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,9.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,5,2011.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,6,2011.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,7,2011.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56870,Taylor,8,2011.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4522,-84.3872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.879525725174677 -56872,Meldahl Hydroelectric Project,1,2016.0,35.0,35.0,35.0,5,WAT,Conventional Hydroelectric,OP,HY,2.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,38.791431,-84.172982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56872,Meldahl Hydroelectric Project,2,2016.0,35.0,35.0,35.0,5,WAT,Conventional Hydroelectric,OP,HY,1.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,38.791431,-84.172982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56872,Meldahl Hydroelectric Project,3,2016.0,35.0,35.0,35.0,5,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,38.791431,-84.172982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56873,SECCRA Community Landfill,1,2007.0,0.9,0.9,0.9,0.4,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8639,-75.8428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.715141499690146 -56873,SECCRA Community Landfill,3,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.8639,-75.8428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.715141499690148 -56874,Shiloh Wind Project 2 LLC,TBD,2009.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.1711,-121.8461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56875,Sacramento Soleil LLC,TBD,2008.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.44979,-121.16469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56876,Wapsipinicon Wind Project,TBD,2009.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.8006,-92.6822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56877,Hall's Warehouse Solar Project,TBD,2009.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.573708,-74.394414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56878,Hoosier Wind Project LLC,TBD,2009.0,106.0,106.0,106.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IN,40.7178,-87.2631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56879,Flat Ridge Wind Energy LLC,1,2009.0,44.0,44.0,44.0,10,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.3764,-98.4583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56880,OREG 2 Inc,CS12,2009.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,10.0,2009.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2142,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56880,OREG 2 Inc,CS3,2009.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,12.0,2009.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2142,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56880,OREG 2 Inc,CS5,2009.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,2.0,2009.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2142,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56880,OREG 2 Inc,CS8,2008.0,7.5,5.0,7.5,5,WH,All Other,OP,OT,12.0,2008.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,MRO,SWPP,MT,48.2142,-104.3975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 1,2006.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2006.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 2,2006.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2006.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 3,2007.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 4,2007.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 5,2007.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 6,2007.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 7,2007.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 8,2007.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN 9,2007.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56883,Pennsauken Solar,GEN10,2018.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.9894,-75.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56884,Cumberland County Solid Waste Complex,GEN 2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.4494,-75.0928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.492252775173828 -56884,Cumberland County Solid Waste Complex,GEN 3,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.4494,-75.0928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.492252775173828 -56884,Cumberland County Solid Waste Complex,GEN1,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.4494,-75.0928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.492252775173828 -56887,Cumberland County PA LFG Recovery,GEN 1,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.1356,-77.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451543054154053 -56887,Cumberland County PA LFG Recovery,GEN 2,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.1356,-77.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451543054154053 -56887,Cumberland County PA LFG Recovery,GEN 3,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.1356,-77.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451543054154053 -56887,Cumberland County PA LFG Recovery,GEN 4,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.1356,-77.5072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451543054154053 -56888,Warren County Solar,GEN 1,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.788957,-75.10697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56888,Warren County Solar,GEN 2,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.788957,-75.10697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56888,Warren County Solar,GEN 3,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.788957,-75.10697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56888,Warren County Solar,GEN 4,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.788957,-75.10697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56889,PPL Renewable Energy Merck Solar,GEN 1,2009.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.727386,-74.3783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56890,Norther Tier Landfill,GEN 1,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.7792,-76.6258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.865348083584758 -56891,Moretown,GEN 2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,VT,44.312222,-72.711389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.65642683912692 -56893,Chester Diversion Hydroelectric Project,1,2014.0,1.2,1.2,1.2,0.5,WAT,Conventional Hydroelectric,OP,HY,6.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.018333,-111.583611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56893,Chester Diversion Hydroelectric Project,2,2014.0,1.2,1.2,1.2,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.018333,-111.583611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56893,Chester Diversion Hydroelectric Project,3,2014.0,1.2,1.2,1.2,0.5,WAT,Conventional Hydroelectric,OP,HY,5.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,ID,44.018333,-111.583611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56894,Ameresco Stafford,1,2009.0,1.1,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,5.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,PJM,VA,38.384167,-77.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.128219329825534 -56894,Ameresco Stafford,2,2009.0,1.1,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,5.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,PJM,VA,38.384167,-77.413056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.128219329825534 -56895,Ameresco Ox Mountain,1,2008.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,37.5,-122.4,Ox_Mountain1,OT IC,True,8.0,8.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,12.47457719735076,0.6205052829326114,7.394009041611987,-5.519802749174144,10.33124551761197,13.057534136669142,#TRUE#,#2009-04-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.57,1.9,1.55,CA,Bio,,#FALSE#,.57,1.9,10.273308299062872 -56895,Ameresco Ox Mountain,2,2008.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,37.5,-122.4,Ox_Mountain2,OT IC,True,8.0,8.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,12.47457719735076,0.6205052829326114,7.394009041611987,-5.519802749174144,10.33124551761197,13.057534136669142,#TRUE#,#2009-04-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.57,1.9,1.55,CA,Bio,,#FALSE#,.57,1.9,10.273308299062872 -56895,Ameresco Ox Mountain,3,2008.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,37.5,-122.4,Ox_Mountain3,OT IC,True,8.0,8.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,12.47457719735076,0.6205052829326114,7.394009041611987,-5.519802749174144,10.33124551761197,13.057534136669142,#TRUE#,#2009-04-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.57,1.9,1.55,CA,Bio,,#FALSE#,.57,1.9,10.273308299062872 -56895,Ameresco Ox Mountain,4,2008.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,37.5,-122.4,Ox_Mountain4,OT IC,True,8.0,8.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,12.47457719735076,0.6205052829326114,7.394009041611987,-5.519802749174144,10.33124551761197,13.057534136669142,#TRUE#,#2009-04-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.57,1.9,1.55,CA,Bio,,#FALSE#,.57,1.9,10.273308299062872 -56895,Ameresco Ox Mountain,5,2008.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,37.5,-122.4,Ox_Mountain5,OT IC,True,8.0,8.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,12.47457719735076,0.6205052829326114,7.394009041611987,-5.519802749174144,10.33124551761197,13.057534136669142,#TRUE#,#2009-04-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.57,1.9,1.55,CA,Bio,,#FALSE#,.57,1.9,10.273308299062872 -56895,Ameresco Ox Mountain,6,2008.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,37.5,-122.4,Ox_Mountain6,OT IC,True,8.0,8.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,12.47457719735076,0.6205052829326114,7.394009041611987,-5.519802749174144,10.33124551761197,13.057534136669142,#TRUE#,#2009-04-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.57,1.9,1.55,CA,Bio,,#FALSE#,.57,1.9,10.273308299062872 -56896,Ameresco Jefferson City,1,2009.0,1.0,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,SERC,MISO,MO,38.552371,-92.04493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.348249965078223 -56896,Ameresco Jefferson City,2,2009.0,1.0,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,SERC,MISO,MO,38.552371,-92.04493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.348249965078223 -56896,Ameresco Jefferson City,3,2009.0,1.0,0.9,0.9,0.5,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,SERC,MISO,MO,38.552371,-92.04493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.348249965078223 -56897,Ameresco Keller Canyon,1,2009.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,7.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,38.003928,-121.934491,Keller_Canyon1,OT IC,True,6.0,6.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,10.605263032052607,2.878000147200197,-1.6489876156298945e-05,10.60529956258161,2.877983160383457,13.979413383966213,#TRUE#,#2012-09-27#,#2050-12-31#,Existing,CIPV,CA_CISO,0.38,1.9,0.59,CA,Bio,,#FALSE#,.38,1.9,10.474432894238458 -56897,Ameresco Keller Canyon,2,2009.0,1.9,1.8,1.8,0.9,LFG,Landfill Gas,OP,IC,7.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,38.003928,-121.934491,Keller_Canyon2,OT IC,True,6.0,6.0,-1.0,4.0,4.0,10.70326,0.19,1.0,2.027986,1.9,10.605263032052607,2.878000147200197,-1.6489876156298945e-05,10.60529956258161,2.877983160383457,13.979413383966213,#TRUE#,#2009-08-01#,#2050-12-31#,Existing,CIPB,CA_CISO,0.38,1.9,0.59,CA,Bio,,#FALSE#,.38,1.9,10.474432894238458 -56898,Ameresco Chiquita Canyon,1,2010.0,4.6,4.0,4.0,1,LFG,Landfill Gas,OP,GT,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.431664,-118.642855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.956832512189518 -56898,Ameresco Chiquita Canyon,2,2010.0,4.6,4.0,4.0,1,LFG,Landfill Gas,OP,GT,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.431664,-118.642855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.956832512189518 -56900,Atlantic City Convention Center,1,2008.0,0.5,0.5,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,RFC,PJM,NJ,39.3639,-74.4408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56900,Atlantic City Convention Center,2,2008.0,0.5,0.5,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,RFC,PJM,NJ,39.3639,-74.4408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56900,Atlantic City Convention Center,3,2008.0,0.5,0.5,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,RFC,PJM,NJ,39.3639,-74.4408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56900,Atlantic City Convention Center,4,2008.0,0.5,0.5,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,RFC,PJM,NJ,39.3639,-74.4408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56901,Altona,1,2009.0,97.5,97.5,97.5,0,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,44.8216,-73.6509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56902,Wethersfield,1,2009.0,126.0,126.0,126.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.6697,-78.2278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56904,Chateaugay,1,2009.0,106.5,106.5,106.5,0,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,44.8917,-74.0299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56905,Great Plains Windpark LLC,1,2009.0,114.0,114.0,114.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.4964,-101.3917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56908,Dave Gates Generating Station,1,2011.0,67.7,44.1,48.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6514032496307238,0.7104874446085672,WECC,NWMT,MT,46.104713,-112.876605,Dave_Gates1,GT Aero_FT8-3 Swiftpac,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,48.0,8.181475703979546,50.98462993111915,0.09384360133052447,3.484727557560926,95.66758670268763,11.365408779333004,#TRUE#,#2011-01-01#,#2041-01-01#,Existing,NWMT,NW_NWMT,6.0,48.0,49.2,MT,NG,Areo,#FALSE#,6,48, -56908,Dave Gates Generating Station,2,2011.0,67.7,44.1,48.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6514032496307238,0.7104874446085672,WECC,NWMT,MT,46.104713,-112.876605,Dave_Gates2,GT Aero_FT8-3 Swiftpac,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,48.0,8.68753776049736,40.93946990750156,0.07535413614115022,4.916162988939078,76.81879785947766,11.244161835282926,#TRUE#,#2011-01-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,6.0,48.0,0.0,MT,NG,Areo,#FALSE#,6,48, -56908,Dave Gates Generating Station,3,2011.0,67.7,44.1,48.1,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6514032496307238,0.7104874446085672,WECC,NWMT,MT,46.104713,-112.876605,Dave_Gates3,GT Aero_FT8-3 Swiftpac,False,1.0,1.0,-1.0,45.0,45.0,1497.902,226.5,1.0,0.45,48.0,8.724495724476517,42.6147460219165,0.07843770456418499,4.798792401415666,79.96229379806896,11.385738917577575,#TRUE#,#2011-01-01#,#2050-12-31#,Existing,NWMT,NW_NWMT,6.0,48.0,0.0,MT,NG,Areo,#FALSE#,6,48, -56909,Gap Pacific Distribution Center,1,2008.0,0.6,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,WECC,CISO,CA,36.806476,-121.7745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56909,Gap Pacific Distribution Center,2,2008.0,0.6,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,WECC,CISO,CA,36.806476,-121.7745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56909,Gap Pacific Distribution Center,3,2008.0,0.6,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,WECC,CISO,CA,36.806476,-121.7745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56909,Gap Pacific Distribution Center,4,2008.0,0.6,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,WECC,CISO,CA,36.806476,-121.7745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56911,Broad Mountain,GEN1,2009.0,5.5,4.1,4.9,1,LFG,Landfill Gas,OP,GT,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7454545454545454,0.890909090909091,RFC,PJM,PA,40.669608,-76.380716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.88554271470655 -56911,Broad Mountain,GEN2,2009.0,5.5,4.1,4.9,1,LFG,Landfill Gas,OP,GT,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7454545454545454,0.890909090909091,RFC,PJM,PA,40.669608,-76.380716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.88554271470655 -56912,Langdon Wind II LLC,GE15,2008.0,40.5,40.5,40.5,2,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,48.6292,-98.3164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56913,Osceola Windpower II,CL25,2008.0,49.6,49.6,49.6,2.5,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.4303,-95.4167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56914,Orange Grove Peaking Facility,CTG1,2010.0,59.0,49.1,49.1,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8322033898305086,0.8322033898305086,WECC,CISO,CA,33.3594,-117.1114,OrangeGrove1,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,45.0,45.0,1497.902,11.0,1.0,0.45,50.0,5.081558896055097,119.81599856981101,0.3071050010313083,-16.89304505807714,495.24694526208503,8.749578496223709,#TRUE#,#2010-06-16#,#2050-12-31#,Existing,CISD,CA_CISO,24.0,50.0,49.0,CA,NG,Industrial,#FALSE#,24,50,10.136086432471412 -56914,Orange Grove Peaking Facility,CTG2,2010.0,59.0,49.1,49.1,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8322033898305086,0.8322033898305086,WECC,CISO,CA,33.3594,-117.1114,OrangeGrove2,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,45.0,45.0,1497.902,11.0,1.0,0.45,50.0,4.404765863780397,137.40496227492739,0.3486050124659692,-20.53933218917937,563.5690280911355,8.611249979432142,#TRUE#,#2010-06-16#,#2050-12-31#,Existing,CISD,CA_CISO,24.0,50.0,49.0,CA,NG,Industrial,#FALSE#,24,50,11.518747913876584 -56915,SAS Solar Farm,1,2008.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.8136,-78.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56915,SAS Solar Farm,2,2008.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.8136,-78.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56915,SAS Solar Farm,3,2010.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.8136,-78.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56915,SAS Solar Farm,4,2010.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.8136,-78.7503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56917,"Imperial Valley Solar, LLC",1,2013.0,101.0,101.0,101.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.671099,-115.587265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56917,"Imperial Valley Solar, LLC",1A,2013.0,64.6,64.6,64.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.671099,-115.587265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56917,"Imperial Valley Solar, LLC",1B,2014.0,34.3,34.3,34.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.671099,-115.587265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56919,FPL Energy Ashtabula Wind LLC,GE15,2008.0,148.5,148.5,148.5,7.4,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1294,-97.8853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56920,Panther Creek Wind Farm I,1,2008.0,142.5,142.5,142.5,0,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.100823,-101.451385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56921,Panther Creek Wind Farm II,1,2008.0,115.5,115.5,115.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.9361,-101.2983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56922,WWRF Solar Plant,EAST,2009.0,0.5,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,WECC,PSCO,CO,39.522904,-107.81341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56922,WWRF Solar Plant,WEST,2009.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,PSCO,CO,39.522904,-107.81341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56923,FPL Energy Crystal Lake Wind LLC,GE15,2008.0,150.0,150.0,150.0,7.5,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.2125,-93.8311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56924,FPL Energy Story Wind LLC,GE15,2008.0,150.0,150.0,150.0,7.5,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.1044,-93.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56925,FPL Energy Crystal Lake Wind II LLC,CL25,2009.0,200.0,199.0,199.0,10,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.995,0.995,MRO,MISO,IA,43.273731,-93.800002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56928,Fairfield University CHP Plant,CHP1,2007.0,4.5,4.5,4.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.1589,-73.2572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.785640983539263 -56929,DeSoto Next Generation Solar Energy,1,2009.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.3232,-81.8019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56930,Space Coast Next Gen Solar Energy,1,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,28.4586,-80.6811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56932,Biotech LS 0836,BLS1,2009.0,1.0,1.0,1.0,0.2,DFO,Petroleum Liquids,SB,IC,5.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,AVA,WA,46.7331,-117.1583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56933,Threemile Canyon,1,2009.0,9.9,9.9,9.9,0.2,WND,Onshore Wind Turbine,OP,WT,7.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.6758,-119.9375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56934,Cassia Wind,1,2009.0,8.4,8.4,8.4,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.8444,-115.0369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56935,Cassia Gulch,1,2009.0,18.9,18.9,18.9,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.8744,-115.0172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56936,Brookfield Power Glen Falls Hydro,GEN1,1944.0,2.4,2.3,2.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,1.0,NPCC,NYIS,NY,43.308505,-73.636584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56936,Brookfield Power Glen Falls Hydro,GEN2,1957.0,2.0,1.9,2.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1957.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,1.0,NPCC,NYIS,NY,43.308505,-73.636584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56936,Brookfield Power Glen Falls Hydro,GEN3,1980.0,2.2,2.1,2.2,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9545454545454545,1.0,NPCC,NYIS,NY,43.308505,-73.636584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56936,Brookfield Power Glen Falls Hydro,GEN4,1980.0,2.4,2.3,2.4,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1980.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9583333333333333,1.0,NPCC,NYIS,NY,43.308505,-73.636584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56936,Brookfield Power Glen Falls Hydro,GEN5,1965.0,2.8,2.7,2.8,1,WAT,Conventional Hydroelectric,OP,HY,1.0,1965.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9642857142857144,1.0,NPCC,NYIS,NY,43.308505,-73.636584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56938,SunEdison LV Sutton Plant Site,NCP1,2008.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.2867,-77.9814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56939,Solar Blythe LLC,1,2009.0,21.0,21.0,21.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.5917,-114.7444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56940,CPV Valley Energy Center,CTG1,2018.0,235.0,180.6,216.8,124.2,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7685106382978724,0.9225531914893618,NPCC,NYIS,NY,41.4122,-74.4378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56940,CPV Valley Energy Center,CTG2,2018.0,235.0,180.6,216.8,124.2,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7685106382978724,0.9225531914893618,NPCC,NYIS,NY,41.4122,-74.4378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56940,CPV Valley Energy Center,STG,2018.0,300.0,290.5,305.2,158.6,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9683333333333334,1.0,NPCC,NYIS,NY,41.4122,-74.4378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56941,Grand Ridge Wind Energy Center,1,2008.0,99.0,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.2269,-88.6836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56941,Grand Ridge Wind Energy Center,2,2009.0,51.0,51.0,51.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.2269,-88.6836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56941,Grand Ridge Wind Energy Center,3,2009.0,49.5,49.5,49.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.2269,-88.6836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56941,Grand Ridge Wind Energy Center,4,2009.0,10.5,10.5,10.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.2269,-88.6836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56942,Forward Wind Energy Center,1,2008.0,99.0,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,43.6161,-88.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56942,Forward Wind Energy Center,2,2009.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,43.6161,-88.4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56944,CM10,PV01,2008.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.7881,-114.9933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56945,High Lonesome Mesa LLC,1,2009.0,100.0,100.0,100.0,1,WND,Onshore Wind Turbine,OP,WT,7.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.466667,-105.9625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56946,Buffalo Bear LLC,1,2008.0,18.9,18.9,18.9,1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.7767,-99.6353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56947,Elkhorn Ridge Wind LLC,1,2009.0,81.0,81.0,81.0,1,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.6978,-97.6189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56948,Coolidge Generation Station,1,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OA,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 01,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,50.0,4.081543858443575,139.32934170195742,0.4033816451051962,-25.664666539927673,667.9490522940947,8.16182266889233,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,26.0,50.0,44.0,AZ,NG,Areo,#FALSE#,26,50, -56948,Coolidge Generation Station,10,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 10,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,50.0,4.471107129492547,120.03231825276261,0.35637624107447685,-21.029051140737515,555.696499200575,8.145749091002214,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,50.0,38.0,AZ,NG,Areo,#FALSE#,24,50, -56948,Coolidge Generation Station,11,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 11,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,50.0,4.515615876683542,121.16435246106187,0.3598445420353407,-21.232714766103793,561.0685226558156,8.2249136747565,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,50.0,38.0,AZ,NG,Areo,#FALSE#,24,50, -56948,Coolidge Generation Station,12,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 12,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,45.0,3.2934951742676195,149.75874756611879,0.5172459662481731,-31.374574430212153,711.253484141339,8.098072509264401,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,45.0,38.0,AZ,NG,Areo,#FALSE#,24,45, -56948,Coolidge Generation Station,2,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 02,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,45.0,3.7451207552065457,175.8545629000148,-1.6852807321850136e-05,3.7462852841953898,175.83494758056494,8.967904568513081,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,26.0,45.0,44.0,AZ,NG,Areo,#FALSE#,26,45, -56948,Coolidge Generation Station,3,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 03,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,45.0,4.239192712188299,124.7138323657517,0.5441133163151507,-32.229642578303256,715.3743125935173,8.24027620202272,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,45.0,44.0,AZ,NG,Areo,#FALSE#,24,45, -56948,Coolidge Generation Station,4,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 04,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,49.0,4.427722534708639,124.10244935518496,0.33712683711935537,-19.38958880098498,526.83726708556,8.261546808301961,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,49.0,44.0,AZ,NG,Areo,#FALSE#,24,49, -56948,Coolidge Generation Station,5,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 05,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,49.0,3.845410566741865,142.1750376180336,0.4543211314797465,-29.24565047039929,724.2857404246286,8.046319764384993,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,26.0,49.0,44.0,AZ,NG,Areo,#FALSE#,26,49, -56948,Coolidge Generation Station,6,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 06,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,49.0,4.305134435953002,123.10483849404592,0.3823314303205129,-22.705786910912174,579.8414547850986,8.108140101574381,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,49.0,44.0,AZ,NG,Areo,#FALSE#,24,49, -56948,Coolidge Generation Station,7,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 07,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,49.0,4.305134435953002,123.10483849404592,0.3823314303205129,-22.705786910912174,579.8414547850986,8.108140101574381,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,49.0,44.0,AZ,NG,Areo,#FALSE#,24,49, -56948,Coolidge Generation Station,8,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 08,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,45.0,3.219169091393867,157.4910765362732,0.5250107689744946,-31.969330218135646,727.4148345326319,8.271815892251672,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,45.0,44.0,AZ,NG,Areo,#FALSE#,24,45, -56948,Coolidge Generation Station,9,2011.0,60.5,43.4,47.7,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173553719008264,0.7884297520661158,WECC,SRP,AZ,32.917399,-111.503327,Coolidge 09,GT LM_LM6000,False,1.0,1.0,-1.0,42.12,42.12,1402.036,212.004,1.0,0.45,45.0,3.982323204285836,127.08139345654772,0.6203743781593175,-37.59786064098066,800.5268711451237,8.059363060882985,#TRUE#,#2011-05-01#,#2050-12-31#,Existing,SRP,SW_SRP,24.0,45.0,38.0,AZ,NG,Areo,#FALSE#,24,45, -56951,Enoree Phase II Landfill Gas Recovery,1,2008.0,1.6,1.5,1.5,1.1,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,DUK,SC,34.8008,-82.1847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.463163385056722 -56951,Enoree Phase II Landfill Gas Recovery,2,2008.0,1.6,1.5,1.5,1.1,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,DUK,SC,34.8008,-82.1847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.463163385056722 -56952,Willow Creek Energy Center,1,2009.0,72.0,72.0,72.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.6533,-119.9914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56953,High Sheldon Wind Farm,1,2009.0,112.5,112.0,112.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9955555555555555,0.9955555555555555,NPCC,NYIS,NY,42.7794,-78.4269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56954,Gastonia Prime Power Park,1,2008.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,SERC,DUK,NC,35.3017,-81.2092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.586644053423786 -56954,Gastonia Prime Power Park,2,2008.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,SERC,DUK,NC,35.3017,-81.2092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.586644053423786 -56954,Gastonia Prime Power Park,3,2012.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3017,-81.2092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.586520749810381 -56954,Gastonia Prime Power Park,4,2012.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3017,-81.2092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.586520749810381 -56954,Gastonia Prime Power Park,5,2013.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3017,-81.2092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.586520749810381 -56954,Gastonia Prime Power Park,6,2013.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3017,-81.2092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.586520749810381 -56956,Bull Creek Wind,001,2008.0,180.0,180.0,180.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.929014,-101.578617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56957,"Pioneer Crossing Energy, LLC",LFG1,2008.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.275,-75.8167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.612258729924855 -56957,"Pioneer Crossing Energy, LLC",LFG2,2008.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.275,-75.8167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.612258729924855 -56957,"Pioneer Crossing Energy, LLC",LFG3,2008.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.275,-75.8167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.612258729924855 -56957,"Pioneer Crossing Energy, LLC",LFG4,2008.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.275,-75.8167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.612258729924855 -56957,"Pioneer Crossing Energy, LLC",LFG5,2013.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.275,-75.8167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.612258729924855 -56958,DANC LFGTE Facility,GEN1,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.82,-75.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.486727021635723 -56958,DANC LFGTE Facility,GEN2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.82,-75.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.486727021635723 -56958,DANC LFGTE Facility,GEN3,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.82,-75.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.486727021635723 -56958,DANC LFGTE Facility,GEN4,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,4.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.82,-75.9175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.486727021635723 -56959,Ocotillo Windpower,OWF,2008.0,58.8,58.8,58.8,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.1217,-101.3853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56960,Happy Jack Windpower Project,HJW01,2008.0,29.4,29.4,29.4,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WAUW,WY,41.139722,-104.997778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56961,Notrees Windpower Hybrid,BATT,2012.0,36.0,36.0,36.0,0,MWH,Batteries,OP,BA,12.0,2012.0, , ,13.6,36.0,36.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.995,-102.828333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56961,Notrees Windpower Hybrid,GE,2009.0,60.0,60.0,60.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.995,-102.828333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56961,Notrees Windpower Hybrid,VESTA,2009.0,92.5,92.5,92.5,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.995,-102.828333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56962,Iredell County LFG Facility,1,2008.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.769281,-80.826001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.293439046899907 -56962,Iredell County LFG Facility,2,2008.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.769281,-80.826001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.293439046899907 -56963,West Deptford Energy Station,E101,2014.0,225.3,210.9,239.7,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9360852197070573,1.0,RFC,PJM,NJ,39.8414,-75.2214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.172788523937548 -56963,West Deptford Energy Station,E102,2014.0,225.3,211.8,239.8,70,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9400798934753661,1.0,RFC,PJM,NJ,39.8414,-75.2214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.2711752470431 -56963,West Deptford Energy Station,STG1,2014.0,304.0,312.6,325.1,135,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,NJ,39.8414,-75.2214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56964,Bayonne Energy Center,GT1,2012.0,64.0,61.1,63.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9546875,0.984375,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.120488941324847 -56964,Bayonne Energy Center,GT10,2018.0,66.0,62.6,65.2,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9484848484848485,0.9878787878787879,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.870003730906525 -56964,Bayonne Energy Center,GT2,2012.0,64.0,60.0,63.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9375,0.984375,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.679396213596661 -56964,Bayonne Energy Center,GT3,2012.0,64.0,59.2,63.0,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.925,0.984375,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.979346381871258 -56964,Bayonne Energy Center,GT4,2012.0,64.0,61.8,62.9,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.965625,0.9828125,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.545688378734425 -56964,Bayonne Energy Center,GT5,2012.0,64.0,60.7,63.1,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9484375,0.9859375,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.040952475351567 -56964,Bayonne Energy Center,GT6,2012.0,64.0,59.5,61.9,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9296875,0.9671875,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.12538427953374 -56964,Bayonne Energy Center,GT7,2012.0,64.0,60.6,63.1,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.946875,0.9859375,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.514073635817297 -56964,Bayonne Energy Center,GT8,2012.0,64.0,61.0,62.9,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.953125,0.9828125,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.307487305581603 -56964,Bayonne Energy Center,GT9,2018.0,66.0,61.3,65.2,40,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9287878787878787,0.9878787878787879,RFC,NYIS,NJ,40.652834,-74.09155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.674288759120964 -56966,QVC Inc,1,2008.0,1.0,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.9222,-77.6731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56966,QVC Inc,2,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.9222,-77.6731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56967,Butter Creek Power LLC,1,2009.0,5.0,5.0,5.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.7017,-119.4222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56968,Big Top LLC,1,2009.0,1.7,1.7,1.7,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.655,-119.4647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56969,Four Corners Windfarm LLC,1,2009.0,8.0,8.0,8.0,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.7286,-119.4181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56970,Four Mile Canyon Windfarm LLC,1,2009.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.6447,-119.4533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56971,Oregon Trail Windfarm LLC,1,2009.0,9.9,9.9,9.9,0.2,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.7122,-119.4044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56972,Pacific Canyon Windfarm LLC,1,2009.0,8.3,8.3,8.3,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.6542,-119.4869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56973,Sand Ranch Windfarm LLC,1,2009.0,9.9,9.9,9.9,0.2,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.6447,-119.4767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56974,Wagon Trail LLC,1,2009.0,3.3,3.3,3.3,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.6531,-119.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56975,Ward Butte Windfarm LLC,1,2009.0,6.6,6.6,6.6,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.6967,-119.4097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56979,Panther Creek Wind Farm Three,1,2009.0,215.5,231.5,231.5,0,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.9925,-101.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56980,Stony Creek Wind Farm LLC,1,2009.0,52.5,52.5,52.5,0,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.0311,-78.8153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56981,Pyron Wind Farm LLC Hybrid,1,2009.0,249.0,249.0,249.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.5886,-100.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56981,Pyron Wind Farm LLC Hybrid,PYRBT,2018.0,9.9,9.9,9.9,0,MWH,Batteries,OP,BA,1.0,2018.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.5886,-100.6728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56982,NGP Blue Mountain I LLC,BM1,2009.0,21.3,13.0,14.3,1,GEO,Geothermal,OP,BT,11.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6103286384976525,0.6713615023474179,WECC,NEVP,NV,40.9961,-118.1414,NGP Blue Mountain 1,GEO,True,6.0,16.0,-1.0,27.86,27.86,0.0,0.0,1.0,3.098312,14.2,-1.7614227140964291,83.37420183417214,-6.520563429595972e-06,-1.7612884556967923,83.37353785694938,6.678998700126,#TRUE#,#2009-11-30#,#2050-12-31#,Existing,SPPC,SW_NVE,3.4,14.2,11.01377,NV,Geo,Binary,#FALSE#,7.1,14.2, -56982,NGP Blue Mountain I LLC,BM2,2009.0,21.3,13.0,14.3,1,GEO,Geothermal,OP,BT,11.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6103286384976525,0.6713615023474179,WECC,NEVP,NV,40.9961,-118.1414,NGP Blue Mountain 2,GEO,True,6.0,16.0,-1.0,5.0,5.0,0.0,0.0,1.0,3.098312,13.8,-1.7614349609592788,81.02580177694699,-6.48739585954436e-06,-1.7613051481678375,81.02517786981203,6.67900405884221,#TRUE#,#2009-11-30#,#2050-12-31#,Existing,SPPC,SW_NVE,6.3,13.8,10.80118,NV,Geo,Binary,#FALSE#,6.9,13.8, -56982,NGP Blue Mountain I LLC,BM3,2009.0,21.3,13.0,14.3,1,GEO,Geothermal,OP,BT,11.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6103286384976525,0.6713615023474179,WECC,NEVP,NV,40.9961,-118.1414,NGP Blue Mountain 3,GEO,True,6.0,16.0,-1.0,0.03,0.03,0.0,0.0,1.0,3.098312,11.7,-1.7614360723804028,68.69580147651618,-6.274821134581894e-06,-1.7613296202801032,68.69536770348019,6.679004546343729,#TRUE#,#2009-11-30#,#2050-12-31#,Existing,SPPC,SW_NVE,4.6,11.7,9.685055,NV,Geo,Binary,#FALSE#,5.85,11.7, -56983,Papalote Creek I LLC,1,2009.0,180.0,180.0,180.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.9386,-97.4586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56984,Inadale Wind Farm LLC Hybrid,1,2009.0,197.0,197.0,197.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.4969,-100.5797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56984,Inadale Wind Farm LLC Hybrid,INABT,2018.0,9.9,9.9,9.9,0,MWH,Batteries,OP,BA,1.0,2018.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.4969,-100.5797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56985,Smoky Hills Wind Project Phase II,SMKII,2008.0,148.5,148.5,148.5,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.892653,-98.168876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56986,Clinton LFGTE Facility,GEN1,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,44.6917,-73.5944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.589624718944854 -56986,Clinton LFGTE Facility,GEN2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,44.6917,-73.5944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.589624718944854 -56986,Clinton LFGTE Facility,GEN3,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,44.6917,-73.5944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.589624718944854 -56986,Clinton LFGTE Facility,GEN4,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,44.6917,-73.5944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.589624718944854 -56987,Hyland LFGTE Facility,GEN1,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.2853,-78.0061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.05744460694809 -56987,Hyland LFGTE Facility,GEN2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.2853,-78.0061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.05744460694809 -56987,Hyland LFGTE Facility,GEN3,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.2853,-78.0061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.05744460694809 -56989,Stetson Wind I,1,2009.0,57.0,57.0,57.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,45.4822,-67.9944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56990,Rollins Wind Project,1,2011.0,60.0,60.0,60.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,45.34598,-68.3802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56991,Stetson Wind II,1,2010.0,25.5,25.5,25.5,0,WND,Onshore Wind Turbine,OP,WT,3.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,45.61498,-67.971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56993,MF Mesa Lane LLC,MESA,2008.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.1483,-74.7772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56994,Grand Meadow,WND67,2008.0,100.5,100.5,100.5,1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.7189,-92.705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56995,Georgetown LFGTE,G1,2010.0,1.1,1.0,1.0,0.6,LFG,Landfill Gas,OS,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,SERC,SC,SC,33.453611,-79.316111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56996,Solar Photovoltaic Project #02,S1A,2009.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.985244,-117.700826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56996,Solar Photovoltaic Project #02,S1B,2009.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.985244,-117.700826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56997,Arrowrock Hydroelectric Project,1,2010.0,7.5,8.0,8.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2010.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.595,-115.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56997,Arrowrock Hydroelectric Project,2,2010.0,7.5,8.0,8.0,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2010.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.595,-115.9233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,4,2012.0,40.0,37.0,37.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.925,0.925,WECC,WACM,CO,38.320833,-104.52639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,43,2012.0,20.0,20.0,20.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,WACM,CO,38.320833,-104.52639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,5,2012.0,40.0,37.0,37.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.925,0.925,WECC,WACM,CO,38.320833,-104.52639,Airport 5-1,GT LM_LM6000,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,40.0,-0.6477260238437706,230.89943177730146,1.5721990235032095,-94.35079198260247,1574.6895055524217,7.412651950428444,#TRUE#,#2016-12-29#,#2050-12-31#,Pre-Const Reg Approval-Review,PSCO,RM_PSCO,20.0,40.0,40.0,CO,NG,Areo,#FALSE#,20,40, -56998,Pueblo Airport Generating Station,53,2012.0,20.0,20.0,20.0,10,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,WACM,CO,38.320833,-104.52639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,6,2012.0,40.0,37.0,37.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.925,0.925,WECC,WACM,CO,38.320833,-104.52639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,7,2012.0,40.0,37.0,37.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.925,0.925,WECC,WACM,CO,38.320833,-104.52639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,CT08,2016.0,40.0,40.0,40.0,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,WACM,CO,38.320833,-104.52639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -56998,Pueblo Airport Generating Station,GT1,2012.0,100.0,90.0,90.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,0.9,WECC,WACM,CO,38.320833,-104.52639,Pueblo Airport 1,GT LMS_LMS100,False,1.0,1.0,-1.0,81.0,81.0,2696.224,407.7,1.0,0.45,47.0,3.6014368321721966,111.29714172770791,0.6071447272017424,-38.437985202921844,812.5597274963653,7.074345484216718,#TRUE#,#2012-01-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,22.0,47.0,90.0,CO,NG,Areo,#FALSE#,24.37,47, -56998,Pueblo Airport Generating Station,GT2,2012.0,100.0,90.0,90.0,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9,0.9,WECC,WACM,CO,38.320833,-104.52639,Pueblo Airport 2,GT LMS_LMS100,False,1.0,1.0,-1.0,81.0,81.0,2696.224,407.7,1.0,0.45,47.0,3.210748441759716,128.94084318343488,0.4676194806082815,-29.167778449147626,669.0493276304153,7.234209987512829,#TRUE#,#2012-01-01#,#2050-12-31#,Existing,PSCO,RM_PSCO,45.0,47.0,90.0,CO,NG,Areo,#FALSE#,24.37,47, -57001,El Cajon Energy Center,GEN1,2010.0,60.5,60.5,60.5,24.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,32.796106,-116.972073,El_Cajon_EC,GT LM_LM6000,False,1.0,1.0,-1.0,44.91,44.91,1494.906,10.978,1.0,0.45,48.0,2.2218915266985957,209.6199995082141,0.6683568352332957,-47.31572382259766,1104.789264531879,8.216337775345183,#TRUE#,#2010-06-16#,#2050-12-31#,Existing,CISD,CA_CISO,28.0,48.0,0.0,CA,NG,Industrial,#FALSE#,28,48, -57002,Oakfield Wind Project,1,2015.0,148.0,148.0,148.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,46.058056,-68.147222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57003,Fulton LFGTE Facility,GEN1,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.0142,-74.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.692317468386605 -57003,Fulton LFGTE Facility,GEN2,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.0142,-74.4739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.692317468386605 -57004,SunEdison Walgreens Moreno Valley,1,2007.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,33.8672,-117.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57005,Mariani Packing Vacaville Solar,1,2008.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,38.40008,-121.96366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57006,Walgreens Woodland Distribution Center,1,2007.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,38.674894,-121.713362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57007,SunEdison Ironwood State Prison,1,2008.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,33.567268,-114.917979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57008,SunEdison Procter & Gamble Oxnard,1,2009.0,1.0,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,WECC,CISO,CA,34.2089,-119.13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57009,Kohls San Bernardino Solar Facility,1,2007.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,34.094695,-117.266831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57010,SunEdison Anheuser Busch Fairfield,1,2008.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,38.232108,-122.092706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57011,Chuckawalla Valley State Prison,1,2006.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2006.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,33.565329,-114.903629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57012,SunEdison Walmart Apple Valley DC,1,2009.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,34.5975,-117.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57014,Waste Management Arden LFGTE,GEN1,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.2058,-80.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11872900007917 -57014,Waste Management Arden LFGTE,GEN2,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.2058,-80.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11872900007917 -57014,Waste Management Arden LFGTE,GEN3,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.2058,-80.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11872900007917 -57014,Waste Management Arden LFGTE,GEN4,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.2058,-80.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11872900007917 -57014,Waste Management Arden LFGTE,GEN5,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.2058,-80.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11872900007917 -57014,Waste Management Arden LFGTE,GEN6,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.2058,-80.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.11872900007917 -57015,Waste Management Columbia Ridge LFGTE,GEN1,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN10,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.8109530729709 -57015,Waste Management Columbia Ridge LFGTE,GEN11,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.8109530729709 -57015,Waste Management Columbia Ridge LFGTE,GEN12,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.8109530729709 -57015,Waste Management Columbia Ridge LFGTE,GEN2,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN3,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN4,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN5,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN6,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN7,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN8,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.810952083308159 -57015,Waste Management Columbia Ridge LFGTE,GEN9,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.5739,-120.2969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.8109530729709 -57016,Waste Management Crossroads LFGTE,GEN1,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,ME,44.7014,-69.8319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.915259387887996 -57016,Waste Management Crossroads LFGTE,GEN2,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,ME,44.7014,-69.8319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.915259387887996 -57017,Spruce Ridge Gas Recovery,GEN1,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,4.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8158,-94.2489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.804999190195973 -57017,Spruce Ridge Gas Recovery,GEN2,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,4.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8158,-94.2489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.804999190195973 -57017,Spruce Ridge Gas Recovery,GEN3,2008.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,4.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8158,-94.2489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.804999190195973 -57017,Spruce Ridge Gas Recovery,GEN4,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.8158,-94.2489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.804999190195973 -57018,Waste Management Middle Peninsula LFGTE,GEN1,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN2,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN3,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN4,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN5,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN6,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN7,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57018,Waste Management Middle Peninsula LFGTE,GEN8,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.519714,-76.624506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.508464754335858 -57019,Riverbend Landfill,GEN1,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.1672,-123.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257864449120895 -57019,Riverbend Landfill,GEN2,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.1672,-123.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257864449120895 -57019,Riverbend Landfill,GEN3,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.1672,-123.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257864449120895 -57019,Riverbend Landfill,GEN4,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.1672,-123.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257864449120895 -57019,Riverbend Landfill,GEN5,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.1672,-123.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257864449120895 -57019,Riverbend Landfill,GEN6,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.1672,-123.2511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.257864449120895 -57020,Westside Landfill Gas Recovery,GEN1,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.724553,-97.537118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.687685704853086 -57020,Westside Landfill Gas Recovery,GEN2,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.724553,-97.537118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.687685704853086 -57022,Waste Management King George LFGTE,GEN1,2010.0,3.3,2.8,3.2,1,LFG,Landfill Gas,OP,GT,5.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8484848484848485,0.9696969696969698,SERC,PJM,VA,38.2747,-77.3081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.807693297973685 -57022,Waste Management King George LFGTE,GEN2,2010.0,3.3,2.8,3.2,1,LFG,Landfill Gas,OP,GT,5.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8484848484848485,0.9696969696969698,SERC,PJM,VA,38.2747,-77.3081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.807693297973685 -57022,Waste Management King George LFGTE,GEN3,2010.0,3.3,2.8,3.2,1,LFG,Landfill Gas,OP,GT,5.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8484848484848485,0.9696969696969698,SERC,PJM,VA,38.2747,-77.3081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.807693297973685 -57022,Waste Management King George LFGTE,GEN4,2011.0,3.3,2.9,3.3,1,LFG,Landfill Gas,OP,GT,6.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8787878787878788,1.0,SERC,PJM,VA,38.2747,-77.3081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.807693297973685 -57023,Waste Management Rolling Meadows LFGTE,GEN1,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57023,Waste Management Rolling Meadows LFGTE,GEN2,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57023,Waste Management Rolling Meadows LFGTE,GEN3,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57023,Waste Management Rolling Meadows LFGTE,GEN4,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57023,Waste Management Rolling Meadows LFGTE,GEN5,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57023,Waste Management Rolling Meadows LFGTE,GEN6,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57023,Waste Management Rolling Meadows LFGTE,GEN7,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,39.174577,-95.731126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.900340186901031 -57024,Waste Management Northern Oaks LFGTE,GEN1,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.9906,-84.8003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.604661325564457 -57025,Waste Management Eco Vista LFGTE,GEN1,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,36.140849,-94.259713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.800279004882585 -57025,Waste Management Eco Vista LFGTE,GEN2,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,36.140849,-94.259713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.800279004882585 -57025,Waste Management Eco Vista LFGTE,GEN3,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,36.140849,-94.259713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.800279004882585 -57025,Waste Management Eco Vista LFGTE,GEN4,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,36.140849,-94.259713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.800279004882585 -57025,Waste Management Eco Vista LFGTE,GEN5,2010.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,AR,36.140849,-94.259713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.800279004882585 -57026,Superior Landfill Gas Recovery,GEN 5,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN1,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN2,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN3,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN4,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN6,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN7,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57026,Superior Landfill Gas Recovery,GEN8,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.0303,-81.2722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.666227354971296 -57027,Canyon Power Plant,CPP1,2011.0,50.0,49.4,49.4,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.988,0.988,WECC,CISO,CA,33.858056,-117.861667,Canyon_Pwr1,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,49.0,6.145387698925006,82.34687292755423,0.2348893573078777,-9.42115732551557,323.4466420998725,8.955292320848654,#TRUE#,#2011-09-16#,#2050-12-31#,Existing,CISC,CA_CISO,20.0,49.0,50.0,CA,NG,Areo,#FALSE#,20,49, -57027,Canyon Power Plant,CPP2,2011.0,50.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.96,0.96,WECC,CISO,CA,33.858056,-117.861667,Canyon_Pwr2,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,49.0,5.941831423647621,87.57063420555083,0.20684791857024715,-7.766353117624229,299.8874455795662,8.929985327384097,#TRUE#,#2011-09-16#,#2050-12-31#,Existing,CISC,CA_CISO,20.0,49.0,50.0,CA,NG,Areo,#FALSE#,20,49, -57027,Canyon Power Plant,CPP3,2011.0,50.0,48.0,48.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.96,0.96,WECC,CISO,CA,33.858056,-117.861667,Canyon_Pwr3,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,49.0,4.7199303427085715,126.39071820182478,0.31278024471534005,-16.692964141906764,473.47286341393067,8.81559058900179,#TRUE#,#2011-07-30#,#2050-12-31#,Existing,CISC,CA_CISO,22.0,49.0,50.0,CA,NG,Areo,#FALSE#,22,49, -57027,Canyon Power Plant,CPP4,2011.0,50.0,49.4,49.4,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.988,0.988,WECC,CISO,CA,33.858056,-117.861667,Canyon_Pwr4,CC Aero_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.55,44.55,1482.923,224.235,1.0,0.45,49.0,4.768499080932492,114.75470978863665,0.30189334529766415,-15.238519578166544,424.62994867338296,8.684249345138358,#TRUE#,#2011-07-30#,#2050-12-31#,Existing,CISC,CA_CISO,20.0,49.0,50.0,CA,NG,Areo,#FALSE#,20,49, -57028,Langley Gulch Power Plant,GTG,2012.0,187.0,221.0,199.9,120,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,IPCO,ID,43.904444,-116.819722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57028,Langley Gulch Power Plant,STG,2012.0,131.5,126.0,99.0,23.7,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9581749049429658,0.752851711026616,WECC,IPCO,ID,43.904444,-116.819722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57029,Cleveland Cnty Generating Facility,1,2012.0,184.0,181.5,185.2,130,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9864130434782609,1.0,SERC,DUK,NC,35.170547,-81.416648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57029,Cleveland Cnty Generating Facility,2,2012.0,184.0,186.2,197.4,130,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,DUK,NC,35.170547,-81.416648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57029,Cleveland Cnty Generating Facility,3,2012.0,184.0,187.1,193.5,130,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,DUK,NC,35.170547,-81.416648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57029,Cleveland Cnty Generating Facility,4,2012.0,184.0,183.1,191.6,130,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9951086956521739,1.0,SERC,DUK,NC,35.170547,-81.416648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57030,Pacolet Diesel Generation Facility,DI 1,2006.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,12.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.8986,-81.7397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.464080998553596 -57030,Pacolet Diesel Generation Facility,DI 2,2006.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,12.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.8986,-81.7397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.464080998553596 -57030,Pacolet Diesel Generation Facility,DI 3,2006.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,12.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.8986,-81.7397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.464080998553596 -57031,Luverne Wind Energy Center,1,2009.0,49.5,49.5,49.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.3272,-97.8975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57032,Ashtabula Wind Energy Center,1,2008.0,48.0,48.0,48.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1244,-97.8961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57033,Langdon Wind Energy Center,1,2007.0,40.5,40.5,40.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,48.6303,-98.3169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57034,Willmar Municipal East Substation,E04,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.1272,-95.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.930485155684288 -57034,Willmar Municipal East Substation,E05,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.1272,-95.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.930485155684288 -57034,Willmar Municipal East Substation,E06,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.1272,-95.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.930485155684288 -57035,Willmar Municipal SW Substation,SW01,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.105,-95.0844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.516706320471709 -57035,Willmar Municipal SW Substation,SW02,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.105,-95.0844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.516706320471709 -57035,Willmar Municipal SW Substation,SW03,2000.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,45.105,-95.0844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.516706320471709 -57036,Southcentral Power Project,1,2013.0,48.8,39.8,48.8,5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8155737704918032,1.0,non-conus,non-conus,AK,61.167417,-149.905304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.008989115499336 -57036,Southcentral Power Project,2,2013.0,48.8,39.8,48.8,5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8155737704918032,1.0,non-conus,non-conus,AK,61.167417,-149.905304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.757755855230739 -57036,Southcentral Power Project,3,2013.0,48.8,39.8,48.8,5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8155737704918032,1.0,non-conus,non-conus,AK,61.167417,-149.905304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.936599602390618 -57036,Southcentral Power Project,4,2013.0,57.5,50.3,57.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8747826086956522,0.991304347826087,non-conus,non-conus,AK,61.167417,-149.905304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57037,Ratcliffe,1A,2014.0,235.5,675.6,734.2,124.6,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,SOCO,MS,32.654722,-88.762222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57037,Ratcliffe,1B,2014.0,235.5,,,124.6,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,SERC,SOCO,MS,32.654722,-88.762222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57037,Ratcliffe,1C,2014.0,369.0,,,89.1,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,,,SERC,SOCO,MS,32.654722,-88.762222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57038,Bison I Wind Energy Center,PHS1,2010.0,36.8,36.8,36.8,0.3,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.98,-101.554722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57038,Bison I Wind Energy Center,PHS2,2012.0,45.0,45.0,45.0,0.3,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.98,-101.554722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57039,McFadden Ridge,1,2009.0,35.2,28.8,28.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8181818181818181,0.8096590909090908,WECC,PACE,WY,41.7244,-105.9906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57040,High Plains,1,2009.0,122.1,99.0,99.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8108108108108109,0.8108108108108109,WECC,PACE,WY,41.675052,-106.011124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57041,Vaca Dixon Solar Station,1,2009.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.4106,-121.9264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57044,Armenia Mountain Wind Farm,1,2009.0,100.5,100.5,100.5,1,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,41.7619,-76.8553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57045,Rolling Thunder Wind Farm Hybrid,1,2009.0,25.0,25.0,25.0,5,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,44.477778,-99.133889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57045,Rolling Thunder Wind Farm Hybrid,2,2018.0,0.8,0.8,0.8,0.1,MWH,Batteries,OP,BA,11.0,2018.0, , ,0.8,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,SD,44.477778,-99.133889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57046,Archer Daniels Midland Columbus,GEN1,2010.0,71.4,61.0,61.0,0,SUB,Conventional Steam Coal,OP,ST,5.0,2010.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8543417366946778,0.8543417366946778,MRO,SWPP,NE,41.416442,-97.286328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57047,Nobles Wind Project,1,2010.0,201.0,200.0,200.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9950248756218906,0.9950248756218906,MRO,MISO,MN,43.7036,-95.7131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57048,Merricourt Wind Energy Center,1,2020.0,150.0,150.0,150.0,2,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.1075,-99.0592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57049,NaturEner Glacier Wind Energy 1,NGW1,2008.0,106.5,104.2,104.2,0,WND,Onshore Wind Turbine,OP,WT,10.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9784037558685447,0.9784037558685447,WECC,GWA,MT,48.51,-112.1097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57050,NaturEner Glacier Wind Energy 2,NGW2,2009.0,103.5,101.4,101.4,0,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9797101449275363,0.9797101449275363,WECC,GWA,MT,48.5333,-112.1847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57051,Noatak,4A,2022.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.570931,-162.965728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.234292302454424 -57051,Noatak,5A,2015.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.570931,-162.965728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.234292302454424 -57051,Noatak,UNIT2,2008.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.570931,-162.965728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.234270570370157 -57052,Savoonga,2A,2019.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.695267,-170.475661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.793224180793501 -57052,Savoonga,UNIT1,2008.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.695267,-170.475661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.793221089708775 -57052,Savoonga,UNIT3,2008.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,7.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.695267,-170.475661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.793220210883026 -57053,Alakanuk,UNIT4,2013.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.6833,-164.6544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57054,Upper Kalskag,UNIT1,2004.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.526858,-160.348128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.009683959088505 -57054,Upper Kalskag,UNIT2,2004.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.526858,-160.348128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.009685860887227 -57054,Upper Kalskag,UNIT3,2004.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.526858,-160.348128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.009677865970456 -57055,Stebbins,1,2014.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.521047,-162.286322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.531232414181204 -57055,Stebbins,2,2014.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.521047,-162.286322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.531232414181204 -57055,Stebbins,3,2014.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.521047,-162.286322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.531232414181204 -57055,Stebbins,4,2014.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.521047,-162.286322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.531232414181204 -57056,Scammon Bay,UNIT1,2004.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.843036,-165.581497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.31808405747332 -57056,Scammon Bay,UNIT2,2001.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.843036,-165.581497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.31808405747332 -57056,Scammon Bay,UNIT3,2007.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.843036,-165.581497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.31808075858807 -57057,Quinhagak,3A,2019.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.747436,-161.910647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.563615653882989 -57057,Quinhagak,UNIT1,1996.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.747436,-161.910647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.563608960656117 -57057,Quinhagak,UNIT2,2002.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,3.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.747436,-161.910647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.563612679114199 -57058,Pilot Station,1,2018.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,4.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.936456,-162.880706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.751982366876375 -57058,Pilot Station,3A,2022.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.936456,-162.880706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.7520067296962 -57058,Pilot Station,UNIT2,2005.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.936456,-162.880706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.751982366876375 -57059,Koyuk,UNIT1,2005.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.932089,-161.167103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.757479691786456 -57059,Koyuk,UNIT2,2005.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.932089,-161.167103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.757481914907808 -57059,Koyuk,UNIT3,2005.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.932089,-161.167103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.757473682712845 -57060,Elim,3A,2019.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.616558,-162.263717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.096853335915874 -57060,Elim,UNIT1,2003.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.616558,-162.263717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.096853335915872 -57060,Elim,UNIT2,2003.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,64.616558,-162.263717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.096853335915872 -57061,St. Michael,4,2015.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,SB,IC,5.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.4775,-162.0383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57062,Gambell,1B,2022.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.777058,-171.712439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.014285454545455 -57062,Gambell,UNIT2,2006.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.777058,-171.712439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.014285454545455 -57062,Gambell,UNIT3,2006.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.777058,-171.712439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.014285227272728 -57063,Shungnak,UNIT1,1991.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,3.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.888114,-157.140206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.481048140936954 -57063,Shungnak,UNIT2,1984.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,11.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.888114,-157.140206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48103552077062 -57063,Shungnak,UNIT3,1998.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.888114,-157.140206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48103552077062 -57063,Shungnak,UNIT4,1991.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,3.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,66.888114,-157.140206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.481029210698848 -57064,Kotlik,UNIT1,2007.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.03215,-163.553106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.406410912267143 -57064,Kotlik,UNIT2,2007.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.03215,-163.553106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.406410912267143 -57064,Kotlik,UNIT3,2007.0,0.4,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.03215,-163.553106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.406417282531661 -57064,Kotlik,UNIT4,2007.0,0.4,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,63.03215,-163.553106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.406417282531661 -57065,Kivalina,UNIT1,1996.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,4.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.726644,-164.538447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.610649238701143 -57065,Kivalina,UNIT2,1977.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,10.0,1977.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.726644,-164.538447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.610639651296433 -57065,Kivalina,UNIT3,1990.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,5.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.726644,-164.538447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.610649238701143 -57065,Kivalina,UNIT4,2004.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.726644,-164.538447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.610647883353346 -57066,Kasigluk,1,2017.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,12.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.8731,-162.5197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.725 -57066,Kasigluk,5A,2004.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.8731,-162.5197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.725 -57066,Kasigluk,UNIT2,2006.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,2.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.8731,-162.5197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.725 -57067,Toksook Bay,1A,2019.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,10.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.530142,-165.108575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.701058333333332 -57067,Toksook Bay,UNIT2,2005.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.530142,-165.108575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.701057777777779 -57067,Toksook Bay,UNIT3,2005.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,OP,IC,8.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,60.530142,-165.108575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.701058333333332 -57068,GenConn Middletown LLC,12,2011.0,60.5,46.9,49.2,19.1,KER,Petroleum Liquids,OP,GT,6.0,2011.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.775206611570248,0.8132231404958679,NPCC,ISNE,CT,41.554444,-72.576666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57068,GenConn Middletown LLC,13,2011.0,60.5,46.9,49.2,19.1,KER,Petroleum Liquids,OP,GT,6.0,2011.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.775206611570248,0.8132231404958679,NPCC,ISNE,CT,41.554444,-72.576666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57068,GenConn Middletown LLC,14,2011.0,60.5,46.9,49.2,19.1,KER,Petroleum Liquids,OP,GT,6.0,2011.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.775206611570248,0.8132231404958679,NPCC,ISNE,CT,41.554444,-72.576666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57068,GenConn Middletown LLC,15,2011.0,60.5,46.9,49.2,19.1,KER,Petroleum Liquids,OP,GT,6.0,2011.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.775206611570248,0.8132231404958679,NPCC,ISNE,CT,41.554444,-72.576666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57069,Twin Cities Hydro LLC,1,1924.0,4.5,4.5,4.5,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.9156,-93.1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57069,Twin Cities Hydro LLC,2,1924.0,4.5,4.5,4.5,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.9156,-93.1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57069,Twin Cities Hydro LLC,3,1924.0,4.5,4.5,4.5,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.9156,-93.1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57069,Twin Cities Hydro LLC,4,1924.0,4.5,4.5,4.5,2,WAT,Conventional Hydroelectric,OP,HY,10.0,1924.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.9156,-93.1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57070,GenConn Devon LLC,15,2010.0,60.5,49.0,50.0,19,KER,Petroleum Liquids,OP,GT,7.0,2010.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8099173553719008,0.8264462809917356,NPCC,ISNE,CT,41.2108,-73.1075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198.53846153846155 -57070,GenConn Devon LLC,16,2010.0,60.5,49.0,50.0,19,KER,Petroleum Liquids,OP,GT,6.0,2010.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8099173553719008,0.8264462809917356,NPCC,ISNE,CT,41.2108,-73.1075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198.53846153846155 -57070,GenConn Devon LLC,17,2010.0,60.5,49.0,50.0,19,KER,Petroleum Liquids,OP,GT,6.0,2010.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8099173553719008,0.8264462809917356,NPCC,ISNE,CT,41.2108,-73.1075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198.53846153846155 -57070,GenConn Devon LLC,18,2010.0,60.5,49.0,50.0,19,KER,Petroleum Liquids,OP,GT,6.0,2010.0, , ,,,,,oil,oil,Kerosene,Combustion (Gas) Turbine,0.8099173553719008,0.8264462809917356,NPCC,ISNE,CT,41.2108,-73.1075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198.53846153846155 -57072,Granite City Works,G-1,2010.0,78.0,78.0,78.0,2,PUR,All Other,OP,ST,6.0,2010.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,MISO,IL,38.6972,-90.1283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57073,Ivanpah 2,ST1,2013.0,133.4,133.4,133.4, ,SUN,Solar Thermal without Energy Storage,OP,ST,12.0,2013.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,35.556111,-115.468611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57074,Ivanpah 1,ST1,2013.0,126.0,126.0,126.0, ,SUN,Solar Thermal without Energy Storage,OP,ST,12.0,2013.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,35.533056,-115.4525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57075,Ivanpah 3,ST1,2013.0,133.4,133.4,133.4, ,SUN,Solar Thermal without Energy Storage,OP,ST,12.0,2013.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,35.580833,-115.4825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57076,South Columbus Water Resource Facility,GEN1,2010.0,1.8,1.8,1.8,1.5,OBG,Other Waste Biomass,OS,IC,7.0,2010.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4119,-84.9761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57076,South Columbus Water Resource Facility,GEN2,2010.0,1.8,1.8,1.8,1.5,OBG,Other Waste Biomass,OS,IC,7.0,2010.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.4119,-84.9761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57078,Steel Winds II,1,2012.0,15.0,15.0,15.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.8072,-78.8617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57079,Milford Wind Corridor I LLC,1,2009.0,203.5,203.5,203.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,LDWP,UT,38.53569,-112.935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57080,Sheffield Wind,1,2011.0,40.0,40.0,40.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,VT,44.67598,-72.1013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57081,Calpine Vineland Solar LLC,CVS1,2009.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.4636,-75.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57081,Calpine Vineland Solar LLC,CVS2,2009.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.4636,-75.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57082,Kaheawa Wind Power II LLC,1,2012.0,21.0,21.0,21.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,20.79467,-156.536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57082,Kaheawa Wind Power II LLC,2,2012.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,6.0,2012.0, , ,20.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,20.79467,-156.536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57083,Bull Hill Wind Project,1,2012.0,34.5,34.5,34.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.723056,-68.2425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57085,Lake Dorothy Hydroelectric Project,1,2009.0,14.3,14.3,14.3,1,WAT,Conventional Hydroelectric,OP,HY,9.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,58.2325,-134.0533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57087,Kahuku Wind Power LLC,1,2011.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,21.68097,-157.975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57090,Campbell Hill Windpower,CHWF,2009.0,99.0,99.0,99.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,43.01455,-105.999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57091,Silver Sage Windpower,SSW01,2009.0,42.0,42.0,42.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WAUW,WY,41.12968,-105.024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57093,Casper Wind Farm,CWGT,2009.0,17.0,17.0,17.0,10,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,42.884703,-106.221442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57094,Streator Cayuga Ridge South,1,2010.0,300.0,300.0,300.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,40.9969,-88.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57095,Penascal II Wind Project LLC,1,2010.0,201.6,201.6,201.6,0,WND,Onshore Wind Turbine,OP,WT,3.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.122529,-97.557372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57096,Star Point Wind Project LLC,1,2010.0,98.7,98.7,98.7,0,WND,Onshore Wind Turbine,OP,WT,2.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.51,-120.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57097,Rugby Wind Power Project,1,2009.0,149.0,149.0,149.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,48.4968,-99.9513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57098,Dry Lake Wind LLC,1,2009.0,63.0,63.0,63.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,SRP,AZ,34.6596,-110.2842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57099,WestRock (WA),STG1,2009.0,64.0,55.0,55.0,15,BLQ,Wood/Wood Waste Biomass,OP,ST,7.0,2009.0,10,2023,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.859375,0.859375,WECC,TPWR,WA,47.266069,-122.428288,SimpsonTacoma,OT ST,True,8.0,5.0,-1.0,1.8,1.8,360.5309,6.4,1.0,2.027986,64.0,13.499999924611302,2.959848345031499e-06,-1.349987697206646e-06,13.500106195367056,-0.0018649111546960584,13.500000009822184,#TRUE#,#2009-07-01#,#2050-12-31#,Existing,BPAT,NW_BPAT,19.2,64.0,64.0,WA,Bio,,#FALSE#,19.2,64, -57100,Santa Maria LFG Power Plant,EN01,2008.0,1.1,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,34.9537,-120.4142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57101,J&A-Santa Maria II LLC,1,2010.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.9494,-120.3803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57102,Whittier LFG Power Plant #1,EN01,2006.0,1.1,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,12.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,33.9716,-118.0481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57102,Whittier LFG Power Plant #1,EN02,2010.0,1.1,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,4.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,33.9716,-118.0481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57103,Newark America Mill,1,2007.0,6.3,3.0,3.0,1,NG,Natural Gas Steam Turbine,OS,ST,2.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.47619047619047616,0.47619047619047616,NPCC,ISNE,MA,42.561007,-71.848805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57106,Mesalands Comm College Wind Turbine,1,2008.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,35.17,-103.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57107,Milford Wind Corridor Stage II LLC,1,2011.0,102.0,102.0,102.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,LDWP,UT,38.58523,-112.931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57108,Blue Canyon Windpower V LLC,GEN 1,2009.0,99.0,99.0,99.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.8217,-98.4525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57109,Meadow Lake Wind Farm LLC,GEN 1,2009.0,199.7,199.7,199.7,1.6,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.6275,-86.935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57110,Blackstone Wind Farm LLC,GEN 1,2009.0,106.0,106.0,106.0,102,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.1508,-88.6233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57111,Lost Lakes Wind Farm LLC,GEN 1,2009.0,100.0,100.0,100.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.3456,-95.3233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57112,Meadow Lake Wind Farm II LLC,GEN1,2010.0,102.3,102.3,102.3,1.5,WND,Onshore Wind Turbine,OP,WT,8.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.6431,-87.0242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57113,Blackstone Wind Farm II LLC,GEN 1,2010.0,200.0,200.0,200.0,198,WND,Onshore Wind Turbine,OP,WT,8.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.1406,-88.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57115,Meadow Lake Wind Farm III LLC,GEN 1,2010.0,103.5,103.5,103.5,1.4,WND,Onshore Wind Turbine,OP,WT,9.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.5986,-87.0194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57116,Quilt Block Wind Farm LLC,GEN 1,2017.0,98.0,98.0,98.0,2,WND,Onshore Wind Turbine,OP,WT,9.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,42.673333,-90.265277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57118,Greensburg,GEN 1,2010.0,12.5,12.5,12.5,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.5499,-99.3444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57119,Koda Biomass Plant,2222,2009.0,23.4,20.3,20.3,8,AB,Other Waste Biomass,OP,ST,5.0,2009.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8675213675213675,0.8675213675213675,MRO,MISO,MN,44.7956,-93.5386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57120,Wilton Wind II LLC,1,2009.0,49.5,49.5,49.5,2.5,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1333,-100.7011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57121,Ashtabula Wind II LLC,1,2009.0,120.0,120.0,120.0,6,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.292437,-97.931692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57122,UCI Facilities Management Central Plant,CTG1,2007.0,13.5,13.5,13.5,7.5,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.6481,-117.8467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.27945041931977 -57122,UCI Facilities Management Central Plant,STG1,2007.0,5.5,5.5,5.5,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,33.6481,-117.8467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57123,Trail Ridge Landfill Gas Recovery,1,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,JEA,FL,30.227953,-82.040881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.323977974680105 -57123,Trail Ridge Landfill Gas Recovery,2,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,JEA,FL,30.227953,-82.040881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.323977974680105 -57123,Trail Ridge Landfill Gas Recovery,3,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,JEA,FL,30.227953,-82.040881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.323977974680105 -57123,Trail Ridge Landfill Gas Recovery,4,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,JEA,FL,30.227953,-82.040881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.323977974680105 -57123,Trail Ridge Landfill Gas Recovery,5,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,JEA,FL,30.227953,-82.040881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.323977974680105 -57123,Trail Ridge Landfill Gas Recovery,6,2008.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,12.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,JEA,FL,30.227953,-82.040881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.323977974680105 -57124,Payne's Ferry,PFWP,2010.0,21.0,21.0,21.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.825278,-115.010833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57125,Camp Reed,CRWP,2010.0,22.5,22.5,22.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.811944,-115.048889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57126,Yahoo Creek,YCWP,2010.0,21.0,21.0,21.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.770833,-114.988611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57128,G2 Energy Marion LLC,357,2009.0,1.6,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,FPC,FL,29.122882,-82.055452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.282176278891388 -57128,G2 Energy Marion LLC,360,2010.0,0.8,0.8,0.8,0.1,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,29.122882,-82.055452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.282174762823011 -57130,Beaver Ridge Wind,BR1,2008.0,4.5,4.5,4.5,0.3,WND,Onshore Wind Turbine,OP,WT,11.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.4967,-69.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57131,Stoney Corners Wind Farm,SCWF1,2009.0,60.0,59.0,59.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9833333333333333,0.9833333333333333,RFC,MISO,MI,44.19,-85.2983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57133,G2 Energy Ostrom Road LLC,359,2009.0,1.9,1.8,1.8,0.1,LFG,Landfill Gas,OP,IC,2.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,0.9473684210526316,WECC,CISO,CA,39.0728,-121.3992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.953940239795807 -57133,G2 Energy Ostrom Road LLC,361,2013.0,1.6,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,8.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,CISO,CA,39.0728,-121.3992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.95393977058515 -57134,OREG 4 Peetz,1,2009.0,4.5,3.0,4.5,3,WH,All Other,OP,OT,3.0,2009.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6666666666666667,1.0,WECC,WACM,CO,40.9925,-102.853056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57135,Big Sky Wind LLC,1,2011.0,239.4,239.4,239.4,1,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.599167,-89.456111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57136,Tuana Springs,1,2010.0,16.8,16.8,16.8,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.8925,-115.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57137,Eurus Combine Hills Turbine Ranch 2,1,2010.0,66.1,66.1,66.1,1,WND,Onshore Wind Turbine,OP,WT,1.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.943,-118.591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57138,Savannah River Site Biomass Cogen,1,2012.0,20.8,19.0,17.0,3,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,2012.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9134615384615384,0.8173076923076923,SERC,SCEG,SC,33.283333,-81.666666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57139,Cambria Wind LLC,1,2009.0,62.5,62.5,62.5,0,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.3042,-78.6908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57141,RV CSU Power LLC,CSU1,2009.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.591099,-105.145904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57151,Beech Ridge Energy LLC,GEN1,2010.0,100.5,100.5,100.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,38.0878,-80.4925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57152,Harvest Wind Project,HWP1,2009.0,98.9,98.9,98.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,45.8131,-120.3475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57153,Langford Wind Power,1,2009.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.085435,-100.67882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57156,Barton Chapel Wind Farm,BC,2009.0,120.0,120.0,120.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.052226,-98.328415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57159,Windy Flats Wind Project,GEN1,2009.0,262.2,262.2,262.2,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,45.7269,-120.8339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57160,White River Lock and Dam 1,LD#1,2007.0,4.3,4.3,4.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,2007.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SPA,AR,35.757401,-91.636887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57161,White River Lock and Dam 2,LD#2,2007.0,3.5,3.5,3.5,1,WAT,Conventional Hydroelectric,OP,HY,3.0,2007.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SPA,AR,35.744036,-91.765418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57162,White River Lock and Dam 3,LD#3,2006.0,4.3,4.3,4.3,1,WAT,Conventional Hydroelectric,OP,HY,8.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,SPA,AR,35.84361,-91.850521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57163,Calabasas Gas to Energy Facility,GEN1,2010.0,4.6,3.3,3.6,3,LFG,Landfill Gas,OP,GT,7.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7173913043478262,0.7826086956521741,WECC,CISO,CA,34.1511,-118.7236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.996704079814716 -57163,Calabasas Gas to Energy Facility,GEN3,2010.0,4.6,3.3,3.6,3,LFG,Landfill Gas,OP,GT,7.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.7173913043478262,0.7826086956521741,WECC,CISO,CA,34.1511,-118.7236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.996704079814716 -57165,Farmers Branch Renewable Energy Facility,GEN1,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.031111,-96.957222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.418118312848174 -57165,Farmers Branch Renewable Energy Facility,GEN2,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.031111,-96.957222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.418118312848174 -57166,Waste Management Lockwood LFGTE,GEN1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,NEVP,NV,39.493315,-119.620304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.342287426387024 -57166,Waste Management Lockwood LFGTE,GEN2,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,NEVP,NV,39.493315,-119.620304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.342287426387024 -57167,Mesquite Creek LFGTE Project,GEN1,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.7372,-98.0228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047685834502104 -57167,Mesquite Creek LFGTE Project,GEN2,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.7372,-98.0228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.047685834502104 -57168,Waste Management Naples LFGTE Project,GEN1,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,26.155833,-81.658055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.114470232088799 -57168,Waste Management Naples LFGTE Project,GEN2,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,26.155833,-81.658055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.114470232088799 -57168,Waste Management Naples LFGTE Project,GEN3,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,26.155833,-81.658055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.114470232088799 -57168,Waste Management Naples LFGTE Project,GEN4,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,26.155833,-81.658055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.114470232088799 -57168,Waste Management Naples LFGTE Project,GEN5,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,26.155833,-81.658055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.114470232088799 -57169,Waste Management Piedmont LFGTE Project,GEN1,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,36.193611,-80.040555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.595363932741959 -57169,Waste Management Piedmont LFGTE Project,GEN2,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,36.193611,-80.040555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.595363932741959 -57169,Waste Management Piedmont LFGTE Project,GEN3,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,3.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,36.193611,-80.040555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.595363932741959 -57170,Suburban Landfill Gas Recovery,GEN1,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57170,Suburban Landfill Gas Recovery,GEN2,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57170,Suburban Landfill Gas Recovery,GEN3,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57170,Suburban Landfill Gas Recovery,GEN4,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57170,Suburban Landfill Gas Recovery,GEN5,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57170,Suburban Landfill Gas Recovery,GEN6,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57170,Suburban Landfill Gas Recovery,GEN7,2011.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.912438,-82.244992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.571953910546648 -57171,Cedar Hills Wind Farm,1,2010.0,19.5,19.5,19.5,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.245556,-103.767222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57172,Glen Ullin Station 6,1,2009.0,5.3,5.3,5.3,0.5,WH,All Other,OP,ST,7.0,2009.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,ND,46.8214,-101.7564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57174,Colorado Highlands Wind,CHW1,2012.0,71.0,71.0,71.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,40.756944,-102.743055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57174,Colorado Highlands Wind,CHW2,2013.0,25.1,25.1,25.1,0,WND,Onshore Wind Turbine,OP,WT,9.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,40.756944,-102.743055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57176,University of Delaware Wind Turbine,FSMW,2010.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,DE,38.782931,-75.164903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57177,Meadow Lake Wind Farm IV,GEN 1,2010.0,105.7,105.7,105.7,0.7,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.6778,-87.0328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57179,HSCo CHP,1,2009.0,4.0,3.5,4.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2009.0,10,2039,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.875,1.0,NPCC,ISNE,CT,41.7614,-72.6686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.817127530976126 -57182,PPL Frey Farm Landfill Wind,1,2011.0,3.2,3.2,3.2,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.959167,-76.455555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57184,Orono Hydro Station,1,2009.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.8803,-68.6647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57184,Orono Hydro Station,2,2009.0,0.6,0.6,0.6,0.2,WAT,Conventional Hydroelectric,OP,HY,3.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.8803,-68.6647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57184,Orono Hydro Station,3,2009.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.8803,-68.6647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57184,Orono Hydro Station,4,2009.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,2009.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.8803,-68.6647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57185,Cricket Valley Energy,U001,2020.0,174.2,143.3,150.3, ,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8226176808266361,0.8628013777267509,NPCC,NYIS,NY,41.676111,-73.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.358655115784156 -57185,Cricket Valley Energy,U002,2020.0,174.2,143.3,150.3, ,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8226176808266361,0.8628013777267509,NPCC,NYIS,NY,41.676111,-73.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.382395217888757 -57185,Cricket Valley Energy,U003,2020.0,174.2,143.3,150.3, ,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8226176808266361,0.8628013777267509,NPCC,NYIS,NY,41.676111,-73.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.204052879606827 -57185,Cricket Valley Energy,U004,2020.0,263.3,195.4,229.1, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7421192556019749,0.870110140524117,NPCC,NYIS,NY,41.676111,-73.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57185,Cricket Valley Energy,U005,2020.0,263.3,195.4,229.1, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7421192556019749,0.870110140524117,NPCC,NYIS,NY,41.676111,-73.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57185,Cricket Valley Energy,U006,2020.0,263.3,195.4,229.1, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7421192556019749,0.870110140524117,NPCC,NYIS,NY,41.676111,-73.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57186,Chautauqua LFGTE Facility,GEN1,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.1989,-79.3186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.519011133310833 -57186,Chautauqua LFGTE Facility,GEN2,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.1989,-79.3186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.519011133310833 -57186,Chautauqua LFGTE Facility,GEN3,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.1989,-79.3186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.519011133310833 -57186,Chautauqua LFGTE Facility,GEN4,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.1989,-79.3186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.519011133310833 -57186,Chautauqua LFGTE Facility,GEN5,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,7.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.1989,-79.3186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.519011133310833 -57186,Chautauqua LFGTE Facility,GEN6,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,7.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.1989,-79.3186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.519011133310833 -57187,Pillar Mountain Wind Project Microgrid,1,2009.0,4.5,4.5,4.5,0,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,57.7869,-152.4406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57187,Pillar Mountain Wind Project Microgrid,2,2012.0,4.5,4.5,4.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,57.7869,-152.4406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57188,Vantage Wind Energy LLC,1,2010.0,90.0,90.0,90.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSEI,WA,46.9547,-120.1819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57189,Lost Creek Wind Energy Facility,LCW,2010.0,150.0,150.0,150.0,150,WND,Onshore Wind Turbine,OP,WT,5.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,AECI,MO,39.981389,-94.518056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57190,Little Quinnesec Falls Hydro Project,UNIT1,1909.0,1.9,1.9,1.9,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7736,-87.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57190,Little Quinnesec Falls Hydro Project,UNIT2,1900.0,0.8,0.8,0.8,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1900.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7736,-87.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57190,Little Quinnesec Falls Hydro Project,UNIT3,1911.0,1.9,1.9,1.9,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,1911.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7736,-87.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57190,Little Quinnesec Falls Hydro Project,UNIT4,1900.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1900.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7736,-87.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57190,Little Quinnesec Falls Hydro Project,UNIT5,1900.0,1.0,1.0,1.0,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1900.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7736,-87.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57190,Little Quinnesec Falls Hydro Project,UNIT6,1916.0,2.4,2.4,2.4,0.4,WAT,Conventional Hydroelectric,OP,HY,12.0,1916.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,WI,45.7736,-87.9894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57191,Exelon Solar Chicago,ECS1,2009.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.6758,-87.6514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57192,Spring Valley Wind Project,WTG,2012.0,150.0,150.0,150.0,150,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NEVP,NV,39.104167,-114.492222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57194,Day County Wind LLC,GE15,2010.0,99.0,99.0,99.0,5,WND,Onshore Wind Turbine,OP,WT,4.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,45.215,-97.9056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57195,Lower Snake River Wind Energy Project,LSR 1,2012.0,342.7,342.7,342.7,0,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,46.524167,-117.821666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57196,"High Point, POLO",1,2007.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.97,-79.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.653846153846153 -57197,Blue Wing Solar Energy Generation,1,2010.0,13.9,13.5,13.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9712230215827338,0.9712230215827338,TRE,ERCO,TX,29.304177,-98.400339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57198,Bent Tree Wind Farm Phase 1,1,2011.0,201.3,201.3,201.3,0.4,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.724596,-93.450429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57199,Glacier Hills,1,2011.0,162.0,162.0,162.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,WI,43.563889,-89.148056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57200,Shelby Solar Energy Generation Facility,1,2010.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.2536,-81.5956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57201,FPL Energy Montezuma Winds LLC,S2.3,2010.0,36.8,36.8,36.8,1.8,WND,Onshore Wind Turbine,OP,WT,11.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.163581,-121.79661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57202,Jacksonville Solar,1,2010.0,12.6,12.5,12.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9920634920634921,0.9920634920634921,SERC,JEA,FL,30.320748,-81.956377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57203,Wyandot Solar Farm,1,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.8795,-83.317072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57204,PSEG Hackettstown,1,2009.0,2.0,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.860629,-74.822935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57205,CM48,PV02,2010.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.7814,-114.9933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57205,CM48,PV03,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.7814,-114.9933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57205,CM48,PV04,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.7814,-114.9933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57205,CM48,PV05,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.7814,-114.9933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57205,CM48,PV06,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.7814,-114.9933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57206,Soldotna,1,2014.0,50.0,44.0,49.0,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.88,0.98,non-conus,non-conus,AK,60.499444,-150.997222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.464645854718919 -57206,Soldotna,3,2022.0,46.5,46.5,46.5,0,MWH,Batteries,OP,BA,1.0,2022.0, , ,93.0,46.5,46.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,AK,60.499444,-150.997222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57207,Thomson Reuters Data Center Bldg ES101,1,2009.0,1.2,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,5.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.33333333333333337,MRO,MISO,MN,44.8244,-93.1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.214285714285714 -57208,Thomson Reuters Data Center Bldg H,1,2007.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8289,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.86861313868613 -57208,Thomson Reuters Data Center Bldg H,2,2007.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8289,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.86861313868613 -57208,Thomson Reuters Data Center Bldg H,3,2007.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8289,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.86861313868613 -57208,Thomson Reuters Data Center Bldg H,4,2007.0,2.0,0.6,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.30000000000000004,0.19999999999999996,MRO,MISO,MN,44.8289,-93.1167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.86861313868613 -57210,Cedar Creek II,1,2011.0,248.3,248.3,248.3,1.4,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.9475,-103.783889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57211,Goshen Phase II,1,2010.0,124.5,124.5,124.5,1.7,WND,Onshore Wind Turbine,OP,WT,9.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,ID,43.467057,-111.836381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57212,Papalote Creek II LLC,1,2010.0,200.1,200.1,200.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.9958,-97.2967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57213,ENEL Salt Wells LLC,101,2009.0,11.8,10.1,14.3,0.1,GEO,Geothermal,OP,BT,3.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8559322033898304,1.0,WECC,NEVP,NV,39.2944,-118.5725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57213,ENEL Salt Wells LLC,201,2009.0,11.8,10.1,14.3,0.1,GEO,Geothermal,OP,BT,3.0,2009.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.8559322033898304,1.0,WECC,NEVP,NV,39.2944,-118.5725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57214,Waverly Community Wind Project,CAN1,2009.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57214,Waverly Community Wind Project,CAN2,2012.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57214,Waverly Community Wind Project,SK4,2001.0,0.9,0.9,0.9,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.7317,-92.4711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57216,Crayola Solar Project,1,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.760545,-75.238452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57216,Crayola Solar Project,2,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.760545,-75.238452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57216,Crayola Solar Project,3,2012.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.760545,-75.238452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57217,Solar Photovoltaic Project #03,S003A,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094279,-117.400113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57217,Solar Photovoltaic Project #03,S003B,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094279,-117.400113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57219,Solar Photovoltaic Project #05,S005A,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086276,-117.230571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57219,Solar Photovoltaic Project #05,S005B,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086276,-117.230571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57219,Solar Photovoltaic Project #05,S005C,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086276,-117.230571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57219,Solar Photovoltaic Project #05,S005D,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086276,-117.230571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57219,Solar Photovoltaic Project #05,S005E,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086276,-117.230571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57220,Solar Photovoltaic Project #06,S006A,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041389,-117.573055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57220,Solar Photovoltaic Project #06,S006B,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041389,-117.573055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57220,Solar Photovoltaic Project #06,S006C,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041389,-117.573055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57220,Solar Photovoltaic Project #06,S006D,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041389,-117.573055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57221,Solar Photovoltaic Project #07,S007A,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086111,-117.2275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57221,Solar Photovoltaic Project #07,S007B,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086111,-117.2275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57221,Solar Photovoltaic Project #07,S007C,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086111,-117.2275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57221,Solar Photovoltaic Project #07,S007D,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086111,-117.2275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57221,Solar Photovoltaic Project #07,S007E,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.086111,-117.2275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57222,Solar Photovoltaic Project #08,S008A,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041944,-117.565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57222,Solar Photovoltaic Project #08,S008B,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041944,-117.565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57222,Solar Photovoltaic Project #08,S008C,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041944,-117.565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57222,Solar Photovoltaic Project #08,S008D,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.041944,-117.565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57223,Solar Photovoltaic Project #09,S009A,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.042778,-117.571666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57223,Solar Photovoltaic Project #09,S009B,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.042778,-117.571666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57224,Solar Photovoltaic Project #10,S010A,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075,-117.516944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57224,Solar Photovoltaic Project #10,S010B,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075,-117.516944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57224,Solar Photovoltaic Project #10,S010C,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075,-117.516944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011E,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011F,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57225,Solar Photovoltaic Project #11,S011G,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.075833,-117.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57226,Solar Photovoltaic Project #12,S012A,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.042222,-117.561666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013E,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013F,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57227,Solar Photovoltaic Project #13,S013G,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083499,-117.23557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015A,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015B,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015C,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015D,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015E,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015F,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57229,Solar Photovoltaic Project #15,S015G,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.079167,-117.516666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57230,Solar Photovoltaic Project #16,S016A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.085556,-117.233611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57230,Solar Photovoltaic Project #16,S016B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.085556,-117.233611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57230,Solar Photovoltaic Project #16,S016C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.085556,-117.233611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017E,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017F,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57231,Solar Photovoltaic Project #17,S017G,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.072778,-117.503333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57232,Solar Photovoltaic Project #18,S018A,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083333,-117.516388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57232,Solar Photovoltaic Project #18,S018B,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083333,-117.516388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57232,Solar Photovoltaic Project #18,S018C,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.083333,-117.516388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57236,Solar Photovoltaic Project #23,S023A,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.080833,-117.520277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57236,Solar Photovoltaic Project #23,S023B,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.080833,-117.520277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57236,Solar Photovoltaic Project #23,S023C,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.080833,-117.520277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57236,Solar Photovoltaic Project #23,S023D,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.080833,-117.520277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57236,Solar Photovoltaic Project #23,S023E,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OS,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.080833,-117.520277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57237,Solar Photovoltaic Project #22,S022A,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.08,-117.2114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57237,Solar Photovoltaic Project #22,S022B,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.08,-117.2114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57237,Solar Photovoltaic Project #22,S022C,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.08,-117.2114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57237,Solar Photovoltaic Project #22,S022D,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.08,-117.2114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57239,Roth Rock Wind Farm LLC,SRRW1,2011.0,40.0,40.0,40.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,MD,39.254444,-79.467222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57240,"Roth Rock North Wind Farm, LLC",SRRNW,2011.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,MD,39.287222,-79.434444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57241,Deerhaven Renewable,1,2013.0,116.1,102.5,102.5,30,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8828596037898364,0.8828596037898364,SERC,GVL,FL,29.7675,-82.396388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57242,Mililani South Solar Farm,1,2022.0,39.0,39.0,39.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.427916,-158.01985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57242,Mililani South Solar Farm,2,2022.0,39.0,39.0,39.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,156.0,39.0,39.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,21.427916,-158.01985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57243,Cimarron Solar Facility,CIM1,2010.0,30.6,30.6,30.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,NM,36.468078,-104.635659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57244,Kit Carson Windpower,KCW,2010.0,51.0,51.0,51.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,39.3383,-102.3533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026E,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026F,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026G,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026H,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026I,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,S026J,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,SO26K,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57245,Solar Photovoltaic Project #26,SO26L,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131214,-117.425324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57246,Solar Photovoltaic Project #27,S027A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131111,-117.421666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57246,Solar Photovoltaic Project #27,S027B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131111,-117.421666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57246,Solar Photovoltaic Project #27,S027C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131111,-117.421666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57246,Solar Photovoltaic Project #27,S027D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.131111,-117.421666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028E,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028F,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57247,Solar Photovoltaic Project #28,S028G,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.094167,-117.274166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57248,Welcome Wind Turbine,WIND1,2008.0,2.1,2.1,2.1,0.3,WND,Onshore Wind Turbine,OP,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.6825,-94.5892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57249,Renewable Energy Services of Ohio,GEN1,2010.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,4.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3362,-82.602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.31813329151785 -57249,Renewable Energy Services of Ohio,GEN2,2014.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.3362,-82.602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.31813448988032 -57250,Earthmovers LFGTE,1,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.622942,-85.975161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500042875481387 -57250,Earthmovers LFGTE,2,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.622942,-85.975161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500042875481387 -57250,Earthmovers LFGTE,3,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.622942,-85.975161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500042875481387 -57250,Earthmovers LFGTE,4,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.622942,-85.975161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500042875481387 -57250,Earthmovers LFGTE,5,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.622942,-85.975161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500042875481387 -57250,Earthmovers LFGTE,6,2010.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IN,41.622942,-85.975161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.500042875481387 -57251,Lakota Wind Wind Farm,LAK1,2009.0,10.5,10.5,10.5,0.2,WND,Onshore Wind Turbine,OP,WT,3.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,IA,43.3839,-94.1475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57252,Iowa Lakes Superior Wind Farm,SUP1,2009.0,10.5,10.5,10.5,0.2,WND,Onshore Wind Turbine,OP,WT,4.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,IA,43.445,-94.980278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57253,MA Military Reservation Wind Project,1,2009.0,1.5,1.5,1.5,1,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.6647,-70.5942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57253,MA Military Reservation Wind Project,2,2011.0,1.5,1.5,1.5,1,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.6647,-70.5942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57253,MA Military Reservation Wind Project,3,2011.0,1.5,1.5,1.5,1,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.6647,-70.5942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57254,Victor Valley CC CPV Solar,1PV,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.48017,-117.257938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57256,PA Solar Park,1,2012.0,10.1,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9900990099009901,0.9900990099009901,RFC,PJM,PA,40.860142,-75.852206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57257,Iowa Lakes Community College Wind Farm,VMN82,2005.0,1.7,1.0,1.0,1,WND,Onshore Wind Turbine,OP,WT,2.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.5882352941176471,0.5882352941176471,MRO,MISO,IA,43.385347,-94.815655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57258,Texico Wind Ranch LP,1,2003.0,0.7,0.7,0.7,0,WND,Onshore Wind Turbine,OS,WT,12.0,2003.0,2,2023,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,SWPP,NM,34.36,-103.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57258,Texico Wind Ranch LP,2,1999.0,0.6,0.6,0.6,0,WND,Onshore Wind Turbine,OS,WT,12.0,1999.0,2,2023,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,SWPP,NM,34.36,-103.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57258,Texico Wind Ranch LP,3,2003.0,0.6,0.6,0.6,0,WND,Onshore Wind Turbine,OS,WT,12.0,2003.0,2,2023,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,SWPP,NM,34.36,-103.0667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57260,Cedro Hill Wind LLC,1,2010.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.576111,-98.905278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57260,Cedro Hill Wind LLC,2,2010.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.576111,-98.905278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57261,Taloga Wind LLC,1,2011.0,130.0,130.0,130.0,1,WND,Onshore Wind Turbine,OP,WT,7.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.855556,-98.968333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57262,Laredo Ridge Wind LLC,1,2011.0,79.9,79.9,79.9,1,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.880278,-98.023889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57263,Little Pringle I Wind Farm,LP1,2010.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OS,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,SWPP,TX,35.964272,-101.540238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57264,Little Pringle II Wind Farm,LP2,2010.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,SWPP,TX,35.924858,-101.541363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57265,Dorchester Solar Site,1,2012.0,1.0,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.300802,-71.047171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57267,Marsh Landing Generating Station,1,2013.0,207.0,191.9,201.6,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9270531400966184,0.9739130434782608,WECC,CISO,CA,38.016944,-121.765,MarshLanding1,GT F_5000F,False,1.0,1.0,-1.0,19.35,19.35,11422.23,42.57,1.0,0.56,210.0,5.054856118258178,686.2094219969188,0.13638997498664462,-40.95401531980351,4493.630057443306,9.202149837167692,#TRUE#,#2013-05-01#,#2050-12-31#,Existing,CIPB,CA_CISO,130.0,210.0,193.5,CA,NG,Industrial,#FALSE#,130,210,7.379467914299506 -57267,Marsh Landing Generating Station,2,2013.0,207.0,191.1,200.7,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9231884057971014,0.9695652173913043,WECC,CISO,CA,38.016944,-121.765,MarshLanding2,GT F_5000F,False,1.0,1.0,-1.0,19.35,19.35,11422.23,42.57,1.0,0.56,210.0,6.013779382054526,555.9547062541103,0.1547349104472979,-46.18352190191955,4875.499552125701,9.37384321582714,#TRUE#,#2013-05-01#,#2050-12-31#,Existing,CIPB,CA_CISO,130.0,210.0,193.5,CA,NG,Industrial,#FALSE#,130,210,19.780707199881178 -57267,Marsh Landing Generating Station,3,2013.0,207.0,190.4,200.3,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9198067632850242,0.967632850241546,WECC,CISO,CA,38.016944,-121.765,MarshLanding3,GT F_5000F,False,1.0,1.0,-1.0,19.35,19.35,11422.23,42.57,1.0,0.56,210.0,7.011848067189359,359.63293179560424,0.17537151307232382,-51.24074132418809,5091.554565112227,9.226378206602202,#TRUE#,#2013-05-01#,#2050-12-31#,Existing,CIPB,CA_CISO,125.0,210.0,193.5,CA,NG,Industrial,#FALSE#,125,210,6.662410991051205 -57267,Marsh Landing Generating Station,4,2013.0,207.0,191.8,202.2,120,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9265700483091788,0.9768115942028985,WECC,CISO,CA,38.016944,-121.765,MarshLanding4,GT F_5000F,False,1.0,1.0,-1.0,19.35,19.35,11422.23,42.57,1.0,0.56,210.0,7.011848067189359,359.63293179560424,0.17537151307232382,-51.24074132418809,5091.554565112227,9.226378206602202,#TRUE#,#2013-05-01#,#2050-12-31#,Existing,CIPB,CA_CISO,125.0,210.0,193.5,CA,NG,Industrial,#FALSE#,125,210,13.296671018528833 -57268,Chestnut Flats Wind Farm,1,2011.0,38.0,38.0,38.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.522846,-78.476921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57269,Haverhill Solar Power Project,1,2010.0,1.0,0.8,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.5,NPCC,ISNE,MA,42.781056,-71.092562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57270,NEDC Solar Site,1,2010.0,1.0,0.8,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.5,NPCC,ISNE,MA,42.105237,-71.702979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57274,Grant County Wind LLC,1,2010.0,21.0,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9523809523809523,0.9523809523809523,MRO,MISO,MN,45.8033,-95.8844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57275,Crescent Dunes Solar Energy,TSE-1,2015.0,125.0,110.0,110.0, ,SUN,Solar Thermal with Energy Storage,OP,CP,11.0,2015.0, , ,,,,nan,solar,solar,Solar,"Energy Storage, Concentrated Solar Power",0.88,0.88,WECC,NEVP,NV,38.238889,-117.36361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57278,Crofton Bluffs Wind LLC,CWET1,2012.0,40.0,40.0,40.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.698333,-97.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57280,Aqua Ingrams Mill,1,2009.0,1.0,0.9,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.7,RFC,PJM,PA,39.9647,-75.6578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57281,OREG 3 Inc,CS13,2010.0,5.0,3.3,5.0,3,WH,All Other,OP,OT,8.0,2010.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),Other,0.6599999999999999,1.0,MRO,MISO,MN,43.76,-94.7514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57282,Alta Wind Energy Center I,AW01,2011.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.033725,-118.353422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57283,Flat Water Wind Farm LLC,WTG1,2010.0,60.0,60.0,60.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.0011,-95.9289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57284,Minonk Wind Farm,1,2012.0,200.0,192.3,192.3,40,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9615,0.9615,RFC,PJM,IL,40.888611,-88.997222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57285,Sandy Ridge Wind Farm,1,2012.0,50.0,48.2,48.2,40,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9640000000000001,0.9640000000000001,RFC,PJM,PA,40.729207,-78.28735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57286,OU Spirit Wind Farm,WT1,2009.0,101.2,101.2,101.2,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.333803,-99.480144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57287,Hardscrabble Wind Power LLC,1,2011.0,74.0,74.0,74.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.112222,-74.878888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57289,Big Blue,BBWP,2012.0,36.0,36.0,36.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.612222,-94.191944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57290,Northern Colorado Wind LLC,GE,2009.0,22.5,22.5,22.5,7,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.9881,-102.8969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57290,Northern Colorado Wind LLC,SIEM,2009.0,151.8,151.8,151.8,0,WND,Onshore Wind Turbine,OP,WT,8.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.9881,-102.8969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57291,Alta Wind Energy Center II,AW02,2011.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.023889,-118.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57292,Alta Wind Energy Center III,AW03,2011.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.023889,-118.295278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57293,Alta Wind Energy Center IV,AW04,2011.0,102.0,102.0,102.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.008611,-118.242222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57294,Alta Wind Energy Center V,AW05,2011.0,168.0,168.0,168.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.008611,-118.242222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57295,Alpine Solar,1,2013.0,66.0,66.0,66.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.7892,-118.5047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57296,Carleton College,GEN1,2009.0,2.3,2.3,2.3,1.1,DFO,Petroleum Liquids,SB,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.461908,-93.156387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.416666666666666 -57296,Carleton College,GEN2,2009.0,2.3,2.3,2.3,1.1,DFO,Petroleum Liquids,SB,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.461908,-93.156387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.416666666666666 -57296,Carleton College,WIND1,2004.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,9.0,2004.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.461908,-93.156387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57296,Carleton College,WIND2,2011.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.461908,-93.156387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,1,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,10,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,11,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,12,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,13,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,14,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,15,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,16,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,17,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,18,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,2,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,3,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,4,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,5,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,6,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,7,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,8,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57298,Cedar Hills,9,2009.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,4.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,47.455833,-122.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57299,Dunlap,1,2010.0,129.5,111.0,111.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.8571428571428572,0.8571428571428572,WECC,PACE,WY,42.043611,-106.160278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57300,Criterion,1,2010.0,70.0,70.0,70.0,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,MD,39.4047,-79.29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57302,Garnet Wind Energy Center,1,2009.0,6.5,6.5,6.5,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9053,-116.5825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57303,Loraine Windpark Project LLC,LWG1,2009.0,75.0,73.5,73.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0,10,2029,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.98,0.98,TRE,ERCO,TX,32.4375,-100.7444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57303,Loraine Windpark Project LLC,LWG2,2009.0,75.0,75.0,75.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.4375,-100.7444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57305,Adelanto Solar Project,1,2012.0,6.8,6.8,6.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.550833,-117.435277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57306,Pine Tree Solar Project,1,2013.0,8.5,8.5,8.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.229635,-118.1957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57308,Maclay Solar Project,1,2017.0,2.0,1.8,1.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.55,WECC,LDWP,CA,34.319722,-118.430833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57309,Pacific Cruise Ship Terminals Berth 93,1,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OS,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.7331,-118.27722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57311,Occidental College Solar Project,1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.1283,-118.206903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57313,Metro Support Services Center Solar,1,2005.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2005.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.0578,-118.229722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57314,Los Angeles Harbor College,1,2010.0,1.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.783102,-118.28493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57315,Cedar Point Wind,1-139,2011.0,252.0,252.0,252.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,39.421787,-103.67814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57317,San Luis Valley Solar Ranch,1,2011.0,35.0,35.0,35.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.694535,-105.927622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57318,"Poseidon Solar, LLC",1,2011.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,33.160601,-111.484011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57319,Big Horn Wind II,1,2011.0,50.0,50.0,50.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,WA,45.9192,-120.3039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57320,Juniper Canyon I Wind Project,1,2011.0,151.2,148.8,148.8,0,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9841269841269843,0.9841269841269843,WECC,AVRN,WA,45.9215,-120.2355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57321,Mayberry Solar LLC,1PV,2011.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.476667,-80.601111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57322,Mont Belvieu Cogeneration Unit,GT01,2009.0,15.0,12.3,15.0,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8200000000000001,1.0,TRE,ERCO,TX,29.838138,-94.900661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.77084516697679 -57324,Luke Solar,PV1,2015.0,15.0,12.8,14.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8533333333333334,0.9333333333333333,WECC,AZPS,AZ,33.526111,-112.37944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57325,FPL Energy Illinois Wind LLC Hybrid,BFT,2014.0,20.0,20.0,20.0,0,MWH,Batteries,OP,BA,11.0,2014.0, , ,8.3,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,IL,41.7678,-88.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57325,FPL Energy Illinois Wind LLC Hybrid,GE1.5,2009.0,217.5,217.5,217.5,10.9,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.7678,-88.8867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57326,Sunray Wind I,WND1,2009.0,49.5,49.5,49.5,3,WND,Onshore Wind Turbine,OP,WT,9.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,SWPP,TX,35.9454,-101.9005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57327,Top of the World Windpower Project,TOTW1,2010.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,42.9258,-105.7872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57330,Kent County Wastewater Treatment Solar,1,2011.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,38.993056,-75.4375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57331,Mojave Solar Project,MSP1,2014.0,140.0,137.5,100.0, ,SUN,Solar Thermal without Energy Storage,OP,ST,12.0,2014.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9821428571428571,0.7142857142857143,WECC,CISO,CA,35.017717,-117.339144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57331,Mojave Solar Project,MSP2,2014.0,140.0,137.5,100.0, ,SUN,Solar Thermal without Energy Storage,OP,ST,12.0,2014.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9821428571428571,0.7142857142857143,WECC,CISO,CA,35.017717,-117.339144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57332,Crossroads Wind Farm,1-98,2012.0,227.5,227.5,227.5,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.035,-98.722222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57333,Leaning Juniper Wind Power II,1,2011.0,199.2,199.2,199.2,0,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.651,-120.2598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57334,DE Solar 10240 Old Dowd Rd,PV01,2010.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.2458,-80.9967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57335,DE Solar 657 Brigham Rd,PV01,2010.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.1053,-79.9692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57336,DE Solar 1725 Drywall Dr,PV01,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.3261,-80.9967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57337,Dover Sun Park,1,2011.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.183611,-75.504444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57338,Roadrunner Solar,1,2011.0,20.2,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9900990099009901,0.9900990099009901,WECC,EPE,NM,31.792778,-106.673333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57340,Panoche Valley Solar Farm,1,2018.0,140.0,140.0,140.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.627,-120.879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57341,Silver Lake Solar Farm,SILV,2010.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.494804,-74.399511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57342,White Oak Energy LLC,1,2011.0,150.0,150.0,150.0,7.5,WND,Onshore Wind Turbine,OP,WT,6.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.590833,-89.046666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57343,Cargill B6 Biofactory,1,2009.0,1.1,1.1,1.1,0.1,OBG,Other Waste Biomass,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,IPCO,ID,42.7167,-114.6167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.414220482713633 -57343,Cargill B6 Biofactory,2,2009.0,1.1,1.1,1.1,0.1,OBG,Other Waste Biomass,OP,IC,12.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,IPCO,ID,42.7167,-114.6167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.414220482713633 -57345,"Kettle Butte Digester, LLC",1,2011.0,0.9,0.9,0.9,0.1,OBG,Other Waste Biomass,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,ID,43.631944,-112.279722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.109170305676855 -57345,"Kettle Butte Digester, LLC",2,2011.0,0.9,0.9,0.9,0.1,OBG,Other Waste Biomass,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,ID,43.631944,-112.279722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.109170305676855 -57346,Elk City LLC,1,2009.0,98.9,98.9,98.9,4.9,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.4642,-99.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57346,Elk City LLC,2,2010.0,99.2,99.2,99.2,5,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.4642,-99.8983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57347,Baldwin Wind LLC,GE1,2010.0,102.4,102.4,102.4,5.1,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1133,-100.7086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57348,CityCenter Central Plant Cogen Units,UNITA,2009.0,4.3,4.0,4.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.930232558139535,0.930232558139535,WECC,NEVP,NV,36.1039,-115.1794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.33118356235416 -57348,CityCenter Central Plant Cogen Units,UNITB,2009.0,4.3,4.0,4.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.930232558139535,0.930232558139535,WECC,NEVP,NV,36.1039,-115.1794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.33118356235416 -57349,Garrison Energy Center LLC,CTG1,2015.0,235.0,186.0,200.0,93,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7914893617021277,0.851063829787234,RFC,PJM,DE,39.187195,-75.499396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57349,Garrison Energy Center LLC,STG2,2015.0,126.0,123.0,123.0,67,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9761904761904762,0.9761904761904762,RFC,PJM,DE,39.187195,-75.499396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57351,Uilk Wind LLC,FA01,2010.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9811,-96.4269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57351,Uilk Wind LLC,FA02,2010.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9811,-96.4269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57351,Uilk Wind LLC,FA03,2010.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,1.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.9811,-96.4269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57352,Trenton Solar Farm,TREN,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.2314,-74.7539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57353,Thermo No 1,2,2013.0,14.0,14.0,14.0,1.8,GEO,Geothermal,OP,BT,4.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,PACE,UT,38.160653,-113.194462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57354,Fox Island Wind LLC,1,2009.0,4.5,4.5,4.5,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.094167,-68.865833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57356,Henrico,1,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,10,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,11,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,12,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,2,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,3,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,4,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,5,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,6,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,7,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,8,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57356,Henrico,9,2010.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.6788,-77.5678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.192832143878125 -57357,Red Mesa Wind LLC,EXIS,2010.0,102.4,102.4,102.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,35.2689,-107.3828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57358,Keenan II Renewable Energy Co LLC,1,2010.0,151.8,151.8,151.8,1,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.276111,-99.490833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57359,Avenal Park,1,2011.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.989722,-120.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57360,Sun City Project LLC,1,2011.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.983056,-120.110277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57361,Sand Drag LLC,1,2011.0,19.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.982778,-120.110277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57362,Morgantown Solar Park,1,2011.0,2.0,1.6,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.7,RFC,PJM,PA,40.152069,-75.865916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57363,510 REPP One,1,2014.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.4972,-77.6058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57364,Siphon Drop Power Plant,1,1987.0,2.2,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,9.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,CA,32.7792,-114.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57364,Siphon Drop Power Plant,2,1987.0,2.2,2.2,2.2,1,WAT,Conventional Hydroelectric,OP,HY,12.0,1987.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WALC,CA,32.7792,-114.6344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57365,"Mas Durham Power, LLC",1A,2010.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OA,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,36.0311,-78.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.700928381962864 -57365,"Mas Durham Power, LLC",1B,2010.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OP,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,36.0311,-78.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.700928381962864 -57366,"Terreva Wayne County RNG, LLC",1A,2010.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.2889,-78.0703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.170826580226905 -57366,"Terreva Wayne County RNG, LLC",1B,2010.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OP,IC,12.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.2889,-78.0703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.170826580226905 -57367,Pocono Solar Project,POCON,2010.0,2.7,2.5,1.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9259259259259258,0.7037037037037036,RFC,PJM,PA,41.061022,-75.514924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57368,Cogentrix of Alamosa,1,2012.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.598579,-105.955832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57369,Questa Solar Facility,QST,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.716944,-105.60944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57372,Bellevue Solar Project,INV-1,2011.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.112222,-123.234722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57373,Agua Caliente Solar Project,AGU1,2012.0,90.7,90.7,90.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,32.9774,-113.4945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57373,Agua Caliente Solar Project,AGU2,2012.0,136.0,136.0,136.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,32.9774,-113.4945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57373,Agua Caliente Solar Project,AGU3,2014.0,121.0,121.0,121.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,32.9774,-113.4945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57374,Lakefield Wind Project LLC,LAKE1,2011.0,205.5,205.5,205.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.675,-95.156666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57375,Adams Wind Generations LLC,AWG,2011.0,20.0,20.0,20.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.916944,-94.735555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57376,Jersey Valley Geothermal Power Plant,OEC 1,2010.0,16.0,10.6,16.0,8.5,GEO,Geothermal,OP,BT,12.0,2010.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6625,1.0,WECC,NEVP,NV,40.1808,-117.4739,Jersey Valley 1,GEO,True,6.0,16.0,-1.0,22.98,22.98,0.0,0.0,1.0,3.098312,18.0,-1.7614335161119734,105.68580237781065,-6.765091340755338e-06,-1.7612569472263258,105.68469547354391,6.679003425090241,#TRUE#,#2011-08-30#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,18.0,4.121,NV,Geo,Binary,#FALSE#,9,18, -57376,Jersey Valley Geothermal Power Plant,OEC 2,2010.0,7.5,5.0,7.5,4,GEO,Geothermal,OP,BT,12.0,2010.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,40.1808,-117.4739,Jersey Valley 2,GEO,True,6.0,16.0,-1.0,1.21,1.21,0.0,0.0,1.0,3.098312,15.0,-1.761426846535443,88.07140194862235,-6.364662294755519e-06,-1.7612884851552515,88.07067955290421,6.679000507896345,#TRUE#,#2011-08-30#,#2050-12-31#,Existing,SPPC,SW_NVE,1.0,15.0,3.779,NV,Geo,Binary,#FALSE#,7.5,15, -57377,Greater Sandhill I,GS-P1,2010.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.685467,-105.8909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57377,Greater Sandhill I,GS-P2,2010.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.685467,-105.8909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57378,AV Solar Ranch One,AVSR,2014.0,253.0,241.5,241.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9545454545454546,0.9545454545454546,WECC,CISO,CA,34.780278,-118.42444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57379,"Poseidon Wind, LLC",1,2010.0,65.1,65.1,65.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AZPS,AZ,34.6062,-110.1734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57380,New England Wind LLC,1,2012.0,28.5,28.5,28.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.7297,-73.0236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57381,Linden Solar Farm,LIND,2010.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.62,-74.2144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57382,Yardville Solar Farm,YARD,2010.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.168811,-74.656719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57383,WEA Texas Bayonne,BAYO,2010.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.6772,-74.0919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57384,Matrix Buildings A&B (Perth Amboy) Solar,MATR,2011.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.534393,-74.269998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57385,Community Wind North LLC,34505,2011.0,30.0,30.0,30.0,1,WND,Onshore Wind Turbine,OP,WT,5.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.245556,-96.406389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57386,Ridgewind,WTG1,2011.0,25.3,25.3,25.3,1,WND,Onshore Wind Turbine,OP,WT,1.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.018889,-96.065277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57387,Ashtabula Wind III LLC,GE16,2010.0,62.4,62.4,62.4,3.1,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.1242,-97.8956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57390,Haleon York RDC Solar Facility,1,2010.0,2.6,1.6,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.6153846153846154,0.3846153846153846,RFC,PJM,PA,40.043856,-76.735474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57392,UASTP I,UATP1,2010.0,1.2,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.096973,-110.8106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57393,Big Sky Dairy Digester,GEN1,2009.0,0.8,0.7,0.7,0.4,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,IPCO,ID,42.8656,-114.7914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.808316321048673 -57393,Big Sky Dairy Digester,GEN2,2009.0,0.8,0.7,0.7,0.4,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,IPCO,ID,42.8656,-114.7914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.808316321048673 -57394,Genesis Solar Energy Project,GEN01,2014.0,125.0,125.0,125.0,14.7,SUN,Solar Thermal without Energy Storage,OP,ST,3.0,2014.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.665,-114.998055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57394,Genesis Solar Energy Project,GEN02,2013.0,125.0,125.0,125.0,14.7,SUN,Solar Thermal without Energy Storage,OP,ST,11.0,2013.0, , ,,,,,solar,solar,Solar,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,33.665,-114.998055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57396,Danielson Wind Farms LLC,DWF,2011.0,20.0,20.0,20.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,45.071667,-94.752222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57397,Dow Jones South Brunswick Solar,PV01,2010.0,2.2,2.2,2.2,0.1,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.369772,-74.58685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57397,Dow Jones South Brunswick Solar,PV02,2011.0,1.4,1.4,1.4,0.1,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.369772,-74.58685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57399,Cannelton Hydroelectric Plant,CG1,2016.0,29.3,29.3,29.3,1,WAT,Conventional Hydroelectric,OP,HY,1.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,KY,37.899722,-86.705833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57399,Cannelton Hydroelectric Plant,CG2,2016.0,29.3,29.3,29.3,1,WAT,Conventional Hydroelectric,OP,HY,3.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,KY,37.899722,-86.705833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57399,Cannelton Hydroelectric Plant,CG3,2016.0,29.3,29.3,29.3,1,WAT,Conventional Hydroelectric,OP,HY,6.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,KY,37.899722,-86.705833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57400,Smithland Hydroelectric Plant,SG1,2017.0,25.3,25.3,25.3,1,WAT,Conventional Hydroelectric,OP,HY,7.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,KY,37.169636,-88.419518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57400,Smithland Hydroelectric Plant,SG2,2017.0,25.3,25.3,25.3,1,WAT,Conventional Hydroelectric,OP,HY,7.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,KY,37.169636,-88.419518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57400,Smithland Hydroelectric Plant,SG3,2017.0,25.3,25.3,25.3,1,WAT,Conventional Hydroelectric,OP,HY,8.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,MISO,KY,37.169636,-88.419518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57401,Willow Island Hydroelectric Plant,WIG1,2016.0,22.0,22.0,22.0,1,WAT,Conventional Hydroelectric,OP,HY,1.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.35776,-81.31795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57401,Willow Island Hydroelectric Plant,WIG2,2016.0,22.0,22.0,22.0,1,WAT,Conventional Hydroelectric,OP,HY,2.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,WV,39.35776,-81.31795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57402,Taylorsville Solar LLC,TAY1,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.909074,-81.152498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57403,Northwest Regional,GEN1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,AZPS,AZ,33.681944,-112.476666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.328943832303144 -57403,Northwest Regional,GEN2,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,AZPS,AZ,33.681944,-112.476666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.328943832303144 -57404,Oneida Herkimer,GEN1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,4.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.462222,-75.418333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.621997519076796 -57404,Oneida Herkimer,GEN2,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.462222,-75.418333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.621997519076796 -57405,Eagle Valley (MI),GEN1,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,7.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7225,-83.263055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.072845857064118 -57405,Eagle Valley (MI),GEN2,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,7.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.7225,-83.263055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.072845857064118 -57408,Prairie Bluff,GEN1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,MS,33.954444,-88.9925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.601008475485463 -57409,West Camden,GEN1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,TN,36.057892,-88.141965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.558482701125468 -57409,West Camden,GEN2,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,TN,36.057892,-88.141965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.558482701125468 -57409,West Camden,GEN3,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,TN,36.057892,-88.141965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.558482701125468 -57410,Geneva,GEN1,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.795,-80.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.221936545482594 -57410,Geneva,GEN2,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.795,-80.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.221936545482594 -57410,Geneva,GEN3,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.795,-80.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.221936545482594 -57410,Geneva,GEN4,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.795,-80.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.221936545482594 -57410,Geneva,GEN5,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.795,-80.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.221936545482594 -57411,Mahoning,GEN1,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.914444,-80.586111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.930227332309652 -57411,Mahoning,GEN2,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.914444,-80.586111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.930227332309652 -57411,Mahoning,GEN3,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.914444,-80.586111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.930227332309652 -57411,Mahoning,GEN4,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.914444,-80.586111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.930227332309652 -57411,Mahoning,GEN5,2013.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.914444,-80.586111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.930227332309652 -57412,Knouse Solar Project 1,1,2010.0,3.0,2.8,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.43333333333333335,RFC,PJM,PA,40.0264,-77.2344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57414,Notus Wind 1,1,2010.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,7.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.6083,-70.6089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57415,Sherbino II,1,2011.0,132.0,132.0,132.0,2,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.772575,-102.505808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57417,Elk Wind Farm,NORD,2011.0,40.8,40.8,40.8,1,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.583889,-91.370833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57421,Gratiot Wind Park,1,2011.0,102.0,102.0,102.0,4,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.433889,-84.4975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57422,Yolo County Solar Project,1,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.659722,-121.7294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57424,Buffalo Ridge II LLC,1,2010.0,210.0,210.0,210.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,MISO,SD,44.5281,-96.6267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57427,Ryegrass Windfarm,1,2012.0,23.0,23.0,23.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.037147,-115.439731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57428,Hammett Hill Windfarm,1,2012.0,23.0,23.0,23.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.006133,-115.463289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57429,Mainline Windfarm,1,2012.0,23.0,23.0,23.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.04835,-115.412886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57430,Desert Meadow Windfarm,1,2012.0,23.0,23.0,23.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.056622,-115.452025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57431,Cold Springs Windfarm,1,2012.0,23.0,23.0,23.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.028056,-115.400469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57432,Oak Glen Wind Farm,1,2011.0,44.0,44.0,44.0,0.4,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.920556,-93.140555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57434,Valley View Transmission LLC,VVT,2011.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.902753,-96.021744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57435,Solar Star North Carolina II LLC,1,2011.0,1.3,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,SERC,PJM,NC,36.425,-77.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57435,Solar Star North Carolina II LLC,2,2011.0,1.3,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,SERC,PJM,NC,36.425,-77.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57435,Solar Star North Carolina II LLC,3,2011.0,1.3,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,SERC,PJM,NC,36.425,-77.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57435,Solar Star North Carolina II LLC,4,2011.0,1.3,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,SERC,PJM,NC,36.425,-77.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57435,Solar Star North Carolina II LLC,5,2011.0,1.3,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,SERC,PJM,NC,36.425,-77.064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57436,Davidson Gas Producers LLC,1,2010.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.841299,-80.183458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.3507912282111 -57437,Juniper Ridge Hydroelectric Project,21-01,2010.0,5.0,3.3,1.1,1,WAT,Conventional Hydroelectric,OP,HY,10.0,2010.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6599999999999999,0.21999999999999997,WECC,PACW,OR,44.142698,-121.269747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57438,"Solar Park Gainesville, LLC",1,2011.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,GVL,FL,29.700407,-82.337828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57439,California Valley Solar Ranch,HPR2,2013.0,32.3,32.3,32.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.323739,-119.91663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57439,California Valley Solar Ranch,HPR2A,2012.0,21.0,21.0,21.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.323739,-119.91663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57439,California Valley Solar Ranch,HPR2B,2013.0,86.5,86.5,86.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.323739,-119.91663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57439,California Valley Solar Ranch,HPR2C,2013.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.323739,-119.91663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57439,California Valley Solar Ranch,HPR2D,2013.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.323739,-119.91663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42A,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42B,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42C,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42D,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42E,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42F,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42G,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42H,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42I,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57441,Solar Photovoltaic Project #42,S42J,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.028056,-119.074722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57442,Silver State Solar Power North,56188,2012.0,52.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9615384615384616,0.9615384615384616,WECC,NEVP,NV,35.793056,-115.35028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57443,Pine Tree Acres WM LFGTE,GEN1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN2,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN3,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN4,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN5,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN6,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN7,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57443,Pine Tree Acres WM LFGTE,GEN8,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.765,-82.745555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.270746188098773 -57444,Two Ponds Windfarm,1,2012.0,23.0,23.0,23.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,43.033781,-115.482592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57446,McGinness Hills,1,2012.0,20.0,13.3,20.0,12,GEO,Geothermal,OP,BT,5.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.665,1.0,WECC,NEVP,NV,39.5911,-116.9119,McGinness Hills 1-1,GEO,True,6.0,16.0,-1.0,10.74,10.74,0.0,0.0,1.0,3.098312,20.0,-1.7614301842335753,117.42860266393625,-6.576988307416265e-06,-1.7612395743066163,117.42727595899791,6.67900196673515,#TRUE#,#2012-06-12#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,20.0,24.5,NV,Geo,Binary,#FALSE#,10,20, -57446,McGinness Hills,2,2012.0,20.0,13.3,20.0,12,GEO,Geothermal,OP,BT,6.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.665,1.0,WECC,NEVP,NV,39.5911,-116.9119,McGinness Hills 1-2,GEO,True,6.0,16.0,-1.0,10.74,10.74,0.0,0.0,1.0,3.098312,20.0,-1.7614301842335753,117.42860266393625,-6.576988307416265e-06,-1.7612395743066163,117.42727595899791,6.67900196673515,#TRUE#,#2012-06-12#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,20.0,24.5,NV,Geo,Binary,#FALSE#,10,20, -57446,McGinness Hills,3,2012.0,12.0,8.0,12.0,6,GEO,Geothermal,OP,BT,6.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.5911,-116.9119,McGinness Hills 1-3,GEO,True,6.0,16.0,-1.0,0.03,0.03,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2012-06-12#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,12.0,14.5,NV,Geo,Binary,#FALSE#,6,12, -57446,McGinness Hills,OEC21,2015.0,18.0,12.0,18.0,12,GEO,Geothermal,OP,BT,2.0,2015.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.5911,-116.9119,McGinness Hills 2-1,GEO,True,6.0,16.0,-1.0,12.51,12.51,0.0,0.0,1.0,3.098312,20.0,-1.7614301842335753,117.42860266393625,-6.576988307416265e-06,-1.7612395743066163,117.42727595899791,6.67900196673515,#TRUE#,#2015-09-01#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,20.0,0.0,NV,Geo,Binary,#FALSE#,4,20, -57446,McGinness Hills,OEC22,2015.0,18.0,12.0,18.0,12,GEO,Geothermal,OP,BT,2.0,2015.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.5911,-116.9119,McGinness Hills 2-2,GEO,True,6.0,16.0,-1.0,12.51,12.51,0.0,0.0,1.0,3.098312,20.0,-1.7614301842335753,117.42860266393625,-6.576988307416265e-06,-1.7612395743066163,117.42727595899791,6.67900196673515,#TRUE#,#2015-09-01#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,20.0,0.0,NV,Geo,Binary,#FALSE#,4,20, -57446,McGinness Hills,OEC23,2015.0,12.0,8.0,12.0,6,GEO,Geothermal,OP,BT,2.0,2015.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.5911,-116.9119,McGinness Hills 2-3,GEO,True,6.0,16.0,-1.0,11.88,11.88,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2015-09-01#,#2050-12-31#,Existing,SPPC,SW_NVE,2.0,12.0,0.0,NV,Geo,Binary,#FALSE#,2.4,12, -57447,Laurel Mountain Hybrid,1,2011.0,97.6,97.6,97.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,39.0072,-79.8866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57447,Laurel Mountain Hybrid,2,2011.0,16.0,16.0,16.0, ,MWH,Batteries,OP,BA,10.0,2011.0, , ,16.0,16.0,16.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,WV,39.0072,-79.8866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57448,Pilesgrove,PILE,2011.0,18.0,17.7,17.7, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9833333333333333,0.9833333333333333,RFC,PJM,NJ,39.613028,-75.309477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57449,Blue Creek Wind Project,1,2011.0,302.0,302.0,302.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.931515,-84.561824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57451,Tuscarora Geothermal Power Plant,G9200,2012.0,16.0,10.7,16.0,9,GEO,Geothermal,OP,BT,1.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,NEVP,NV,41.4828,-116.1511,Tuscarora G9200,GEO,True,6.0,16.0,-1.0,11.13,11.13,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2012-01-11#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,12.0,5.35,NV,Geo,Binary,#FALSE#,6,12, -57451,Tuscarora Geothermal Power Plant,G9250,2012.0,16.0,10.7,16.0,9,GEO,Geothermal,OP,BT,1.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.66875,1.0,WECC,NEVP,NV,41.4828,-116.1511,Tuscarora G9201,GEO,True,6.0,16.0,-1.0,11.13,11.13,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2012-01-11#,#2050-12-31#,Existing,SPPC,SW_NVE,3.0,12.0,5.35,NV,Geo,Binary,#FALSE#,6,12, -57455,Solar Borrego I,SB1,2013.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.298889,-116.35083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57456,San Emidio,SE-U1,2012.0,11.8,6.0,9.0,3,GEO,Geothermal,OP,ST,5.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5084745762711864,0.7627118644067796,WECC,NEVP,NV,40.380556,-119.399722,San Emidio,GEO,True,6.0,16.0,-1.0,0.25,0.25,0.0,0.0,1.0,3.098312,12.4,-1.7614356600790169,72.80580157665977,-6.3552852061792464e-06,-1.761321392061445,72.805308096483,6.679004365496392,#TRUE#,#2024-05-31#,#2050-12-31#,Existing,SPPC,SW_NVE,6.85,12.4,11.2,NV,Geo,Binary,#FALSE#,6.85,12.4, -57457,Seneca Sustainable Energy LLC,1,2011.0,19.8,19.8,19.8,6.5,WDS,Wood/Wood Waste Biomass,OP,ST,4.0,2011.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,OR,44.116306,-123.179007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.215854941518659 -57458,145 Talmadge Solar,1,2011.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.535787,-74.391268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57459,Mountain View IV,1,2012.0,49.0,49.0,49.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.8816,-116.5527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL00,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL01,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL02,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL03,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL04,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL05,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL06,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL07,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL08,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL09,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57460,Caltech Central,CL10,2010.0,0.1,0.1,0.1,0.1,NG,Other Natural Gas,OP,FC,11.0,2010.0,3,2031,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.1358,-118.1267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57461,"Martins Creek Solar NC, LLC",1,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.020415,-84.015676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57462,Napoleon Solar I,1,2011.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.388431,-84.095841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57463,Bishop Hill Energy LLC,1,2012.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.215278,-90.120833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57465,Romark PA Solar,1,2011.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.936111,-76.038888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57466,Blue Ridge Landfill,GEN1,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.961944,-77.561111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.673198207994433 -57466,Blue Ridge Landfill,GEN2,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.961944,-77.561111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.673198207994433 -57466,Blue Ridge Landfill,GEN3,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.961944,-77.561111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.673198207994433 -57466,Blue Ridge Landfill,GEN4,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,1.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.961944,-77.561111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.673198207994433 -57467,Westervelt Moundville Cogen,TG1,2011.0,13.0,8.2,8.2,2,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2011.0,11,2023,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6307692307692307,0.6307692307692307,SERC,SOCO,AL,32.960714,-87.655419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57468,Crystal Lake 3 LLC,GE1.5,2009.0,66.0,66.0,66.0,3.3,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.3192,-93.8836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57469,Garden Wind LLC,GE1.5,2009.0,150.0,150.0,150.0,7.5,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.224436,-93.373625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57470,Marlboro Mill,MG1,2010.0,51.4,34.2,38.0,15,BLQ,Wood/Wood Waste Biomass,OP,ST,9.0,2010.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6653696498054475,0.7392996108949417,SERC,SC,SC,34.605,-79.785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57471,Murray Hill Solar,MHNJ,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.684444,-74.404444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57473,Dartmouth Solar,DSMA,2011.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.715804,-70.974448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57474,Ralls Wind Farm,1,2011.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.661111,-101.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57475,John L. Featherstone Plant,HRP1,2012.0,55.0,49.9,49.9,15,GEO,Geothermal,OP,ST,3.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9072727272727272,0.9072727272727272,WECC,IID,CA,33.204635,-115.573303,Hudson Ranch I,GEO,True,6.0,16.0,-1.0,4.59,4.59,0.0,0.0,1.0,3.098312,64.8,-1.7614292056323793,380.4686090731585,-7.450119056455864e-06,-1.7607291924560693,380.4528109829406,6.679001535346556,#TRUE#,#2015-05-04#,#2050-12-31#,Existing,IID,CA_IID,0.0,64.8,55.0,CA,Geo,Binary,#FALSE#,32.4,64.8, -57481,Chittenden County Solar Partners,01,2011.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.436111,-73.145277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57482,"Sentinel Energy Center, LLC",CTG1,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG1,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.6283360184557365,263.9623247003879,0.2166570066663966,-26.117821351424247,1238.8891469049242,7.8411715454386295,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,46.0,96.0,87.5,CA,NG,Industrial,#FALSE#,46,96, -57482,"Sentinel Energy Center, LLC",CTG2,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG2,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.4770014008184806,269.8474512549556,0.19851239357683637,-23.77798415792748,1163.126885084588,7.783763476819364,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,46.0,96.0,87.5,CA,NG,Industrial,#FALSE#,46,96, -57482,"Sentinel Energy Center, LLC",CTG3,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG3,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.8613154385570008,259.02877466928595,0.24490924019933102,-30.29964359625425,1402.250777903491,7.8993013396360805,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,96.0,87.5,CA,NG,Industrial,#FALSE#,48,96, -57482,"Sentinel Energy Center, LLC",CTG4,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG4,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,4.388771206113114,228.318360486315,0.25875374674516943,-31.703278043479457,1436.1657289754874,7.948014080879912,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,96.0,87.5,CA,NG,Industrial,#FALSE#,48,96, -57482,"Sentinel Energy Center, LLC",CTG5,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG5,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.4121152163271566,278.76787546327665,0.2434361878193824,-30.543387221031622,1415.1145377641485,7.7578129181815685,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,48.0,96.0,87.5,CA,NG,Industrial,#FALSE#,48,96, -57482,"Sentinel Energy Center, LLC",CTG6,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG6,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.8090993793629133,252.21217961871497,0.21808354559057327,-26.13293047146726,1233.5592592188045,7.834402732186247,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,46.0,96.0,87.5,CA,NG,Industrial,#FALSE#,46,96, -57482,"Sentinel Energy Center, LLC",CTG7,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG7,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.590743617581262,262.60271155682085,0.23074106310279546,-28.089121044330604,1300.9073865266273,7.78187973514778,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,46.0,96.0,87.5,CA,NG,Industrial,#FALSE#,46,96, -57482,"Sentinel Energy Center, LLC",CTG8,2013.0,100.0,100.0,100.0,45,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.934167,-116.571388,SentinelEnergyCTG8,GT LMS_LMS100,False,1.0,1.0,-1.0,90.0,90.0,2995.804,22.0,1.0,0.45,96.0,3.1913366018918925,293.4873613429143,0.2426917347967823,-31.191334965536125,1467.5645356254488,7.663819872477555,#TRUE#,#2013-05-06#,#2050-12-31#,Existing,CISC,CA_CISO,50.0,96.0,87.5,CA,NG,Industrial,#FALSE#,50,96, -57483,Mariposa Energy Project,CTG1,2012.0,49.9,49.9,49.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,37.789167,-121.601944,Mariposa1,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,50.0,5.929217625581037,90.37301400607016,0.3431742548486652,-19.377172524570316,540.0926933567322,8.575803689801107,#TRUE#,#2012-10-01#,#2050-12-31#,Existing,CIPV,CA_CISO,26.0,50.0,48.0,CA,NG,Areo,#FALSE#,26,50, -57483,Mariposa Energy Project,CTG2,2012.0,49.9,49.9,49.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,37.789167,-121.601944,Mariposa2,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,50.0,6.095480354427546,87.93900330737202,0.35042245472458167,-19.745408808587996,547.157289691776,8.670786082739992,#TRUE#,#2012-10-01#,#2050-12-31#,Existing,CIPV,CA_CISO,26.0,50.0,48.0,CA,NG,Areo,#FALSE#,26,50, -57483,Mariposa Energy Project,CTG3,2012.0,49.9,49.9,49.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,37.789167,-121.601944,Mariposa3,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,50.0,6.019758318505656,86.37763075969355,0.339951310800239,-19.04896584788763,531.8737620408901,8.549339038405037,#TRUE#,#2012-10-01#,#2050-12-31#,Existing,CIPV,CA_CISO,26.0,50.0,48.0,CA,NG,Areo,#FALSE#,26,50, -57483,Mariposa Energy Project,CTG4,2012.0,49.9,49.9,49.9,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,37.789167,-121.601944,Mariposa4,GT LM_LM6000 PC Sprint,False,1.0,1.0,-1.0,44.91,44.91,1494.906,226.047,1.0,0.45,50.0,5.351615639437945,111.48646188386147,0.3253196730386296,-18.63814096773707,537.8082710035633,8.61651190981365,#TRUE#,#2012-10-01#,#2050-12-31#,Existing,CIPV,CA_CISO,26.0,50.0,48.0,CA,NG,Areo,#FALSE#,26,50, -57484,Manzana Wind LLC,GEN1,2012.0,189.0,189.0,189.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.9349,-118.4612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57485,Flemington Solar,FSNJ,2011.0,8.0,7.9,7.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9875,0.9875,RFC,PJM,NJ,40.483888,-74.856666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57486,Frenchtown I Solar,F1NJ,2012.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.521667,-75.012222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57487,Frenchtown II Solar,F2NJ,2011.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.514444,-74.976944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57488,Lebanon Solar,LSNJ,2011.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.675833,-74.912222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57489,Oak Grove Power Producers,G1,2010.0,1.6,1.5,1.5,1.1,LFG,Landfill Gas,OP,IC,3.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,KS,37.6297,-94.6414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.120811843139085 -57489,Oak Grove Power Producers,G2,2013.0,2.0,1.9,1.9,1.1,LFG,Landfill Gas,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,MRO,SWPP,KS,37.6297,-94.6414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.120810631871773 -57490,Imperial Solar Energy Center South,56819,2013.0,128.9,128.9,128.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.663289,-115.658284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57491,Imperial Solar Energy Center West,56819,2016.0,148.7,148.7,148.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.772225,-115.779311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57493,Settlers Trail Wind Farm LLC,STWF,2011.0,150.4,150.4,150.4,0,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.694444,-87.570833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57494,Masser Farms Realty Solar,MFRS,2011.0,1.0,1.0,0.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7,RFC,PJM,PA,40.640556,-76.605417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57496,Tieton Dam Hydro Electric Project,UNIT1,2006.0,6.9,6.9,6.9,2,WAT,Conventional Hydroelectric,OP,HY,9.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,46.658,-121.1287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57496,Tieton Dam Hydro Electric Project,UNIT2,2006.0,6.9,6.9,6.9,2,WAT,Conventional Hydroelectric,OP,HY,9.0,2006.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,WA,46.658,-121.1287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57497,Stroud Solar Station,1,2011.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.531389,-120.106944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57498,Five Points Solar Station,1,2011.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.400278,-120.103333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57499,Westside Solar Station,1,2011.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.378726,-120.124898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57500,Laurel Wind Farm,LWF,2011.0,123.4,119.6,119.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9692058346839545,0.9692058346839545,MRO,MISO,IA,41.883333,-92.933333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57501,Rolling Hills Wind Farm,RHWF,2011.0,484.2,443.2,443.2,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9153242461792648,0.9153242461792648,MRO,MISO,IA,41.1973,-94.7744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57502,Perdido,1,2010.0,1.6,1.5,1.5,1,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,SOCO,FL,30.57,-87.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.88197175545227 -57502,Perdido,2,2010.0,1.6,1.5,1.5,1,LFG,Landfill Gas,OP,IC,10.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,SOCO,FL,30.57,-87.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.88197175545227 -57504,TECO CHP-1,CHP1,2010.0,48.0,47.0,47.0,22,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9791666666666666,0.9791666666666666,TRE,ERCO,TX,29.703454,-95.398317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.273455065033305 -57505,Monroe Generating Station,1,2010.0,15.0,12.0,15.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,SERC,DUK,NC,34.985814,-80.506037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -57505,Monroe Generating Station,2,2010.0,15.0,12.0,15.0,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,SERC,DUK,NC,34.985814,-80.506037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -57506,FRV SI Transport Solar LP,SEIM,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.4869,-121.3911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57507,RV CSU Power II LLC,CSUII,2010.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.592841,-105.147097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57509,Carson Solar I,1,2007.0,2.0,1.5,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.7,WECC,WACM,CO,38.7228,-104.7817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57514,Ocotillo Express LLC,WTG,2012.0,265.4,265.4,265.4,265.4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,32.752778,-116.044722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57515,Walnut Creek Energy Park,GT1,2013.0,100.0,97.0,97.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.97,0.97,WECC,CISO,CA,34.008709,-117.944864,WalnutCreekEPark1,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,21.34,1.0,0.45,104.0,4.067878114405584,234.9534134368426,0.20618802420967253,-27.088741476416782,1364.522501125495,7.4488181373497895,#TRUE#,#2013-03-21#,#2050-12-31#,Existing,CISC,CA_CISO,52.0,104.0,96.0,CA,NG,Industrial,#FALSE#,52,104,11.030675814308756 -57515,Walnut Creek Energy Park,GT2,2013.0,100.0,97.0,97.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.97,0.97,WECC,CISO,CA,34.008709,-117.944864,WalnutCreekEPark2,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,21.34,1.0,0.45,104.0,3.6093606665298044,269.47492465899114,0.18417264229353297,-24.22056142071157,1278.4360436017653,7.4870594180925805,#TRUE#,#2013-03-21#,#2050-12-31#,Existing,CISC,CA_CISO,52.0,104.0,96.0,CA,NG,Industrial,#FALSE#,52,104,6.94224420933738 -57515,Walnut Creek Energy Park,GT3,2013.0,100.0,97.0,97.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.97,0.97,WECC,CISO,CA,34.008709,-117.944864,WalnutCreekEPark3,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,21.34,1.0,0.45,104.0,3.618222995981751,266.30924640712726,0.1960635041433262,-26.008500309626367,1340.4125536407873,7.4503681710080985,#TRUE#,#2013-03-21#,#2050-12-31#,Existing,CISC,CA_CISO,52.0,104.0,96.0,CA,NG,Industrial,#FALSE#,52,104,10.328273334308431 -57515,Walnut Creek Energy Park,GT4,2013.0,100.0,97.0,97.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.97,0.97,WECC,CISO,CA,34.008709,-117.944864,WalnutCreekEPark4,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,21.34,1.0,0.45,104.0,3.618222995981751,266.30924640712726,0.1960635041433262,-26.008500309626367,1340.4125536407873,7.4503681710080985,#TRUE#,#2013-03-29#,#2050-12-31#,Existing,CISC,CA_CISO,52.0,104.0,96.0,CA,NG,Industrial,#FALSE#,52,104,8.911681780692238 -57515,Walnut Creek Energy Park,GT5,2013.0,100.0,97.0,97.0,48,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.97,0.97,WECC,CISO,CA,34.008709,-117.944864,WalnutCreekEPark5,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,21.34,1.0,0.45,104.0,3.405045572639464,287.22769902416843,0.1825122871130282,-24.173982264621422,1287.0927037486904,7.5382037554637495,#TRUE#,#2013-04-30#,#2050-12-31#,Existing,CISC,CA_CISO,52.0,104.0,96.0,CA,NG,Industrial,#FALSE#,52,104,8.635658394581704 -57517,DeWind Frisco,FRISC,2012.0,20.0,20.0,20.0,0,WND,Onshore Wind Turbine,OS,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.498514,-101.605278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57519,Trexlertown Solar Array North and South,GEN1,2011.0,1.9,1.9,1.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.736842105263158,RFC,PJM,PA,40.556211,-75.593873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57520,Trinity Hills,1,2011.0,198.0,198.0,198.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.383611,-98.711944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57521,Giffen,1,2012.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.530278,-120.316111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57522,Cantua Solar Station,1,2012.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.425085,-120.343543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57523,Huron Solar Station,1,2012.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.181389,-120.030555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57524,Roger Road WWTP,1,2010.0,1.1,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8181818181818181,0.8181818181818181,WECC,TEPC,AZ,32.2894,-111.0331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57525,Kapaa Photovoltaic Project,KSPV,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,22.080416,-159.331599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57526,North Hurlburt Wind LLC,NORTH,2012.0,265.0,265.0,265.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.731611,-120.083466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57529,Kawailoa Wind,1,2012.0,69.0,69.0,69.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,21.610278,-158.040833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57530,Palouse,1,2012.0,105.3,105.3,105.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVA,WA,47.155833,-117.364444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57531,Bingham Wind,1,2016.0,186.0,186.0,186.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,45.103333,-69.761944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57534,Solar Photovoltaic Project #32,S32A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.031667,-117.571944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57534,Solar Photovoltaic Project #32,S32B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.031667,-117.571944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57534,Solar Photovoltaic Project #32,S32C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.031667,-117.571944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57535,Solar Photovoltaic Project #33,S33A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.0325,-117.569166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57535,Solar Photovoltaic Project #33,S33B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.0325,-117.569166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57544,Cal State Univ San Bernardino FC01,FC01,2013.0,1.4,1.4,1.4,1.4,NG,Other Natural Gas,OS,FC,9.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.185833,-117.324167,CSUSB fuel cell,OT GT,False,1.0,1.0,-1.0,9.9,9.9,329.5385,49.83,1.0,0.7435951,1.4,-149.3380001196679,215.57900012766876,-3.8016802065270696e-05,-149.33791168760666,215.57894952362128,35.117758810351,#TRUE#,#2013-09-13#,#2050-12-31#,Existing,CISC,CA_CISO,1.0,1.4,0.0,CA,NG,Areo,#FALSE#,1,1.4, -57547,Winona County Wind LLC,WCW,2011.0,1.5,0.5,0.4,0,WND,Onshore Wind Turbine,OS,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.33333333333333337,0.2666666666666666,MRO,MISO,MN,44.1125,-91.924722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57549,South Hurlburt Wind LLC,SOUTH,2012.0,290.0,290.0,290.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.706262,-120.079987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57550,Horseshoe Bend Wind LLC,HORSE,2012.0,290.0,290.0,290.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.58555,-120.008249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57551,Garland Canal Power Plant,MAIN,1983.0,2.9,2.6,2.0,1.2,WAT,Conventional Hydroelectric,OP,HY,9.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.896551724137931,0.6896551724137931,WECC,PACE,WY,44.7264,-108.8644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57553,Shirley Wind,1,2010.0,20.0,20.0,20.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,44.3481,-87.9278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57554,AFA Solar Farm,AFA1,2011.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,38.957901,-104.806627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57555,Pio Pico Energy Center,CTG1,2016.0,131.8,106.0,111.3,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8042488619119879,0.8444613050075871,WECC,CISO,CA,32.573889,-116.917777,PioPicoEnergyCenter1,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,439.41,1.0,0.45,120.0,5.089304822842902,193.22333598287184,0.09960828831595256,-11.817539377604575,872.2977489677327,7.500977641409883,#TRUE#,#2016-11-03#,#2050-12-31#,Future-Planned,CISD,CA_CISO,52.0,120.0,105.0,CA,NG,Areo,#FALSE#,52,120,8.248212865070865 -57555,Pio Pico Energy Center,CTG2,2016.0,131.8,106.0,112.7,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8042488619119879,0.8550834597875568,WECC,CISO,CA,32.573889,-116.917777,PioPicoEnergyCenter2,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,439.41,1.0,0.45,120.0,5.338597728671928,178.3597269484378,0.11686442536733063,-14.859466437380838,1009.9845118564057,7.508904603885024,#TRUE#,#2016-11-03#,#2050-12-31#,Future-Planned,CISD,CA_CISO,55.0,120.0,105.0,CA,NG,Areo,#FALSE#,55,120,11.271046274494823 -57555,Pio Pico Energy Center,CTG3,2016.0,131.8,106.0,112.0,50,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8042488619119879,0.849772382397572,WECC,CISO,CA,32.573889,-116.917777,PioPicoEnergyCenter3,GT LMS_LMS100,False,1.0,1.0,-1.0,87.3009,87.3009,2905.96,439.41,1.0,0.45,115.0,4.817103935967881,210.269613140961,0.12056209694846828,-15.437327467334313,1024.827250054005,7.4355566757083205,#TRUE#,#2016-11-03#,#2050-12-31#,Future-Planned,CISD,CA_CISO,55.0,115.0,105.0,CA,NG,Areo,#FALSE#,55,115,9.880399355145062 -57556,La Senita,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,35.241675,-114.004591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57557,Sunnyvale City of WPCP,S-14,1997.0,0.8,0.8,0.8,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4194,-122.0153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.88336881949373 -57557,Sunnyvale City of WPCP,S-15,1997.0,0.8,0.8,0.8,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4194,-122.0153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.88336881949373 -57559,Sunset Reservoir North Basin,1,2010.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.750894,-122.481758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57560,Chino Solar Valley,PV1,2012.0,19.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,34.71843,-112.42899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57561,Cotton Center Solar Hybrid,PV1,2011.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.034722,-112.661667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57562,Paloma Solar Hybrid,PV1,2011.0,17.6,17.6,17.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.021111,-112.661389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57563,Hyder Solar Hybrid,PV1,2011.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.02566,-113.34397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57563,Hyder Solar Hybrid,PV2,2012.0,15.0,14.0,14.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333333,0.9333333333333333,WECC,AZPS,AZ,33.02566,-113.34397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57564,Algonquin Power Sanger LLC,CTG,2007.0,49.0,49.0,49.0,15,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2007.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,36.6842,-119.5522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57564,Algonquin Power Sanger LLC,STG2,2012.0,12.5,12.5,12.5,3,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,36.6842,-119.5522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57565,"RP-Orlando, LLC",1,2011.0,5.1,5.1,5.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.488889,-81.182222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57567,Albuquerque Solar Energy Center,ASEC1,2011.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.168957,-106.60005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57568,Record Hill Wind,RHW,2012.0,50.6,50.6,50.6,0,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.633611,-70.627777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57570,Cooper Farms VW Project,WTG,2012.0,4.5,4.5,4.5,4.5,WND,Onshore Wind Turbine,OP,WT,3.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.905833,-84.570277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57571,Los Lunas Solar Energy Center,LLSEC,2011.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,34.833136,-106.772413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57571,Los Lunas Solar Energy Center,LMS2,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,34.833136,-106.772413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57573,CCCSD Wastewater Treatment Plnt,S188,1995.0,3.5,3.0,3.5,1.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,WECC,CISO,CA,37.9978,-122.0697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.511952473006742 -57574,ETS Ewing Solar Facility,ETS1,2010.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.281801,-74.793638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57575,Deming Solar Energy Center,DSEC,2011.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,32.165833,-107.75056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57575,Deming Solar Energy Center,HON2,2013.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,32.165833,-107.75056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57576,Las Vegas Solar Energy Center,LVSEC,2011.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.643333,-105.206667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57577,Alamogordo Solar Energy Center,AGSEC,2011.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,WECC,PNM,NM,32.86571,-105.999775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57578,PaTu Wind Farm LLC,PATU,2010.0,9.0,9.0,9.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.613061,-120.616906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57579,Robert O Schulz Solar Farm,1,2008.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.8583,-120.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57579,Robert O Schulz Solar Farm,2,2009.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.8583,-120.8917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57580,Broadridge Cogen,CG1,2008.0,2.1,2.1,2.1,0.5,NG,Natural Gas Internal Combustion Engine,OA,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.6183,-121.0564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.999845189256135 -57580,Broadridge Cogen,CG2,2008.0,2.1,2.1,2.1,0.5,NG,Natural Gas Internal Combustion Engine,OA,IC,5.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.6183,-121.0564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.999845189256135 -57580,Broadridge Cogen,PV1,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.6183,-121.0564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57580,Broadridge Cogen,PV2,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.6183,-121.0564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57581,Allenwood,1,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.151111,-76.917777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.056055646481179 -57581,Allenwood,2,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.151111,-76.917777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.056055646481179 -57582,Lycoming County,1,2012.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,PA,41.151111,-76.917777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.458785737230967 -57582,Lycoming County,2,2012.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,PA,41.151111,-76.917777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.458785737230967 -57583,Battery Energy Storage System,BESS,2003.0,40.0,40.0,40.0,0,MWH,Batteries,OP,BA,12.0,2003.0, , ,11.0,4.0,40.0,NIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,AK,64.8167,-147.725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57584,University of California San Diego Hybrid,BS1,2015.0,2.5,2.5,2.5,0.5,MWH,Batteries,OP,BA,12.0,2015.0, , ,5.0,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.8747,-117.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57584,University of California San Diego Hybrid,NT2,2001.0,15.0,13.5,13.5,8,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9,0.9,WECC,CISO,CA,32.8747,-117.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.651455073697457 -57584,University of California San Diego Hybrid,ST1,2001.0,15.0,13.5,13.5,8,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9,0.9,WECC,CISO,CA,32.8747,-117.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.46254355058497 -57584,University of California San Diego Hybrid,STG,2001.0,3.0,3.0,3.0,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2001.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,CISO,CA,32.8747,-117.2392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57585,Oxnard Paper Mill,1,1986.0,29.0,29.0,29.0,12,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,1986.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,34.1414,-119.1831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.042851508987505 -57586,Shiloh III Wind Project LLC,1,2011.0,102.5,102.5,100.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,0.975609756097561,WECC,CISO,CA,38.169444,-121.846944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57588,Matrix Stults Road Solar Facility,STULT,2011.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.3622,-74.4797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57589,Long Island Solar Farm LLC,9WUBN,2011.0,31.5,31.5,31.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.861111,-72.847777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57590,"Minco Wind I, LLC",1,2010.0,99.2,99.2,99.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.280278,-97.975556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57591,"Hatch Solar Energy Center I, LLC",1,2011.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.63,-107.259722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57593,Broken Bow Wind LLC,1,2012.0,79.9,79.9,79.9,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.454722,-99.568056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57594,Teichert Materials-Teichert Vernalis,WTG1,2010.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.6167,-121.3564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57595,Pinnacle Wind Force LLC,1,2011.0,53.7,52.9,52.9,0.7,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9851024208566107,0.9851024208566107,RFC,PJM,WV,39.445,-79.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57597,Cana Gas Processing Plant,3005,2010.0,2.5,2.5,2.5,0,DFO,Petroleum Liquids,SB,IC,9.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SPA,OK,35.5331,-98.1011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.605402492786066 -57597,Cana Gas Processing Plant,3006,2010.0,2.5,2.5,2.5,0,DFO,Petroleum Liquids,SB,IC,9.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SPA,OK,35.5331,-98.1011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.605402492786066 -57597,Cana Gas Processing Plant,6214,2012.0,2.5,2.5,2.5,0,DFO,Petroleum Liquids,SB,IC,4.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SPA,OK,35.5331,-98.1011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.605402492786066 -57598,Bridge Street 1 & 2,BS1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.362778,-72.0825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.94945054945055 -57598,Bridge Street 1 & 2,BS2,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.362778,-72.0825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.94945054945055 -57599,"Fort Hill 1, 2, 3 & 4",FH1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.4711,-72.1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.95821325648415 -57599,"Fort Hill 1, 2, 3 & 4",FH2,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.4711,-72.1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.95821325648415 -57599,"Fort Hill 1, 2, 3 & 4",FH3,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.4711,-72.1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.95821325648415 -57599,"Fort Hill 1, 2, 3 & 4",FH4,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.4711,-72.1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.95821325648415 -57600,Fishers Island 1,FI1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,NY,41.268611,-72.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.305084745762711 -57601,Gary Court 1 & 2,GC1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.3367,-72.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.963203463203463 -57601,Gary Court 1 & 2,GC2,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,7.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.3367,-72.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.963203463203463 -57602,Jewett City 1,JC1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,2.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.6041,-71.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.851162790697675 -57603,LNG 1 & 2,LNG1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.5694,-72.1175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.952789699570815 -57603,LNG 1 & 2,LNG2,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.5694,-72.1175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.952789699570815 -57604,Lebanon Pines 1 & 2,LP1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.5683,-72.2322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.552173913043479 -57604,Lebanon Pines 1 & 2,LP2,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,4.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.5683,-72.2322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.552173913043479 -57605,Water Treatment 1 & 2,WT1,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.3469,-72.0411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.746636771300448 -57605,Water Treatment 1 & 2,WT2,2010.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.3469,-72.0411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.746636771300448 -57606,Eastside WWTP,1,2004.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9428,-79.9089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.870273480295289 -57606,Eastside WWTP,2,2004.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9428,-79.9089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.870273480295289 -57606,Eastside WWTP,3,2004.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,8.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9428,-79.9089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.870273480295289 -57607,Ward WTP,1,1999.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,2.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9678,-79.9708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.857142857142858 -57607,Ward WTP,2,1999.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,2.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9678,-79.9708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.857142857142858 -57608,Westside WWTP,1,2005.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,5.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.9403,-80.1106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.127450980392156 -57609,New Harvest Wind Project LLC,1,2011.0,100.0,100.0,100.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.159722,-95.439722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57613,LE Wind Turbine 1,WTG1,2011.0,2.5,2.5,2.5,0,WND,Onshore Wind Turbine,OP,WT,7.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.584444,-81.525555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57614,Waverly Wind Farm LLC,GEN1,2016.0,199.0,199.0,199.0,50,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.256944,-95.814166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57616,Blue Canyon Windpower VI LLC,GEN1,2011.0,99.8,99.8,99.8,4.7,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.910361,-98.5599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57617,Hidalgo Wind Farm LLC,GEN1,2016.0,250.0,250.0,250.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.465556,-98.411111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57620,Paulding Wind Farm II,GEN1,2011.0,99.0,99.0,99.0,0.7,WND,Onshore Wind Turbine,OP,WT,7.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.025278,-84.779166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57621,Rising Tree Wind Farm,GEN1,2015.0,79.2,79.2,79.2,1,WND,Onshore Wind Turbine,OP,WT,1.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.0775,-118.218333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57623,Bright Stalk Wind Farm I,GEN1,2019.0,205.2,205.2,205.2,2.8,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,PJM,IL,40.701241,-88.701054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57624,Norwich WWTP,1,2006.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,5.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.5256,-72.0833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.25531914893617 -57625,"Bos Dairy, LLC",BOS4,2020.0,1.0,0.9,0.9,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,RFC,MISO,IN,41.1153,-87.2328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.895037154989383 -57626,Foundation ST,WTG1,2011.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.714167,-121.521666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57628,Meadow Lake Wind Farm V LLC,GEN1,2017.0,100.0,100.0,100.0,2,WND,Onshore Wind Turbine,OP,WT,7.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.716111,-87.021111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57629,Gaston Memorial Hospital,GMH1,2006.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,OP,IC,5.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.2747,-81.1383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.071428571428571 -57630,Long Creek Waste Water Plant,ES1,1995.0,1.7,1.7,1.7,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3119,-81.1414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.28125 -57630,Long Creek Waste Water Plant,ES2,1995.0,1.7,1.7,1.7,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3119,-81.1414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.28125 -57630,Long Creek Waste Water Plant,ES3,1995.0,1.7,1.7,1.7,0.6,DFO,Petroleum Liquids,OP,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3119,-81.1414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.28125 -57631,Wolverine,1,2010.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.3931,-94.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57632,Bulldog,1,2010.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.2258,-94.4406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57635,Linden Wind Energy Project,LW1,2010.0,50.0,50.0,50.0,2,WND,Onshore Wind Turbine,OP,WT,6.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,45.744171,-120.783568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57636,Auburn LFG Energy Facility,1,2010.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OS,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.944093,-76.593944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57636,Auburn LFG Energy Facility,3,2010.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OS,IC,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.944093,-76.593944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57637,Union City Wind Turbine,1,2010.0,1.0,1.0,1.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.1908,-84.8172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57638,Randolph Eastern School Wind Turbine,1,2010.0,1.0,1.0,1.0,0,WND,Onshore Wind Turbine,OS,WT,3.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.2097,-84.8219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57639,Ironwood Wind,1,2012.0,167.9,167.9,167.9,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.81828,-99.7754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57640,500 Virginia Solar,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.139167,-75.191667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57643,"Vestas Towers America, Inc.",V100,2010.0,1.8,1.8,1.8,0,WND,Onshore Wind Turbine,OP,WT,4.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,38.1728,-104.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57644,Prairie Rose Wind Farm,PR1,2012.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.828217,-96.321567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57645,City & County of Denver at Denver Int'l,PV1,2011.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.904133,-104.654183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57646,McCormick & Co. Inc. at Belcamp,PV1,2010.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.4836,-76.2292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57647,"Toys R Us- DE, Inc. at Mt. Olive, NJ",PV1,2011.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.818888,-74.718611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57648,Henkel U.S. Operations Corporation,WT1,2012.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.886944,-76.968333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57648,Henkel U.S. Operations Corporation,WT2,2012.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.886944,-76.968333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57649,Elm Creek Wind II LLC,1,2010.0,148.8,148.8,148.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.6848,-94.8799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57650,Regulus Solar Project,FRV4,2014.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.3,-118.851944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57651,Adobe Solar,FRV3,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.102778,-118.954444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57652,Yamhill Solar LLC,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.108889,-123.278611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57653,Oregon State University Energy Center,CTG,2010.0,5.5,5.2,5.5,2.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9454545454545454,1.0,WECC,BPAT,OR,44.564333,-123.289089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.59906453537513 -57653,Oregon State University Energy Center,STG,2010.0,1.0,0.5,1.0,0.1,NG,Natural Gas Fired Combined Cycle,OS,CA,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.5,1.0,WECC,BPAT,OR,44.564333,-123.289089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57655,Bakersfield College Solar 01,BC01,2010.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.411817,-118.96864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57656,"Temescal Canyon RV, LLC",1,2011.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.826389,-117.511667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57657,Avra Valley Solar,1,2013.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.371667,-111.282777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57659,East Blackland Solar Project 1,PSF,2021.0,144.0,144.0,144.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,ERCO,TX,30.4214,-97.4614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57660,Vineland Mays Landing Solar,VNLND,2011.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.4175,-74.973889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57661,Manalapan Village Solar,MANVL,2011.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.256667,-74.349722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57662,McGraw Hill Solar,MCGRH,2011.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.279722,-74.556389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57663,Cimarron Windpower II,1,2012.0,131.0,131.0,131.0,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.90133,-100.372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57664,Astoria Energy II,CT3,2011.0,200.0,156.0,188.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.78,0.94,NPCC,NYIS,NY,40.781321,-73.896618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57664,Astoria Energy II,CT4,2011.0,200.0,156.0,188.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.78,0.94,NPCC,NYIS,NY,40.781321,-73.896618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57664,Astoria Energy II,ST2,2011.0,250.0,228.0,236.0,120,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.912,0.944,NPCC,NYIS,NY,40.781321,-73.896618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,1,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,10,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,11,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,12,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,13,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,14,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,15,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,16,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,2,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,3,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,4,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,5,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,6,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OA,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,7,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,8,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57665,SAF Hydroelectric LLC,9,2011.0,0.6,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,44.978889,-93.247777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57666,Foxwoods CoGen,CT1,2010.0,6.6,6.0,7.3,4,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909092,1.0,NPCC,ISNE,CT,41.4731,-71.9606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362145407991374 -57666,Foxwoods CoGen,CT2,2010.0,6.6,6.0,7.3,4,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2010.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9090909090909092,1.0,NPCC,ISNE,CT,41.4731,-71.9606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.731945175059739 -57666,Foxwoods CoGen,STG1,2016.0,3.0,2.5,0.5,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8333333333333334,0.16666666666666663,NPCC,ISNE,CT,41.4731,-71.9606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57667,Seabrook Solar Plant,P21A,2011.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.485,-75.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57667,Seabrook Solar Plant,P21B,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.485,-75.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57667,Seabrook Solar Plant,P2P2,2014.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.485,-75.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57667,Seabrook Solar Plant,SBS1,2011.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.485,-75.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57668,CASD Solar,CASDE,2010.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.2142,-77.2061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57668,CASD Solar,CASDW,2010.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.2142,-77.2061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57669,SMUD at Grundman,PV1,2011.0,17.0,18.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.364722,-121.41278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57670,SMUD at Van Conett,PV1,2011.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.253056,-121.278888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57671,SMUD at Fleshman,PV1,2011.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.237778,-121.3375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57672,Oakdale Renewable Energy Plant,GE1,2010.0,1.4,1.4,1.4,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7053,-91.6033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.81268011527378 -57672,Oakdale Renewable Energy Plant,GE2,2010.0,1.4,1.4,1.4,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.7053,-91.6033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.81268011527378 -57673,Macys Goodyear,1,2010.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.409063,-112.414596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57674,Indian Orchard PV Facility,1,2011.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.151389,-72.498889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57675,"Pioneer Trail Wind Farm, LLC",PTWF,2011.0,150.4,150.4,150.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.46405,-88.021517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57676,Silver Lake Solar Photovoltaic Facility,1,2010.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.4525,-73.2403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57677,"Murphy Farm Power, LLC",1,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.999167,-84.157254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57678,"Post Rock Wind Power Project, LLC",1,2012.0,201.0,201.0,201.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.841667,-98.299444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57680,Arlington Valley Solar Energy II,AVSE1,2013.0,19.0,18.5,18.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9736842105263158,0.9736842105263158,WECC,AZPS,AZ,33.305,-112.833888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57680,Arlington Valley Solar Energy II,AVSE2,2013.0,28.0,27.3,27.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.975,WECC,AZPS,AZ,33.305,-112.833888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57680,Arlington Valley Solar Energy II,AVSE3,2013.0,28.0,27.3,27.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.975,WECC,AZPS,AZ,33.305,-112.833888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57680,Arlington Valley Solar Energy II,AVSE4,2013.0,26.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9615384615384616,0.9615384615384616,WECC,AZPS,AZ,33.305,-112.833888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57680,Arlington Valley Solar Energy II,AVSE5,2013.0,28.0,27.3,27.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.975,WECC,AZPS,AZ,33.305,-112.833888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57681,City of Boulder WWTP,1,2010.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,PSCO,CO,40.048025,-105.180327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57682,City of Madera WWTP,1,2009.0,1.2,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8333333333333334,0.8333333333333334,WECC,CISO,CA,36.9408,-120.1572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57683,"Staples La Mirada, CA",1,2009.0,1.1,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8181818181818181,0.8181818181818181,WECC,CISO,CA,33.881667,-118.0175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57684,Goodsprings Waste Heat Recovery,HR1,2010.0,7.5,6.5,6.5,1,WH,All Other,OP,ST,11.0,2010.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8666666666666667,0.8666666666666667,WECC,NEVP,NV,35.809444,-115.411389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57687,"CS Murphy Point, LLC",1,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.989539,-84.166197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57689,Norden 1-3,NORD1,2004.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.1117,-73.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.857142857142858 -57689,Norden 1-3,NORD2,2004.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.1117,-73.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.857142857142858 -57689,Norden 1-3,NORD3,2004.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,OP,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.1117,-73.3928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.857142857142858 -57690,Turnbull Hydro,1,2011.0,5.3,5.3,,1.5,WAT,Conventional Hydroelectric,OP,HY,7.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,NWMT,MT,47.605278,-112.096944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57690,Turnbull Hydro,2,2011.0,7.7,7.7,,2,WAT,Conventional Hydroelectric,OP,HY,6.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,NWMT,MT,47.605278,-112.096944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57695,Topaz Solar Farm,TPZ1,2013.0,129.8,129.8,129.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.405556,-120.068611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57695,Topaz Solar Farm,TPZ2,2013.0,151.2,151.2,151.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.405556,-120.068611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57695,Topaz Solar Farm,TPZ3,2014.0,102.1,102.1,102.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.405556,-120.068611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57695,Topaz Solar Farm,TPZ4,2014.0,90.3,90.3,90.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.405556,-120.068611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57695,Topaz Solar Farm,TPZ5,2014.0,112.5,112.5,112.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.405556,-120.068611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57696,Power Generation Station (PGS) 2,1,2011.0,4.6,3.8,3.8,1.5,OBG,Other Waste Biomass,OP,GT,12.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.8260869565217391,0.8260869565217391,WECC,CISO,CA,37.825833,-122.296111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.10624001503618 -57697,Aerojet I,1,2009.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.613508,-121.162879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57698,Aerojet II,1,2010.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.6086,-121.1703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57699,Webberville Solar Project,AES1,2011.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.238492,-97.508812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57700,Vasco Winds,1,2011.0,78.2,78.2,78.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.790833,-121.718055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57701,Montezuma Wind II,1,2012.0,78.2,78.2,78.2,3.9,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.116667,-121.821944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57702,Signal Hill West Unit,1,2004.0,5.7,5.7,5.7,3.5,OG,Other Gases,OP,GT,7.0,2004.0, , ,,,,,other,gas,Other Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.811182,-118.175645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.519769335504712 -57703,Cheyenne Prairie Generating Station,01A,2014.0,40.0,37.0,37.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.925,0.925,WECC,WACM,WY,41.123611,-104.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57703,Cheyenne Prairie Generating Station,01B,2014.0,40.0,37.0,37.0,20,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.925,0.925,WECC,WACM,WY,41.123611,-104.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57703,Cheyenne Prairie Generating Station,01C,2014.0,20.0,20.0,20.0,5,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,WECC,WACM,WY,41.123611,-104.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57703,Cheyenne Prairie Generating Station,02A,2014.0,40.0,37.0,37.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.925,0.925,WECC,WACM,WY,41.123611,-104.72,Cheyenne Prairie 2-1,GT LM_LM6000 PF Sprint,False,1.0,1.0,-1.0,36.0,36.0,1198.322,181.2,1.0,0.45,47.0,2.9791155988376383,123.8946785923122,0.41251683916322707,-25.19126412895842,585.4451343184478,6.9240981593477455,#TRUE#,#2014-10-01#,#2050-12-31#,Existing,WACM,RM_WACM,12.0,47.0,40.0,WY,NG,Areo,#FALSE#,23.5,47, -57706,Blue Water Renewables Inc,1,2011.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.91577,-82.594507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.279459009241265 -57706,Blue Water Renewables Inc,2,2011.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.91577,-82.594507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.279459009241265 -57707,Mesquite Solar 1,1,2011.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,10,2012.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,11,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,12,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,2,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,3,2011.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,4,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,5,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,6,2012.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,7,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,8,2012.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57707,Mesquite Solar 1,9,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.341833,-112.904028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57708,Catalina Solar LLC,INV,2012.0,110.0,110.0,110.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.938261,-118.334492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57710,Stephentown Spindle,SRS1,2011.0,20.0,20.0,20.0,1,MWH,Flywheels,OP,FW,1.0,2011.0, , ,5.0,20.0,20.0,nan,other,other,Energy Storage,"Energy Storage, Flywheel ",1.0,1.0,NPCC,NYIS,NY,42.556501,-73.377477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57714,City of Palo Alto,GEN1,2002.0,1.1,1.1,1.1,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4383,-122.1094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57714,City of Palo Alto,GEN2,2002.0,1.1,1.1,1.1,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4383,-122.1094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57714,City of Palo Alto,GEN3,2002.0,1.1,1.1,1.1,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4383,-122.1094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57714,City of Palo Alto,GEN4,2002.0,1.1,1.1,1.1,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,3.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4383,-122.1094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57715,Watkins Manufacturing Co.,GEN1,2001.0,1.0,1.0,1.0,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.143847,-117.236908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.663813229571984 -57715,Watkins Manufacturing Co.,GEN2,2001.0,1.0,1.0,1.0,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.143847,-117.236908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.663813229571984 -57716,Hazle Spindle,HRS1,2013.0,20.0,20.0,20.0,1,MWH,Flywheels,OP,FW,9.0,2013.0, , ,5.0,20.0,20.0,nan,other,other,Energy Storage,"Energy Storage, Flywheel ",1.0,1.0,RFC,PJM,PA,40.949536,-76.04739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57721,Berkshire Wind Power Project,BWP,2011.0,15.0,15.0,15.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.586667,-73.275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57721,Berkshire Wind Power Project,HN-8,2019.0,2.3,2.3,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.586667,-73.275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57721,Berkshire Wind Power Project,HN-9,2019.0,2.3,2.3,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.586667,-73.275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57722,North Palm Springs 4A,1,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.909722,-116.5625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57723,"Johnson Matthey, Inc. Solar",PV1,2011.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.825278,-75.219722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57724,NJMC Landfill,NJMC,2011.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.750833,-74.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57725,Shiloh IV Wind Project LLC,1,2012.0,102.5,102.5,102.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.137488,-121.855342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57726,Summit Associates,SUMA,2011.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.5003,-74.3536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57727,BlackRock-Matrix,BLAR,2012.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.3622,-74.4797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57728,Mill Creek Solar,MILLC,2011.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.031388,-74.824722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57729,Lake Hodges Hydroelectric Facility,1,2012.0,21.0,21.0,21.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,2012.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,33.058611,-117.119444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57729,Lake Hodges Hydroelectric Facility,2,2012.0,21.0,21.0,21.0,0,WAT,Hydroelectric Pumped Storage,OP,PS,8.0,2012.0, , ,,,,,hydro,hydro,Water,"Energy Storage, Reversible Hydraulic Turbine (Pumped Storage)",1.0,1.0,WECC,CISO,CA,33.058611,-117.119444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57732,UMM Wind Turbine,UMM1,2011.0,1.7,0.6,0.9,0,WND,Onshore Wind Turbine,OP,WT,6.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.3529411764705882,0.5294117647058824,MRO,MISO,MN,45.5897,-95.877033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57733,Benjamin Moore & Co. Solar,PV1,2010.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.825556,-74.714722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57734,Cherry Hill,CH,2010.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.876111,-75.008611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57736,SPS1 Dollarhide,1,2011.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,NM,32.12743,-103.137825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57737,SPS2 Jal,1,2011.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,NM,32.183611,-103.183056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57738,SPS3 Lea,1,2011.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,NM,32.469722,-103.323333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57739,SPS4 Monument,1,2011.0,10.1,10.1,10.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,NM,32.681944,-103.303611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57740,SPS5 Hopi,1,2011.0,10.1,10.1,10.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,NM,32.345556,-104.234722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57742,Vineland Headquarters,VHQ,2011.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.490271,-75.037391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57743,North Palm Springs 1A,1,2012.0,2.5,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.96,WECC,CISO,CA,33.924167,-116.593333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57744,Laurel Hill Wind,1,2012.0,69.0,69.0,69.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,41.5323,-77.0296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57745,The City of Vineland at West Vineland,PV1,2011.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.462376,-75.070039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57746,The City of Vineland at North Vineland,PV1,2011.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.505034,-74.997703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57747,FedEx Field Solar Facility,1,2011.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.907778,-76.864444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57748,Gordon Butte Wind LLC,DAW,2018.0,2.7,2.7,2.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.411944,-110.337777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57748,Gordon Butte Wind LLC,GBW,2012.0,9.6,9.6,9.6,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.411944,-110.337777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57748,Gordon Butte Wind LLC,OSR,2018.0,2.7,2.7,2.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.411944,-110.337777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57748,Gordon Butte Wind LLC,SOR,2018.0,2.7,2.7,2.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.411944,-110.337777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57749,Sawtooth Wind Project,ST,2011.0,22.4,22.4,22.4,0,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.982222,-115.393333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57750,Maple Solar,P1,2011.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.4875,-74.980833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57750,Maple Solar,P2,2011.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.4875,-74.980833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57751,Los Vientos Wind 1A,1,2012.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.33072,-97.5857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57752,Los Vientos Wind 1B,1,2012.0,201.6,201.6,201.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.34892,-97.6668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57753,SMUD at Lawrence,PV1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.338868,-121.431342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57754,Frederick County LFGTE Facility,1,2010.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,39.140833,-78.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.21222366710013 -57754,Frederick County LFGTE Facility,2,2010.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,11.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,39.140833,-78.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.21222366710013 -57755,TPW Petersburg,PETE,2011.0,40.5,40.5,40.5,0,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.864583,-97.961194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57756,Coastal Energy Project,1,2010.0,6.0,6.0,6.0,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,WA,46.793581,-124.065412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57757,Pacific Wind LLC,1,2012.0,151.7,140.0,140.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.922874093605801,0.922874093605801,WECC,CISO,CA,34.891389,-118.4325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57758,Mount Saint Mary's,PV1,2012.0,13.7,13.7,13.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.675,-77.345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57760,Power County Wind Park South,PCWPS,2011.0,22.5,22.5,22.5,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,ID,42.703333,-112.757778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57761,Power County Wind Park North,PCWPN,2011.0,22.5,22.5,22.5,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,ID,42.738889,-112.748611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57762,Cimarron Wind Energy LLC,CPV1,2012.0,165.6,165.6,165.6,8.3,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.873889,-100.280277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57763,Youngs Creek Hydroelectric Project,1,2011.0,7.5,7.9,7.9,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,BPAT,WA,47.7916,-121.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57764,Naval Air Weapons Station China Lake,1,2012.0,11.1,11.1,11.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.68771,-117.68137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57765,Arizona Western College PV,SFC,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.687778,-114.49611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57765,Arizona Western College PV,SHP,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.687778,-114.49611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57765,Arizona Western College PV,SOLEG,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.687778,-114.49611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57765,Arizona Western College PV,STE,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.687778,-114.49611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57765,Arizona Western College PV,SWD,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.687778,-114.49611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57766,Rockland Wind Farm,RLWF,2011.0,79.2,79.2,79.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,ID,42.674722,-112.901944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57767,Brown County Wind Turbine,1,2011.0,1.5,1.5,1.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,39.973333,-90.699166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57768,Longwood Gardens,1,2010.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.866667,-75.667777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57769,Mehoopany Wind Energy LLC,1,2012.0,140.8,140.8,140.8,2.4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,41.420556,-76.049167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57771,Ameresco Butte County,1,2013.0,2.3,2.0,2.0,0.5,LFG,Landfill Gas,OP,IC,2.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,39.674,-121.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.712853107344634 -57772,Perdue Bridgeville Photovoltaic,BRID,2011.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,38.757689,-75.602031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57773,Palo Verde College,1,2009.0,1.2,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8333333333333334,0.8333333333333334,WECC,CISO,CA,33.661667,-114.651667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57774,Windstar 1,WGNS,2012.0,120.0,120.0,120.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.054167,-118.354722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57775,Kingman 1,PV,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,35.145833,-114.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57775,Kingman 1,WGNS,2011.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AZPS,AZ,35.145833,-114.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57776,FedEx Woodbridge,1,2009.0,2.0,2.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5,RFC,PJM,NJ,40.506358,-74.323519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57777,RE Dillard 1 LLC,DL1,2012.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.468611,-121.181944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57778,RE Kammerer 1 LLC,KAM1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.365053,-121.381101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57779,RE Dillard 2 LLC,DIL2,2012.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.466111,-121.177778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57780,RE Kammerer 2 LLC,KAM2,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.365053,-121.381101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57781,RE Dillard 3 LLC,DIL3,2012.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.461944,-121.180278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57782,RE Kammerer 3 LLC,KAM3,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.365053,-121.381101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57783,RE Bruceville 1 LLC,BRU1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.3475,-121.412777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57784,RE Bruceville 2 LLC,BRU2,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.3475,-121.412777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57785,RE Bruceville 3 LLC,BRU3,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.3475,-121.412777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57787,Flat Ridge 2 Wind Energy LLC,1,2012.0,470.4,470.4,470.4,7.1,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.366509,-98.261077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57788,US GSA Heating and Transmission,TG1,2004.0,5.4,4.5,5.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333333,0.9259259259259258,RFC,PJM,DC,38.885709,-77.028373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.63471778487753 -57788,US GSA Heating and Transmission,TG2,2004.0,5.4,4.5,5.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8333333333333333,0.9259259259259258,RFC,PJM,DC,38.885709,-77.028373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.63471778487753 -57789,Peak Power 1 Cogen,GEN1,2010.0,2.1,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,0.9523809523809523,NPCC,NYIS,NY,40.751111,-73.991667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.132654071791352 -57789,Peak Power 1 Cogen,GEN2,2010.0,2.1,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,0.9523809523809523,NPCC,NYIS,NY,40.751111,-73.991667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.132654071791352 -57789,Peak Power 1 Cogen,GEN3,2010.0,2.1,2.0,2.0,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,0.9523809523809523,NPCC,NYIS,NY,40.751111,-73.991667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.132654071791352 -57790,RE Bagdad Solar I LLC,1,2011.0,14.9,14.9,14.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,34.585833,-113.177222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57791,Foundation AB,WTG1,2011.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.232222,-122.092778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57792,Foundation IE,WTG1,2011.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.084722,-117.529444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57794,St Joseph Energy Center,CT1,2018.0,260.0,240.0,260.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9230769230769231,1.0,RFC,PJM,IN,41.698992,-86.479699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57794,St Joseph Energy Center,CT2,2018.0,260.0,240.0,260.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9230769230769231,1.0,RFC,PJM,IN,41.698992,-86.479699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57794,St Joseph Energy Center,ST1,2018.0,260.0,235.0,235.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9038461538461539,0.9038461538461539,RFC,PJM,IN,41.698992,-86.479699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57795,RE Ajo 1 LLC,1,2011.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.367013,-112.831401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57796,Golden Springs Building C-1,1,2012.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.914167,-118.053611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57797,Golden Springs Building D,1,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.911944,-118.052222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57798,OBP Cogen,1OBP,2010.0,4.6,4.6,4.6,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,NYIS,NY,40.754865,-73.983248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.170805036785513 -57799,"ISH Solar Central, LLC",1,2011.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.2675,-74.278611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57800,Bison 2 Wind Energy Center,BISO2,2012.0,105.0,105.0,105.0,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.98,-101.554722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57801,Bison 3 Wind Energy Center,BISO3,2012.0,105.0,105.0,105.0,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.98,-101.554722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57802,Magic Valley Wind Farm I LLC,MV1,2012.0,203.0,203.0,203.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.475278,-97.691111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57803,Lime Wind,T1-6,2011.0,3.0,3.0,3.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,44.396944,-117.271944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57804,Middlebury College,2,1985.0,0.6,0.4,0.6,0.1,WDS,Wood/Wood Waste Biomass,OA,ST,1.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6666666666666667,1.0,NPCC,ISNE,VT,44.0075,-73.176944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -57804,Middlebury College,3,1999.0,0.8,0.3,0.8,0.2,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1999.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.375,1.0,NPCC,ISNE,VT,44.0075,-73.176944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -57805,William Paterson University,WPU1,2010.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.952084,-74.195502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57806,RE Dillard 4 LLC,DIL4,2012.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.461944,-121.180278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57809,Franklin Templeton San Mateo,FRK00,2011.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,11.0,2011.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.5425,-122.292778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57811,Adobe San Jose,ADB00,2010.0,0.8,0.8,0.8,0,NG,Other Natural Gas,OP,FC,8.0,2010.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.330556,-121.893056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57811,Adobe San Jose,ADB01,2010.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,8.0,2010.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.330556,-121.893056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57813,GL Wind,TURB1,2011.0,2.5,2.4,2.4,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.96,0.96,MRO,MISO,MN,43.991667,-91.877777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57813,GL Wind,TURB2,2011.0,2.5,2.4,2.4,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.96,0.96,MRO,MISO,MN,43.991667,-91.877777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57815,Titusville Solar,PV1,2010.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.292778,-74.847222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57816,RE McKenzie 1 LLC,MCK1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.302594,-121.295819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57817,RE McKenzie 2 LLC,MCK2,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.302594,-121.295819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57818,RE McKenzie 3 LLC,MCK3,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.302594,-121.295819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57819,RE McKenzie 4 LLC,MCK4,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.302594,-121.295819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57820,RE McKenzie 5 LLC,MCK5,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.302594,-121.295819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57821,RE McKenzie 6 LLC,MCK6,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.302594,-121.295819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57822,"Middletown Coke Company, LLC",YNKE,2011.0,67.0,47.0,47.0,10,OG,Other Gases,OP,ST,12.0,2011.0, , ,,,,,other,gas,Other Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7014925373134329,0.7014925373134329,RFC,PJM,OH,39.472222,-84.401389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57823,WCROC Wind Farm,WTG1,2005.0,1.7,0.4,0.7,0,WND,Onshore Wind Turbine,OP,WT,3.0,2005.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.23529411764705888,0.4117647058823529,MRO,MISO,MN,45.589722,-95.876944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57824,Onalaska Campus Landfill Biogas,416LF,2012.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,43.873889,-91.18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.601126231816048 -57827,Dinuba Wastewater Treatment Plant,DSPV,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.538056,-119.426388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57828,Tulsa LFG LLC,GEN3M,2011.0,1.6,1.4,1.4,0.2,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,OK,36.161953,-96.186509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.787946428571427 -57828,Tulsa LFG LLC,GEN4M,2020.0,1.6,1.4,1.4,0.2,LFG,Landfill Gas,OP,IC,9.0,2020.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,MRO,SWPP,OK,36.161953,-96.186509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.787946428571427 -57830,Rippey Wind Farm,NORD,2012.0,50.0,50.0,50.0,1,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.006111,-94.237778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57831,Heliocentric,1,2012.0,1.5,1.3,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8666666666666667,1.0,WECC,CISO,CA,34.65434,-117.971004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57832,Hawkeye Wind Farm,NORD,2012.0,35.0,34.0,34.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9714285714285714,0.9714285714285714,MRO,MISO,IA,42.948889,-92.062222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57833,Mustang Hills LLC,AW06,2012.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.030855,-118.293188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57834,Pinyon Pine I,AW07,2012.0,168.0,168.0,168.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.043411,-118.211835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57835,Alta Wind VIII,AW08,2012.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.026683,-118.234811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57836,L-8 Solar Project,TSM,2012.0,1.5,1.3,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8666666666666667,1.0,WECC,CISO,CA,34.654347,-117.973103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57837,Pinyon Pine II,AW09,2012.0,132.0,132.0,132.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.026759,-118.223333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57838,Dartmouth II Solar,D2MA,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.680556,-71.030833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57839,Woodbridge Energy Center,CT001,2015.0,222.7,206.8,231.4,90,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9286035024696903,1.0,RFC,PJM,NJ,40.515,-74.318889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57839,Woodbridge Energy Center,CT002,2015.0,222.7,203.6,230.9,90,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9142343960484958,1.0,RFC,PJM,NJ,40.515,-74.318889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57839,Woodbridge Energy Center,ST001,2015.0,327.5,314.8,309.4,70,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9612213740458015,0.9447328244274809,RFC,PJM,NJ,40.515,-74.318889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57840,ISH Solar Hospital SDMC,1,2011.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.791667,-117.095277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57841,ISH Solar Hospital Downey,1,2011.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.921667,-118.124444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57842,Wabash Valley Power IGCC,1A,1995.0,192.0,154.0,182.0,80,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8020833333333334,0.9479166666666666,RFC,MISO,IN,39.53,-87.4247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57844,Franklin County Wind Farm,1,2012.0,99.0,99.0,99.0,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.606737,-93.336453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57848,WC Landfill Energy LLC,SOLAR,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.831012,-75.015775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57849,Green Acres Solar Facility 1,GASF1,2012.0,3.0,2.8,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.6666666666666667,WECC,BANC,CA,38.282021,-121.464676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57850,Green Acres Solar Facility 2,GASF2,2012.0,1.0,0.9,0.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.7,WECC,BANC,CA,38.28357,-121.461264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57851,Sigel Wind Park,1,2012.0,64.0,64.0,64.0,4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.850833,-82.783611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57852,Minden Wind Park,1,2012.0,32.0,32.0,32.0,4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.67,-82.758611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57853,McKinley Wind Park,1,2012.0,14.4,14.0,14.0,4,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9722222222222222,0.9722222222222222,RFC,MISO,MI,43.871944,-83.241388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57854,North Hollywood,1PT1,1993.0,1.8,1.8,1.8,1.8,WAT,Conventional Hydroelectric,OS,HY,1.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.194444,-118.39028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57854,North Hollywood,1PT2,1993.0,1.8,1.8,1.8,1.8,WAT,Conventional Hydroelectric,SB,HY,1.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.194444,-118.39028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57854,North Hollywood,1PT3,1993.0,1.8,1.8,1.8,1.8,WAT,Conventional Hydroelectric,SB,HY,1.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.194444,-118.39028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57854,North Hollywood,3T1,1993.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,SB,HY,1.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.194444,-118.39028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57854,North Hollywood,3T2,1993.0,0.2,0.2,0.2,0.2,WAT,Conventional Hydroelectric,SB,HY,1.0,1993.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,LDWP,CA,34.194444,-118.39028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57855,Ipswich Wind Turbine,1,2011.0,1.6,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.716389,-70.841944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57856,Univ of California San Diego Solar,SGU1,2008.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.874379,-117.238927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57858,Caney River Wind Project,1,2011.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.46,-96.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57859,Moapa Southern Paiute,1,2016.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.52995,-114.770308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57860,Industry MetroLink PV 1,1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.008661,-117.845603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57861,Hidden Hollow Energy,UNT1,2007.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,IPCO,ID,43.697222,-116.271389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.994298495680013 -57861,Hidden Hollow Energy,UNT2,2007.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,IPCO,ID,43.697222,-116.271389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.994298495680013 -57862,"Wildcat Wind Farm I, LLC",1,2012.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.349444,-85.843056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57863,McKee City Solar Phase 2,UNIT1,2011.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.421944,-74.639167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57864,Stockton Athletic Center,2LOT7,2009.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.488443,-74.535263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57864,Stockton Athletic Center,LOT7,2009.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.488443,-74.535263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57864,Stockton Athletic Center,SAC,2009.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.488443,-74.535263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E01,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E02,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E03,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E04,2011.0,9.3,8.8,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.946236559139785,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E05,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E06,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E07,2011.0,9.3,8.5,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9139784946236559,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E08,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E09,2011.0,9.3,9.0,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9677419354838709,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E10,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E11,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E12,2011.0,9.3,8.7,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9354838709677418,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E13,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E14,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E15,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E16,2011.0,9.3,8.3,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8924731182795699,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E17,2011.0,9.3,8.9,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57865,Antelope Station,E18,2011.0,9.3,8.8,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.946236559139785,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57866,Golden Spread Panhandle Wnd Rch,PWR,2011.0,78.2,78.2,78.2,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.243611,-102.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57867,Howard Wind Farm,1,2011.0,51.3,51.3,51.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.315278,-77.538333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57867,Howard Wind Farm,2,2012.0,4.1,4.1,4.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.315278,-77.538333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57868,L'Oreal Piscataway,UNIT1,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0,12,2026,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.554341,-74.468014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57868,L'Oreal Piscataway,UNIT2,2011.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0,12,2026,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.554341,-74.468014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57868,L'Oreal Piscataway,UNIT3,2016.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0,12,2026,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.554341,-74.468014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57868,L'Oreal Piscataway,UNIT4,2011.0,0.7,0.7,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0,8,2031,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.554341,-74.468014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57869,Heller Industrial Parks,HH,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0,2,2027,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.373898,-74.489236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57869,Heller Industrial Parks,HII,2012.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0,2,2027,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.373898,-74.489236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57869,Heller Industrial Parks,HJC,2012.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0,2,2027,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.373898,-74.489236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57869,Heller Industrial Parks,HM,2013.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0,5,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.373898,-74.489236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57869,Heller Industrial Parks,UNIT1,2011.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0,2,2027,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.373898,-74.489236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57870,Castle Rock Vineyards,SOLAR,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.801111,-119.110556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57871,2555 E Olympic Bl,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.026944,-118.224167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57872,LCEC Generation LLVC,UNIT1,2012.0,9.3,8.7,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9354838709677418,1.0,MRO,SWPP,NM,32.978056,-103.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.269523230172611 -57872,LCEC Generation LLVC,UNIT2,2012.0,9.3,8.7,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9354838709677418,1.0,MRO,SWPP,NM,32.978056,-103.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.269523230172611 -57872,LCEC Generation LLVC,UNIT3,2012.0,9.3,8.7,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9354838709677418,1.0,MRO,SWPP,NM,32.978056,-103.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.269523230172611 -57872,LCEC Generation LLVC,UNIT4,2012.0,9.3,8.7,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9354838709677418,1.0,MRO,SWPP,NM,32.978056,-103.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.269523230172611 -57872,LCEC Generation LLVC,UNIT5,2012.0,9.3,8.7,9.3,3.7,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9354838709677418,1.0,MRO,SWPP,NM,32.978056,-103.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.269523230172611 -57873,Eclipse Wind Farm,EWF,2012.0,207.1,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9657170449058426,0.9657170449058426,MRO,MISO,IA,41.554651,-94.685004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57874,Vienna Wind Farm,VIIWF,2013.0,44.6,44.6,44.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.159444,-92.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57874,Vienna Wind Farm,VIWF,2012.0,105.6,105.6,105.6,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.159444,-92.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57875,Morning Light Wind Farm,MLWF,2012.0,101.2,100.0,100.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9881422924901185,0.9881422924901185,MRO,MISO,IA,41.454241,-94.575056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57876,Santa Cruz Energy,UNT1,2009.0,1.6,1.5,1.5,1.3,LFG,Landfill Gas,OP,IC,11.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,CISO,CA,36.973333,-122.105556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.397936475824398 -57879,Perdue Salisbury Photovoltaic,SALI,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.373611,-75.535278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57880,Eolos Wind Energy Research Field Station,1,2011.0,2.5,2.5,2.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.728333,-93.048056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,01,2013.0,60.5,42.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.743801652892562,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,02,2014.0,60.5,42.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.743801652892562,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,03,2014.0,60.5,42.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.743801652892562,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,11,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,12,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,13,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,14,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,15,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,16,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,17,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,18,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,19,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,20,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,21,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57881,Pioneer Generation Station,22,2017.0,9.3,8.9,8.9,3.4,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9569892473118279,0.9569892473118279,MRO,SWPP,ND,48.2325,-103.95278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57882,Baldock Solar Highway,BSH1,2012.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.269444,-122.771667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57883,Queen Creek Solar Farm,GEN1,2012.0,19.0,18.6,18.6,0,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9789473684210527,0.9789473684210527,WECC,SRP,AZ,33.2675,-111.612222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57884,Lake Charles Polymers,G-900,2011.0,14.3,14.5,16.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,LA,30.196571,-93.32197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.6232782369146 -57884,Lake Charles Polymers,G-901,2011.0,8.4,8.0,8.5,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,1.0,SERC,MISO,LA,30.196571,-93.32197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.979850729024655 -57884,Lake Charles Polymers,G-902,2011.0,8.4,8.0,8.5,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9523809523809523,1.0,SERC,MISO,LA,30.196571,-93.32197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.979850729024655 -57885,Wellford Renewable Energy Plant,LFG1,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,35.001194,-82.130278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.18695652173913 -57886,City West Diesel Plant,DI1,2011.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.7225,-81.646944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.644736842105264 -57886,City West Diesel Plant,DI2,2011.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.7225,-81.646944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.644736842105264 -57886,City West Diesel Plant,DI3,2011.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.7225,-81.646944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.644736842105264 -57886,City West Diesel Plant,DI4,2011.0,1.8,1.8,1.8,1,DFO,Petroleum Liquids,OP,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,SC,34.7225,-81.646944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.644736842105264 -57887,Wildcat Wind,1,2012.0,27.3,27.3,27.3,0.8,WND,Onshore Wind Turbine,OP,WT,7.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,32.952778,-103.285278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57888,Harvest 2,1,2012.0,59.4,59.4,59.4,0.4,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.8556,-83.1669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57890,"Horse Butte Wind I, LLC",1,2012.0,57.6,57.6,57.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,ID,43.386389,-111.726389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57891,Guernsey Solar Station,1,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.163889,-119.650556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57892,Gates Solar Station,1,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.176389,-120.114167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57893,Martinsville LFG Generator,LFG1,2012.0,1.1,1.0,1.0,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,RFC,PJM,VA,36.717222,-79.845278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.440366972477063 -57895,Improvement Dst No. 4,ID4,2009.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.402778,-119.038611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57896,Concord Energy,UNT1,2012.0,4.8,3.9,3.9,3.8,LFG,Landfill Gas,OP,GT,2.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8125,0.8125,SERC,DUK,NC,35.34598,-80.670385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.875571998831662 -57896,Concord Energy,UNT2,2012.0,4.8,3.9,3.9,3.8,LFG,Landfill Gas,OP,GT,2.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8125,0.8125,SERC,DUK,NC,35.34598,-80.670385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.875571998831662 -57897,Richmond Energy,UNT1,2012.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,1.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.505833,-77.373889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.485955056179776 -57897,Richmond Energy,UNT2,2012.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,1.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.505833,-77.373889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.485955056179776 -57897,Richmond Energy,UNT3,2012.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,1.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.505833,-77.373889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.485955056179776 -57897,Richmond Energy,UNT4,2012.0,1.6,1.6,1.6,1.3,LFG,Landfill Gas,OP,IC,1.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.505833,-77.373889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.485955056179776 -57898,Palm Beach Renewable Energy Facility 2,GEN2,2015.0,96.0,85.0,90.0,0.1,MSW,Municipal Solid Waste,OP,ST,7.0,2015.0, , ,,,,,waste,waste,Municipal Solid Waste,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8854166666666666,0.9375,SERC,FPL,FL,26.772439,-80.141815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57899,Hurricane City Power,1,2001.0,1.7,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,11.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257200909101666 -57899,Hurricane City Power,2,1999.0,1.7,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257200909101666 -57899,Hurricane City Power,3,1999.0,1.7,1.6,1.6,0.1,DFO,Petroleum Liquids,SB,IC,12.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9411764705882354,0.9411764705882354,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257200909101666 -57899,Hurricane City Power,4,2004.0,2.0,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257203721057804 -57899,Hurricane City Power,5,2004.0,2.0,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257203721057804 -57899,Hurricane City Power,6,2006.0,2.0,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257203721057804 -57899,Hurricane City Power,7,2007.0,2.0,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257203721057804 -57899,Hurricane City Power,8,2007.0,2.0,1.9,1.9,1.9,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.95,0.95,WECC,PACE,UT,37.185556,-113.2975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.257203721057804 -57900,Solar Photovoltaic Project #48,S48A,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48B,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48C,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48D,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48E,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48F,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48G,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48H,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48I,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57900,Solar Photovoltaic Project #48,S48J,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.081111,-117.228056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57901,El Segundo Energy Center LLC,5,2013.0,198.0,195.0,195.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9848484848484849,0.9848484848484849,WECC,CISO,CA,33.910556,-118.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57901,El Segundo Energy Center LLC,6,2013.0,70.7,60.0,60.0,47,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8486562942008486,0.8486562942008486,WECC,CISO,CA,33.910556,-118.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57901,El Segundo Energy Center LLC,7,2013.0,198.0,195.0,195.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9848484848484849,0.9848484848484849,WECC,CISO,CA,33.910556,-118.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57901,El Segundo Energy Center LLC,8,2013.0,70.7,60.0,60.0,47,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8486562942008486,0.8486562942008486,WECC,CISO,CA,33.910556,-118.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57902,Fighting Creek LFGTE Plant,G-123,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,ID,47.531667,-116.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.448246241947029 -57902,Fighting Creek LFGTE Plant,G-162,2012.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,AVA,ID,47.531667,-116.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.448246241947029 -57903,SMMPA Methane Energy Facility,UNIT1,2012.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,4.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,MRO,MISO,MN,45.847778,-93.354167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.140878201777314 -57904,San Antonio West Solar Rooftop,CHNO,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.965617,-117.659059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57908,Central Utility Plant Cincinnati,CTG1,2004.0,11.9,12.5,12.5,7.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,OH,39.134533,-84.509419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.243355843694527 -57908,Central Utility Plant Cincinnati,CTG2,2004.0,11.9,12.5,12.5,7.5,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,OH,39.134533,-84.509419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.061924977988168 -57908,Central Utility Plant Cincinnati,P005,2004.0,1.9,1.9,1.9,0.2,DFO,Petroleum Liquids,OP,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.134533,-84.509419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.678571428571429 -57908,Central Utility Plant Cincinnati,STG,2004.0,21.5,21.5,21.5,4,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,OH,39.134533,-84.509419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57909,Piedmont Green Power,GEN1,2013.0,60.0,55.0,55.0,35,WDS,Wood/Wood Waste Biomass,OP,ST,4.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9166666666666666,0.9166666666666666,SERC,SOCO,GA,33.045278,-84.125556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57910,Centennial Generating Station,1,2011.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,SWPP,MN,46.8661,-96.7464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57910,Centennial Generating Station,2,2011.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,SWPP,MN,46.8661,-96.7464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57910,Centennial Generating Station,3,2011.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,SWPP,MN,46.8661,-96.7464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57910,Centennial Generating Station,4,2011.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,SWPP,MN,46.8661,-96.7464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57910,Centennial Generating Station,5,2011.0,2.3,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8695652173913044,0.8695652173913044,MRO,SWPP,MN,46.8661,-96.7464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57911,Roseburg LFG,1,2011.0,1.6,1.6,1.6,0.9,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,43.186111,-123.380278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.209404555747968 -57912,Grand Ridge Solar Farm,1,2012.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.143421,-88.758341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57913,Tule Wind LLC,1,2017.0,143.0,143.0,143.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,32.663889,-116.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57914,Sidney MT Plant,1,1950.0,2.0,2.0,2.0,1,LIG,Conventional Steam Coal,OP,ST,9.0,1950.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,NWMT,MT,47.717222,-104.135556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57914,Sidney MT Plant,2,1950.0,2.0,2.0,2.0,1,LIG,Conventional Steam Coal,OP,ST,9.0,1950.0, , ,,,,,coal,coal,Lignite Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,NWMT,MT,47.717222,-104.135556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57915,Genesis Alkali,1,1953.0,3.5,3.5,3.5,0.5,SUB,Conventional Steam Coal,OP,ST,6.0,1953.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.621667,-109.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57915,Genesis Alkali,2,1953.0,3.5,3.5,3.5,0.5,SUB,Conventional Steam Coal,OP,ST,6.0,1953.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.621667,-109.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57915,Genesis Alkali,3,1964.0,4.0,4.0,4.0,0.5,SUB,Conventional Steam Coal,OP,ST,6.0,1964.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.621667,-109.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57915,Genesis Alkali,4,1972.0,10.0,10.0,10.0,3,SUB,Conventional Steam Coal,OP,ST,6.0,1972.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.621667,-109.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57915,Genesis Alkali,5,1975.0,10.0,10.0,10.0,3,SUB,Conventional Steam Coal,OP,ST,6.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.621667,-109.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57915,Genesis Alkali,6,1975.0,10.0,10.0,10.0,3,SUB,Conventional Steam Coal,OA,ST,6.0,1975.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACE,WY,41.621667,-109.811944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57916,Spreckels Sugar Company,1,1948.0,8.9,8.9,8.9,2,NG,Natural Gas Steam Turbine,OP,ST,4.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,IID,CA,32.911111,-115.568056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53.17413508490315 -57919,Sonoco Products Co,2,1950.0,2.5,2.5,2.5,0.5,NG,Natural Gas Steam Turbine,SB,ST,6.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,SC,34.385278,-80.067778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57919,Sonoco Products Co,3,1947.0,10.0,10.0,10.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,2.0,1947.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,SC,34.385278,-80.067778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57919,Sonoco Products Co,4,1957.0,28.0,28.0,28.0,2,WDS,Wood/Wood Waste Biomass,OP,ST,6.0,1957.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,SC,34.385278,-80.067778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57927,Baffin Wind,1,2014.0,188.0,188.0,188.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.184652,-97.59818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57928,SIUC,EMER,1998.0,1.6,1.6,1.6,0.8,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,37.711944,-89.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57928,SIUC,GEN5,1998.0,3.5,2.8,2.8,0.3,BIT,Conventional Steam Coal,OP,ST,6.0,1998.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7999999999999999,0.7999999999999999,SERC,MISO,IL,37.711944,-89.215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.167097181136342 -57929,East Campus Utility Plant,P007,2006.0,2.0,1.7,1.7,0.2,DFO,Petroleum Liquids,OP,IC,7.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.85,0.85,RFC,PJM,OH,39.137935,-84.504948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994954545454545 -57929,East Campus Utility Plant,P008,2006.0,1.5,1.5,1.5,0.2,DFO,Petroleum Liquids,OP,IC,7.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.137935,-84.504948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994949494949495 -57929,East Campus Utility Plant,P058,2022.0,2.5,2.5,2.5,0.2,DFO,Petroleum Liquids,OP,IC,5.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,39.137935,-84.504948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994945454545455 -57929,East Campus Utility Plant,STG,2010.0,1.3,1.2,1.2,0.2,NG,Natural Gas Steam Turbine,OS,ST,11.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.923076923076923,0.923076923076923,RFC,PJM,OH,39.137935,-84.504948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57930,FRB Solar Farm,UAST,2011.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.108147,-110.824662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57931,Holyoke Solar Cooperative at Mueller,PV1,2011.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.190909,-72.682421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57933,Solar Star California II LLC,1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.516389,-121.47528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57934,Douglas Solar,DOMA,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.06,-71.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57935,Eva Creek Wind,EVW,2013.0,24.6,24.6,24.6,1,WND,Onshore Wind Turbine,OP,WT,1.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,64.058333,-148.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57937,Western Sugar Coop - Scottsbluff,SCBF,1987.0,5.0,5.0,5.0,1.3,SUB,Conventional Steam Coal,OS,ST,9.0,1987.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,NE,41.85887,-103.63438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -57938,ADA Carbon Solutions Red River,GEN1,2011.0,20.8,20.5,20.8,0.8,WH,All Other,OP,ST,2.0,2011.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.985576923076923,1.0,SERC,MISO,LA,32.003889,-93.391111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57939,Walmart Casa Grande,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.866837,-111.771751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57939,Walmart Casa Grande,2,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.866837,-111.771751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57941,Town of Uxbridge MA at Commerce Dr,PV1,2012.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.043889,-71.6175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57942,Town of Norfolk MA at Medway Branch,PV1,2012.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.127778,-71.340278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57943,Lonesome Creek Station,01,2013.0,60.5,40.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.743801652892562,MRO,SWPP,ND,47.796667,-103.57861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57943,Lonesome Creek Station,02,2015.0,60.5,40.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.743801652892562,MRO,SWPP,ND,47.796667,-103.57861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57943,Lonesome Creek Station,03,2015.0,60.5,40.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.743801652892562,MRO,SWPP,ND,47.796667,-103.57861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57943,Lonesome Creek Station,04,2017.0,60.5,40.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.743801652892562,MRO,SWPP,ND,47.796667,-103.57861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57943,Lonesome Creek Station,05,2017.0,60.5,40.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.743801652892562,MRO,SWPP,ND,47.796667,-103.57861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57943,Lonesome Creek Station,06,2021.0,60.5,40.0,45.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6611570247933884,0.743801652892562,MRO,SWPP,ND,47.796667,-103.57861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57945,Berkeley County Landfill,B1,2011.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,2.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,SC,SC,33.121111,-80.029444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.024686669198633 -57945,Berkeley County Landfill,B2,2011.0,1.6,1.5,1.5,0.6,LFG,Landfill Gas,OP,IC,2.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,SC,SC,33.121111,-80.029444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.024686669198633 -57946,Fredericktown Energy Center,UNIT1,2015.0,13.8,12.0,13.8,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913043,1.0,SERC,SWPP,MO,37.571672,-90.317251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82762436762226 -57946,Fredericktown Energy Center,UNIT2,2015.0,13.8,12.0,13.8,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913043,1.0,SERC,SWPP,MO,37.571672,-90.317251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82762436762226 -57947,Macho Springs Power I,GEN,2011.0,50.4,50.4,50.4,1.8,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,EPE,NM,32.55434,-107.50929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57948,NJ Oak Solar Plant,OAK,2011.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.380565,-75.188312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57949,MSC Sebewaing,1,1990.0,1.5,,1.4,0.1,BIT,Conventional Steam Coal,OP,ST,10.0,1990.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",,0.9333333333333332,RFC,MISO,MI,43.741111,-83.447222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.167097181136342 -57949,MSC Sebewaing,2,1979.0,1.0,,0.9,0.1,BIT,Conventional Steam Coal,OS,ST,10.0,1979.0, , ,,,,,coal,coal,Bituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",,0.9,RFC,MISO,MI,43.741111,-83.447222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57950,MSC Croswell,1,1948.0,1.3,,1.2,0.1,NG,Natural Gas Steam Turbine,OP,ST,10.0,1948.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",,0.923076923076923,RFC,MISO,MI,43.266389,-82.619167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -57951,Shore Point Solar,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.245,-74.243333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57952,Woodall Gas Plant,GEN1,2012.0,1.0,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,OS,IC,5.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,TX,35.690833,-100.240278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57952,Woodall Gas Plant,GEN2,2012.0,1.0,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,OS,IC,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,TX,35.690833,-100.240278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57952,Woodall Gas Plant,GEN3,2012.0,1.0,1.0,1.0,0.1,NG,Natural Gas Internal Combustion Engine,OS,IC,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,TX,35.690833,-100.240278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57953,Roquette America,GT,2004.0,40.0,38.0,40.0,15,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.95,1.0,MRO,MISO,IA,40.389167,-91.394167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.863142867050419 -57953,Roquette America,HRSG,2004.0,10.0,10.0,10.0,3,NG,Natural Gas Fired Combined Cycle,OS,CA,7.0,2004.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,MRO,MISO,IA,40.389167,-91.394167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57953,Roquette America,ST,2007.0,34.4,32.0,32.0,5,PC,Petroleum Coke,OP,ST,2.0,2007.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.930232558139535,0.930232558139535,MRO,MISO,IA,40.389167,-91.394167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57956,"Minco Wind II, LLC",1,2011.0,100.8,100.8,100.8,0,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.325278,-98.071389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57959,Desert Green Solar Farm LLC,1,2014.0,6.3,6.3,6.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.27055,-116.34805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57962,Brookfield Tehachapi 1,BT1,2012.0,102.0,102.0,102.0,1,WND,Onshore Wind Turbine,OP,WT,3.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.008333,-118.241389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57963,Musselshell Wind Project,MS01,2012.0,10.0,10.0,10.0,0.2,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.275278,-109.482778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57964,Shady Oaks Wind Farm,1,2012.0,109.5,109.5,109.5,40,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,PJM,IL,41.666944,-89.059722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57965,Musselshell Wind Project Two LLC,MS02,2012.0,10.0,10.0,10.0,0.2,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.275278,-109.482778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57966,Southeast Steam Plant,SSP,1998.0,13.0,2.0,10.0,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.15384615384615385,0.7692307692307692,MRO,MISO,MN,44.980833,-93.249722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57968,Cashton Greens Wind Farm,CGWF,2012.0,5.0,4.8,4.8,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.96,0.96,MRO,MISO,WI,43.733889,-90.805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57969,Darrington,GEN1,2007.0,4.5,4.5,4.5,1,WDS,Wood/Wood Waste Biomass,OP,ST,2.0,2007.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,WA,48.269737,-121.599979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38.24724248086312 -57970,Butte College Main Campus Solar,SOL1,2011.0,3.5,3.6,3.5,0,SUN,Solar Photovoltaic,OP,PV,7.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,39.648056,-121.644167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57971,SF Southeast Cogen Plant,COGEN,2002.0,2.1,1.9,1.9,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2002.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9047619047619047,0.9047619047619047,WECC,CISO,CA,37.739722,-122.3925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.197552447552448 -57973,Spinning Spur Wind LLC,GEN1,2012.0,161.0,161.0,161.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.2375,-102.203056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57974,Bobcat Bluff Wind Project LLC,GEN1,2012.0,161.0,161.0,161.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.493056,-98.581944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57975,Spearville 3 LLC,GEN1,2012.0,108.0,108.0,108.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.851111,-99.838056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57976,Pocahontas Prairie Wind Farm,1,2012.0,80.0,80.0,80.0,1,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.568056,-94.658056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57977,High Sierra Cogeneration Plant,ENG1,2010.0,3.0,2.5,2.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,0.9333333333333332,WECC,CISO,CA,40.4128,-120.4774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.617287612719506 -57977,High Sierra Cogeneration Plant,ENG2,2010.0,3.0,2.5,2.8,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,0.9333333333333332,WECC,CISO,CA,40.4128,-120.4774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.617287612719506 -57978,Lodi Energy Center,CT1,2012.0,185.0,162.0,181.0,100,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8756756756756756,0.9783783783783784,WECC,CISO,CA,38.088056,-121.3875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.03324654010579 -57978,Lodi Energy Center,ST1,2012.0,103.9,95.0,96.0,65,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9143407122232916,0.9239653512993262,WECC,CISO,CA,38.088056,-121.3875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57979,Kingdom Community Wind,KCW,2012.0,65.0,65.0,65.0,5,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,VT,44.748333,-72.425278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57980,Busch Ranch Wind Energy Farm,WTG,2012.0,29.0,29.0,29.0,2,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,37.801111,-104.491944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57981,Senate Wind LLC,GEN1,2012.0,150.0,150.0,150.0,40,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.205801,-98.365069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57982,Meridian Vineyards,PV-1,2010.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.670278,-120.566944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57982,Meridian Vineyards,PV-2,2010.0,0.6,0.6,0.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.670278,-120.566944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57983,Stephens Ranch Wind Energy LLC,1,2014.0,211.0,211.0,211.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.926389,-101.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57983,Stephens Ranch Wind Energy LLC,2,2015.0,165.0,165.0,165.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.926389,-101.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57984,Lake Winds Energy Park,LWEP,2012.0,100.8,100.8,100.8,0,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.871944,-86.334722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57985,SunE EPE2 LLC,1,2012.0,12.0,13.6,13.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.251667,-106.913333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57986,SunE EPE1 LLC,1,2012.0,10.0,11.3,11.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.034383,-106.340986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57987,Canadian Hills Wind,1,2012.0,293.7,293.7,293.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.629722,-98.024722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57988,Lincoln Landfill,GEN 5,2012.0,0.8,0.8,0.8,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.838056,-121.341944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19304820603102 -57988,Lincoln Landfill,GEN 6,2012.0,0.8,0.8,0.8,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.838056,-121.341944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19304820603102 -57988,Lincoln Landfill,GEN1,2004.0,0.8,0.8,0.8,0.7,LFG,Landfill Gas,OP,IC,11.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.838056,-121.341944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19304820603102 -57988,Lincoln Landfill,GEN2,2004.0,0.8,0.8,0.8,0.7,LFG,Landfill Gas,OP,IC,11.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.838056,-121.341944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19304820603102 -57988,Lincoln Landfill,GEN3,2004.0,0.8,0.8,0.8,0.7,LFG,Landfill Gas,OP,IC,11.0,2004.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.838056,-121.341944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19304820603102 -57988,Lincoln Landfill,GEN4,2012.0,0.8,0.8,0.8,0.7,LFG,Landfill Gas,OP,IC,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.838056,-121.341944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.19304820603102 -57989,Groveland Solar,GSMA,2012.0,3.2,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.751111,-71.037222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57990,Shrewsbury Solar,SSMA,2012.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.266111,-71.695833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57991,Highland North Wind Farm,1,2012.0,75.0,75.0,75.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.319561,-78.680633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57992,Boston Scientific Solar,BSMA,2012.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.293333,-71.033889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL1,2013.0,40.3,40.3,40.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL10,2013.0,30.2,30.2,30.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL11,2013.0,20.2,20.2,20.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL2,2013.0,40.3,40.3,40.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL3,2013.0,40.3,40.3,40.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL4,2013.0,30.2,30.2,30.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL5,2014.0,25.2,25.2,25.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL6,2014.0,25.2,25.2,25.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL7,2014.0,20.2,20.2,20.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL8,2014.0,18.9,18.9,18.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57993,"Desert Sunlight 300, LLC",DSL9,2014.0,22.7,22.7,22.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.823056,-115.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57994,Apple Data Center PV,PV1,2013.0,21.0,20.0,16.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9523809523809523,0.7857142857142857,SERC,DUK,NC,35.588135,-81.25198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57995,NaturEner Rim Rock Energy,RR,2012.0,189.0,184.6,184.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9767195767195767,0.9767195767195767,WECC,WWA,MT,48.820278,-112.103333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57996,Auwahi Wind Energy Hybrid,AWEB,2012.0,11.0,11.0,11.0,0,MWH,Batteries,OP,BA,12.0,2012.0, , ,4.4,11.0,11.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,20.596,-156.318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57996,Auwahi Wind Energy Hybrid,AWET,2012.0,24.0,24.0,24.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,20.596,-156.318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57997,Foothills Solar Plant Hybrid,PV1,2013.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.64856,-114.428741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57997,Foothills Solar Plant Hybrid,PV2,2013.0,18.0,18.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.64856,-114.428741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57998,Twin Ridges Wind Farm,1,2012.0,139.4,139.4,139.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,39.760556,-78.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -57999,Patton Wind Farm,1,2012.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,40.63067,-78.696078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58000,"Anacacho Wind Farm, LLC",ANA,2012.0,99.8,99.8,99.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,29.234722,-100.209167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58001,Panda Temple Power Station,CTG-1,2014.0,232.0,232.0,232.0,140,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.055833,-97.317222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58001,Panda Temple Power Station,CTG-2,2014.0,232.0,232.0,232.0,140,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,TRE,ERCO,TX,31.055833,-97.317222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58001,Panda Temple Power Station,CTG-3,2015.0,232.0,211.0,230.0,140,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9094827586206896,0.9913793103448276,TRE,ERCO,TX,31.055833,-97.317222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58001,Panda Temple Power Station,CTG-4,2015.0,232.0,211.0,230.0,140,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9094827586206896,0.9913793103448276,TRE,ERCO,TX,31.055833,-97.317222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58001,Panda Temple Power Station,STG-1,2014.0,339.2,326.0,326.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9610849056603774,0.9610849056603774,TRE,ERCO,TX,31.055833,-97.317222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58001,Panda Temple Power Station,STG-2,2015.0,339.2,312.0,326.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.919811320754717,0.9610849056603774,TRE,ERCO,TX,31.055833,-97.317222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58002,Alpaugh North,SPS,2012.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.9025,-119.442778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58003,Alpaugh 50,SPS50,2012.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.898333,-119.435278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58004,Granite Reliable Power,1,2012.0,99.0,99.0,99.0,0.5,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,NH,44.704444,-71.2925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58005,Panda Sherman Power Station,CTG-1,2014.0,232.0,199.0,224.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8577586206896551,0.9655172413793104,TRE,ERCO,TX,33.582573,-96.617893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58005,Panda Sherman Power Station,CTG-2,2014.0,232.0,199.0,224.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8577586206896551,0.9655172413793104,TRE,ERCO,TX,33.582573,-96.617893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58005,Panda Sherman Power Station,STG-1,2014.0,339.2,287.0,316.0,150,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8461084905660378,0.9316037735849056,TRE,ERCO,TX,33.582573,-96.617893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58006,Salt Palace Solar Gen Plant,1,2012.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,40.767222,-111.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58006,Salt Palace Solar Gen Plant,2,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,40.767222,-111.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58007,Brea Expansion Plant,G1,2012.0,6.3,6.8,6.8,3.5,LFG,Landfill Gas,OP,CT,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.932022,-117.840233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.162213596419098 -58007,Brea Expansion Plant,G2,2012.0,6.3,6.8,6.8,3.5,LFG,Landfill Gas,OP,CT,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.932022,-117.840233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.979019298731375 -58007,Brea Expansion Plant,G3,2012.0,6.3,6.8,6.8,3.5,LFG,Landfill Gas,OP,CT,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.932022,-117.840233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.928063277051553 -58007,Brea Expansion Plant,G4,2012.0,6.3,6.8,6.8,3.5,LFG,Landfill Gas,OP,CT,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,33.932022,-117.840233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.983141680240061 -58007,Brea Expansion Plant,G5,2012.0,10.5,10.0,10.0,4,LFG,Landfill Gas,OP,CA,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Steam Part,0.9523809523809523,0.9523809523809523,WECC,CISO,CA,33.932022,-117.840233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58008,California Ridge Wind Energy LLC,CR,2012.0,217.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9216589861751152,0.9216589861751152,SERC,MISO,IL,40.211667,-87.878333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58009,SunE CPS3 LLC,1,2012.0,5.6,5.6,5.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.221944,-98.669167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58009,SunE CPS3 LLC,2,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.221944,-98.669167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58010,WSMR I,WSMR1,2012.0,3.7,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.395833,-106.47722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58010,WSMR I,WSMR2,2012.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.395833,-106.47722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58011,IKEA Savannah 490,IKEA,2021.0,1.0,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.177535,-81.173775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58011,IKEA Savannah 490,PV,2012.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.177535,-81.173775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58012,IKEA Tampa 042,PV,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.953889,-82.4325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58013,IKEA Round Rock 027,PV,2012.0,1.4,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9285714285714286,0.9285714285714286,TRE,ERCO,TX,30.557044,-97.690286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58014,IKEA Perryville 460,PV,2013.0,2.1,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9523809523809523,0.9523809523809523,RFC,PJM,MD,39.560833,-76.055278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58015,IKEA College Park 411,IKEA,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.021,-76.926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58015,IKEA College Park 411,PV,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.021,-76.926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58016,IKEA Westhampton 061,PV,2013.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.013889,-74.853611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58017,Copper Mountain Solar 2,PV01,2012.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.786389,-114.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58017,Copper Mountain Solar 2,PV02,2012.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.786389,-114.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58017,Copper Mountain Solar 2,PV03,2012.0,34.0,34.0,34.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.786389,-114.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58017,Copper Mountain Solar 2,PV04,2015.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.786389,-114.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58017,Copper Mountain Solar 2,PV05,2015.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.786389,-114.962778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58018,Shooting Star,1,2012.0,104.0,104.0,104.0,0.8,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.518889,-99.446389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58019,High Mesa,1,2012.0,40.0,39.9,39.9,1.2,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9974999999999999,0.9974999999999999,WECC,IPCO,ID,42.88,-115.036667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58020,Beebe 1A,1,2012.0,81.6,81.6,81.6,0.9,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.256944,-84.499722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58021,Whitetail,1,2012.0,92.0,91.2,91.2,0.7,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.991304347826087,0.991304347826087,TRE,ERCO,TX,27.488056,-99.005278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58022,Neal Hot Springs Geothermal Project,NHS1,2012.0,11.0,5.9,9.5,0.5,GEO,Geothermal,OP,BT,11.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5363636363636364,0.8636363636363636,WECC,IPCO,OR,44.023056,-117.46806,NealHotSprings1,GEO,True,6.0,16.0,-1.0,8.59,8.59,0.0,0.0,1.0,3.098312,11.0,-1.761436537156525,64.5858013763727,-6.191923198575691e-06,-1.761337776563295,64.58542302130681,6.679004750208,#TRUE#,#2012-07-09#,#2050-12-31#,Existing,IPTV,BS_IPCO,0.0,11.0,4.9,OR,Geo,Binary,#FALSE#,5.5,11, -58022,Neal Hot Springs Geothermal Project,NHS2,2012.0,11.0,5.9,9.5,0.5,GEO,Geothermal,OP,BT,11.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5363636363636364,0.8636363636363636,WECC,IPCO,OR,44.023056,-117.46806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58022,Neal Hot Springs Geothermal Project,NHS3,2012.0,11.0,5.9,9.5,0.5,GEO,Geothermal,OP,BT,12.0,2012.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.5363636363636364,0.8636363636363636,WECC,IPCO,OR,44.023056,-117.46806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58024,St Joseph Landfill Generating Station,UNIT1,2011.0,1.6,1.5,1.5,1.2,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,MRO,SWPP,MO,39.674444,-94.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.641028532761926 -58025,Mt Wachusett Community College,WTG1,2011.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.588583,-71.984194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58025,Mt Wachusett Community College,WTG2,2011.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,3.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.588583,-71.984194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58026,Spruce Mountain WInd,1,2011.0,20.0,20.0,20.0,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.415587,-70.559814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58027,SunE CPS2 LLC,1,2012.0,10.0,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.99,0.99,TRE,ERCO,TX,29.245,-98.418333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58028,IKEA Tejon 345,PV,2011.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.975278,-118.946944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58029,Constellation New Energy Inc,PV1,2011.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.928889,-74.818056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58030,Reeves Station Rd East,REEVE,2012.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.928333,-74.814444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58032,Padelford Solar,PSMA,2012.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.853333,-71.065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58034,Nickel 1 Solar Facility,1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.647295,-119.716512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58035,Block Island Wind Farm,BIWF,2016.0,30.0,29.3,29.3,0.1,WND,Offshore Wind Turbine,OP,WS,12.0,2016.0, , ,,,,,offwind,wind,Wind,"Wind Turbine, Offshore",0.9766666666666667,0.9766666666666667,NPCC,ISNE,RI,41.114722,-71.521111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58036,Riverside Renewable Energy LLC,1,2011.0,7.5,7.5,6.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,NJ,39.903056,-75.125833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58037,Buckeye Union HS District 201,PV1,2011.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.419167,-112.576111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58038,Buffalo Center Wind LLC,BCW,2011.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.385833,-92.759444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58039,Axium Modesto Solar,1,2012.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.734167,-120.995556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58040,United Stationers Supply Solar Electric,SEF-A,2011.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.320556,-74.501667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58040,United Stationers Supply Solar Electric,SEF-B,2011.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.320556,-74.501667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58041,Chisholm View Wind Project,1,2012.0,235.2,235.2,235.2,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.574722,-97.673611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58041,Chisholm View Wind Project,2,2016.0,64.8,64.8,64.8,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.574722,-97.673611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58042,Black Mountain Solar LLC,1,2012.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,35.0227,-114.1627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58043,Lilly Technical Center,1,1998.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,3.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.7475,-86.183056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58043,Lilly Technical Center,2,2001.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,7.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.7475,-86.183056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58043,Lilly Technical Center,3,2005.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,SB,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.7475,-86.183056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58043,Lilly Technical Center,4,2010.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,SB,IC,6.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.7475,-86.183056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58044,"Anchor Wind, LLC",GEN1,2012.0,6.0,5.9,5.9,0,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9833333333333334,0.9833333333333334,MRO,MISO,IA,41.850833,-91.234167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58045,Community Wind South,GEN1,2012.0,30.0,30.0,30.0,0.3,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.713611,-95.802778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58046,Works 53,1,1967.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,1.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.755,-80.277778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58046,Works 53,2,1975.0,1.2,1.2,1.2,0,DFO,Petroleum Liquids,SB,IC,1.0,1975.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.755,-80.277778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58046,Works 53,3,1988.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.755,-80.277778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58047,PPG Monroeville Chemicals Center,2,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,9.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.442222,-79.731111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58047,PPG Monroeville Chemicals Center,3,1998.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,10.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.442222,-79.731111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58048,BayWa r.e Mozart LLC,1,2012.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.969722,-100.524167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58049,Jordache Enterprises Solar,PV,2011.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.55569,-74.40836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58051,Vitro Architectural Glass (PA),L121,2021.0,2.0,2.0,2.0,1,DFO,Petroleum Liquids,SB,IC,11.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.126389,-77.164444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.483793517406964 -58051,Vitro Architectural Glass (PA),L2AE,1996.0,1.5,1.5,1.5,0.7,DFO,Petroleum Liquids,SB,IC,5.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.126389,-77.164444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.483793517406962 -58051,Vitro Architectural Glass (PA),L2BW,1996.0,1.5,1.5,1.5,0.7,DFO,Petroleum Liquids,SB,IC,5.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.126389,-77.164444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.483793517406962 -58052,Battle Creek Mill,1TG,2000.0,2.0,0.8,1.2,0.1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4,0.6,RFC,MISO,MI,42.3221,-85.2043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58052,Battle Creek Mill,2TG,1951.0,2.0,0.8,1.2,0.2,NG,Natural Gas Steam Turbine,OS,ST,1.0,1951.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4,0.6,RFC,MISO,MI,42.3221,-85.2043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -58053,Vitro Flat Glass LLC,IG#2,1992.0,0.9,0.7,0.7,0.3,DFO,Petroleum Liquids,SB,IC,2.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7777777777777777,0.7777777777777777,WECC,CISO,CA,36.69,-119.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58053,Vitro Flat Glass LLC,OG#1,2000.0,1.3,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,4.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.7692307692307692,0.7692307692307692,WECC,CISO,CA,36.69,-119.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58053,Vitro Flat Glass LLC,OG#3,1983.0,1.1,0.9,0.9,0.4,DFO,Petroleum Liquids,SB,IC,4.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,WECC,CISO,CA,36.69,-119.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58054,Burgess BioPower,ST01,2013.0,75.0,67.5,67.5,52,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9,0.9,NPCC,ISNE,NH,44.471944,-71.175278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.688442708863242 -58056,"Irwindale Brew Yard, LLC",JEN1,2007.0,0.5,0.6,0.6,0.3,OBG,Other Waste Biomass,OA,IC,7.0,2007.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.121667,-117.938333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58056,"Irwindale Brew Yard, LLC",PV,2015.0,2.5,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.32000000000000006,0.32000000000000006,WECC,CISO,CA,34.121667,-117.938333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58056,"Irwindale Brew Yard, LLC",T100,2002.0,5.2,4.1,4.7,3,NG,Natural Gas Fired Combustion Turbine,OS,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7884615384615383,0.9038461538461539,WECC,CISO,CA,34.121667,-117.938333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58056,"Irwindale Brew Yard, LLC",T200,2002.0,5.2,4.1,4.7,3,NG,Natural Gas Fired Combustion Turbine,OS,GT,2.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7884615384615383,0.9038461538461539,WECC,CISO,CA,34.121667,-117.938333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58057,Molson Coors Shenandoah Brewery,WWTP,2012.0,1.4,1.4,1.4,0.5,OBG,Other Waste Biomass,OP,GT,6.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,PJM,VA,38.356944,-78.676667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.183484468454562 -58058,Paramount Refinery,1,2002.0,6.7,6.5,6.5,3,NG,Natural Gas Fired Combustion Turbine,OS,GT,12.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9701492537313433,0.9701492537313433,WECC,CISO,CA,33.9,-118.151389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58061,Decatur-Morgan Co LFG Recovery Project,0290,2011.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,7.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.623611,-87.101111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.047085889570551 -58061,Decatur-Morgan Co LFG Recovery Project,1496,2010.0,0.8,0.8,0.8,0.6,LFG,Landfill Gas,OP,IC,8.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.623611,-87.101111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.047085889570551 -58062,Imperial Valley Solar Company 1 LLC,0001,2012.0,23.0,23.0,23.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.245833,-115.496667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58063,SABIC Innovative Plastics Mt. Vernon,COGN1,2017.0,108.0,78.6,98.5,38,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7277777777777777,0.912037037037037,RFC,MISO,IN,37.910278,-87.926111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.555956111733758 -58064,Laredo Bus Facility Solar Canopies,LBFS,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.783333,-84.267778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58065,Charlestown Wind Turbine,CWT1,2011.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.391389,-71.070833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58066,"PCA, Filer City Mill",TG2,1950.0,8.0,8.0,8.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,1.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,44.213333,-86.286667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58066,"PCA, Filer City Mill",TG3,1950.0,11.5,11.5,11.5,2,NG,Natural Gas Steam Turbine,OP,ST,1.0,1950.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,44.213333,-86.286667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58068,SunE CPS1 LLC,1,2012.0,10.0,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.99,0.99,TRE,ERCO,TX,29.245,-98.418333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58069,PRSI FCC Generator,55M1,1979.0,4.7,3.0,3.0,0,PC,Petroleum Coke,OS,ST,4.0,1979.0, , ,,,,,oil,oil,Petroleum Coke,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6382978723404256,0.6382978723404256,TRE,ERCO,TX,29.723333,-95.210278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58070,Mercer Mall,1,2012.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.290556,-74.681944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58071,Windwalkers LLC,1,2011.0,1.6,1.6,1.6,0.5,WND,Onshore Wind Turbine,OP,WT,9.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.384722,-93.221389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58073,SEPV 1,SEPV,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.618861,-117.939444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58074,SEPV 2,SEPV,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.174167,-116.152778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58075,El Dorado Refinery,L3804,1996.0,38.9,32.0,38.0,20,NG,Natural Gas Fired Combustion Turbine,SB,GT,1.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8226221079691517,0.9768637532133676,MRO,SWPP,KS,37.792778,-96.877222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.024658565032544 -58076,Edwards Air Force Base,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.9077,-117.9206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58076,Edwards Air Force Base,2,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.9077,-117.9206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58076,Edwards Air Force Base,3,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.9077,-117.9206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58078,Rocky Ridge Wind Project,GE 1.,2012.0,148.8,148.8,148.8,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.135556,-99.003056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58079,Newark Energy Center,GT-1,2015.0,225.0,209.3,231.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9302222222222223,1.0,RFC,PJM,NJ,40.707222,-74.125833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58079,Newark Energy Center,GT-2,2015.0,225.0,210.4,231.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,9.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9351111111111111,1.0,RFC,PJM,NJ,40.707222,-74.125833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58079,Newark Energy Center,STG-1,2015.0,285.0,285.3,287.5,60,NG,Natural Gas Fired Combined Cycle,OP,CA,9.0,2015.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,NJ,40.707222,-74.125833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58080,Wolf Ridge Wind,1,2008.0,112.5,112.5,112.5,5.6,WND,Onshore Wind Turbine,OP,WT,8.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.733006,-97.428406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58081,Western Sugar Coop- Ft Morgan,ATB-2,1947.0,3.0,3.0,3.0,1,NG,Natural Gas Steam Turbine,OP,ST,9.0,1947.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PSCO,CO,40.263,-103.8069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,143.82913508693713 -58082,AMP Napoleon Solar Facility,NSF1,2012.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.406667,-84.110833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58084,"Kimberly Clark-Unit 1,2,3",GT100,2008.0,16.1,14.5,16.1,7,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9006211180124223,1.0,NPCC,ISNE,CT,41.558333,-73.413611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.965611986345763 -58084,"Kimberly Clark-Unit 1,2,3",GT200,2008.0,16.1,14.5,16.1,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9006211180124223,1.0,NPCC,ISNE,CT,41.558333,-73.413611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.88709524890301 -58084,"Kimberly Clark-Unit 1,2,3",GT300,2008.0,4.1,4.1,4.1,0.4,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2008.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,CT,41.558333,-73.413611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58085,PRC-Desoto Intl/PPG Aerospace,CATR1,1999.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,9.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.989722,-118.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58085,PRC-Desoto Intl/PPG Aerospace,CATR2,2000.0,1.0,1.0,1.0,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.989722,-118.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58086,Intel Folsom,1,2010.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.645119,-121.172999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58086,Intel Folsom,2,2010.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.645119,-121.172999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58088,Stony Creek Wind Farm NY,1,2013.0,94.4,94.4,94.4,0,WND,Onshore Wind Turbine,OP,WT,11.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.767614,-78.415843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58089,Roeder Family Wind Farm LLC,1,2011.0,1.6,1.6,1.6,0.5,WND,Onshore Wind Turbine,OP,WT,9.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.297222,-93.283333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58090,Middlesex Apple Orchard Solar,SEF-1,2013.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.426389,-74.492222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58090,Middlesex Apple Orchard Solar,SEF-2,2013.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.426389,-74.492222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58091,Keystone Solar,KSTN,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.861111,-76.221111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58093,BBB Corporate Headquarters,HQNJ,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.697222,-74.305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58094,Christmas Tree Shops DC Burlington NJ,FINJ,2011.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.104167,-74.812778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58095,Harmon DC Totowa NJ,TONJ,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.903889,-74.247778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58096,Bed Bath & Beyond DC Port Reading NJ,PTNJ,2011.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.568333,-74.2425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58097,Green Meadows,1,2014.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.669444,-70.531944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58098,El Cabo Wind,1,2017.0,298.0,298.0,298.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.651111,-105.461667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58099,Montague Wind Power Facility LLC,1,2019.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.5857,-120.0904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58100,Kern Oil & Refining Co,5900,2002.0,4.5,4.9,4.9,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.295556,-118.918333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.55702364394993 -58101,Foundation Cemex River Plant,WTG1,2012.0,1.6,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.561944,-117.307222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58101,Foundation Cemex River Plant,WTG2,2012.0,1.6,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.561944,-117.307222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58102,Foundation Cemex BMQ,WTG1,2012.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.623056,-117.1125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58102,Foundation Cemex BMQ,WTG2,2012.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.623056,-117.1125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58103,Heritage Garden Wind Farm I LLC,1,2012.0,28.0,28.0,28.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,45.795556,-86.533889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58104,Foundation Superior Farms,WTG1,2012.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.42,-121.818056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58105,Foundation Wal-Mart Red Bluff,WTG1,2012.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,40.111111,-122.193889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58106,Meadow Creek Project Company,MCPC,2012.0,119.7,115.8,115.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9674185463659147,0.9674185463659147,WECC,PACE,ID,43.524429,-111.803921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58108,International Paper Red River Mill,3 T-G,2008.0,78.8,55.0,62.0,5,BLQ,Wood/Wood Waste Biomass,OP,ST,12.0,2008.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6979695431472082,0.7868020304568528,SERC,MISO,LA,31.905833,-93.1725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58109,Georgia-Pacific Toledo Mill,TG2,2007.0,18.8,13.4,13.4,2,BLQ,Wood/Wood Waste Biomass,OP,ST,2.0,2007.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7127659574468085,0.7127659574468085,WECC,BPAT,OR,44.611944,-123.931944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58110,Brookside Newark,BRK,2012.0,2.6,2.6,2.6,1,NG,Other Natural Gas,OP,FC,6.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.668889,-75.716111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58111,Bishop Hill II Wind Farm,1,2012.0,81.0,81.0,81.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,41.2325,-90.174167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58112,Foundation Cemex Madison,WTG1,2012.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.692778,-121.9325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58113,Foundation RRM,WTG1,2012.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.917222,-116.815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58113,Foundation RRM,WTG2,2012.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.917222,-116.815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58114,Foundation NWNA,WTG1,2012.0,1.6,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.914167,-116.749167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58114,Foundation NWNA,WTG2,2012.0,1.6,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.914167,-116.749167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58114,Foundation NWNA,WTG3,2018.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.914167,-116.749167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58116,Cellu Tissue,GEN1,2009.0,3.0,2.5,2.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,NPCC,ISNE,CT,41.776111,-72.606667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.900239001504824 -58117,TNSG South Plant,1A,2006.0,1.4,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,0.9285714285714286,non-conus,non-conus,AK,70.2,-148.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58117,TNSG South Plant,2,1992.0,0.8,0.8,0.8,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.2,-148.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58117,TNSG South Plant,3,1992.0,0.8,0.8,0.8,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.2,-148.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58117,TNSG South Plant,4A,2006.0,1.4,1.3,1.3,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,0.9285714285714286,non-conus,non-conus,AK,70.2,-148.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58117,TNSG South Plant,6,2003.0,3.4,3.0,3.0,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8823529411764706,0.8823529411764706,non-conus,non-conus,AK,70.2,-148.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58118,La Joya Del Sol,JDS1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.678611,-119.7975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58119,Depot Park Solar System,DPSS,2010.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.515,-121.398333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58121,Echo Wind Park,GEN1,2014.0,49.6,49.6,49.6,5,WND,Onshore Wind Turbine,OP,WT,1.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.8825,-83.161389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58121,Echo Wind Park,GEN2,2014.0,62.4,62.4,62.4,5,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.8825,-83.161389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58121,Echo Wind Park,GEN3,2016.0,50.0,50.0,50.0,5,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.8825,-83.161389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58122,Delano Energy Center,GEN1,2013.0,60.5,60.5,60.5,16,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.790864,-119.294469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.481655310087836 -58123,Wakefern Food Corp,1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.51,-74.328333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58124,Rothschild Biomass Cogen Facility,1,2013.0,57.5,46.6,46.8,15,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8104347826086957,0.8139130434782609,RFC,MISO,WI,44.887778,-89.629722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29.62898081133067 -58125,Quay County,1,2013.0,27.0,17.0,23.0,10,DFO,Petroleum Liquids,OP,GT,10.0,2013.0,12,2034,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.6296296296296297,0.8518518518518519,WECC,SWPP,NM,35.182778,-103.731111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.83529411764706 -58126,Limon Wind I,1,2012.0,200.0,200.0,200.0,7,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,39.380975,-103.573236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58127,Limon Wind II,1,2012.0,200.0,200.0,200.0,200,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,39.341389,-103.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58128,Kaiser Downey,KRSO1,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,6.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.919167,-118.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58128,Kaiser Downey,KRSO2,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,6.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.919167,-118.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58128,Kaiser Downey,KRSO3,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,6.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.919167,-118.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58128,Kaiser Downey,KRSO4,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,6.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.919167,-118.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58128,Kaiser Downey,KRSO5,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,6.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.919167,-118.128611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58130,Blue Mountain Biogas,BMB N,2012.0,1.6,1.5,1.5,0.8,OBG,Other Waste Biomass,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACE,UT,38.173889,-113.297222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.271377672209026 -58130,Blue Mountain Biogas,BMB S,2012.0,1.6,1.5,1.5,0.8,OBG,Other Waste Biomass,OP,IC,10.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9375,0.9375,WECC,PACE,UT,38.173889,-113.297222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.271377672209026 -58131,Outback Solar At Christmas Valley,PV1,2012.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.236944,-120.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58132,Kaiser Ontario,KSRO1,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,10.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.0325,-117.608889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58132,Kaiser Ontario,KSRO2,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,10.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.0325,-117.608889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58132,Kaiser Ontario,KSRO3,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,10.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.0325,-117.608889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58132,Kaiser Ontario,KSRO4,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,10.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.0325,-117.608889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58132,Kaiser Ontario,KSRO5,2012.0,0.2,0.2,0.2,0.2,NG,Other Natural Gas,OP,FC,10.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.0325,-117.608889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58134,Oberlin Spear Point Solar One,OSSO,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.302761,-82.227047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58135,Washington White Post Solar LLC,1,2012.0,12.4,12.4,12.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.5052,-76.8484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58136,Adkins Energy LLC,S5MW,2002.0,5.0,4.0,5.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8,1.0,RFC,PJM,IL,42.362222,-89.803611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.86029632095888 -58136,Adkins Energy LLC,ST2MW,2019.0,1.8,1.8,1.8,0.5,NG,Natural Gas Steam Turbine,OP,ST,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IL,42.362222,-89.803611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31.98072715907907 -58137,Ensign Wind LLC,1,2012.0,98.9,98.9,98.9,4.9,WND,Onshore Wind Turbine,OP,WT,11.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.614473,-100.278666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58138,Otter Creek Ethanol Poet - Ashton,1,2004.0,7.5,5.5,9.0,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7333333333333334,1.0,MRO,MISO,IA,43.275,-95.809722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.216341668752417 -58139,Central Energy Plant USU,TURBI,2004.0,5.0,4.4,4.6,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8800000000000001,0.9199999999999999,WECC,PACE,UT,41.748611,-111.811667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.10878757238717 -58140,Summit Street Power Plant,GT-1,2003.0,5.7,4.9,5.6,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8596491228070176,0.9824561403508771,RFC,PJM,OH,41.143056,-81.340833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.145887156582305 -58140,Summit Street Power Plant,GT-2,2004.0,7.5,6.9,7.7,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.92,1.0,RFC,PJM,OH,41.143056,-81.340833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.1458863539509 -58141,Groton Wind LLC,1,2012.0,48.0,48.0,48.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,NH,43.7681,-71.8189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58144,SVEP Solar Project Company,SVEP1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,42.753611,-73.226111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58145,Williamstown Solar,WTS_1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.113056,-72.605833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58146,Twin Rivers Paper Co LLC,GEN5,1987.0,22.0,22.0,22.0,6,PUR,All Other,OP,ST,5.0,1987.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NBSO,ME,47.358139,-68.330855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58147,Prescott Solar Plant,PV1,2011.0,10.8,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,34.649444,-112.4275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58148,RE Kansas South LLC,KS,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226111,-119.834167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58149,TA-High Desert LLC,TAHD,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.708889,-118.304722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58150,Black Cap Solar Plant,1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.17505,-120.362631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58151,Central Utility Plant - Texas A&M,GTG01,2011.0,34.1,32.4,34.1,27,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9501466275659823,1.0,TRE,ERCO,TX,30.617778,-96.343333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.735839482953438 -58151,Central Utility Plant - Texas A&M,STG02,2011.0,11.0,11.0,11.0,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2011.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,TRE,ERCO,TX,30.617778,-96.343333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58152,Danbury Hospital Cogen Plant,GEN1,2011.0,4.3,3.8,3.8,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8837209302325582,0.8837209302325582,NPCC,ISNE,CT,41.405278,-73.4475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.713131313131314 -58153,Eastern Maine Medical Center,COGE,2006.0,3.8,3.8,5.0,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,ME,44.808333,-68.750833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.309059742238588 -58154,North Sky River Energy LLC,GEN1,2012.0,162.0,162.0,162.0,8,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.347778,-118.186389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58155,Perrin Ranch Wind LLC,GEN1,2012.0,99.2,99.2,99.2,5,WND,Onshore Wind Turbine,OP,WT,1.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AZPS,AZ,35.415556,-112.271111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58156,SUNY Old Westbury College,GE,2007.0,1.8,1.8,1.8,0.9,NG,Natural Gas Internal Combustion Engine,OA,IC,10.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.797858,-73.565661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.016107382550336 -58157,University of Rochester,HP,2005.0,18.2,17.0,17.0,2,NG,Natural Gas Steam Turbine,OP,ST,10.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9340659340659341,0.9340659340659341,NPCC,NYIS,NY,43.123889,-77.628889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58157,University of Rochester,LP,2005.0,7.2,7.2,7.2,1,NG,Natural Gas Steam Turbine,OP,ST,10.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,NYIS,NY,43.123889,-77.628889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58158,Wesleyan University Cogen 1,1,2009.0,2.4,2.3,2.3,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9583333333333333,0.9583333333333333,NPCC,ISNE,CT,41.556389,-72.653889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.831257533145841 -58159,UCONN Cogen Facility,CGT1,2006.0,6.9,6.4,6.4,3.2,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.927536231884058,0.927536231884058,NPCC,ISNE,CT,41.809167,-72.254167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.058983103144286 -58159,UCONN Cogen Facility,CGT2,2006.0,6.9,6.4,6.4,3.2,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.927536231884058,0.927536231884058,NPCC,ISNE,CT,41.809167,-72.254167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.218036054694458 -58159,UCONN Cogen Facility,CGT3,2006.0,6.9,6.4,6.4,3.2,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.927536231884058,0.927536231884058,NPCC,ISNE,CT,41.809167,-72.254167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.44707778992703 -58159,UCONN Cogen Facility,STG1,2006.0,5.0,4.9,4.9,0.2,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9800000000000001,0.9800000000000001,NPCC,ISNE,CT,41.809167,-72.254167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58160,Williams College - Campus CHP,GEN2,2003.0,3.0,3.0,3.0,0.3,NG,Natural Gas Steam Turbine,OP,ST,3.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,MA,42.709722,-73.202222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34.91455874086566 -58160,Williams College - Campus CHP,GEN4,2017.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.709722,-73.202222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.017241379310345 -58160,Williams College - Campus CHP,GEN5,2017.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,12.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.709722,-73.202222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.017241379310345 -58161,Western Michigan University Power Plant,EG-1,1999.0,0.8,0.8,0.8,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,1999.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.28,-85.606389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.686279704586392 -58161,Western Michigan University Power Plant,EG-10,2021.0,2.5,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.28,-85.606389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.68627612066834 -58161,Western Michigan University Power Plant,EG-9,2021.0,2.5,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.28,-85.606389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.68627612066834 -58161,Western Michigan University Power Plant,GTG-7,1997.0,5.0,4.2,5.6,4,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8400000000000001,1.0,RFC,MISO,MI,42.28,-85.606389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.558071017274473 -58161,Western Michigan University Power Plant,GTG-8,1997.0,5.0,4.2,5.6,4,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,1997.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8400000000000001,1.0,RFC,MISO,MI,42.28,-85.606389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.164676596187897 -58161,Western Michigan University Power Plant,STG-1,1999.0,0.9,0.9,0.9,0.2,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,1999.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,MISO,MI,42.28,-85.606389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58162,Cirrus Wind 1 LLC,CW,2012.0,61.2,61.2,61.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.033056,-101.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58163,Mercy Medical Center,1N,2020.0,1.0,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,9.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,NPCC,NYIS,NY,40.688333,-73.630833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58163,Mercy Medical Center,2N,2020.0,1.0,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,10.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,NPCC,NYIS,NY,40.688333,-73.630833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58163,Mercy Medical Center,3N,2020.0,1.0,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,12.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.8,NPCC,NYIS,NY,40.688333,-73.630833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58163,Mercy Medical Center,8,2004.0,0.6,0.6,0.6,0.6,DFO,Petroleum Liquids,SB,IC,1.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.688333,-73.630833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58164,Slayton Solar,PV1,2013.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.980278,-95.767222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58165,College of New Jersey,COGEN,1996.0,6.2,4.2,5.6,2.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.6774193548387097,0.9032258064516128,RFC,PJM,NJ,40.269444,-74.773333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.402723599888548 -58166,Smith College Central Heating Plant,GT-1,2008.0,5.3,2.7,3.5,1.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.509433962264151,0.6603773584905661,NPCC,ISNE,MA,42.3125,-72.639444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.471946271162725 -58167,William Floyd School District,GEN1,2004.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.776944,-72.850833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.547224864915501 -58167,William Floyd School District,GEN2,2004.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.776944,-72.850833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.547224864915501 -58167,William Floyd School District,GEN3,2004.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.776944,-72.850833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.547224864915501 -58168,Energy Center,TURB1,2019.0,0.3,0.3,0.3,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,34.063056,-117.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.831638607317167 -58168,Energy Center,TURB2,2019.0,0.3,0.3,0.3,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,34.063056,-117.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.831638607317167 -58168,Energy Center,TURB3,2019.0,0.3,0.3,0.3,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,34.063056,-117.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.831638607317167 -58169,CSUF Trigeneration,1,2010.0,4.6,4.3,4.3,1.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9347826086956522,0.9347826086956522,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35874856593594 -58169,CSUF Trigeneration,CPAC,2012.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58169,CSUF Trigeneration,KHS,2012.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58169,CSUF Trigeneration,NPS,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58169,CSUF Trigeneration,PS4,2012.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58169,CSUF Trigeneration,PS5,2020.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58169,CSUF Trigeneration,SCPS,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.880638,-117.88656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58170,Crafton Hills College Solar Farm,GEN1,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.043056,-117.098889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58171,Prairie Fire,GEN1,2012.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.116389,-110.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58172,Seaside Heights Power Plant,UINT3,2012.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OS,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.943333,-74.078611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58172,Seaside Heights Power Plant,UNIT1,2012.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OS,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.943333,-74.078611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58172,Seaside Heights Power Plant,UNIT2,2012.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OS,IC,9.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,39.943333,-74.078611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58173,BMW Manufacturing Co,GT601,2009.0,5.5,5.0,5.0,5,LFG,Landfill Gas,OP,GT,6.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,SERC,DUK,SC,34.894167,-82.178333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.327310814349307 -58173,BMW Manufacturing Co,GT602,2009.0,5.5,5.0,5.0,5,LFG,Landfill Gas,OP,GT,6.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,SERC,DUK,SC,34.894167,-82.178333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.327310814349307 -58174,Wilson Solar,WSMA,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.264167,-71.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58177,Kishwaukee CHP Plant,1,2010.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,1.0,2010.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.221944,-89.093333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35242094972067 -58177,Kishwaukee CHP Plant,2,2010.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2010.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.221944,-89.093333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35242094972067 -58177,Kishwaukee CHP Plant,3,2010.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,5.0,2010.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.221944,-89.093333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.35242094972067 -58178,M. G. Emmett J. Bean Federal Center,1,2011.0,1.9,1.5,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7894736842105263,0.631578947368421,RFC,MISO,IN,39.853056,-86.014444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58179,MTSU Power Co-Gen Plant,GT-01,1997.0,5.0,5.0,5.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,TVA,TN,35.851389,-86.365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.214839710444675 -58180,UNH 7.9 MW Plant,1,2006.0,7.9,7.9,7.9,3,LFG,Landfill Gas,OP,GT,9.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,NH,43.13674,-70.936125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.1568209943947 -58181,Loyola University Health Plant,UNIT1,2005.0,5.3,3.9,5.6,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7358490566037736,1.0,RFC,PJM,IL,41.855833,-87.835556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.648602395892755 -58181,Loyola University Health Plant,UNIT2,2005.0,5.3,3.9,5.6,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7358490566037736,1.0,RFC,PJM,IL,41.855833,-87.835556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.648602395892755 -58183,Prairie Horizon Agri Energy,T5741,2006.0,1.7,0.7,0.7,0.3,NG,Natural Gas Steam Turbine,OP,ST,10.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4117647058823529,0.4117647058823529,MRO,SWPP,KS,39.761111,-99.305833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -58184,Rand Whitney CHP Plant,TG-1,2005.0,14.6,14.6,14.6,7.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.452778,-72.136111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.305067473166883 -58185,Amherst College Co Gen,CTG,2006.0,1.2,1.2,1.2,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,MA,42.371667,-72.512222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.463785046728972 -58186,HVCC Cogen Plant,CG01,2004.0,0.9,0.8,0.9,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,1.0,NPCC,NYIS,NY,42.696944,-73.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.831118793891147 -58186,HVCC Cogen Plant,CG02,2004.0,0.9,0.8,0.9,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.888888888888889,1.0,NPCC,NYIS,NY,42.696944,-73.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.831118793891147 -58186,HVCC Cogen Plant,CG03,2004.0,1.4,1.3,1.4,1.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,1.0,NPCC,NYIS,NY,42.696944,-73.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.831118316549373 -58186,HVCC Cogen Plant,CG04,2004.0,1.4,1.2,1.4,1.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8571428571428572,1.0,NPCC,NYIS,NY,42.696944,-73.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.831118316549373 -58186,HVCC Cogen Plant,CG05,2004.0,2.1,2.0,2.1,1.1,DFO,Petroleum Liquids,SB,IC,4.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9523809523809523,1.0,NPCC,NYIS,NY,42.696944,-73.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.831116301874415 -58186,HVCC Cogen Plant,CG06,2005.0,1.4,1.3,1.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9285714285714286,1.0,NPCC,NYIS,NY,42.696944,-73.68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.831118316549373 -58187,180 Raritan Solar,1,2012.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.516111,-74.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58190,Thomas M Knott Cogen Facility,CG,2003.0,1.4,1.2,1.2,1,NG,Natural Gas Fired Combustion Turbine,OS,GT,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,0.8571428571428572,WECC,CISO,CA,35.184444,-120.618333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58191,US Magnesium,GT1,1972.0,16.0,11.0,13.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6875,0.8125,WECC,PACE,UT,40.913333,-112.733889,US_Magnesium1,OT GT,True,1.0,1.0,-1.0,14.4,14.4,479.3286,72.48,1.0,0.45,16.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1972-01-01#,#2050-12-31#,Existing,PAUT,BS_PACE,16.0,16.0,10.5,UT,NG,Areo,#FALSE#,16,16,46.29424048219029 -58191,US Magnesium,GT2,1972.0,16.0,11.0,13.0,2,NG,Natural Gas Fired Combustion Turbine,OA,GT,1.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6875,0.8125,WECC,PACE,UT,40.913333,-112.733889,US_Magnesium2,OT GT,True,1.0,1.0,-1.0,14.4,14.4,479.3286,72.48,1.0,0.45,16.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1972-01-02#,#2050-12-31#,Existing,PAUT,BS_PACE,16.0,16.0,10.5,UT,NG,Areo,#FALSE#,16,16,46.29424048219029 -58191,US Magnesium,GT3,1972.0,16.0,11.0,13.0,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,1972.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6875,0.8125,WECC,PACE,UT,40.913333,-112.733889,US_Magnesium3,OT GT,True,1.0,1.0,-1.0,14.4,14.4,479.3286,72.48,1.0,0.45,16.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#1972-01-03#,#2050-12-31#,Existing,PAUT,BS_PACE,16.0,16.0,10.5,UT,NG,Areo,#FALSE#,16,16,46.29424048219029 -58192,Arkalon Ethanol LLC,ST961,2008.0,3.0,3.0,3.0,0.1,NG,Natural Gas Steam Turbine,OP,ST,12.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,37.110556,-100.803611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.106402721930095 -58193,Bonanza BioEnergy LLC,ST96,2008.0,2.0,2.0,2.0,0.1,NG,Natural Gas Steam Turbine,OP,ST,8.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,KS,37.9586,-100.8361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -58194,West Campus Steam Plant,CT2,2021.0,6.1,4.5,6.1,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7377049180327869,1.0,RFC,PJM,PA,40.792778,-77.864722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.846930125539902 -58194,West Campus Steam Plant,WC 4,2017.0,2.9,1.5,2.8,0.4,NG,Natural Gas Steam Turbine,OP,ST,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.5172413793103449,0.9655172413793103,RFC,PJM,PA,40.792778,-77.864722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30.227429364957008 -58194,West Campus Steam Plant,WC 5,2017.0,2.2,1.5,2.2,0.2,NG,Natural Gas Steam Turbine,OP,ST,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6818181818181818,1.0,RFC,PJM,PA,40.792778,-77.864722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70.77907543001639 -58194,West Campus Steam Plant,WC6,2021.0,2.8,1.8,2.1,0.2,NG,Natural Gas Steam Turbine,OP,ST,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6428571428571429,0.7500000000000001,RFC,PJM,PA,40.792778,-77.864722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -58195,East Campus Steam Plant,CT1,2011.0,7.0,7.4,8.9,3.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,40.809167,-77.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.024846827788533 -58196,Cargill Salt Hersey,ST1,1998.0,2.1,2.1,2.1,0.6,NG,Natural Gas Steam Turbine,OP,ST,9.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,43.834167,-85.355833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.42932107365097 -58197,POET Biorefining Lake Crystal,1,2005.0,6.0,6.0,6.0,0,DFO,Petroleum Liquids,SB,IC,4.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.093333,-94.276667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.036217303822937 -58197,POET Biorefining Lake Crystal,2,2005.0,1.0,1.0,1.0,0,NG,Natural Gas Steam Turbine,OA,ST,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,MN,44.093333,-94.276667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -58198,Parnassus Central Utility Plant,GTG1,1996.0,4.8,5.2,5.2,2.5,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.762524,-122.456747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.171648713677587 -58198,Parnassus Central Utility Plant,GTG2,1996.0,4.8,5.5,5.5,2.6,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,WECC,CISO,CA,37.762524,-122.456747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.147468930278556 -58198,Parnassus Central Utility Plant,STG1,1996.0,3.8,1.8,1.8,0.3,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,1996.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.4736842105263158,0.4736842105263158,WECC,CISO,CA,37.762524,-122.456747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58199,Arizona State University CHP,G1,2006.0,9.2,9.2,6.9,3.5,NG,Natural Gas Fired Combined Cycle,OP,CS,4.0,2006.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,1.0,0.7500000000000001,WECC,AZPS,AZ,33.417222,-111.928333,ASU CHP,CC,False,6.0,2.0,-1.0,0.6,0.6,778.416,90.24,1.0,2.1,9.190001,6.396283800415601,3.6825813911568446,-9.324101420552059e-06,6.3964121958416795,3.6821528795735423,6.9484012829571595,#TRUE#,#2006-04-01#,#2050-12-31#,Existing,AZPS,SW_AZPS,5.0,9.190001,0.0,AZ,NG,Single shaft,#FALSE#,5,9.190001,13.427635652916377 -58199,Arizona State University CHP,G2,2019.0,7.9,7.9,7.9,3.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,AZPS,AZ,33.417222,-111.928333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58201,Monroe Community College Plant,1,2004.0,1.4,1.4,1.4,0.2,NG,Natural Gas Internal Combustion Engine,OA,IC,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.103889,-77.610278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58201,Monroe Community College Plant,2,2004.0,1.4,1.4,1.4,0.2,NG,Natural Gas Internal Combustion Engine,OA,IC,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.103889,-77.610278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58201,Monroe Community College Plant,3,2004.0,1.4,1.4,1.4,0.2,NG,Natural Gas Internal Combustion Engine,OA,IC,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.103889,-77.610278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58201,Monroe Community College Plant,4,2004.0,1.4,1.4,1.4,0.2,NG,Natural Gas Internal Combustion Engine,OA,IC,8.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.103889,-77.610278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58202,RE Victor Phelan Solar One LLC,VPS1,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.51231,-117.47753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58203,"Minco Wind III, LLC",1,2012.0,100.8,100.8,100.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.372359,-98.182731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58204,Grassland 3&4 Solar Project,INV3,2013.0,2.5,2.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,WECC,CISO,CA,38.500278,-121.694167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58205,Grand Ave Plant,1,1991.0,5.0,4.8,4.8,1,NG,Natural Gas Steam Turbine,OP,ST,7.0,1991.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.96,0.96,MRO,SWPP,MO,39.111944,-94.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84.95336234391048 -58206,West Gates Solar Station,1,2013.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.142222,-120.1325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58207,Central Utility Plant at White Oak,G1,2003.0,5.7,5.6,5.6,1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9824561403508771,0.9824561403508771,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.100680701754387 -58207,Central Utility Plant at White Oak,G10,2014.0,2.3,2.3,2.3,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.100680745341617 -58207,Central Utility Plant at White Oak,G11,2014.0,2.3,2.3,2.3,0.5,DFO,Petroleum Liquids,OP,IC,2.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.100680745341617 -58207,Central Utility Plant at White Oak,G12,2014.0,5.0,5.0,5.0,0.5,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58207,Central Utility Plant at White Oak,G2,2003.0,2.3,2.3,2.3,0.5,DFO,Petroleum Liquids,SB,IC,11.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.100680745341617 -58207,Central Utility Plant at White Oak,G3,2003.0,4.3,4.3,4.6,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.919790960653515 -58207,Central Utility Plant at White Oak,G4,2008.0,4.3,4.3,4.6,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.919790960653515 -58207,Central Utility Plant at White Oak,G5,2009.0,4.3,4.3,4.6,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.919790960653515 -58207,Central Utility Plant at White Oak,G6,2010.0,4.3,4.3,4.6,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.919790960653515 -58207,Central Utility Plant at White Oak,G7,2014.0,7.5,7.5,7.5,0.5,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.23998893099708 -58207,Central Utility Plant at White Oak,G8,2014.0,7.5,7.5,7.5,0.5,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.354309247327674 -58207,Central Utility Plant at White Oak,G9,2014.0,4.5,4.5,4.5,0.5,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2014.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,MD,39.039444,-76.9825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58208,Cinnamon Bay Edgeboro Landfill,1,2011.0,9.6,6.0,6.0,1.3,LFG,Landfill Gas,OP,IC,8.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.625,0.625,RFC,PJM,NJ,40.465278,-74.393889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58209,"NextEra-Blackwell Wind, LLC",WT,2012.0,59.8,59.8,59.8,3,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.846667,-97.4175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58210,NFM Solar Power LLC,1,2012.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.610833,-72.474167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58213,Saddle Mountain Solar I,AZ2,2012.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.378333,-113.180833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58214,West Greenwich Solar,WGRI,2013.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.649444,-71.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58215,Lee Combined Cycle Plant,1A,2012.0,221.0,170.0,225.0,170,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7692307692307692,1.0,SERC,DUK,NC,35.373611,-78.089444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58215,Lee Combined Cycle Plant,1B,2012.0,221.0,170.0,225.0,170,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7692307692307692,1.0,SERC,DUK,NC,35.373611,-78.089444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58215,Lee Combined Cycle Plant,1C,2012.0,221.0,170.0,225.0,170,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7692307692307692,1.0,SERC,DUK,NC,35.373611,-78.089444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58215,Lee Combined Cycle Plant,ST1,2012.0,405.0,378.0,379.0,378,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2012.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9333333333333333,0.9358024691358025,SERC,DUK,NC,35.373611,-78.089444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58216,J.R. Simplot Company,1,1993.0,4.0,3.2,3.2,1.5,WH,All Other,OP,ST,10.0,1993.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8,0.8,WECC,CISO,CA,37.806944,-121.2775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58217,Grassland 1&2 Solar Project,INV4,2013.0,2.5,2.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,WECC,CISO,CA,38.500278,-121.694167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58218,Spion Kop Wind Farm,SKW25,2012.0,40.0,40.0,40.0,1.5,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,47.333333,-110.639167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58220,Haviland Plastic Products,WTGA,2013.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.016111,-84.5875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58220,Haviland Plastic Products,WTGB,2013.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.016111,-84.5875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58220,Haviland Plastic Products,WTGC,2013.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.016111,-84.5875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58222,E.B. Eddy Paper Inc,3TU,1969.0,5.0,5.0,5.0,2,NG,Natural Gas Steam Turbine,OS,ST,8.0,1969.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,42.9896,-82.4379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58223,Hoag Hospital Cogen Plant,1,2006.0,1.5,1.2,1.2,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,WECC,CISO,CA,33.622778,-117.936389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125.91859185918592 -58223,Hoag Hospital Cogen Plant,2,2006.0,1.5,1.2,1.2,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,WECC,CISO,CA,33.622778,-117.936389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125.91859185918592 -58223,Hoag Hospital Cogen Plant,3,2006.0,1.5,1.2,1.2,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,WECC,CISO,CA,33.622778,-117.936389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125.91859185918592 -58224,CCSU Co-Gen-STBY Gen,EC#1,2004.0,1.3,1.3,1.3,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.691389,-72.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.28654860587792 -58224,CCSU Co-Gen-STBY Gen,EC#2,2004.0,1.3,1.3,1.3,0.4,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.691389,-72.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.28654860587792 -58224,CCSU Co-Gen-STBY Gen,GRND,2012.0,0.3,0.3,0.3,0.3,DFO,Petroleum Liquids,SB,IC,6.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.691389,-72.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.285714285714285 -58224,CCSU Co-Gen-STBY Gen,MEMH,1993.0,0.7,0.7,0.7,0.7,DFO,Petroleum Liquids,SB,IC,10.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.691389,-72.768611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.287263820853743 -58226,Newberry Solar 1 LLC,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.853581,-116.683108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58227,SEPV9 Power Plant,SPV9,2013.0,9.0,8.5,8.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9444444444444444,0.9777777777777779,WECC,CISO,CA,34.192222,-116.090278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58228,Milford Solar Farm,GEN1,2012.0,11.8,11.8,11.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,38.923056,-75.453333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58231,Lincoln Financial Field,GEN1,2013.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.900833,-75.1675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58232,Tahquitz High School,TAHQ,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.767222,-117.0175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58233,Wagner Wind LLC,GEN1,2012.0,6.0,6.0,6.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.908889,-116.555556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58234,SEPV 8,SPV8,2013.0,12.0,11.8,11.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9833333333333334,0.9833333333333334,WECC,CISO,CA,34.171944,-116.1525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58235,Clayville,1,2015.0,73.0,55.0,61.0,52,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7534246575342466,0.8356164383561644,RFC,PJM,NJ,39.424444,-75.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58236,Marshalltown Generating Station,BESS1,2020.0,0.3,0.3,0.3,0,MWH,Batteries,OP,BA,10.0,2020.0, , ,0.6,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,IA,42.043333,-92.872778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58236,Marshalltown Generating Station,CTG1,2017.0,222.7,208.2,225.8,115,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9348899865289627,1.0,MRO,MISO,IA,42.043333,-92.872778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58236,Marshalltown Generating Station,CTG2,2017.0,222.7,207.1,225.8,115,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9299506061966771,1.0,MRO,MISO,IA,42.043333,-92.872778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58236,Marshalltown Generating Station,PV1,2020.0,2.6,2.6,2.6,0,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.043333,-92.872778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58236,Marshalltown Generating Station,STG1,2017.0,260.5,247.9,244.4,80,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9516314779270634,0.9381957773512476,MRO,MISO,IA,42.043333,-92.872778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58237,CCSU Fuel Cell Project,CCSU,2012.0,1.4,1.4,1.4,0.7,NG,Other Natural Gas,OP,FC,4.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.691944,-72.761111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58238,Georgia Mountain Community Wind Farm,GMCW,2012.0,10.0,10.0,10.0,0.2,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,VT,44.661667,-73.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58239,Kent County-Kennedyville,PVKV,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.297222,-75.982222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58240,Kit Carson,PV_KC,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.966667,-105.438056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58241,Rock Hall,RCKHL,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.144369,-76.231644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58242,Pattern Panhandle Wind LLC,1,2014.0,218.0,218.0,218.0,218,WND,Onshore Wind Turbine,OP,WT,7.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.4275,-101.253056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58243,Kent County - Worton Complex,WRTN,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.280833,-76.090833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58244,West Valley High School Solar,WEST,2012.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,33.719722,-117.009722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58245,Northeastern Illinois University Cogen,GEN1,1995.0,0.8,0.8,0.8,0,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981111,-87.719167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.6178107606679037 -58245,Northeastern Illinois University Cogen,GEN2,1995.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981111,-87.719167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.6178107606679037 -58245,Northeastern Illinois University Cogen,GEN3,1995.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981111,-87.719167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.6178107606679037 -58245,Northeastern Illinois University Cogen,GEN4,1995.0,0.8,0.8,0.8,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,8.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.981111,-87.719167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3.6178107606679037 -58246,Millersville LFG,CAT1,2012.0,1.6,1.5,1.5,0.7,LFG,Landfill Gas,OP,IC,7.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,MD,39.084722,-76.676389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.129264610739702 -58246,Millersville LFG,CAT2,2012.0,1.6,1.5,1.5,0.7,LFG,Landfill Gas,OP,IC,7.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,MD,39.084722,-76.676389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.129264610739702 -58248,Pierce College,GEN1,2013.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.183611,-118.574722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58249,VA Sepulveda Ambulatory Care Center,GEN1,2014.0,4.4,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7954545454545454,0.7954545454545454,WECC,LDWP,CA,34.248889,-118.483333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58250,Tullytown,GEN1,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.151389,-74.780556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.592271354449005 -58251,C&H Sugar Plant,TG3,1958.0,4.0,5.0,5.0,1.3,PUR,All Other,OP,ST,1.0,1958.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,38.057222,-122.218889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58251,C&H Sugar Plant,TG4,1957.0,4.0,5.0,5.0,1.3,PUR,All Other,OP,ST,10.0,1957.0, , ,,,,,other,other,Purchased Steam,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,38.057222,-122.218889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58252,Alpha Ridge LFG,JEN1,2012.0,1.0,1.0,1.0,0.7,LFG,Landfill Gas,OP,IC,7.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,MD,39.305,-76.901944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.65255843335439 -58253,CBS Television City,GEN1,2013.0,1.6,1.6,1.6,0,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.075,-118.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58253,CBS Television City,GEN2,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,7.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.075,-118.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58253,CBS Television City,GEN3,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,7.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.075,-118.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58253,CBS Television City,GEN4,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,7.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.075,-118.36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58254,Chatham,CT02R,2016.0,3.6,3.2,3.6,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.888888888888889,1.0,RFC,MISO,MI,42.934444,-85.3475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.96464525979293 -58254,Chatham,CTOIS,2013.0,3.7,3.4,3.7,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9189189189189189,1.0,RFC,MISO,MI,42.934444,-85.3475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.964764866997818 -58255,Rubart,01,2014.0,10.0,8.8,8.8,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,02,2014.0,10.0,8.9,8.9,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.89,0.89,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,03,2014.0,10.0,8.7,8.7,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8699999999999999,0.8699999999999999,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,04,2014.0,10.0,9.0,9.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,05,2014.0,10.0,8.6,8.6,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.86,0.86,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,06,2014.0,10.0,8.8,8.8,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,07,2014.0,10.0,8.8,8.8,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8800000000000001,0.8800000000000001,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,08,2014.0,10.0,8.9,8.9,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.89,0.89,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,09,2014.0,10.0,8.9,8.9,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.89,0.89,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,10,2014.0,10.0,9.0,9.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,11,2014.0,10.0,9.0,9.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58255,Rubart,12,2014.0,10.0,9.0,9.0,2,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,MRO,SWPP,KS,37.558611,-101.099444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.745222042203839 -58256,Los Alamos PV Site,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.875556,-106.31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58257,Upper Pacolet Hydro,UP1,2013.0,1.1,1.1,1.1,0.2,WAT,Conventional Hydroelectric,OP,HY,2.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,SC,34.921389,-81.745556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58258,Central Utilities Plant LAX 2,GEN1,2015.0,4.6,4.2,4.2,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9130434782608696,0.9130434782608696,WECC,LDWP,CA,33.943889,-118.404167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.854691921380681 -58258,Central Utilities Plant LAX 2,GEN2,2015.0,4.6,4.2,4.2,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9130434782608696,0.9130434782608696,WECC,LDWP,CA,33.943889,-118.404167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.854691921380681 -58259,Kalaeloa Solar Two,KAS2,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.32,-158.086944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58260,Brunswick County Power Station,CT01,2016.0,297.5,263.9,283.3,138,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8870588235294117,0.9522689075630253,SERC,PJM,VA,36.765,-77.713889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58260,Brunswick County Power Station,CT02,2016.0,297.5,263.9,283.3,138,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8870588235294117,0.9522689075630253,SERC,PJM,VA,36.765,-77.713889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58260,Brunswick County Power Station,CT03,2016.0,297.5,263.9,283.3,138,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8870588235294117,0.9522689075630253,SERC,PJM,VA,36.765,-77.713889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58260,Brunswick County Power Station,ST01,2016.0,579.7,579.4,616.3,281,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9994824909435914,1.0,SERC,PJM,VA,36.765,-77.713889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58261,FAA NorCal TRACON,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.559533,-121.257556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58262,Badger 1,1,2013.0,14.8,14.8,14.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.498003,-112.813458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58263,Bay View Cogeneration Facility,GTG,2010.0,5.5,4.4,5.0,0.5,LFG,Landfill Gas,OS,GT,1.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8,0.9090909090909091,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58263,Bay View Cogeneration Facility,STG,2011.0,6.5,4.0,5.0,0.5,LFG,Landfill Gas,OS,ST,2.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6153846153846154,0.7692307692307692,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58265,NCAH Central Utility Plant,C-3,2005.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.607287449392713 -58265,NCAH Central Utility Plant,EP-6,2003.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.605363015431319 -58265,NCAH Central Utility Plant,FRZRF,2005.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.607287449392713 -58265,NCAH Central Utility Plant,MBGEN,2004.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.604208822339134 -58265,NCAH Central Utility Plant,S-13,2004.0,2.1,2.1,2.1,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.605821125674634 -58265,NCAH Central Utility Plant,S-14,2004.0,2.1,2.1,2.1,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.605821125674634 -58265,NCAH Central Utility Plant,S-16,2006.0,3.0,3.0,3.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.47047308319739 -58265,NCAH Central Utility Plant,S-17,2006.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,11.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.605747824327059 -58265,NCAH Central Utility Plant,S-18,2000.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.605747824327059 -58265,NCAH Central Utility Plant,S-19,2010.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,42.046111,-93.579444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.605747824327059 -58266,Port Westward Unit 2,1,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-01,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,10,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-10,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,11,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-11,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,12,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-12,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,2,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-02,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,3,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-03,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,4,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-04,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,5,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-05,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,6,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-06,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,7,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-07,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,8,2014.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-08,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58266,Port Westward Unit 2,9,2015.0,18.8,18.7,18.7,5.6,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9946808510638298,0.9946808510638298,WECC,PGE,OR,46.178889,-123.171944,PortWestwrd2-09,IC_18C50SG,False,1.0,1.0,-1.0,17.765,17.765,187.0,1.87,1.0,0.0,18.7,5.445695139699671,32.76810048970628,-6.250878278078294e-07,5.44570823152835,32.768043482247634,9.349039616764493,#TRUE#,#2015-12-01#,#2050-12-31#,Existing,PGE,NW_PGE,3.74,18.7,18.0,OR,NG,,#FALSE#,3.74,18.7,8.66351310505635 -58269,Bay View Backup Power Facility,G1,2007.0,2.0,2.0,2.0,0.8,DFO,Petroleum Liquids,SB,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58269,Bay View Backup Power Facility,G2,2007.0,2.0,2.0,2.0,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58269,Bay View Backup Power Facility,G3,2007.0,2.0,2.0,2.0,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58269,Bay View Backup Power Facility,G4,2007.0,2.0,2.0,2.0,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58269,Bay View Backup Power Facility,G5,2007.0,2.0,2.0,2.0,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58269,Bay View Backup Power Facility,G6,2007.0,2.0,2.0,2.0,0.8,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.688333,-83.484722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58270,Acushnet AD Makepeace,1,2012.0,4.1,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.798889,-70.743611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58271,Acushnet Hawes Reed Road,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.662222,-71.0425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58272,Easthampton Landfill-City of Easthampton,1,2012.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.286944,-72.701389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58273,South Robeson Farm,SROB,2012.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,34.561146,-79.28097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58274,Raeford Farm,RAEF,2012.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,34.968889,-79.211944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58275,Mass Midstate Solar 3,1,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.219722,-71.878611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58276,Mass Midstate Solar 2,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.170417,-72.200145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58277,Paia Hydroelectric Plant,PAH1,1912.0,1.3,1.3,1.3,0.2,WAT,Conventional Hydroelectric,OS,HY,1.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,HI,20.8867,-156.3378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58278,TNSG North Plant,13,2010.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,70.235278,-148.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58278,TNSG North Plant,CT1,2008.0,5.2,4.5,5.8,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8653846153846154,1.0,non-conus,non-conus,AK,70.235278,-148.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.461440147387219 -58278,TNSG North Plant,CT2,2009.0,5.2,4.5,5.8,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8653846153846154,1.0,non-conus,non-conus,AK,70.235278,-148.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.461440147387219 -58278,TNSG North Plant,CT3,2014.0,7.5,6.9,8.0,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.92,1.0,non-conus,non-conus,AK,70.235278,-148.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.461440435530083 -58278,TNSG North Plant,CT4,2014.0,7.5,6.9,8.0,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.92,1.0,non-conus,non-conus,AK,70.235278,-148.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.461440435530083 -58279,Mass Midstate Solar 1,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.219722,-71.878333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58280,Millbury Solar,1,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.164722,-71.795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58281,Lanikuhana Solar LLC,1,2019.0,14.7,14.7,14.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.4287,-158.02361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58282,Leicester One MA Solar LLC,1,2015.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222778,-71.878611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58283,Freetown Solar,1,2015.0,4.5,4.5,4.5,0,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.766389,-70.980833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58284,La Luz Energy Center,0001,2015.0,42.3,40.0,41.0,10,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9456264775413712,0.9692671394799055,WECC,PNM,NM,34.616111,-106.815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58289,Venable Solar 1,VNPV,2015.0,1.5,1.5,1.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7333333333333334,WECC,CISO,CA,33.598889,-114.571667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58290,Venable Solar 2,VSPV,2015.0,1.5,1.5,1.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7333333333333334,WECC,CISO,CA,33.597222,-114.571667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58292,Jewish Community Center PV,JCC,2012.0,1.1,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.603056,-111.924722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58293,Paradise Valley H.S. PV,PVH,2013.0,1.3,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.6416,-111.9997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58296,Roll Delano 2,ROL6,2012.0,1.6,1.6,1.6,0,NG,Other Natural Gas,OP,FC,9.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,35.739722,-119.238056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58297,Roll Delano,ROL4,2012.0,1.2,1.2,1.2,0,NG,Other Natural Gas,OP,FC,9.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,35.734167,-119.236667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58298,Roll Lost Hills,ROL3,2012.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,12.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,35.653056,-119.889722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58299,Xilinx San Jose,XLX01,2018.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,5.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.252778,-121.934167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58300,Honda Torrance,HON,2012.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,12.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,33.838056,-118.315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58301,Juniper Networks Sunnyvale,JPR,2012.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,12.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.406944,-122.026944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58302,Life Technologies Carlsbad,LFT,2012.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,8.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,33.137222,-117.286944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58303,Taylor Farms Salinas,TLR,2012.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,9.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,36.6575,-121.623333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58304,Kingsburg Solar,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.505278,-119.540278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58304,Kingsburg Solar,2,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.505278,-119.540278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58304,Kingsburg Solar,3,2013.0,0.7,0.7,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.505278,-119.540278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58305,PCIP Solar,PCIP,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.3125,-78.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58306,Exeter Solar,1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.2675,-119.128581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58306,Exeter Solar,2,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.2675,-119.128581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58306,Exeter Solar,3,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.2675,-119.128581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58307,Ivanhoe Solar,1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.3875,-119.255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58307,Ivanhoe Solar,2,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.3875,-119.255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58307,Ivanhoe Solar,3,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.3875,-119.255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58308,Lindsay Solar,1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.211944,-119.133889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58308,Lindsay Solar,3,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.211944,-119.133889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58308,Lindsay Solar,4,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.211944,-119.133889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58309,Porterville Solar,1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.102778,-119.039722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58309,Porterville Solar,2,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.102778,-119.039722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58309,Porterville Solar,5,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.102778,-119.039722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58310,Lake Charles Plant,G-1,2012.0,36.4,28.0,28.0,8,WH,All Other,OP,ST,12.0,2012.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7692307692307693,0.7692307692307693,SERC,MISO,LA,30.148889,-93.335556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58311,Chadbourn Farm,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.324656,-78.764901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58312,Warrenton Farm,1,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.415,-78.171111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58313,Mocksville Farm,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.878611,-80.541944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58314,Belwood Farm,1,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.47,-81.508333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58315,Arndt Farm,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.779167,-81.175556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58316,Railroad Farm,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.82,-78.970833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58317,Watts Farm,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.726944,-79.335278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58318,Farrington Farm,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.832778,-79.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58319,"Patua Acquisition Project, LLC",1,2013.0,16.0,10.0,10.0,0,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.625,0.625,WECC,NEVP,NV,39.585833,-119.073056,Patua 1A1,GEO,True,6.0,16.0,-1.0,9.26,9.26,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2013-12-31#,#2050-12-31#,Existing,SPPC,SW_NVE,4.8,12.0,3.930244,NV,Geo,Binary,#FALSE#,6,12, -58319,"Patua Acquisition Project, LLC",3,2013.0,16.0,10.0,10.0,0,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.625,0.625,WECC,NEVP,NV,39.585833,-119.073056,Patua 1A3,GEO,True,6.0,16.0,-1.0,9.26,9.26,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2013-12-31#,#2050-12-31#,Existing,SPPC,SW_NVE,4.8,12.0,3.930244,NV,Geo,Binary,#FALSE#,6,12, -58319,"Patua Acquisition Project, LLC",5,2013.0,16.0,10.0,10.0,0,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.625,0.625,WECC,NEVP,NV,39.585833,-119.073056,Patua 1A5,GEO,True,6.0,16.0,-1.0,1.92,1.92,0.0,0.0,1.0,3.098312,12.0,-1.7614335088373783,70.4572015194346,-6.313975064604557e-06,-1.761323645314865,70.45674236396835,6.679003424485606,#TRUE#,#2013-12-31#,#2050-12-31#,Existing,SPPC,SW_NVE,4.8,12.0,3.930244,NV,Geo,Binary,#FALSE#,6,12, -58319,"Patua Acquisition Project, LLC",PV-01,2017.0,10.6,10.6,10.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.585833,-119.073056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58320,G2 Energy Hay Rd,362,2013.0,1.6,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,6.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,WECC,CISO,CA,38.314722,-121.833611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.259665412631074 -58321,Goldthwaite Wind Energy Facility,1,2013.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.383333,-98.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58322,Prairie Breeze,1,2014.0,206.5,200.6,200.6,0,WND,Onshore Wind Turbine,OP,WT,5.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9714285714285714,0.9714285714285714,MRO,SWPP,NE,41.951667,-98.076667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58323,Shannon Farm,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.8475,-79.128889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58324,Vansycle II Wind Energy Center,SIE23,2009.0,102.3,102.3,102.3,4.9,WND,Onshore Wind Turbine,OP,WT,12.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.899167,-118.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58325,Charles D. Lamb Energy Center,1,2015.0,122.0,122.0,122.0,33,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,SWPP,OK,36.813889,-97.125278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.291193235835802 -58326,PWD Northeast WPCP Biogas Cogen Plant,NBG1,2013.0,1.4,1.4,1.4,0.7,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.988611,-75.083333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.947201964578062 -58326,PWD Northeast WPCP Biogas Cogen Plant,NBG2,2013.0,1.4,1.4,1.4,0.7,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.988611,-75.083333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.947201964578062 -58326,PWD Northeast WPCP Biogas Cogen Plant,NBG3,2013.0,1.4,1.4,1.4,0.7,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.988611,-75.083333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.947201964578062 -58326,PWD Northeast WPCP Biogas Cogen Plant,NBG4,2013.0,1.4,1.4,1.4,0.7,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.988611,-75.083333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.947201964578062 -58327,Bradley Energy Center,UNIT1,2002.0,1.5,1.5,1.5,0.6,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.927102,-72.683143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.7994340889095 -58327,Bradley Energy Center,UNIT2,2002.0,1.2,1.2,1.2,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.927102,-72.683143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.799436443989613 -58327,Bradley Energy Center,UNIT3,2002.0,1.2,1.2,1.2,0.5,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.927102,-72.683143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.799436443989613 -58327,Bradley Energy Center,UNIT4,2010.0,1.9,1.9,1.9,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.927102,-72.683143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.799435824231622 -58328,North Chicago Energy Center,GT1,2003.0,5.2,5.2,5.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.9615384615384615,RFC,PJM,IL,42.306389,-87.851944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.26708590705658 -58328,North Chicago Energy Center,GT2,2005.0,7.2,7.1,6.5,3.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.986111111111111,0.9027777777777778,RFC,PJM,IL,42.306389,-87.851944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.267086417555582 -58329,UMMS at Pocomoke,PV1,2013.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.098056,-75.611111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58330,The Andersons Albion Ethanol LLC,9611,2006.0,2.0,1.2,1.2,0.1,NG,Natural Gas Steam Turbine,OA,ST,8.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.6,0.6,RFC,MISO,MI,42.256111,-84.788333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58330,The Andersons Albion Ethanol LLC,CHP-1,2016.0,8.1,6.0,8.0,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7407407407407407,0.9876543209876544,RFC,MISO,MI,42.256111,-84.788333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.31569195136074 -58331,Fuquay Farm,FUQUA,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.564354,-78.710261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58332,Haynes Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.525833,-81.235278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58333,Lenoir Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.331667,-77.666389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58334,Lenoir Farm 2,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.350081,-77.475106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58335,Marshville Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.988889,-80.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58336,Mile Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.230561,-78.949586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58337,Moore Solar Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.273192,-79.759203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58338,Moorings Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.305833,-77.829167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58339,New Bern Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.209564,-77.056725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58340,Roxboro Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.4797,-78.917364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58341,White Cross Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.907144,-79.188297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58342,Wilson Farm 1,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.803611,-77.873611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58343,Yanceyville Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.439444,-79.278889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58344,AM Best Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.418889,-77.985556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58345,Mt Olive Farm 2,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.218056,-78.069722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58346,Dibrell Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.471667,-79.528056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58347,Rock Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.965556,-79.609722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58348,Two Lines Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.629167,-81.326667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58349,Bolton Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.421617,-78.132311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58350,McCallum Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.543889,-79.30219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58351,Tuscola Bay Wind,GE16,2012.0,120.0,120.0,120.0,6,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.525278,-83.65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58352,McKinley Paper Co. - Washington Mill,G-11A,2022.0,12.6,12.0,12.0,1,WDS,Wood/Wood Waste Biomass,OP,ST,7.0,2022.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9523809523809524,0.9523809523809524,WECC,BPAT,WA,48.134722,-123.465556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58354,Radiance Solar 4,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.665556,-118.288056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58355,Radiance Solar 5,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.665556,-118.286944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58356,The Lawrenceville School Solar Facility,TLS,2012.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.301409,-74.722117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58357,Amazon,WR,2011.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.566389,-74.221389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58358,North Jersey Media Group Solar Facility,NJMG,2013.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.924167,-74.494722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58359,Corning Pharmaceutical Glass,GG,2012.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.496667,-75.018611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58360,Atlantic Coast Freezers Solar Facility,ACF,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.519935,-75.029038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58361,Williams-Sonoma Solar Facility,WS,2011.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.387778,-74.455278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58362,Quittacas Pond Solar,QPMA,2013.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.781944,-70.913333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58363,Majestic II Wind,WND1,2012.0,79.6,79.6,79.6,4,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,SWPP,TX,35.386038,-101.578572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58364,Tissington Solar,MC,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.200278,-74.491944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58365,CJTS Energy Center,UNIT7,2013.0,0.4,0.4,0.4,0.1,NG,Other Natural Gas,OA,FC,9.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.552778,-72.625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58366,Atwell Island,1,2013.0,20.2,20.2,20.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.895,-119.510833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58370,Gridley Main,GEN1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,39.373333,-121.684167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58371,Gridley Main Two,GEN1,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,39.373333,-121.681667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58372,Blue Summit Wind LLC,GEN1,2012.0,135.4,135.4,135.4,6.8,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.292913,-99.367734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58373,White River Solar,WRCA,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.871389,-119.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58374,Corcoran Solar,CSCA,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.138333,-119.573333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58375,Triton East and West Cogen,1,1998.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.916944,-87.845556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58375,Triton East and West Cogen,2,1998.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,1998.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.916944,-87.845556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58375,Triton East and West Cogen,3,2000.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.916944,-87.845556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58375,Triton East and West Cogen,4,2000.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.916944,-87.845556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58375,Triton East and West Cogen,5,2015.0,0.4,0.4,0.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,0.75,RFC,PJM,IL,41.916944,-87.845556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58376,Oakley Solar Project,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.001667,-121.747778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58377,Rochelle Energy Center,REC1,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.924722,-88.998611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.199508439675103 -58377,Rochelle Energy Center,REC2,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OS,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.924722,-88.998611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.199508439675103 -58377,Rochelle Energy Center,REC3,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.924722,-88.998611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.199508439675103 -58378,W.A. Parish Carbon Capture Plant,GT2,2013.0,82.2,74.0,81.0,74,NG,Natural Gas Fired Combustion Turbine,OA,GT,6.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9002433090024331,0.9854014598540146,TRE,ERCO,TX,29.475278,-95.634167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58379,Cold Canyon 1,W3998,2013.0,1.5,1.5,1.5,1,LFG,Landfill Gas,OP,IC,7.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,35.186667,-120.599444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.872298989149588 -58380,JBER Landfill Gas Power Plant,1,2012.0,2.3,1.4,1.4,1,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6086956521739131,0.6086956521739131,non-conus,non-conus,AK,61.286,-149.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.292828636486055 -58380,JBER Landfill Gas Power Plant,2,2012.0,2.3,1.4,1.4,1,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6086956521739131,0.6086956521739131,non-conus,non-conus,AK,61.286,-149.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.292828636486055 -58380,JBER Landfill Gas Power Plant,3,2012.0,2.3,1.4,1.4,1,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6086956521739131,0.6086956521739131,non-conus,non-conus,AK,61.286,-149.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.292828636486055 -58380,JBER Landfill Gas Power Plant,4,2012.0,2.3,1.4,1.4,1,LFG,Landfill Gas,OP,IC,8.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6086956521739131,0.6086956521739131,non-conus,non-conus,AK,61.286,-149.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.292828636486055 -58380,JBER Landfill Gas Power Plant,5,2013.0,2.3,1.4,1.4,1,LFG,Landfill Gas,OP,IC,8.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6086956521739131,0.6086956521739131,non-conus,non-conus,AK,61.286,-149.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.292828636486055 -58381,Bryan Solar Field,1,2012.0,2.1,1.8,1.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8571428571428571,0.6666666666666665,RFC,PJM,OH,41.476389,-84.586111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58382,Threemile Digester,GEN1,2012.0,1.6,1.6,1.6,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,45.71,-119.901111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.887165635619064 -58382,Threemile Digester,GEN2,2012.0,1.6,1.6,1.6,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,45.71,-119.901111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.887165635619064 -58382,Threemile Digester,GEN3,2012.0,1.6,1.6,1.6,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACW,OR,45.71,-119.901111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.887165635619064 -58383,Hyder II Hybrid,PV1,2013.0,14.0,14.0,14.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.027,-113.3489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58384,Fargo Drop,GEN1,2013.0,1.1,1.1,,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,IPCO,ID,43.625,-116.899722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58385,Northbridge Solar,NSMA,2013.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.166389,-71.645556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58386,CU Solar Plant,CU,2013.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,39.741944,-83.816944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58387,CES Sterling LLC,1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.441944,-71.722222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,AVS1,2014.0,39.0,38.0,38.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9743589743589743,0.9743589743589743,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,SS11,2015.0,54.0,52.6,52.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9740740740740741,0.9740740740740741,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,SS12,2015.0,54.0,52.6,52.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9740740740740741,0.9740740740740741,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,SS13,2014.0,58.5,57.0,57.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9743589743589743,0.9743589743589743,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,SS14,2015.0,33.0,32.2,32.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9757575757575758,0.9757575757575758,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,SS15,2014.0,15.0,14.6,14.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9733333333333333,0.9733333333333333,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58388,Solar Star 1,SS16,2014.0,64.5,62.9,62.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9751937984496124,0.9751937984496124,WECC,CISO,CA,34.8181,-118.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58389,Solar Star 2,AVS2,2014.0,19.5,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9743589743589743,0.9743589743589743,WECC,CISO,CA,34.848611,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58389,Solar Star 2,SS21,2014.0,60.0,59.0,59.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9833333333333333,0.9833333333333333,WECC,CISO,CA,34.848611,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58389,Solar Star 2,SS22,2014.0,55.5,55.0,55.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.990990990990991,0.990990990990991,WECC,CISO,CA,34.848611,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58389,Solar Star 2,SS23,2014.0,48.0,47.0,47.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9791666666666666,0.9791666666666666,WECC,CISO,CA,34.848611,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58389,Solar Star 2,SS24,2015.0,43.5,43.0,43.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9885057471264368,0.9885057471264368,WECC,CISO,CA,34.848611,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58389,Solar Star 2,SS25,2014.0,52.5,52.0,52.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9904761904761905,0.9904761904761905,WECC,CISO,CA,34.848611,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58390,Jordan Hydroelectric Project,EMOD,2012.0,2.2,2.2,2.2,0.2,WAT,Conventional Hydroelectric,OA,HY,1.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.654722,-79.068333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58390,Jordan Hydroelectric Project,WMOD,2012.0,2.2,2.2,2.2,0.2,WAT,Conventional Hydroelectric,OA,HY,8.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,DUK,NC,35.654722,-79.068333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58391,IND Community Solar Farm 1st Phase,1,2013.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.695209,-86.315525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58392,Flint Creek Hydroelectric LLC,GEN1,2013.0,2.0,2.0,2.0,0.1,WAT,Conventional Hydroelectric,OP,HY,3.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,NWMT,MT,46.2275,-113.294722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58394,Alta Wind X,AW10,2014.0,138.0,138.0,138.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.06,-118.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58395,Alta Wind XI,AW11,2014.0,90.0,90.0,90.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.065,-118.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58397,Ameresco Johnson Canyon,ENG1,2013.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.534167,-121.408611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.457235868600177 -58398,Heber Solar,1,2014.0,10.9,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9174311926605504,0.7522935779816513,WECC,IID,CA,32.7125,-115.540556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58399,Synergy Biogas,1,2011.0,1.4,1.2,1.2,0.8,OBG,Other Waste Biomass,OA,IC,12.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,NPCC,NYIS,NY,42.828889,-78.055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58400,Central Energy Facility,GT01,2000.0,5.5,4.7,5.2,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8545454545454546,0.9454545454545454,SERC,DUK,SC,34.679444,-82.840278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.166666666666668 -58401,Volkswagen Solar System,1,2012.0,7.6,7.6,7.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.0975,-85.126944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58402,Solar Star New Jersey NJ LLC,1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.401528,-74.669697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58403,Bellingham PV,SO032,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.075,-71.703056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58404,Pantex,1,2014.0,11.5,11.5,11.5,0,WND,Onshore Wind Turbine,OP,WT,6.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,35.322778,-101.5325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58405,ESS Battery Microgrid,1,2012.0,3.0,3.0,3.0,0,MWH,Batteries,OP,BA,11.0,2012.0, , ,3.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,AK,57.799167,-152.404167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58407,Luther College Wind Project,WTG01,2011.0,1.6,1.6,1.6,1,WND,Onshore Wind Turbine,OP,WT,10.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.326944,-91.810833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58408,Maryland Solar,MSH1,2013.0,27.0,20.9,20.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.774074074074074,0.774074074074074,RFC,PJM,MD,39.563056,-77.720278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58410,Marshfield PV,SO032,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.111667,-70.709444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58411,Orange PV,SO023,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.585,-72.293889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58412,Maynard PV,SO026,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.428333,-71.435556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58414,NLMU Wind,NLMU,2011.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.955,-91.394444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58416,Headwaters Wind Farm LLC,1,2014.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.066667,-85.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58417,Lone Valley Solar Park I LLC,CP1,2014.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.398059,-116.865517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58418,Victor Dry Farm Ranch A,1,2015.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,WECC,CISO,CA,34.501111,-117.466667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58419,Victor Dry Farm Ranch B,1,2015.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,WECC,CISO,CA,34.497778,-117.471111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58420,Hamilton Liberty,GEN1,2016.0,435.0,382.5,425.0,240,NG,Natural Gas Fired Combined Cycle,OP,CS,6.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8793103448275862,0.9770114942528736,RFC,PJM,PA,41.7675,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58420,Hamilton Liberty,GEN2,2016.0,435.0,382.5,425.0,240,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8793103448275862,0.9770114942528736,RFC,PJM,PA,41.7675,-76.39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58422,CSU Northridge Plant,B2PV,2005.0,0.4,0.3,0.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2005.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.5,WECC,LDWP,CA,34.243333,-118.530556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58422,CSU Northridge Plant,E6PV,2003.0,0.2,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2003.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,WECC,LDWP,CA,34.243333,-118.530556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58423,Southbridge PV,SO022,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.047361,-71.992868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58425,Fire Island Wind,WT1,2012.0,18.0,18.0,18.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,61.13,-150.243611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58426,Hamilton Patriot Generation Plant,GEN1,2016.0,435.0,412.5,455.0,250,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9482758620689655,1.0,RFC,PJM,PA,41.180833,-76.839167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58426,Hamilton Patriot Generation Plant,GEN2,2016.0,435.0,382.5,425.0,250,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8793103448275862,0.9770114942528736,RFC,PJM,PA,41.180833,-76.839167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58427,Lansing BWL REO Town Plant,CTG1,2013.0,42.0,31.0,43.6,5,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7380952380952381,1.0,RFC,MISO,MI,42.719722,-84.551667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58427,Lansing BWL REO Town Plant,CTG2,2013.0,42.0,31.0,43.6,5,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7380952380952381,1.0,RFC,MISO,MI,42.719722,-84.551667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58427,Lansing BWL REO Town Plant,ST,2013.0,14.0,12.9,13.0,1.5,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9214285714285715,0.9285714285714286,RFC,MISO,MI,42.719722,-84.551667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58428,LSU Cogen,1-02,2004.0,19.6,20.6,20.6,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2004.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,MISO,LA,30.410556,-91.181389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.426777135013237 -58429,Sunshine Gas Producers,1,2014.0,4.6,4.0,4.0,1.1,LFG,Landfill Gas,OP,GT,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.335678,-118.519188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.414653729842493 -58429,Sunshine Gas Producers,2,2014.0,4.6,4.0,4.0,1.1,LFG,Landfill Gas,OP,GT,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.335678,-118.519188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.414653729842493 -58429,Sunshine Gas Producers,3,2014.0,4.6,4.0,4.0,1.1,LFG,Landfill Gas,OP,GT,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.335678,-118.519188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.414653729842493 -58429,Sunshine Gas Producers,4,2014.0,4.6,4.0,4.0,1.1,LFG,Landfill Gas,OP,GT,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.335678,-118.519188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.414653729842493 -58429,Sunshine Gas Producers,5,2014.0,4.6,4.0,4.0,1.1,LFG,Landfill Gas,OP,GT,8.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,34.335678,-118.519188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.414653729842493 -58430,Centinela Solar Energy,CSE1,2013.0,34.2,33.4,33.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9766081871345028,0.9766081871345028,WECC,CISO,CA,32.686944,-115.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58430,Centinela Solar Energy,CSE2,2013.0,26.6,25.6,25.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9624060150375939,0.9624060150375939,WECC,CISO,CA,32.686944,-115.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58430,Centinela Solar Energy,CSE3,2013.0,34.2,33.4,33.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9766081871345028,0.9766081871345028,WECC,CISO,CA,32.686944,-115.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58430,Centinela Solar Energy,CSE4,2013.0,34.2,33.4,33.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9766081871345028,0.9766081871345028,WECC,CISO,CA,32.686944,-115.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58430,Centinela Solar Energy,CSE5,2014.0,19.0,18.6,18.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9789473684210527,0.9789473684210527,WECC,CISO,CA,32.686944,-115.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58430,Centinela Solar Energy,CSE6,2014.0,26.6,25.6,25.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9624060150375939,0.9624060150375939,WECC,CISO,CA,32.686944,-115.647778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58431,West Tennessee Solar Farm,SNVA,2012.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.408611,-89.3875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58432,Glass House Camarillo Cultivation,COG1,2012.0,4.4,4.4,4.4,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.179722,-119.083056,Houwelings Nurseries ICE,OT IC,True,1.0,1.0,-1.0,12.35,12.35,130.0,0.08,1.0,0.0,13.0,0.1,0.1,0.1,0.1,0.1,,#TRUE#,#2013-06-14#,#2050-12-31#,Existing,CISC,CA_CISO,13.0,13.0,0.0,CA,NG,,#FALSE#,13,13,8.740924070109713 -58432,Glass House Camarillo Cultivation,COG2,2012.0,4.4,4.4,4.4,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.179722,-119.083056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.740924070109713 -58432,Glass House Camarillo Cultivation,COG3,2013.0,4.4,4.4,4.4,3.5,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.179722,-119.083056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.740924070109713 -58433,Red Lion Energy Center,RED1,2012.0,5.9,5.9,5.9,2.4,NG,Other Natural Gas,OP,FC,12.0,2012.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.610083,-75.62974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58433,Red Lion Energy Center,RED2,2013.0,5.3,5.3,5.3,2.1,NG,Other Natural Gas,OP,FC,6.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.610083,-75.62974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58433,Red Lion Energy Center,RED3,2013.0,3.5,3.5,3.5,1.4,NG,Other Natural Gas,OP,FC,8.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.610083,-75.62974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58433,Red Lion Energy Center,RED4,2013.0,3.6,3.6,3.6,1.4,NG,Other Natural Gas,OP,FC,9.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.610083,-75.62974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58433,Red Lion Energy Center,RED5,2013.0,3.4,3.4,3.4,1.4,NG,Other Natural Gas,OP,FC,10.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.610083,-75.62974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58433,Red Lion Energy Center,RED6,2013.0,3.2,3.2,3.2,1.3,NG,Other Natural Gas,OP,FC,11.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.610083,-75.62974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58434,Red Rock Hydro Plant,1,2021.0,27.6,27.5,27.5,6.2,WAT,Conventional Hydroelectric,OP,HY,6.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9963768115942029,0.9963768115942029,MRO,MISO,IA,41.369722,-92.980833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58434,Red Rock Hydro Plant,2,2021.0,27.6,27.5,27.5,6.2,WAT,Conventional Hydroelectric,OP,HY,5.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9963768115942029,0.9963768115942029,MRO,MISO,IA,41.369722,-92.980833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58435,Ameresco Vasco Road,ENG1,2014.0,2.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,2.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,WECC,CISO,CA,37.754444,-121.728889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.20420647683915 -58435,Ameresco Vasco Road,ENG2,2014.0,2.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,2.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,WECC,CISO,CA,37.754444,-121.728889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.20420647683915 -58436,Ameresco San Joaquin,ENG1,2014.0,2.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,WECC,CISO,CA,38.029722,-120.929722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.255707762557078 -58436,Ameresco San Joaquin,ENG2,2014.0,2.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,WECC,CISO,CA,38.029722,-120.929722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.255707762557078 -58437,Ameresco Forward,ENG1,2014.0,2.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,2.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,WECC,CISO,CA,37.883406,-121.185104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.468571823490791 -58437,Ameresco Forward,ENG2,2014.0,2.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,2.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,WECC,CISO,CA,37.883406,-121.185104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.468571823490791 -58438,Spearfish Hydro,TURB1,1912.0,2.0,2.0,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.75,MRO,WACM,SD,44.478333,-103.854722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58438,Spearfish Hydro,TURB2,1912.0,2.0,2.0,1.5,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,1912.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.75,MRO,WACM,SD,44.478333,-103.854722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58439,Collinwood BioEnergy Facility,CBE01,2011.0,1.0,1.0,1.0,0.2,OBG,Other Waste Biomass,OP,IC,5.0,2011.0,5,2025,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.555556,-81.589167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.582546278806195 -58440,CBS Studio Center,9560,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,6.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.145,-118.390833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58440,CBS Studio Center,9580,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,6.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.145,-118.390833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58440,CBS Studio Center,9581,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,7.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.145,-118.390833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58440,CBS Studio Center,9583,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,7.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.145,-118.390833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58440,CBS Studio Center,9585,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,7.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.145,-118.390833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58440,CBS Studio Center,9587,2013.0,0.4,0.4,0.4,0,NG,Other Natural Gas,OP,FC,6.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.145,-118.390833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58441,Swauk Wind LLC,SW,2012.0,4.3,4.3,4.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSEI,WA,47.139167,-120.753056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58443,Martin Limestone Solar Array,GEN1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.10596,-76.05934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58444,Junction Hilltop Wind Farm,JHW,2012.0,8.0,8.0,8.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.098889,-94.269167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58445,Arrache 4006,1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.655,-118.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58445,Arrache 4006,2,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.655,-118.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58446,Arrache 4013,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.650556,-118.051944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58447,Arrache 8083,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.647778,-118.061111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58447,Arrache 8083,2,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.647778,-118.061111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58447,Arrache 8083,3,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.647778,-118.061111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58448,Nunn,1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.509167,-117.154444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58449,Rutan,1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.643889,-118.163056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58449,Rutan,2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.643889,-118.163056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58449,Rutan,3,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.643889,-118.163056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58450,Vinam,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.668889,-118.061389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58451,Ma,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.695278,-118.0625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58452,Horn,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.708889,-118.274167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58453,Dixon Dairy Road Solar,1,2011.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.199167,-81.410833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58454,Watts 3115,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.600833,-117.642222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58454,Watts 3115,2,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.600833,-117.642222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58455,45 Mile Hydroelectric Project,0001,2015.0,1.0,1.0,1.0,0.9,WAT,Conventional Hydroelectric,OP,HY,5.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.528056,-121.152778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58455,45 Mile Hydroelectric Project,0002,2015.0,1.0,1.0,1.0,0.9,WAT,Conventional Hydroelectric,OP,HY,5.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.528056,-121.152778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58455,45 Mile Hydroelectric Project,0003,2015.0,1.0,1.0,1.0,0.9,WAT,Conventional Hydroelectric,OP,HY,5.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,44.528056,-121.152778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58456,Cumberland Rose,1,2012.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.226944,-94.434722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58457,Fontanelle,1,2012.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.338889,-94.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58458,Greenfield Wind,1,2012.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.29,-94.485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58459,Meadow Ridge,1,2012.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,7.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.39,-94.445833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58460,Sky Volt,1,2012.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.29,-94.485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58461,Wiota,1,2012.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.391944,-94.876389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,1,2016.0,41.9,41.9,41.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK2,2016.0,21.0,21.0,21.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK3,2016.0,39.6,39.6,39.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK4,2015.0,31.4,31.4,31.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK5,2015.0,31.4,31.4,31.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK6,2015.0,26.9,26.9,26.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK7,2016.0,41.9,41.9,41.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,BLK8,2015.0,36.5,36.5,36.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58462,McCoy Solar Energy Project Hybrid,MCST1,2021.0,230.0,230.0,230.0,0,MWH,Batteries,OP,BA,7.0,2021.0, , ,920.0,230.0,230.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.694722,-114.739722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58463,Herbert Farm Solar,1,2012.0,5.5,5.5,5.5,0,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.545556,-76.799444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58464,Broadview Energy Prime LLC,0001,2014.0,9.9,9.9,9.9,0,WND,Onshore Wind Turbine,OP,WT,2.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,34.746944,-103.325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58465,Broadview Energy Prime 2 LLC,0002,2014.0,9.9,9.9,9.9,0,WND,Onshore Wind Turbine,OP,WT,2.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,34.728056,-103.305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58467,Campo Verde Solar,CVS1,2013.0,147.4,139.0,139.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.943012211668928,0.943012211668928,WECC,CISO,CA,32.753333,-115.726389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58469,HNL Emergency Power Facility,AP1,2017.0,2.5,2.5,2.5,1,OBL,Other Waste Biomass,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.336389,-157.919444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.439821693907875 -58469,HNL Emergency Power Facility,AP2,2017.0,2.5,2.5,2.5,1,OBL,Other Waste Biomass,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.336389,-157.919444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.439821693907875 -58469,HNL Emergency Power Facility,AP3,2017.0,2.5,2.5,2.5,1,OBL,Other Waste Biomass,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.336389,-157.919444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.439821693907875 -58469,HNL Emergency Power Facility,AP4,2017.0,2.5,2.5,2.5,1,OBL,Other Waste Biomass,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.336389,-157.919444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.439821693907875 -58470,C-Drop Hydro,GEN1,2012.0,1.1,1.1,,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,PACW,OR,42.165833,-121.685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58471,Ector County Energy Center,CTG1,2015.0,179.4,150.0,168.0,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8361204013377926,0.9364548494983277,TRE,ERCO,TX,32.069167,-102.585556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58471,Ector County Energy Center,CTG2,2015.0,179.4,150.0,168.0,75,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8361204013377926,0.9364548494983277,TRE,ERCO,TX,32.069167,-102.585556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58473,Bruce A Henry Solar Farm,BHSF,2013.0,4.0,3.9,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.75,RFC,PJM,DE,38.663992,-75.400542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58474,Buffalo Dunes Wind Project,GE1,2013.0,249.8,249.8,249.8,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.620833,-101.076111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58475,Battery Utility of Ohio,BOU,2014.0,4.0,4.0,4.0,0,MWH,Batteries,OA,BA,3.0,2014.0, , ,2.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,OH,40.260278,-82.833056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58476,Dart Container Corp,LFGT1,2012.0,5.6,4.6,5.2,0.3,LFG,Landfill Gas,OP,GT,12.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8214285714285714,0.9285714285714286,RFC,PJM,PA,40.086463,-76.17603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.710544724596247 -58476,Dart Container Corp,LFGT2,2012.0,5.6,4.6,5.2,0.3,LFG,Landfill Gas,OP,GT,12.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.8214285714285714,0.9285714285714286,RFC,PJM,PA,40.086463,-76.17603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.710544724596247 -58477,Las Vegas WPCF Solar Plant,1,2013.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.134444,-115.035278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58478,LEPA Unit No. 1,LEPA1,2016.0,57.0,49.3,52.0,22.6,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8649122807017543,0.9122807017543859,SERC,MISO,LA,29.691111,-91.192778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58478,LEPA Unit No. 1,LEPA2,2016.0,17.1,14.7,15.0,8.2,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8596491228070174,0.8771929824561403,SERC,MISO,LA,29.691111,-91.192778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58479,SEV NM Phase 2,NMP2,2013.0,2.0,1.4,1.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7,0.55,WECC,SWPP,NM,33.351111,-104.506944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58480,Plymouth Solar LLC,1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.875,-76.710556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58481,CSU Pueblo,CSU1,2008.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,WECC,WACM,CO,38.306111,-104.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58482,"Azalea Solar, LLC",1,2013.0,7.7,7.7,7.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.980833,-82.591667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58483,Tinton Falls Solar Farm,UNIT1,2012.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.263889,-74.084167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58484,MAS ASB Cogen Plant,1,2012.0,2.2,2.2,2.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.655,-84.394444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.006381083426536 -58484,MAS ASB Cogen Plant,2,2012.0,2.2,2.2,2.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.655,-84.394444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.006381083426536 -58484,MAS ASB Cogen Plant,3,2012.0,2.2,2.2,2.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.655,-84.394444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.006381083426536 -58485,Upson Rocky Creek Solar Plant,PV1,2012.0,0.8,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.920833,-84.343056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58486,"Picture Rocks Solar, LLC",1,2012.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.369722,-111.242778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58487,Granville Solar PV Power Project,1,2012.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.411667,-78.593889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58488,"Bryan Solar, LLC",1,2013.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.6,-104.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58489,Apex Solar PV Power Project,1,2012.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.39,-114.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58490,Spectrum Solar PV Power Project,1,2013.0,30.2,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9933774834437087,0.9933774834437087,WECC,NEVP,NV,36.23,-114.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58491,"Sandy Cross Solar, LLC",SANDY,2012.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.868333,-77.954167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58492,"Ararat Rock Solar, LLC",ARARR,2012.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.461111,-80.600556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58493,"Progress Solar 1, LLC",PRO1,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.948056,-78.250833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58494,"Progress Solar II, LLC",PROG2,2012.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.476111,-79.0975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58495,"Progress Solar III, LLC",PROG3,2012.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.714167,-79.353889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58496,Lincoln Solar,PV2,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.462778,-87.260278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58497,L&S Sweetners,GEN1,2013.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.090556,-76.145556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.169354838709678 -58497,L&S Sweetners,GEN2,2013.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.090556,-76.145556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.169354838709678 -58498,RE Rosamond One LLC,RONE,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.9,-118.246944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58499,RE Rosamond Two LLC,RTWO,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.900278,-118.238333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58500,RE Rio Grande Solar LLC,RIO,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.00745,-118.16451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58501,RE Gillespie 1 LLC,GILL1,2013.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.026389,-112.665833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58502,RE Columbia 3 LLC,COL3,2014.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.024722,-118.164167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58503,Carty Generating Station,GEN1,2016.0,300.0,248.1,280.6,101.6,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.827,0.9353333333333333,WECC,PGE,OR,45.698611,-119.813056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58503,Carty Generating Station,GEN2,2016.0,200.0,168.2,189.9,66.4,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2016.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.841,0.9495,WECC,PGE,OR,45.698611,-119.813056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58504,Livingston Solar Farm,LVSF,2009.0,1.2,1.2,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8333333333333334,RFC,PJM,NJ,40.523611,-74.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58505,Livingston Solar Canopies,LVSC,2013.0,6.6,6.4,3.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9696969696969698,0.48484848484848486,RFC,PJM,NJ,40.5275,-74.438333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58506,Chuckawalla Solar,0937,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.568333,-114.918056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58507,Montefieor Medical Center Moses Division,EMG01,2007.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG02,1998.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG03,1998.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG04,1998.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG05,1998.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG06,1998.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG07,1998.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG08,1998.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG09,2011.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,EMG10,2011.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -58507,Montefieor Medical Center Moses Division,ES006,2002.0,5.3,4.8,4.8,3.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9056603773584906,0.9056603773584906,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.960115767613273 -58507,Montefieor Medical Center Moses Division,ES007,2002.0,3.5,3.5,3.5,3.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.960116623735097 -58507,Montefieor Medical Center Moses Division,S0001,1994.0,1.6,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.75,0.75,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -58507,Montefieor Medical Center Moses Division,S0002,1994.0,1.6,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.75,0.75,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -58507,Montefieor Medical Center Moses Division,S0003,1994.0,1.6,1.2,1.2,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1994.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.75,0.75,NPCC,NYIS,NY,40.881389,-73.880278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47.43157037257685 -58508,Bear Creek Solar,PV3,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.136389,-121.148889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58509,Vintner Solar,PV4,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.55795,-120.68287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58510,Kettleman Solar Project,PV5,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.12139,-121.14122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58511,Delta Wind Farm,EWT1,2009.0,0.9,0.9,0.9,0,WND,Onshore Wind Turbine,OP,WT,10.0,2009.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,64.013889,-145.596667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58511,Delta Wind Farm,EWT2,2013.0,0.9,0.9,0.9,0,WND,Onshore Wind Turbine,OP,WT,9.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,64.013889,-145.596667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58511,Delta Wind Farm,NW1,2008.0,0.1,0.1,0.1,0,WND,Onshore Wind Turbine,OP,WT,9.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,AK,64.013889,-145.596667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58512,Cornerstone Power Vineland I LLC,PV1,2012.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.439722,-75.043889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58513,Ironwood Solar LLC,0937,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.565,-114.918056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58514,Desert Hot Springs Solar,DHCA,2013.0,2.3,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9565217391304349,0.9565217391304349,WECC,CISO,CA,33.923056,-116.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58515,Chattanooga Metropolitan Airport Solar,GEN1,2011.0,1.0,0.7,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7,0.30000000000000004,SERC,TVA,TN,35.024583,-85.208617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58515,Chattanooga Metropolitan Airport Solar,GEN2,2013.0,1.1,0.8,0.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7272727272727273,0.2727272727272727,SERC,TVA,TN,35.024583,-85.208617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58515,Chattanooga Metropolitan Airport Solar,GEN3,2019.0,0.6,0.4,0.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.6666666666666667,0.33333333333333337,SERC,TVA,TN,35.024583,-85.208617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58516,Union HS at Casa Grande,PV1,2012.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.936944,-111.738611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58517,Vista Grande HS at Casa Grande,PV1,2012.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.891389,-111.713056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58519,Alethea I,1,2011.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.000556,-74.735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58520,Otero Solar,OTE1,2013.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,32.976389,-105.971111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58521,Manzano Solar,MAN1,2013.0,8.4,8.4,8.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,34.746667,-106.654444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58522,Madera Community Hospital,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.941111,-120.046667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58523,Stoltze CoGen1,STL2,2013.0,2.8,3.0,3.0,0.1,WDS,Wood/Wood Waste Biomass,OP,ST,10.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BPAT,MT,48.3877,-114.2409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.595661992542407 -58524,Neuse River Solar Farm,1,2011.0,1.1,1.1,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9090909090909091,SERC,DUK,NC,35.714444,-78.498889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58525,City of Hayward WWTP,1,2010.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.633526,-122.139717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58525,City of Hayward WWTP,COGEN,2014.0,1.1,1.1,1.1,0.8,OBG,Other Waste Biomass,OP,IC,12.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.633526,-122.139717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.255687810757873 -58526,Uwharrie Mountain Renewable,1,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.332974,-79.964939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.767713891422904 -58526,Uwharrie Mountain Renewable,2,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.332974,-79.964939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.767713891422904 -58526,Uwharrie Mountain Renewable,3,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.332974,-79.964939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.767713891422904 -58526,Uwharrie Mountain Renewable,4,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.332974,-79.964939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.767713891422904 -58526,Uwharrie Mountain Renewable,5,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.332974,-79.964939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.767713891422904 -58526,Uwharrie Mountain Renewable,6,2014.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.332974,-79.964939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.767713891422904 -58527,Crown Cooling Facility,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.967222,-115.5325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58528,Garnet Solar Generation Station I LLC,WDT44,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8906,-116.5431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58529,Progress Manis I,P11A,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.756389,-79.447222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58531,North Carolina Solar Bethea I,P22A,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.704722,-79.525833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58533,Don A Campbell 1 Geothermal,1,2014.0,22.5,14.8,22.5,11.5,GEO,Geothermal,OP,BT,1.0,2014.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6577777777777778,1.0,WECC,NEVP,NV,38.836667,-118.323889,Wild Rose 1,GEO,True,6.0,16.0,-1.0,10.22,10.22,0.0,0.0,1.0,3.098312,25.0,-1.76143218685249,146.78580337925078,-7.058149846139727e-06,-1.761176283841051,146.78357478356807,6.679002842038434,#TRUE#,#2013-12-01#,#2050-12-31#,Existing,SPPC,SW_NVE,5.0,25.0,13.65,NV,Geo,Binary,#FALSE#,12.5,25, -58534,Westford Solar Park,1,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.636389,-71.419444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58535,Pickering Solar,1,2012.0,1.5,1.4,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.6666666666666667,RFC,PJM,PA,40.120556,-75.488056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58536,Cornerstone Power Holmdel LLC,1,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.352222,-74.187778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58537,OCI Alamo Solar I Hybrid,1,2013.0,40.7,40.7,40.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.271667,-98.444722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58538,PCSP3 Airport,3,2011.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.288056,-78.986111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58539,Lake Pleasant WTP,1,2012.0,6.5,6.0,4.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9230769230769231,0.6307692307692307,WECC,AZPS,AZ,33.820556,-112.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58540,Silver City WWTP PV Project,PV-1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,32.713889,-108.248056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58541,SunGen Sharon 1 LLC,1,2012.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.79,-72.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL12,2013.0,39.1,39.1,39.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL13,2014.0,39.1,39.1,39.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL14,2014.0,26.5,26.5,26.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL15,2014.0,13.9,13.9,13.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL16,2013.0,22.7,22.7,22.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL17,2013.0,29.0,29.0,29.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL18,2014.0,29.0,29.0,29.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL19,2014.0,25.2,25.2,25.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58542,"Desert Sunlight 250, LLC",DSL20,2013.0,25.2,25.2,25.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8055,-115.3947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58543,"Gilbert Solar Facility I, LLC",1,2011.0,2.0,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.355862,-111.802355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58544,Mountain View Solar,1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.390556,-114.964444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58545,Community Solar 1,1,2014.0,5.7,5.7,5.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.982778,-115.481944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58546,Watervliet,GEN1,2013.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,2.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.175833,-86.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.146573795180723 -58546,Watervliet,GEN2,2013.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,2.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.175833,-86.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.146573795180723 -58546,Watervliet,GEN3,2019.0,0.8,0.8,0.8,0.4,LFG,Landfill Gas,OP,IC,7.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.175833,-86.28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.146573795180723 -58547,SMPA Solar 1 Community Solar,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.2725,-108.785556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58548,Huerfano River Wind,WTG1,2013.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,37.772222,-104.832222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58548,Huerfano River Wind,WTG2,2013.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,37.772222,-104.832222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58548,Huerfano River Wind,WTG3,2013.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,37.772222,-104.832222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58548,Huerfano River Wind,WTG4,2013.0,2.0,2.0,2.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,37.772222,-104.832222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58549,Port Allen Solar,1,2012.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.901944,-159.581667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58550,Owens Corning at Bethlehem,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.586944,-73.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58551,"Bridgeport Fuel Cell, LLC",1,2013.0,16.6,13.7,14.9,0.6,NG,Other Natural Gas,OP,FC,12.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.8253012048192769,0.8975903614457831,NPCC,ISNE,CT,41.168056,-73.211111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58552,"Indy Solar I, LLC",1,2013.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.662778,-85.985556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58553,"Indy Solar III, LLC",1,2013.0,8.6,8.6,8.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.659444,-86.259722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58554,"Somers Solar Center, LLC",1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.955,-72.445833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58556,"Indy Solar II, LLC",1,2013.0,10.1,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9900990099009901,0.9900990099009901,RFC,MISO,IN,39.662778,-85.985556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58557,Mesquite Generating Station Block 1,GT1,2003.0,185.3,160.0,170.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8634646519158121,0.9174311926605504,WECC,SRP,AZ,33.345,-112.864167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58557,Mesquite Generating Station Block 1,GT2,2003.0,185.3,160.0,170.0,50,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8634646519158121,0.9174311926605504,WECC,SRP,AZ,33.345,-112.864167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58557,Mesquite Generating Station Block 1,ST1,2003.0,321.0,300.0,300.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9345794392523364,0.9345794392523364,WECC,SRP,AZ,33.345,-112.864167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58558,Onslow Power Producers,GEN1,2013.0,2.0,1.9,1.9,1.8,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,SERC,DUK,NC,34.7975,-77.543056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.15139109999242 -58559,Bi-County Gas Producers,GEN1,2011.0,1.0,0.9,0.9,0.8,LFG,Landfill Gas,OP,IC,8.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,SERC,TVA,TN,36.540556,-87.544444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994673459935155 -58559,Bi-County Gas Producers,GEN2,2013.0,2.0,1.9,1.9,1.8,LFG,Landfill Gas,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,SERC,TVA,TN,36.540556,-87.544444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.994673459935155 -58560,Halifax County Biomass,STG1,2013.0,49.9,45.4,45.4,25,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9098196392785571,0.9098196392785571,SERC,PJM,VA,36.701389,-78.873333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58561,Merrimac Solar,MSMA,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.833056,-70.991944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58562,Montana Power Station,GT-1,2015.0,131.8,88.0,93.0,18.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6676783004552351,0.7056145675265553,WECC,EPE,TX,31.823889,-106.211944,Montana_1_G1,GT LMS_LMS100,False,1.0,1.0,-1.0,79.38,79.38,2642.299,453.0,1.0,0.45,93.2,4.022975401819349,241.50269072748085,0.2416385352863191,-29.59759043569194,1372.5929370755546,7.751620402409467,#TRUE#,#2015-05-01#,#2055-12-31#,Existing,EPE,SW_EPE,50.0,93.2,68.0,TX,NG,Areo,#FALSE#,50,93.2,7.185883986294158 -58562,Montana Power Station,GT-2,2015.0,131.8,88.0,93.0,18.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6676783004552351,0.7056145675265553,WECC,EPE,TX,31.823889,-106.211944,Montana_2_G2,GT LMS_LMS100,False,1.0,1.0,-1.0,79.38,79.38,2642.299,453.0,1.0,0.45,97.0,3.7759141531451013,255.96476965086393,0.2158053255087625,-26.993233857191992,1312.1606662036843,7.658713165541748,#TRUE#,#2015-05-01#,#2055-12-31#,Existing,EPE,SW_EPE,50.0,97.0,68.0,TX,NG,Areo,#FALSE#,50,97,8.706842951066802 -58562,Montana Power Station,GT-3,2016.0,131.8,88.0,93.0,19.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6676783004552351,0.7056145675265553,WECC,EPE,TX,31.823889,-106.211944,Montana_3_G3,GT LMS_LMS100,False,1.0,1.0,-1.0,80.28,80.28,2672.257,453.0,1.0,0.45,97.0,4.257122830833271,247.78039089304676,0.19474886523624782,-23.509857999589126,1200.9235545944764,8.015770782123818,#TRUE#,#2016-05-01#,#2056-12-31#,Existing,EPE,SW_EPE,50.0,97.0,68.0,TX,NG,Areo,#FALSE#,50,97,11.183563221003432 -58562,Montana Power Station,GT-4,2016.0,131.8,88.0,93.0,19.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6676783004552351,0.7056145675265553,WECC,EPE,TX,31.823889,-106.211944,Montana_4_G4,GT LMS_LMS100,False,1.0,1.0,-1.0,80.28,80.28,2672.257,453.0,1.0,0.45,97.0,4.460705847073549,216.3340209036733,0.2195938640014835,-26.84863141914173,1291.0737343431508,7.74233528325851,#TRUE#,#2016-09-01#,#2057-12-31#,Existing,EPE,SW_EPE,50.0,97.0,68.0,TX,NG,Areo,#FALSE#,50,97,10.610537205769203 -58563,Hometown Bio Energy LLC,HTBE,2013.0,8.0,7.6,7.6,1.5,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.95,0.95,MRO,MISO,MN,44.435556,-93.906389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.76040461188976 -58564,Frenchtown III Solar,F3NJ,2013.0,7.9,7.9,7.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.4825,-75.018056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58565,Gettysburg Energy & Nutrient Rec Facility,GENRF,2013.0,3.3,2.5,2.7,0.1,OBS,Other Waste Biomass,OS,ST,6.0,2013.0, , ,,,,,biomass,waste,Other Biomass Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.7575757575757576,0.8181818181818183,RFC,PJM,PA,39.950278,-77.125278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58568,Cottage Street Solar Facility,PV-3,2014.0,3.2,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.145278,-72.538333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58569,Paradise Solar Energy Center,1,2011.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.835833,-75.2225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58570,Enel Cove Fort,1-G1A,2013.0,12.5,12.5,12.5,0.1,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,PACE,UT,38.560278,-112.581111,EnelCoveFort1-1,GEO,True,6.0,16.0,-1.0,11.88,11.88,0.0,0.0,1.0,3.098312,16.25,-1.761427873519469,95.41070212745065,-6.795866035524956e-06,-1.7612676948208108,95.40979526200556,6.679000956769822,#TRUE#,#2013-12-17#,#2033-12-31#,Future-Planned,PAUT,BS_PACE,0.0,16.25,8.0,UT,Geo,Binary,#FALSE#,8.125,16.25, -58570,Enel Cove Fort,2-GIA,2013.0,12.5,12.5,12.5,0.1,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,PACE,UT,38.560278,-112.581111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58571,Tucannon River Wind Farm,1,2014.0,266.8,266.8,266.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PGE,WA,46.421111,-118.026944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58572,Lakeland Solar Energy LLC,1,2013.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.026944,-83.055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58572,Lakeland Solar Energy LLC,2,2013.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.026944,-83.055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58574,Eagle Valley Clean Energy LLC Biomass,01,2013.0,12.6,12.6,12.6,1.1,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PSCO,CO,39.648056,-106.943056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.480483817445746 -58575,Smithfield Packaged Meats Corp.,1,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.268333,-77.659167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.834735576923077 -58575,Smithfield Packaged Meats Corp.,2,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.268333,-77.659167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.834735576923077 -58575,Smithfield Packaged Meats Corp.,3,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.268333,-77.659167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.834735576923077 -58575,Smithfield Packaged Meats Corp.,4,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.268333,-77.659167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.834735576923077 -58576,GSE NM1,NMP1,2011.0,2.3,1.7,1.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7391304347826088,0.5652173913043479,WECC,SWPP,NM,33.3,-104.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58577,Veolia ES Blackfoot Landfill Facility,BLG1,2009.0,1.6,1.1,1.0,0.5,LFG,Landfill Gas,OP,IC,6.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6875,0.625,RFC,MISO,IN,38.327222,-87.200556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.198776758409785 -58577,Veolia ES Blackfoot Landfill Facility,BLG2,2009.0,1.6,1.1,1.0,0.5,LFG,Landfill Gas,OP,IC,6.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.6875,0.625,RFC,MISO,IN,38.327222,-87.200556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.198776758409785 -58578,Sonora 1,SON1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.889753,-120.528723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58580,Pheasant Run Wind LLC,1,2013.0,74.8,74.8,74.8,3.7,WND,Onshore Wind Turbine,OP,WT,12.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.757778,-83.297778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58581,Oltmans SCE at Champagne,1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.043889,-117.531111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58582,Oltmans SCE at Jurupa,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.05,-117.596111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58583,Forbes Street Solar,FSS1,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.773056,-71.338889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58584,Princeton University Cogeneration,GT1,1996.0,15.5,15.5,15.5,7.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,NJ,40.341389,-74.657222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.44487899144198 -58584,Princeton University Cogeneration,PV1,2012.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.341389,-74.657222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58584,Princeton University Cogeneration,PV2,2021.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.341389,-74.657222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58584,Princeton University Cogeneration,PV3,2022.0,10.5,10.5,10.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.341389,-74.657222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58584,Princeton University Cogeneration,PV4,2022.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.341389,-74.657222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58585,Sierra Nevada Brewing Co Hybrid,BESS,2017.0,0.5,0.5,0.5,0.1,MWH,Batteries,OP,BA,2.0,2017.0, , ,1.0,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,39.724167,-121.815278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58585,Sierra Nevada Brewing Co Hybrid,COGN,2016.0,2.0,1.7,1.8,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.85,0.9,WECC,CISO,CA,39.724167,-121.815278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.177439403356122 -58585,Sierra Nevada Brewing Co Hybrid,SOLR,2007.0,1.7,1.4,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8235294117647058,0.5294117647058824,WECC,CISO,CA,39.724167,-121.815278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58586,Town of East Bridgewater CSG,1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.051111,-70.955833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58587,Tuscola Wind II LLC,1,2013.0,100.3,100.3,100.3,5,WND,Onshore Wind Turbine,OP,WT,11.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.526944,-83.566944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58588,Sue Cleveland High School,SCHS,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.313333,-106.657778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58589,Rio Rancho High School,RRHS,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.264444,-106.667778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58590,Cascade Solar,1,2014.0,18.5,18.5,18.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.157222,-116.234444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58591,POTB Digester,GEN1,2013.0,1.0,1.0,1.0,0.6,OBG,Other Waste Biomass,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.414444,-123.804167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.650845253576072 -58592,Solar Gen 2 Solar Facility,ALHM,2014.0,54.4,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9191176470588236,0.9191176470588236,WECC,CISO,CA,33.08,-115.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58592,Solar Gen 2 Solar Facility,ARK,2014.0,54.4,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9191176470588236,0.9191176470588236,WECC,CISO,CA,33.08,-115.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58592,Solar Gen 2 Solar Facility,SONR,2014.0,54.4,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9191176470588236,0.9191176470588236,WECC,CISO,CA,33.08,-115.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58593,DGS Central Utility Plant,BS1,2010.0,0.6,0.6,0.6,0.4,DFO,Petroleum Liquids,SB,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,BANC,CA,38.573889,-121.501389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58593,DGS Central Utility Plant,EM1,2010.0,0.4,0.4,0.4,0.2,DFO,Petroleum Liquids,SB,IC,12.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,BANC,CA,38.573889,-121.501389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58593,DGS Central Utility Plant,STG,2010.0,2.9,2.9,2.9,0.5,NG,Natural Gas Steam Turbine,SB,ST,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,BANC,CA,38.573889,-121.501389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58594,Steele Flats Wind Project LLC,1,2013.0,74.8,74.8,74.8,3.7,WND,Onshore Wind Turbine,OP,WT,10.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.048889,-96.952222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58596,"Grandview Wind Farm, LLC",GRVWI,2014.0,211.2,211.2,211.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.238333,-101.310833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58597,HTW Plant 303 COGEN,CGN1,2008.0,7.4,5.6,6.6,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7567567567567567,0.8918918918918918,WECC,PACE,UT,40.763056,-111.841667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.99598633442435 -58598,Beryl Solar Plant,BSP1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.639167,-113.645833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58599,Cedar Valley Solar Plant,CVSP1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.807778,-113.09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58600,Buckhorn Solar Plant,BSP1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.023333,-112.731667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58601,Milford Flat Solar Plant,MFSP1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.291389,-113.008333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58602,Laho Solar Plant,LSP1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.291389,-113.035556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58603,Greenville Solar Plant,GVSP1,2015.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.256111,-112.735833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58604,Granite Peak Solar Plant,GPSP1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.402778,-112.988889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58605,Blueberry One,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.313889,-78.154167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58607,One Market Plaza,1,2003.0,0.5,0.5,0.5,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.793333,-122.394167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.095181104372593 -58607,One Market Plaza,2,2003.0,0.5,0.5,0.5,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.793333,-122.394167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.095181104372593 -58607,One Market Plaza,3,2003.0,0.5,0.5,0.5,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.793333,-122.394167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.095181104372593 -58608,Saddleback Ridge Wind Farm,SRW1,2014.0,8.5,8.5,8.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.593333,-70.381111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58608,Saddleback Ridge Wind Farm,SRW2,2015.0,25.7,25.7,25.7,0.4,WND,Onshore Wind Turbine,OP,WT,9.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.593333,-70.381111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58609,Industry Solar Power Generation Station 1 LLC,ISP1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.553056,-117.456944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58610,Navajo Solar Power Generation Station 1 LLC,NSP1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.551111,-117.191111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58611,Powhatan Solar Power Generation Station 1 LLC,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.496944,-117.145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58612,Otoe Solar Power Generation Station 1 LLC,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.545,-117.191944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58614,Patriot Wind Farm,PAT1,2019.0,226.1,226.1,226.1,0,WND,Onshore Wind Turbine,OP,WT,6.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.580489,-97.640077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58615,Indianapolis Motor Speedway Solar PV,IMS,2014.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.79,-86.233611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58616,Westlands Solar PV Farm,WSF1,2014.0,18.0,18.0,14.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7777777777777778,WECC,CISO,CA,36.138056,-120.075833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58617,Water Reclamation Plant,GEN1,2003.0,1.0,0.3,0.3,0.3,OBG,Other Waste Biomass,OP,IC,3.0,2003.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.30000000000000004,0.30000000000000004,MRO,MISO,MN,44.064722,-92.469167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.923529411764706 -58617,Water Reclamation Plant,GEN2,2008.0,1.0,0.3,0.3,0.3,OBG,Other Waste Biomass,OP,IC,8.0,2008.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.30000000000000004,0.30000000000000004,MRO,MISO,MN,44.064722,-92.469167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.923529411764706 -58618,Butler Plaza,1,2010.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,GVL,FL,29.623056,-82.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58619,Transamerica Pyramid,1,2007.0,0.5,0.5,0.5,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.795556,-122.402778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,132.70328102710414 -58619,Transamerica Pyramid,2,2007.0,0.5,0.5,0.5,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.795556,-122.402778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,132.70328102710414 -58620,Canton Mountain Wind,1,2017.0,22.8,22.8,22.8,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.514722,-70.303056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58621,Sol Orchard El Centro PV,ECPV,2013.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.803333,-115.546389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58622,Carter Hydro,1,2012.0,1.3,1.3,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.3076923076923077,WECC,WACM,CO,40.324167,-105.208889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58622,Carter Hydro,2,2012.0,1.3,1.3,0.4,0.3,WAT,Conventional Hydroelectric,OP,HY,6.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.3076923076923077,WECC,WACM,CO,40.324167,-105.208889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58623,Holstein Plant,PV1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.774167,-79.340833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58624,Berkshire 1,BER1,2011.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.114444,-73.405278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58625,Santa Rita Jail Hybrid,SRFC2,2017.0,1.4,1.4,1.4,1.4,NG,Other Natural Gas,OP,FC,1.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.719167,-121.886944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58625,Santa Rita Jail Hybrid,SRJBA,2012.0,2.0,2.0,2.0,0.3,MWH,Batteries,OS,BA,7.0,2012.0, , ,4.0,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.719167,-121.886944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58625,Santa Rita Jail Hybrid,SRPV2,2016.0,1.0,1.0,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.09999999999999998,WECC,CISO,CA,37.719167,-121.886944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58625,Santa Rita Jail Hybrid,SRPV3,2017.0,0.5,0.5,0.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.19999999999999996,WECC,CISO,CA,37.719167,-121.886944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58626,Western Antelope Blue Sky Ranch A,WABSA,2014.0,20.0,19.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.9,WECC,CISO,CA,34.681667,-118.324722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58627,Western Antelope Dry Ranch,WADR,2016.0,10.0,10.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,CISO,CA,34.688889,-118.320278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58628,Simon Solar Farm LLC,SRSSF,2013.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.678056,-83.675833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58629,"Lightning Dock Geothermal HI-01, LLC",GEN-5,2018.0,15.2,7.0,11.0,4,GEO,Geothermal,OP,BT,12.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.4605263157894737,0.7236842105263158,WECC,PNM,NM,32.144722,-108.838333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58629,"Lightning Dock Geothermal HI-01, LLC",PB01,2013.0,1.0,0.4,0.7,0.3,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.4,0.7,WECC,PNM,NM,32.144722,-108.838333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58629,"Lightning Dock Geothermal HI-01, LLC",PB02,2013.0,1.0,0.4,0.7,0.3,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.4,0.7,WECC,PNM,NM,32.144722,-108.838333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58629,"Lightning Dock Geothermal HI-01, LLC",PB03,2013.0,1.0,0.4,0.7,0.3,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.4,0.7,WECC,PNM,NM,32.144722,-108.838333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58629,"Lightning Dock Geothermal HI-01, LLC",PB04,2013.0,1.0,0.4,0.7,0.3,GEO,Geothermal,OP,BT,12.0,2013.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.4,0.7,WECC,PNM,NM,32.144722,-108.838333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58630,RP Wind,RPOH,2013.0,3.4,3.4,3.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.449444,-83.893333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58631,Queen Anne's County,1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.031667,-76.016389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58632,Actus Lend Lease DMAFB,1,2009.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.1825,-110.863333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58633,Monterey Regional Water Pollution Control Agency,1,2010.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.721111,-121.787778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58634,Lancaster Baptist Church,1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.695833,-118.058889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58635,Museum of Science and Industry,COGEN,2003.0,1.7,1.7,1.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,41.790556,-87.582778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.472697186982902 -58636,Sacramento Fairbain Water Treatment Plant,1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.554802,-121.416791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58638,Orbit Energy Charlotte,1,2016.0,5.2,5.2,5.2,1.2,OBG,Other Waste Biomass,OP,IC,11.0,2016.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.2625,-80.811667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.312390106669792 -58639,KRS I Anahola Solar Hybrid,ANAPV,2015.0,12.0,12.0,12.0,0,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,22.131667,-159.303056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58640,KRS II Koloa Solar,KOLPV,2014.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.900833,-159.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58642,Tulare 1 and 2,1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.2,-119.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58642,Tulare 1 and 2,2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.2,-119.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58643,Rockford Solar Farm,1,2012.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.175278,-89.088333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK1,2015.0,26.4,26.4,26.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK2,2015.0,27.9,27.9,27.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK3,2015.0,37.2,37.2,37.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK4,2016.0,35.7,35.7,35.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK5,2016.0,35.0,35.0,35.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK6,2016.0,36.6,36.6,36.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK7,2016.0,35.0,35.0,35.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58644,Silver State Solar Power South,BLK8,2016.0,26.3,26.3,26.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.63,-115.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58645,RC Thomas Hydroelectric Project,RCT1,2020.0,8.9,8.7,8.7,3.3,WAT,Conventional Hydroelectric,OP,HY,7.0,2020.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9775280898876403,0.9775280898876403,SERC,MISO,TX,30.632222,-95.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58645,RC Thomas Hydroelectric Project,RCT2,2020.0,8.9,8.7,8.7,3.3,WAT,Conventional Hydroelectric,OP,HY,7.0,2020.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9775280898876403,0.9775280898876403,SERC,MISO,TX,30.632222,-95.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58645,RC Thomas Hydroelectric Project,RCT3,2020.0,8.9,8.7,8.7,3.3,WAT,Conventional Hydroelectric,OP,HY,7.0,2020.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9775280898876403,0.9775280898876403,SERC,MISO,TX,30.632222,-95.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL,2015.0,75.9,76.0,76.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL2,2015.0,34.1,34.0,34.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9970674486803519,0.9970674486803519,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL3,2016.0,37.9,38.0,38.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL4,2016.0,37.9,38.0,38.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL5,2016.0,37.9,38.0,38.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL6,2016.0,37.9,38.0,38.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58646,Stateline Solar,STL7,2016.0,37.9,38.0,38.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.6,-115.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58647,Port Richmond WWT Solar,1,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.638056,-74.126111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58649,Montgomery Solar LLC,1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.344444,-79.768333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58650,North Brookfield,PV1,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.278056,-72.053056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58651,Kalaeloa Renewable Energy Park,KREP,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.328056,-158.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58653,Jersey Gardens Phase 1,1,2011.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.660833,-74.173333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58654,Jersey Gardens Phase 2,1,2012.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.660833,-74.173333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-1,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-2,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-3,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-4,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-5,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-6,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-7,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-8,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV-9,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58655,Waihonu North Solar,INV10,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.470556,-158.013333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58656,Waihonu South Solar,INV-1,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.468889,-158.016389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58656,Waihonu South Solar,INV-2,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.468889,-158.016389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58656,Waihonu South Solar,INV-3,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.468889,-158.016389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58657,Odell Wind Farm,1,2016.0,200.0,200.0,200.0,3,WND,Onshore Wind Turbine,OP,WT,7.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.853333,-94.931944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58658,Courtenay Wind Farm,1,2016.0,200.0,195.0,195.0,29.6,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.975,0.975,MRO,MISO,ND,47.179722,-98.594722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58659,Aloha Solar Energy Fund 1 PK1,PK-1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.406944,-158.151389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58660,Utah Red Hills Renewable Energy Park,1,2015.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.882778,-112.904167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58661,Cape Cod Air Force Station - 6 SWS,GE-3,2014.0,1.7,1.7,1.7,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.7525,-70.538889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58661,Cape Cod Air Force Station - 6 SWS,GE-4,2014.0,1.7,1.7,1.7,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.7525,-70.538889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58662,Mauka FIT One,3501,2020.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.679722,-157.984444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58664,Frito Lay Incorporated,COGEN,2009.0,4.6,3.6,4.6,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7826086956521741,1.0,NPCC,ISNE,CT,41.862778,-71.891667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.975665592674241 -58665,"Celina Solar Project #1, LLC",CSP1,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.540556,-84.590556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58666,Alexander Wind Farm LLC,1,2015.0,50.7,50.7,50.7,0.7,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.424722,-99.5075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58667,Biscoe Solar LLC,BISCO,2014.0,5.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,SERC,DUK,NC,35.383889,-79.770278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58668,Rockwell Solar LLC,ROCKW,2014.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.541667,-80.474722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58669,Selma Solar LLC,SELMA,2014.0,5.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,SERC,DUK,NC,35.576389,-78.183333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58670,Turkey Branch Solar LLC,TURKY,2014.0,5.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,SERC,DUK,NC,34.524444,-79.104444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58673,Gates Solar LLC,GATES,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.450833,-76.803611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58674,Cirrus Solar LLC,CIRRU,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.969444,-78.265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58675,Chocowinity Solar LLC,CHOCO,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.515,-77.09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58676,Pearl City Peninsula Solar Park,PCPPV,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.375556,-157.968056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58677,Gratiot County Wind LLC,1,2012.0,110.4,110.4,110.4,0,WND,Onshore Wind Turbine,OP,WT,5.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.408056,-84.462222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58678,Oswegatchie,1,2002.0,0.9,0.8,0.8,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,2002.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,NPCC,NYIS,NY,44.27,-75.199167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58678,Oswegatchie,2,2002.0,0.9,0.8,0.8,0.5,WAT,Conventional Hydroelectric,OP,HY,8.0,2002.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.888888888888889,0.888888888888889,NPCC,NYIS,NY,44.27,-75.199167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58679,Upper Newton Falls,2,1927.0,0.6,0.6,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8333333333333334,NPCC,NYIS,NY,44.214444,-74.991389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58679,Upper Newton Falls,3,1927.0,0.6,0.6,0.5,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.8333333333333334,NPCC,NYIS,NY,44.214444,-74.991389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58679,Upper Newton Falls,4,1927.0,0.3,0.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1927.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,44.214444,-74.991389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58680,Braley Road 2,PV1,2015.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.751667,-70.966944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58681,Route 66 Wind Plant,RT661,2015.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.205278,-101.434167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58682,Dartmouth,PV1,2014.0,6.3,6.3,6.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.676111,-70.996944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58683,"Osage Wind, LLC",1,2015.0,150.4,150.4,150.4,0,WND,Onshore Wind Turbine,OP,WT,6.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,AECI,OK,36.706944,-96.700278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58684,Kapolei Solar Energy Park,KSEPV,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.321111,-158.1175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58685,Mahoning Creek Hydroelectric Project,8107,2013.0,6.0,6.7,6.7,0.8,WAT,Conventional Hydroelectric,OP,HY,12.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,PA,40.921111,-79.281667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58686,Hancock Wind Plant,HANC1,2016.0,51.0,51.0,51.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.760833,-68.146944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58687,Finley Buttes Landfill Gas,GEN1,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.69,-119.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.298170682569102 -58687,Finley Buttes Landfill Gas,GEN2,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.69,-119.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.298170682569102 -58687,Finley Buttes Landfill Gas,GEN3,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,OR,45.69,-119.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.298170682569102 -58688,LRI LFGTE Facility,A,2013.0,1.5,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,46.975556,-122.290556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.178649664720576 -58688,LRI LFGTE Facility,B,2013.0,1.5,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,46.975556,-122.290556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.178649664720576 -58688,LRI LFGTE Facility,C,2013.0,1.5,1.5,1.5,0.1,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PSEI,WA,46.975556,-122.290556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.178649664720576 -58689,Blue Sky One,1,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.907778,-105.985278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58690,Apple Blossom Wind Farm,APLB1,2017.0,100.0,100.0,100.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.815032,-83.315002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58691,South Fork Wind Farm,STFK1,2016.0,13.8,13.0,13.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9420289855072463,0.9420289855072463,MRO,MISO,MN,43.587283,-95.375119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58692,Black Oak Wind Farm,1,2016.0,78.0,78.0,78.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,45.660833,-95.012778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58694,Walnut Ridge Wind Farm,1,2018.0,212.0,212.0,212.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.496667,-89.580278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58695,Grande Prairie Wind Farm,1,2016.0,400.0,400.0,400.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.608056,-98.428333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58696,Nooksack Hydro,GEN1,1906.0,1.5,2.8,2.6,0.4,WAT,Conventional Hydroelectric,OP,HY,11.0,1906.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,48.907778,-121.814167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58697,L V Sutton Combined Cycle,CA1,2013.0,288.0,268.0,271.0,268,NG,Natural Gas Fired Combined Cycle,OP,CA,11.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9305555555555556,0.9409722222222222,SERC,CPLE,NC,34.283056,-77.985278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58697,L V Sutton Combined Cycle,CT004,2017.0,60.5,42.0,49.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.8099173553719008,SERC,CPLE,NC,34.283056,-77.985278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58697,L V Sutton Combined Cycle,CT005,2017.0,60.5,42.0,48.0,15,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6942148760330579,0.7933884297520661,SERC,CPLE,NC,34.283056,-77.985278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58697,L V Sutton Combined Cycle,CT1,2013.0,221.0,173.0,224.0,173,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7828054298642534,1.0,SERC,CPLE,NC,34.283056,-77.985278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58697,L V Sutton Combined Cycle,CT2,2013.0,221.0,173.0,224.0,173,NG,Natural Gas Fired Combined Cycle,OP,CT,11.0,2013.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7828054298642534,1.0,SERC,CPLE,NC,34.283056,-77.985278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58698,Mira Loma,D960,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.013056,-117.5375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58698,Mira Loma,D9611,2011.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.013056,-117.5375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58698,Mira Loma,D9612,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.013056,-117.5375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58699,ABEC Bidart-Old River LLC,GEN 1,2013.0,1.0,0.9,0.9,0.8,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,35.169722,-119.105556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.224014062977682 -58699,ABEC Bidart-Old River LLC,GEN 2,2013.0,1.0,0.9,0.9,0.8,OBG,Other Waste Biomass,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9,0.9,WECC,CISO,CA,35.169722,-119.105556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.224014062977682 -58700,Colleton Solar Farm,CS300,2013.0,2.5,2.5,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,SC,SC,32.913333,-80.6925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58701,Apple Data Center - PV2,PV2,2013.0,20.0,19.4,16.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.97,0.825,SERC,DUK,NC,35.738889,-81.207778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58702,Axio Green LLC,1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.576111,-72.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58703,Lenape II,1,2015.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.776667,-86.042778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58704,Zeeland Farm Services,CAT-1,2006.0,1.6,1.4,1.5,0.8,OBG,Other Waste Biomass,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8749999999999999,0.9375,RFC,MISO,MI,42.813056,-85.986111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.183545273479393 -58704,Zeeland Farm Services,CAT-2,2009.0,1.6,1.5,1.5,0.8,OBG,Other Waste Biomass,OP,IC,8.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.813056,-85.986111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.183545273479393 -58706,Allendale Biomass,GEN1,2013.0,22.5,19.2,19.2,4,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8533333333333333,0.8533333333333333,SERC,SC,SC,32.995,-81.281944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58707,Dorchester Biomass,GEN1,2013.0,22.5,20.0,20.0,4,WDS,Wood/Wood Waste Biomass,OP,ST,11.0,2013.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8888888888888888,0.8888888888888888,SERC,SC,SC,33.238611,-80.450278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58708,Phoenix Airport East Economy Lot,PAEEL,2012.0,1.1,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9090909090909091,0.9090909090909091,WECC,AZPS,AZ,33.4345,-111.9842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58709,Phoenix Airport Rental Car Center,PARCC,2012.0,1.6,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8749999999999999,0.8749999999999999,WECC,AZPS,AZ,33.43042,-112.04484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58710,Barilla Solar,BRLA,2015.0,30.2,30.2,30.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.96,-103.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58711,Lost Hills/Blackwell,BLKW,2015.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.62,-119.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58711,Lost Hills/Blackwell,LTHL,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.62,-119.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58713,North Star Solar,NSTR,2015.0,61.6,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.974025974025974,0.974025974025974,WECC,CISO,CA,36.73,-120.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58714,Oxbow Creek,GEN1,2019.0,4.4,4.2,4.2,2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.608611,-75.870556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.034279044711798 -58714,Oxbow Creek,GEN2,2019.0,4.4,4.2,4.2,2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.608611,-75.870556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.034279044711798 -58714,Oxbow Creek,GEN3,2019.0,4.4,4.2,4.2,2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.608611,-75.870556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.034279044711798 -58714,Oxbow Creek,GEN4,2019.0,4.4,4.2,4.2,2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.608611,-75.870556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.034279044711798 -58714,Oxbow Creek,GEN5,2019.0,4.4,4.2,4.2,2,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.608611,-75.870556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.034279044711798 -58715,Roundtop,GEN1,2015.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.657778,-76.049167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.222739261896082 -58715,Roundtop,GEN2,2015.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.657778,-76.049167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.222739261896082 -58715,Roundtop,GEN3,2015.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.657778,-76.049167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.222739261896082 -58715,Roundtop,GEN4,2015.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.657778,-76.049167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.222739261896082 -58715,Roundtop,GEN5,2015.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.657778,-76.049167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.222739261896082 -58716,"OCI Alamo 2, LLC",1,2014.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.469444,-98.331944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58717,"OCI Alamo 4, LLC",1,2014.0,39.6,39.6,39.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.47982,-98.29926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58718,Orion Solar I,PV1,2014.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.150694,-118.875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58719,Brookfield,WPH2,2014.0,74.8,74.8,74.8,7,WND,Onshore Wind Turbine,OP,WT,2.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.757778,-83.297778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58720,Pattern Panhandle Wind 2 LLC,1,2014.0,181.7,181.7,181.7,181.7,WND,Onshore Wind Turbine,OP,WT,11.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.442778,-101.372778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58721,Orion Solar II,ORION,2014.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.150694,-118.875278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58722,Charlotte Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.261944,-81.821667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58725,Elliana Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.131111,-79.3325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58726,Flash Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.758056,-81.229444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58730,Amethyst Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.316944,-81.926389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58731,Angel Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.651111,-81.208611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58732,Audrey Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.328056,-81.621944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58735,Buddy Solar,PV1,2015.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.541944,-80.363333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58739,Milo Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.148889,-79.348889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58740,Minnie Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.948056,-79.361944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58741,Nick Solar,NICK,2014.0,5.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,SERC,CPLE,NC,35.991111,-79.548056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58742,Owen Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.586111,-81.315278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58745,Sophie Solar,PV1,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.305,-81.696944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58746,Star Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.08,-78.823889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58747,Viresco Turtle Lake,GEN1,2013.0,1.6,1.6,1.6,0.4,OBG,Other Waste Biomass,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.390278,-92.1625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.757177853993141 -58747,Viresco Turtle Lake,GEN2,2013.0,1.6,1.6,1.6,0.4,OBG,Other Waste Biomass,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,45.390278,-92.1625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.757177853993141 -58748,North Bay Solar 1,NBWT,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.300556,-121.966389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58749,Tihonet Solar,TSMA,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.7875,-70.723333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58750,Lancaster Dry Farm Ranch B,LDFRB,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.716944,-118.289444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58751,Rodeo Solar C2,RSC2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.713333,-118.289444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58752,Rodeo Solar D2,RSD2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.713333,-118.289444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58753,Summer Solar A2,SSA2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58754,Summer Solar B2,SSB2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58755,Summer Solar C2,SSC2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58756,Summer Solar D2,SSD2,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58757,Summer North Solar,UE2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58757,Summer North Solar,UF2,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58757,Summer North Solar,UG2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58757,Summer North Solar,UH2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723056,-118.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58761,Expressway Solar A,EXSA,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.582222,-117.341667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58762,Expressway Solar B,EXSB,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.583333,-117.340278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58763,Expressway Solar C2,EXSC2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.584444,-117.341389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58765,Miami Wind Energy Center,1,2014.0,288.6,288.6,288.6,0,WND,Onshore Wind Turbine,OP,WT,8.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.653889,-100.538611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58766,Wake Wind Energy Center,1,2016.0,257.3,257.0,257.0,1.7,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9988340458608628,0.9988340458608628,TRE,ERCO,TX,33.825,-101.099722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58767,Buckeye Wind Energy Center,1,2015.0,200.5,200.5,200.5,0,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.003873,-99.41416100000001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58768,Marsh Hill Wind Farm,1,2014.0,16.2,16.2,16.2,0,WND,Onshore Wind Turbine,OP,WT,11.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.163889,-77.528889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58769,Spring Canyon Expansion Wind Energy Ctr,1,2014.0,34.0,34.0,34.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.964167,-103.077222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58769,Spring Canyon Expansion Wind Energy Ctr,SCIII,2014.0,28.6,28.6,28.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.964167,-103.077222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58770,Maywood Photovoltaic Project,1,2014.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.743889,-86.218056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58771,Roosevelt County,GEN1,2015.0,250.0,250.0,250.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.926111,-103.511111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58772,Longhorn Wind,GEN1,2015.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.311111,-101.251111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58773,TX Hereford Wind,GEN1,2014.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.748056,-102.174444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58774,Spinning Spur Wind II,GEN1,2014.0,161.0,161.0,161.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.276944,-102.682778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58775,Spinning Spur Wind III,GEN1,2015.0,194.0,194.0,194.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.295,-102.721111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58777,Cassadaga Wind Farm,1,2021.0,124.0,124.0,124.0,25,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.338333,-79.195556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58780,Scioto Ridge Wind Farm,1,2021.0,249.8,249.8,249.8,25,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.561389,-83.736389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58782,Sonne One,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.437222,-77.833611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58783,South Canal Hydro-1,SC-1,2013.0,4.0,3.8,0.2,1,WAT,Conventional Hydroelectric,OP,HY,6.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.050000000000000044,WECC,WACM,CO,38.483333,-107.755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58784,South Canal Hydro-3,SC-3,2013.0,3.5,3.3,0.2,1,WAT,Conventional Hydroelectric,OP,HY,8.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9428571428571428,0.05714285714285716,WECC,WACM,CO,38.470278,-107.771389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58785,Brentwood Solar,BRT1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.781389,-73.243889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58786,Deer Park,DRP1,2012.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.760833,-73.193889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58787,Dennison,DNN1,2011.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.763056,-73.323611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58788,North County,NRT1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.763056,-73.323611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58789,Riverhead,RVH1,2011.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.826111,-73.232222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58790,Cohalan,CLN1,2012.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.762465,-73.194441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58790,Cohalan,CLN2,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.762465,-73.194441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58791,Kirkwall Holdings,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.988889,-78.1375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58792,Ayrshire,PV1,2017.0,19.4,19.4,19.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.283056,-81.615278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58793,JMB Mcguire-Dix-Lakehurst Solar Project,UCIV,2013.0,11.4,11.4,11.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,39.992818,-74.636933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58794,Storrie Lake Solar Project,MSMPV,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.656944,-105.183889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58795,"Hobart Solar, LLC",HS,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.529444,-87.308333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58796,"Waterloo Solar, LLC",WS,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.433889,-85.043889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58797,"Valparaiso Solar, LLC",VS,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.502222,-87.161111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58798,"AC Criminal Courts Complex SPE2, LLC",ACCCC,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.4375,-74.690556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58799,Pamlico Partners Solar,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.501111,-76.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58801,"Arba Solar, LLC",INV1,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.396389,-77.703611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58801,"Arba Solar, LLC",INV2,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.396389,-77.703611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58801,"Arba Solar, LLC",INV3,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.396389,-77.703611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58801,"Arba Solar, LLC",INV4,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.396389,-77.703611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58802,"Franklin Solar, LLC",INV1,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.0975,-78.167778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58802,"Franklin Solar, LLC",INV2,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.0975,-78.167778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58802,"Franklin Solar, LLC",INV3,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.0975,-78.167778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58802,"Franklin Solar, LLC",INV4,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.0975,-78.167778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58803,"Kenansville Solar 2, LLC",INV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.957778,-77.981667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV1,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV10,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV2,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV3,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV4,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV5,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV6,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV7,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV8,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58805,"Samarcand Solar Farm, LLC",INV9,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311667,-79.695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58806,Albemarle Solar Center LLC,ASC1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.293056,-77.556944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58807,Boseman Solar Center LLC,BSC1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.008056,-77.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58808,Flemming Solar Center LLC,FSC1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.668889,-77.383889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58809,Littlefield Solar Center LLC,LSC1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.433889,-77.438056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58810,Rams Horn Solar Center LLC,RHSC1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.64295,-77.31654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58811,Beaver Dam,GEN1,2016.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.611389,-76.843056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.789171858731759 -58811,Beaver Dam,GEN2,2016.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.611389,-76.843056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.789171858731759 -58811,Beaver Dam,GEN3,2016.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.611389,-76.843056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.789171858731759 -58811,Beaver Dam,GEN4,2016.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.611389,-76.843056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.789171858731759 -58811,Beaver Dam,GEN5,2016.0,4.4,4.2,4.2,2.2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,RFC,PJM,PA,41.611389,-76.843056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.789171858731759 -58812,Upchurch Solar Center LLC,USC1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.781944,-77.883889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58813,Alpaca,1,2017.0,7.0,6.8,6.8,3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,RFC,PJM,PA,41.663056,-76.805556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.8530701537259 -58813,Alpaca,2,2017.0,7.0,6.8,6.8,3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,RFC,PJM,PA,41.663056,-76.805556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.8530701537259 -58813,Alpaca,3,2017.0,7.0,6.8,6.8,3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,RFC,PJM,PA,41.663056,-76.805556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.8530701537259 -58814,Shasta Solar Farm,GENA,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,41.031389,-121.4225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58814,Shasta Solar Farm,GENB,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,41.031389,-121.4225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58815,Hilton NY Co Gen Plant,1,2013.0,1.8,1.8,1.8,0,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.7625,-73.979167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.77271875585535 -58818,Milan,1,2017.0,7.0,6.8,6.8,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,RFC,PJM,PA,41.894444,-76.582778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.934649790846455 -58818,Milan,2,2017.0,7.0,6.8,6.8,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,RFC,PJM,PA,41.894444,-76.582778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.934649790846455 -58818,Milan,3,2017.0,7.0,6.8,6.8,3,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9714285714285714,0.9714285714285714,RFC,PJM,PA,41.894444,-76.582778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.934649790846455 -58822,Millville City Sewer Auth WTP,U1BB,2013.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.376389,-75.033056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58822,Millville City Sewer Auth WTP,U2DB,2013.0,0.4,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.376389,-75.033056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58824,Sheldon Solar,I402,2013.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.910556,-72.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58825,MTHS Co-Gen Buildings,STH1,1992.0,0.6,0.6,0.6,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.001944,-87.852222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58825,MTHS Co-Gen Buildings,STH2,1992.0,0.6,0.6,0.6,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1992.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.001944,-87.852222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58828,Apple One,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.629444,-81.156944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58829,Sonne Two,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.656667,-81.183611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58830,Cross Winds Energy Park,CWEP,2014.0,111.0,111.0,111.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.610278,-83.485556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58830,Cross Winds Energy Park,CWEP2,2018.0,44.0,44.0,44.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.610278,-83.485556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58830,Cross Winds Energy Park,CWEP3,2019.0,75.9,75.9,75.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.610278,-83.485556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58831,Redcrest Solar Farm,PV-1,2015.0,16.6,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9638554216867469,0.9638554216867469,WECC,CISO,CA,35.321944,-118.812778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58832,Cogenra - TEP,CTEP,2014.0,1.0,1.0,0.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7,WECC,TEPC,AZ,32.101944,-110.813333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58833,Red Horse 2,RH2S,2015.0,51.0,51.0,51.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.286111,-110.088056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58833,Red Horse 2,RH2W,2015.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,TEPC,AZ,32.286111,-110.088056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58834,Richland Center Renewable Energy LLC,UNIT1,2013.0,0.9,0.8,0.8,0.6,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,MISO,WI,43.314444,-90.373056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.861448913834321 -58834,Richland Center Renewable Energy LLC,UNIT2,2013.0,0.9,0.8,0.8,0.6,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.888888888888889,0.888888888888889,MRO,MISO,WI,43.314444,-90.373056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.861448913834321 -58835,Elk Station,ELK1,2015.0,199.8,195.1,202.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9764764764764764,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.70470244987749 -58835,Elk Station,ELK2,2016.0,199.8,195.1,202.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9764764764764764,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.70470244987749 -58835,Elk Station,ELK3,2016.0,199.8,190.9,202.0,85,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9554554554554554,1.0,MRO,SWPP,TX,33.865,-101.843333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.70470244987749 -58836,Lakeswind Power Partners,LW1,2014.0,51.8,50.0,50.0,3,WND,Onshore Wind Turbine,OP,WT,3.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9652509652509653,0.9652509652509653,MRO,MISO,MN,46.718056,-96.211944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58837,Na Pua Makani Wind Project,WT1,2020.0,27.6,27.6,27.6,1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,non-conus,non-conus,HI,21.666944,-157.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58838,Keechi Wind,KW1,2015.0,110.0,110.0,110.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.143056,-98.161111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58839,Sudbury Landfill,INV1,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.363889,-71.385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58839,Sudbury Landfill,INV2,2013.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.363889,-71.385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58839,Sudbury Landfill,INV3,2013.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.363889,-71.385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV1,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV2,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV3,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV4,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV5,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV6,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV7,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV8,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58840,"Kenansville Solar Farm, LLC",INV9,2014.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.97,-77.976111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58842,"Gato Montes Solar, LLC",1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.102778,-110.819722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58843,"Bethel Price Solar, LLC",1,2014.0,5.0,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.64,0.64,SERC,PJM,NC,35.794722,-77.381111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58844,"Dogwood Solar, LLC",1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.125,-77.409167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58845,Washington Airport Solar LLC,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.565278,-77.053611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58846,"Washington Millfield Solar, LLC",1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.499444,-76.833611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58847,"Windsor Cooper HIill Solar, LLC",1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.981944,-76.917778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58848,Warsaw Farm,1,2015.0,65.0,65.0,65.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.005556,-78.125833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58849,Castalia Solar,1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.0939,-77.783333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58851,Oakboro Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.795833,-79.538333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58853,McKenzie Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.323889,-78.691944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58854,Nash 58 Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.047222,-78.030833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58855,Nash 64 Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.949444,-78.0925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58856,Pate Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.816667,-79.199444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58859,Erwin Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.333333,-78.661389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58861,Sigmon Catawba Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.612222,-81.243333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58862,Wagstaff Farm 1,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.458658,-78.956739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58863,Waco Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.352222,-81.426111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58864,Sunfish Farm,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.558056,-78.735833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58865,Reventure Park,LFG,2014.0,1.9,1.9,1.9,1,LFG,Landfill Gas,OP,IC,7.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.294444,-80.998889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.771299394982588 -58865,Reventure Park,RNG,2015.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,3.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.294444,-80.998889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.771299806859176 -58866,Garrell Solar Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.325278,-78.793056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58867,Angier Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.516389,-78.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58868,Bladenboro Farm,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.535,-78.813056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58870,Rentech Nitrogen Pasadena Cogeneration,MG202,2015.0,15.4,14.0,14.2,0,WH,All Other,OP,ST,3.0,2015.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9090909090909091,0.922077922077922,TRE,ERCO,TX,29.739444,-95.194722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58871,Berkley East Solar LLC,1,2013.0,3.0,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9666666666666667,0.9666666666666667,NPCC,ISNE,MA,41.823889,-71.041389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58872,Bison 4 Wind Energy Center,BISO4,2015.0,205.0,205.0,205.0,0.6,WND,Onshore Wind Turbine,OP,WT,1.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.98,-101.554722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58873,Stuyvesant Falls,UNIT1,2012.0,3.0,2.0,3.0,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,1.0,NPCC,NYIS,NY,42.351389,-73.733889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58873,Stuyvesant Falls,UNIT2,2012.0,3.0,2.0,3.0,0.3,WAT,Conventional Hydroelectric,OP,HY,12.0,2012.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,1.0,NPCC,NYIS,NY,42.351389,-73.733889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58874,Dement Farm LLC,DF1,2013.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,36.27,-78.348333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58876,Fusion Solar Center LLC,PV,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.623889,-72.043056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58877,Kinsley Landfill Solar,KINS,2015.0,8.6,8.6,8.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.793333,-75.106389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58879,Duplin Solar LLC,DF,2013.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.011944,-78.078333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58880,North Carolina Solar III LLC,NCIII,2013.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.766667,-79.559722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58881,County College of Morris,PV01,2013.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.856667,-74.581389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58882,Mercer County Community College,PV01,2013.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.255833,-74.645278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF,2015.0,16.4,15.4,15.4,0.1,WND,Onshore Wind Turbine,OP,WT,6.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9390243902439025,0.9390243902439025,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF2,2015.0,100.8,91.0,91.0,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9027777777777778,0.9027777777777778,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF3,2015.0,89.1,87.1,87.1,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9775533108866442,0.9775533108866442,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF4,2015.0,89.2,87.0,87.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9753363228699551,0.9753363228699551,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF5,2015.0,115.0,105.0,105.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9130434782608696,0.9130434782608696,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF6,2015.0,86.8,84.8,84.8,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9769585253456221,0.9769585253456221,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58883,Highland Wind Project (IA),HLWF7,2015.0,4.7,4.7,4.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.080278,-95.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58884,Lundgren Wind Project,LGWF,2014.0,251.0,250.0,250.0,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9960159362549801,0.9960159362549801,MRO,MISO,IA,42.334722,-94.170833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58885,Macksburg Wind Project,MBWF,2014.0,119.6,119.6,119.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.209167,-94.103611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58886,Wellsburg Wind Project,WBWF,2014.0,140.8,138.6,138.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9843749999999999,0.9843749999999999,MRO,MISO,IA,42.390833,-92.966667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58887,Com Adam 1WF-1,ADAM,2007.0,2.5,2.5,2.5,0.1,WND,Onshore Wind Turbine,OS,WT,10.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.660278,-89.249722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58887,Com Adam 1WF-1,EVE,2007.0,2.5,2.5,2.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.660278,-89.249722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58889,ASTI,ASTI,2009.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.761389,-122.975278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58890,Beringer,BERI,2009.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.510833,-122.479722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58891,"Big Turtle Wind Farm, LLC",BTWF1,2014.0,20.0,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.850833,-82.7825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58892,Camilla Solar Plant,CMLA,2013.0,16.0,16.0,17.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.183889,-84.131944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58893,Camp Solar Plant,CAMP,2013.0,2.4,2.4,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.964722,-84.543889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58896,Patriots Stadium,PV01,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.560556,-74.551389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58897,Temple SEGF,19G01,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G02,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G03,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G04,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G05,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G06,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G07,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G08,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G09,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58897,Temple SEGF,19G10,1993.0,1.6,1.6,1.6,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,1993.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.98,-75.150556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.94843617920541 -58898,Pilot Hill Wind Farm,K4-1,2015.0,175.0,175.0,175.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,40.999169,-88.056247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58899,Prosperity Energy Storage Facility Hybrid,GEN-1,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.001944,-106.637222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58899,Prosperity Energy Storage Facility Hybrid,GEN-2,2011.0,0.8,0.8,0.8, ,MWH,Batteries,OP,BA,9.0,2011.0, , ,1.3,0.5,0.5,PBB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PNM,NM,35.001944,-106.637222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58900,Balko Wind LLC,BAL1,2015.0,299.7,299.7,299.7,0.5,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.518056,-100.847222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58901,Tri-County Water Hydropower Project,TCWG1,2014.0,7.2,7.2,0.1,2.9,WAT,Conventional Hydroelectric,OP,HY,4.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.01388888888888884,WECC,WACM,CO,38.239167,-107.758056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58901,Tri-County Water Hydropower Project,TCWG2,2014.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,4.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.239167,-107.758056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58902,Kingfisher Wind LLC,KNG1,2016.0,298.0,298.0,298.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.770278,-97.799722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58904,Fourmile Ridge,1,2014.0,40.0,40.0,40.0,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,MD,39.641111,-79.011111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58906,Valley Center 1,VC1,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.234167,-117.001667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58907,Valley Center 2,VC2,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.234167,-117.001667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58908,Beebe 1B,1,2014.0,50.4,50.4,50.4,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.256944,-84.499722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58909,Ramona 1,RAM1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.012222,-116.875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58911,Ramona 2,RAM2,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.012222,-116.875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58912,Santa Fe Springs Rooftop Solar BLDG M,1,2015.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.910833,-118.044444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58913,Santa Fe Springs Rooftop Solar BLDG H,1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.910833,-118.044444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58914,MCAGCC Cogen Plant,CG1,2003.0,7.2,7.0,5.0,3.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9722222222222222,0.6944444444444444,WECC,CISO,CA,34.237222,-116.054167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.713323574531582 -58914,MCAGCC Cogen Plant,CG100,2014.0,4.6,4.6,2.5,2.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.5434782608695652,WECC,CISO,CA,34.237222,-116.054167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.71332330641421 -58914,MCAGCC Cogen Plant,CG200,2014.0,4.6,4.6,2.5,2.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,0.5434782608695652,WECC,CISO,CA,34.237222,-116.054167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.71332330641421 -58915,Copper Mountain Solar 3,1,2014.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,10,2015.0,21.0,21.0,21.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,2,2014.0,27.0,27.0,27.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,3,2014.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,4,2014.0,28.0,28.0,28.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,5,2014.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,6,2014.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,7,2014.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,8,2014.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58915,Copper Mountain Solar 3,9,2015.0,24.0,24.0,24.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,NV,35.889419,-114.957912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58917,Tioga Solar Morris County 1 LLC,MMIR,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.815278,-74.475833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58918,2081 Terzian Solar Project,2081,2014.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.67,-119.415833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58919,2127 Harris Solar Project,2127,2014.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,39.291667,-121.669722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58920,2097 Helton Solar Project,2097,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.352222,-120.506944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58921,Napoleon Biogas,GEN1,2013.0,1.4,1.2,1.2,1.2,OBG,Other Waste Biomass,OA,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,RFC,PJM,OH,41.355556,-84.1025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58921,Napoleon Biogas,GEN2,2013.0,1.4,1.2,1.2,1.2,OBG,Other Waste Biomass,OA,IC,12.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8571428571428572,0.8571428571428572,RFC,PJM,OH,41.355556,-84.1025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58924,Sugar Creek Wind One LLC,SUG1,2020.0,202.0,202.0,202.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.074167,-89.291944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58925,Lincoln Land Wind,SAN1,2021.0,302.0,302.0,302.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,39.821944,-89.955833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58927,Story City Wind Project,WT01,2010.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.208056,-93.599444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58929,Melrose 2,12286,2014.0,1.0,0.9,0.9,0.8,DFO,Petroleum Liquids,OP,IC,3.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9,0.9,MRO,MISO,MN,45.676389,-94.801944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.8 -58932,Traer Wind Project,WT01,2010.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.161389,-92.4425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58933,Shell Chemical Appalachia LLC,GTG1,2021.0,48.4,37.1,46.5,22.8,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7665289256198348,0.9607438016528926,RFC,PJM,PA,40.671667,-80.336389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58933,Shell Chemical Appalachia LLC,GTG2,2021.0,48.4,37.1,46.5,22.8,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7665289256198348,0.9607438016528926,RFC,PJM,PA,40.671667,-80.336389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58933,Shell Chemical Appalachia LLC,GTG3,2021.0,48.4,37.1,46.5,22.8,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7665289256198348,0.9607438016528926,RFC,PJM,PA,40.671667,-80.336389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58933,Shell Chemical Appalachia LLC,STG1,2021.0,82.3,72.7,75.8,19,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8833535844471446,0.9210206561360875,RFC,PJM,PA,40.671667,-80.336389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58933,Shell Chemical Appalachia LLC,STG2,2021.0,82.3,72.7,75.8,19,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8833535844471446,0.9210206561360875,RFC,PJM,PA,40.671667,-80.336389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58934,"Integrys MA Solar, LLC - Ashburnham Site",ASH-R,2013.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.599444,-71.941944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58934,"Integrys MA Solar, LLC - Ashburnham Site",ASH10,2013.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.599444,-71.941944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58935,Open View Solar Farm,PV,2013.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,NPCC,ISNE,VT,44.139444,-73.203889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58936,Walpole Solar 2,WLPL1,2014.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.117222,-71.265833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58937,Gardner Solar 1,GRDN1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.586389,-72.030833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58938,Origin Wind,WT,2014.0,150.0,150.0,150.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.446111,-97.269722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58939,Anderson Wind I,AND1,2014.0,5.0,5.0,5.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.029444,-103.855833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58940,Anderson Wind II,AND2,2014.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.013889,-103.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58942,Rockville Solar I LLC,RVSI,2014.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.763056,-86.301111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58943,Halifax,1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.441944,-77.711389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58944,Woodville Renewable Power Project,G1,2014.0,49.9,46.5,46.5,20,WDS,Wood/Wood Waste Biomass,OS,ST,10.0,2014.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9318637274549099,0.9318637274549099,SERC,MISO,TX,30.748333,-94.4375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58946,Ameresco Dallas LLC,ENG1,2011.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,2.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.648611,-96.644444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.950020529953056 -58946,Ameresco Dallas LLC,ENG2,2011.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,2.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.648611,-96.644444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.950020529953056 -58946,Ameresco Dallas LLC,ENG3,2011.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,2.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.648611,-96.644444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.950020529953056 -58947,Bristol Myers Squibb Lawrenceville,DG101,1991.0,1.2,0.9,0.9,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1991.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,RFC,PJM,NJ,40.324722,-74.707778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.083333333333334 -58947,Bristol Myers Squibb Lawrenceville,TG101,1995.0,4.3,4.0,4.4,2.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,1995.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.930232558139535,1.0,RFC,PJM,NJ,40.324722,-74.707778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.389416030226352 -58947,Bristol Myers Squibb Lawrenceville,TG102,2021.0,5.6,5.4,5.8,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9642857142857144,1.0,RFC,PJM,NJ,40.324722,-74.707778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.389416589130452 -58949,Cloverdale Solar I,TBD,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.773056,-123.017778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58951,Delilah Road Landfill,DRLS,2016.0,8.5,8.5,8.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.416111,-74.543889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58952,Dessie Solar Center LLC,DESS,2014.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.302778,-78.835833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58953,"Rockville Solar II, LLC",RVSII,2014.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.766944,-86.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58954,Intel Folsom Phase 2,PV,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.643611,-121.163889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58955,BearPond Solar Center LLC,BEAR,2014.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.276111,-78.377222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58956,Shankle Solar Center LLC,SHAN,2015.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.943889,-79.195833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58957,Graham Solar Center LLC,GRAH,2014.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.309722,-79.014444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58958,Camelot Wind LLC,CMLTW,2012.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.925278,-70.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58959,Butler Solar Power Project,BSF1,2014.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,MO,38.27,-94.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58960,Laguna Water Reclamation Facility,S200,2013.0,1.1,1.1,1.1,0.7,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.368889,-122.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.966387162064478 -58960,Laguna Water Reclamation Facility,S201,2013.0,1.1,1.1,1.1,0.7,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.368889,-122.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.966387162064478 -58960,Laguna Water Reclamation Facility,S202,2013.0,1.1,1.1,1.1,0.7,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.368889,-122.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.966387162064478 -58960,Laguna Water Reclamation Facility,S203,2013.0,1.1,1.1,1.1,0.7,OBG,Other Waste Biomass,OP,IC,3.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.368889,-122.765833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.966387162064478 -58961,Oregon University System OIT Klamath Falls,PV,2014.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.254167,-121.785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58963,Las Virgenes Municipal Water District,PV,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.136111,-118.701944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58964,Technology Drive Solar,PV1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,42.876111,-72.565833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58965,"Thunder Spirit Wind, LLC",2,2018.0,48.0,48.0,48.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.075,-102.563333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58965,"Thunder Spirit Wind, LLC",THNDR,2015.0,107.5,107.5,107.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.075,-102.563333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58966,Fairfield Wind,T 1-6,2014.0,10.0,10.0,10.0,0.6,WND,Onshore Wind Turbine,OP,WT,5.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,47.723333,-111.965278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58972,Fort Huachuca Solar PV Project,FHUA2,2017.0,4.1,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,31.555278,-110.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58972,Fort Huachuca Solar PV Project,FHUAC,2014.0,13.6,13.6,13.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,31.555278,-110.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58973,White River Solar 2,W2CA,2014.0,19.8,19.8,19.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.874722,-119.046111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58974,Fairview Farms Solar,PV1,2014.0,2.0,2.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.65,NPCC,ISNE,MA,42.459722,-72.610278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58975,Henrietta Solar Project,PV1,2016.0,102.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9803921568627451,0.9803921568627451,WECC,CISO,CA,36.218806,-119.805833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58977,Whitman,WPG-1,2015.0,3.9,3.9,3.9,0.4,WAT,Conventional Hydroelectric,OP,HY,1.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.328056,-131.530833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58977,Whitman,WPG-2,2015.0,0.9,0.9,0.9,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.328056,-131.530833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58978,Central Valley Ag Power,CVAP,2014.0,1.5,1.5,1.5,0.2,OBG,Other Waste Biomass,OP,IC,3.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.719722,-120.898611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58979,Copenhagen Wind Farm,CPHGN,2018.0,79.9,79.9,79.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0,12,2043,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.913056,-75.698611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58980,Akron WRF,2G-1,2014.0,0.6,0.6,0.6,0.3,OBG,Other Waste Biomass,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.153333,-81.568889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.615518943256463 -58980,Akron WRF,2G-2,2014.0,0.6,0.6,0.6,0.3,OBG,Other Waste Biomass,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.153333,-81.568889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.615518943256463 -58980,Akron WRF,2G-3,2014.0,0.6,0.6,0.6,0.3,OBG,Other Waste Biomass,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.153333,-81.568889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.615518943256463 -58981,"Broken Bow Wind II, LLC",BBII,2014.0,73.1,73.1,73.1,0,WND,Onshore Wind Turbine,OP,WT,10.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.323889,-99.323056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58982,Allison Creek Hydro,GEN1,2016.0,6.5,6.5,6.5,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,61.084444,-146.353333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58983,RE Camelot LLC,1,2014.0,45.0,45.0,45.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.026667,-118.185556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58984,"RE Adams East, LLC",1,2014.0,19.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.6175,-120.290833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58985,"RE Kansas Solar, LLC",1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.247778,-119.833889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58986,"RE Old River One, LLC",1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.223333,-119.088889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58989,Eklutna Generation Station,EGS01,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS02,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS03,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS04,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS05,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS06,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS07,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS08,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS09,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58989,Eklutna Generation Station,EGS10,2015.0,17.1,16.5,16.5,6.6,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9649122807017543,0.9649122807017543,non-conus,non-conus,AK,61.457778,-149.351389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73157633373838 -58990,"RE Columbia Two, LLC",1,2014.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.026667,-118.185556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58991,"RE Kent South, LLC",1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226111,-119.905278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58992,Dept of Corrections NCCI Wind,WND-1,2013.0,1.7,1.7,1.7,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.572222,-71.944722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58992,Dept of Corrections NCCI Wind,WND-2,2013.0,1.7,1.7,1.7,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.572222,-71.944722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58994,Breckinridge Wind Project LLC,BWP,2015.0,98.8,98.8,98.8,1,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.476944,-97.685556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58995,St. Olaf Wind Turbine,OLFWT,2006.0,1.6,1.6,1.6,0,WND,Onshore Wind Turbine,OP,WT,9.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.462222,-93.192778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58996,St. Olaf StandBy Generators,SBIC1,1999.0,0.5,0.4,0.3,0,DFO,Petroleum Liquids,SB,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8,0.6,MRO,MISO,MN,44.461111,-93.180833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.291413303851115 -58996,St. Olaf StandBy Generators,SBIC2,1999.0,1.8,1.7,1.3,0,DFO,Petroleum Liquids,SB,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.7222222222222222,MRO,MISO,MN,44.461111,-93.180833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.29224784377959 -58996,St. Olaf StandBy Generators,SBIC3,1999.0,1.8,1.7,1.3,0,DFO,Petroleum Liquids,SB,IC,6.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9444444444444444,0.7222222222222222,MRO,MISO,MN,44.461111,-93.180833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.29224784377959 -58998,Goodwell Wind Project LLC,GWWP,2015.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.541389,-101.565556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -58999,Little Elk Wind Project LLC,LEWP,2015.0,74.0,74.0,74.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.194722,-98.907222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59001,Parkland Landfill Solar,PARK,2015.0,7.8,7.8,7.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.1275,-74.710833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59002,Carlsbad Energy Center,CEC 6,2018.0,131.8,105.5,105.5,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8004552352048557,0.8004552352048557,WECC,CISO,CA,33.140507,-117.333916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59002,Carlsbad Energy Center,CEC 7,2018.0,131.8,105.5,105.5,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8004552352048557,0.8004552352048557,WECC,CISO,CA,33.140507,-117.333916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59002,Carlsbad Energy Center,CEC 8,2018.0,131.8,105.5,105.5,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8004552352048557,0.8004552352048557,WECC,CISO,CA,33.140507,-117.333916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59002,Carlsbad Energy Center,CEC 9,2018.0,131.8,105.5,105.5,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8004552352048557,0.8004552352048557,WECC,CISO,CA,33.140507,-117.333916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59002,Carlsbad Energy Center,CEC10,2018.0,131.8,105.5,105.5,24,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8004552352048557,0.8004552352048557,WECC,CISO,CA,33.140507,-117.333916,CarlsbadEC1-GT5,GT LMS_LMS100 PA,False,1.0,1.0,-1.0,94.5009,94.5009,3145.624,475.65,1.0,0.45,120.0,8.587972044348014,151.48519655056,0.1155149759995252,-11.013998069566746,938.545069243997,10.47935735101344,#TRUE#,#2018-11-19#,#2050-12-31#,Future-Planned,CISD,CA_CISO,51.96,120.0,105.0,CA,NG,Areo,#FALSE#,51.96,120, -59003,Two Dot Wind Farm,1,2014.0,9.7,9.7,9.7,1.6,WND,Onshore Wind Turbine,OP,WT,6.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,46.449444,-110.087222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59004,"Potomac Energy Center, LLC",GEN1,2017.0,237.0,220.0,224.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9282700421940928,0.9451476793248945,SERC,PJM,VA,39.058056,-77.545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59004,"Potomac Energy Center, LLC",GEN2,2017.0,237.0,220.0,224.0,125,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9282700421940928,0.9451476793248945,SERC,PJM,VA,39.058056,-77.545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59004,"Potomac Energy Center, LLC",GEN3,2017.0,338.0,326.0,322.0,165,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9644970414201184,0.9526627218934911,SERC,PJM,VA,39.058056,-77.545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59005,Mariah del Norte,MAR1,2016.0,230.4,230.4,230.4,1,WND,Onshore Wind Turbine,OP,WT,11.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.6675,-102.577778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59008,Woodmere Solar Farm,PV1,2015.0,15.0,15.0,14.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9333333333333333,WECC,CISO,CA,35.323056,-118.821389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59009,Hayworth Solar,PV1,2015.0,27.0,26.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.962962962962963,0.9259259259259259,WECC,CISO,CA,35.325278,-118.878611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59010,Macho Springs,MSS1,2014.0,55.0,52.2,52.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9490909090909091,0.9490909090909091,WECC,EPE,NM,32.57,-107.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59011,Southbridge Landfill Gas-to-Energy,CAT,2011.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OP,IC,10.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,MA,42.104444,-72.0325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.212658875714407 -59012,Walt Bailey Bioenergy Facility,TURB1,2015.0,4.7,4.0,4.0,1,OBG,Other Waste Biomass,OP,GT,6.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,SERC,PJM,DC,38.820556,-77.018333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.352457890671353 -59012,Walt Bailey Bioenergy Facility,TURB2,2015.0,4.7,4.0,4.0,1,OBG,Other Waste Biomass,OP,GT,6.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,SERC,PJM,DC,38.820556,-77.018333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.352457890671353 -59012,Walt Bailey Bioenergy Facility,TURB3,2015.0,4.7,4.0,4.0,1,OBG,Other Waste Biomass,OP,GT,7.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.851063829787234,0.851063829787234,SERC,PJM,DC,38.820556,-77.018333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.352457890671353 -59013,Scituate PV,SCT,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.1775,-70.740556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59014,Bolton PV,BLT,2013.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.449722,-71.643056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59015,Stow PV,STW,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.436944,-71.506111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59017,Carol Jean Solar,GEN 1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.316111,-80.144444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59018,East Chicago,1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.632222,-87.469167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59019,Griffith,1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.521389,-87.436111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59020,Gila Bend Hybrid,PV1,2014.0,37.4,36.0,36.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9625668449197862,0.9625668449197862,WECC,AZPS,AZ,32.940833,-112.881389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59021,Hoopeston Wind LLC,HOO1,2015.0,98.0,98.0,98.0,49,WND,Onshore Wind Turbine,OP,WT,3.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.399722,-87.799167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59024,"Euclid Farm, Stamco N-54",N-54,2012.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.602222,-81.496944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59026,Back River Waste Water Treatment,CHP 1,2009.0,1.1,0.9,0.9,0.5,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,RFC,PJM,MD,39.299722,-76.494167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59026,Back River Waste Water Treatment,CHP 2,2009.0,1.1,0.9,0.9,0.5,OBG,Other Waste Biomass,OP,IC,1.0,2009.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.8181818181818181,0.8181818181818181,RFC,PJM,MD,39.299722,-76.494167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59026,Back River Waste Water Treatment,SOLAR,2012.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.299722,-76.494167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59028,Agawam Solar,0028,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.081944,-72.614444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59029,Rehoboth Solar,0040,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.901667,-71.2425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59030,Chicopee Solar,0036,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.185556,-72.5825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59031,Route 57 Solar,0027,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.058889,-72.664167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59032,EBZ Solar,0031,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.570556,-71.625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59033,Whately Solar,0024,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.446111,-72.623611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59034,Shannon Wind,SHAN1,2015.0,204.0,204.0,204.0,0.3,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.509722,-98.360833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59035,"Biomass to Energy Facility, Kauai",MKA1,2016.0,9.3,7.5,7.5,4.2,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,2016.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8064516129032258,0.8064516129032258,non-conus,non-conus,HI,21.965278,-159.460556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59035,"Biomass to Energy Facility, Kauai",XKA1,2014.0,0.5,0.5,0.5,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.965278,-159.460556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.011111111111113 -59035,"Biomass to Energy Facility, Kauai",XKA2,2014.0,0.5,0.5,0.5,0.4,DFO,Petroleum Liquids,OP,IC,5.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.965278,-159.460556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.011111111111113 -59037,Hiilangaay Hydro,GEN 1,2021.0,5.0,5.0,5.0,0,WAT,Conventional Hydroelectric,OP,HY,1.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,55.217254,-132.61003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59038,Battleground,GEN1,2013.0,3.5,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8571428571428572,0.8571428571428572,SERC,DUK,NC,35.22,-81.33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59039,Beulaville,GEN 1,2013.0,2.0,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,SERC,DUK,NC,34.9,-77.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 1,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OA,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 2,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OA,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 3,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OA,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 5,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OA,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 6,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OA,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 7,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 8,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN 9,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN10,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN11,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN12,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59040,Ball Mountain Hydro,GEN4,2016.0,0.2,0.2,0.2,0.1,WAT,Conventional Hydroelectric,OA,HY,4.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,VT,43.126944,-72.776111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59042,Ellerbe,GEN 1,2013.0,2.0,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,SERC,DUK,NC,35.1,-79.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59043,West Davisville Solar,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.603611,-71.477222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59044,Rio Rico Solar,RRSF,2014.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,31.5,-111.008056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59045,Jameson Energy Center,JEC1,2014.0,9.2,9.0,10.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9782608695652175,1.0,MRO,SWPP,KS,37.954722,-100.830556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.235031847133758 -59045,Jameson Energy Center,JEC2,2014.0,9.2,9.0,10.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9782608695652175,1.0,MRO,SWPP,KS,37.954722,-100.830556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.235031847133758 -59045,Jameson Energy Center,JEC3,2014.0,9.2,9.0,10.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9782608695652175,1.0,MRO,SWPP,KS,37.954722,-100.830556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.235031847133758 -59046,651 Chase Solar NG,PV1,2014.0,2.5,3.4,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,NPCC,ISNE,MA,42.626667,-71.742778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59049,Whitcomb Solar Farm,PS01,2014.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.485556,-73.136944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59050,Wallace,GEN 1,2013.0,2.0,1.8,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.85,SERC,DUK,NC,34.75813,-77.97173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59051,Kenansville,GEN 1,2013.0,2.0,1.9,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.9,SERC,DUK,NC,34.96,-78.04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59052,Fairmont-FLS 100,GEN 1,2013.0,4.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,SERC,DUK,NC,34.52,-79.13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59053,Michelangelo Wind 3 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.019,-93.514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59055,Rariton OMP,CHP1,2009.0,3.0,3.0,3.0,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.574444,-74.648056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.361719383617194 -59055,Rariton OMP,PV1,2012.0,2.4,2.4,2.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8750000000000001,RFC,PJM,NJ,40.574444,-74.648056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59056,Spring House,GEN 1,2013.0,3.8,3.8,3.8,2.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,PJM,PA,40.183889,-75.234167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.73273117161609 -59057,Skillman,GEN 1,2011.0,2.7,2.7,2.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9259259259259258,RFC,PJM,NJ,40.574444,-74.648056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59058,Vacaville,GEN 1,2007.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2007.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.399444,-121.960278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59059,Raritan ITS,GEN 1,2010.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.574444,-74.654167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59060,Waste Water Treatment Plant,WWPV,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.41,-73.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59061,Radfords Run Wind Farm,WT1,2017.0,278.0,278.0,278.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,40.011111,-89.047222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59063,Stella Wind Farm,WT1,2018.0,201.0,201.0,201.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.941667,-97.6425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59065,Drift Sand Wind Project LLC,WT1,2016.0,108.0,108.0,108.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.827778,-97.957222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59066,Bruennings Breeze Wind Farm,MVII,2017.0,228.0,228.0,228.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.522222,-97.691111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59068,"Colbeck's Corner, LLC",GVII,2016.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.254184,-101.186622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59070,Jericho Power,WT 1,2016.0,14.3,12.1,12.1,0.2,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.846153846153846,0.846153846153846,NPCC,ISNE,NH,44.466944,-71.225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59071,Carroll Area Wind Farm,WT 1,2015.0,20.7,20.7,20.7,0.3,WND,Onshore Wind Turbine,OP,WT,1.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.94143,-94.8861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59074,"SC 1 Data Center, Phase 2",14B,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",17A,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",17B,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",18A,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",18B,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",19A,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",19B,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",20A,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",20B,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",21A,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",21B,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",22A,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",22B,2017.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG10A,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG10B,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG11A,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG11B,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG12A,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG12B,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG13A,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG13B,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG14A,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG15A,2015.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,3.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG15B,2015.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,3.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG16A,2015.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,3.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG16B,2015.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,3.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG1A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG1B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG2A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG2B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG3A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG3B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG4A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG4B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG5A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG5B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG6A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG6B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG7A,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG7B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG8B,2011.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,9.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59074,"SC 1 Data Center, Phase 2",EG9A,2015.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,3.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",EG9B,2014.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362358136111864 -59074,"SC 1 Data Center, Phase 2",GEN8A,2020.0,2.2,2.2,2.2,0,DFO,Petroleum Liquids,SB,IC,4.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.361667,-121.943611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.362138084632518 -59075,Brewster Landfill,BRE1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.745556,-70.103056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59076,Chopin Wind LLC,WT1,2016.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.88,-118.463333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59077,Chatham Landfill,CHA,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.686111,-70.006111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59078,Harwich Landfill,HAR1,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.696111,-70.091944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59079,Katama Farm,KAT1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.361111,-70.516944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59080,Nunnepog,NUN1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.358889,-70.505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59081,Barnstable Landfill,HAR1,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.659722,-70.395556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59082,Dennis Landfill,DEN1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.693056,-70.145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59083,Limon III Wind LLC,WT1,2014.0,200.6,200.6,200.6,7,WND,Onshore Wind Turbine,OP,WT,8.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,39.353333,-103.474167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59084,Marshall Wind Farm,RPMA,2016.0,73.8,72.0,72.0,1,WND,Onshore Wind Turbine,OP,WT,5.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9756097560975611,0.9756097560975611,MRO,SWPP,KS,39.701111,-96.360833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59085,Lepomis PV Energy LLC,INV-1,2014.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.857222,-70.558333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59086,"Cottonwood Solar, LLC (Goose Lake)",GEN1,2015.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.593611,-119.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59087,"Cottonwood Solar, LLC (City of Corcoran)",GEN 1,2015.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.134444,-119.554444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59088,Calipatria Solar Farm,GEN 1,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.165833,-115.532222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59090,Rockland Solar CSG,GEN1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.089167,-70.897778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59093,Holland Energy Park,10,2017.0,53.1,43.1,53.1,25,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8116760828625236,1.0,RFC,MISO,MI,42.7925,-86.092222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.8317415087973 -59093,Holland Energy Park,11,2017.0,53.1,43.1,53.1,25,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8116760828625236,1.0,RFC,MISO,MI,42.7925,-86.092222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.08668242898452 -59093,Holland Energy Park,12,2017.0,43.2,40.9,42.9,18,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9467592592592592,0.9930555555555555,RFC,MISO,MI,42.7925,-86.092222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59094,Division 1,GEN 1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.708333,-118.130556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59095,Division 2,GEN 1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.708333,-118.130556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59096,Division 3,GEN1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.708333,-118.130556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59097,Berry Plastics Solar,PV1,2013.0,9.8,9.8,9.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.698333,-75.151944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59098,Kettering Solar 1,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.700278,-118.123611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59099,Kettering Solar 2,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.700278,-118.123611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59100,Chauncey Farm LLC,1,2014.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.3375,-78.521944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59102,Dragstrip Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.758056,-81.416111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59103,Fremont Farm LLC,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.531944,-77.969167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59105,Market Farm,1,2014.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.390278,-79.647222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59106,Snow Hill Solar 2 LLC,1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.444167,-77.649444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59107,Mount Olive Farm,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.201944,-78.081667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59109,Spicewood Solar Farm LLC,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.3025,-79.701667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59110,Springfield Solar 1 LLC,1,2014.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,37.246389,-93.166389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59111,West Salisbury Farm LLC,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.668333,-80.523611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59112,West Siler,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.720841,-79.503747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59113,Yanceyville Farm 2 LLC,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.413889,-79.316944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59114,Redmon Solar Farm LLC,1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.710833,-80.665833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59115,Anderson Farm LLC,1,2014.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.975556,-78.516667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59116,Woodbine Landfill Plant,V1021,2013.0,3.2,2.1,2.1,0.5,LFG,Landfill Gas,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.65625,0.65625,RFC,PJM,NJ,39.231111,-74.780833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.080690485748695 -59117,DD Fayetteville Solar NC LLC,PV1,2015.0,23.1,23.1,23.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.834444,-78.843611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59118,Cameron Wind 1 LLC,CAM1,2015.0,165.0,165.0,165.0,55,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.195278,-97.466111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59119,Warsaw I,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.01,-78.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59120,Warsaw II,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.01,-78.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59121,Acushnet-Braley Road 1,57449,2013.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.751667,-70.970556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59122,Enerparc CA1 LLC,ECA11,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.831667,-121.404167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59123,Moncure Farm LLC,1,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.568333,-79.0325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59124,Martin Creek Farm LLC,1,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.286389,-78.386111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59125,Kinston,1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.370556,-77.608333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59126,Daniel Farm LLC,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.848889,-80.553611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59127,Bailey Farm LLC,1,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.7875,-78.139722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59128,Acushnet- High Hill,57449,2013.0,2.8,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.714444,-70.997222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59129,CSD 2- Freedom High,57449,2013.0,0.9,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.969722,-121.719444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59130,CSD 2 - Heritage High,57449,2013.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.921944,-121.755556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59131,Dartmouth Landfill,57449,2013.0,1.1,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,ISNE,MA,41.581111,-70.998056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59132,EAFB - North Base,57449,2012.0,1.0,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.9325,-117.907222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59133,EAFB - South Base,57449,2012.0,1.0,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.917222,-117.900278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59134,Easton Landfill,57449,2013.0,1.6,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.010278,-71.092222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59135,Ludlow Landfill,57449,2013.0,2.3,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.182222,-72.5075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59136,Methuen Landfill,57449,2013.0,1.1,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.744722,-71.175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59137,Plymouth Site 1,57449,2013.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.96,-70.778611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59138,SDCCD - Miramar,57449,2011.0,1.0,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.906111,-117.121389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59139,SDCWA - Twin Oaks,57449,2011.0,1.0,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.21,-117.170556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59140,EDF Lancaster,INV-1,2014.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.529167,-71.665278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59142,Manatee County LFGTE,IC1,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OA,IC,12.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,27.468889,-82.450833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59143,Front Range Project,FR-1,2011.0,3.2,3.1,3.1,1.5,LFG,Landfill Gas,OP,IC,10.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.96875,0.96875,WECC,WACM,CO,40.029444,-105.004722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.541964818127608 -59144,Brighton PV Solar Plant,15755,2012.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.9825,-104.940833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59145,Freeport LP Pretreatment Facility,65GTG,2019.0,87.0,70.0,87.0,56,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8045977011494253,1.0,TRE,ERCO,TX,28.979167,-95.306944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.07146009179856 -59146,XPF Solar Field,PV1,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.911667,-78.873333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59147,Fair Wind,1,2015.0,30.0,30.0,30.0,0.5,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,MD,39.404564,-79.291143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59148,Green Farm,GREEN,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.831667,-77.269722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59149,Simons Farm,SIMON,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.306389,-76.997222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59150,RE Mustang LLC,BESS1,2021.0,75.0,75.0,75.0, ,MWH,Batteries,OP,BA,10.0,2021.0, , ,75.0,75.0,75.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.221667,-119.903056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59150,RE Mustang LLC,PV1,2016.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.221667,-119.903056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59152,Thornton PV1,THOR1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.395833,-77.661667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59153,Watson Seed Farm PV1,WAT1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.129722,-77.721389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59154,Bradley PV1,BRAD1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.260556,-77.076389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59155,Shawboro PV1,SHAW1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.433333,-76.087222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59156,Carter PV1,CTR1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.021111,-78.7875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59157,Pecan PV1,PEC1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.909167,-79.829444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59158,Langley PV1,LNG1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.801944,-77.848889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59162,Mariposa Solar Center LLC,MSC 1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.373889,-81.086944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59163,Highland Solar Center LLC,HSC 1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.363889,-77.451944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59164,Elm City Solar Facility,NSC 1,2016.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.781111,-77.846944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59166,Bridgeport Disposal Solar Farm,BRIDG,2011.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.7875,-75.350833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59167,Lancaster Solar 1,LS1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.715,-118.095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59168,Avalon Solar,AS,2014.0,29.0,29.0,29.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.001389,-110.960556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59169,Lancaster Solar 2,LS2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.710556,-118.166111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59170,Jakana Solar,5MWPV,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.875278,-77.081111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59171,Windsor Solar,5MWPV,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.016944,-76.883056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59172,Belmont,PV1,2015.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.72,-86.193056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59173,Bethel Solar,5MWPV,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.794328,-77.384542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59174,Lewiston Solar,5MWPV,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.141111,-77.211111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59175,Woodland Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.341944,-77.221111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59176,Williamston Solar,5MWPV,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.801111,-77.063056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59177,Winton Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.375,-76.938889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59178,Franklin 1,KRS04,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.040556,-71.393611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59179,Franklin 2,KRS05,2013.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.054167,-71.391667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59180,Marion Solar LNG,PV1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.913056,-86.238056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59181,AgriReNew,00001,2013.0,1.0,1.0,1.0,0.4,OBG,Other Waste Biomass,OP,GT,9.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,1.0,1.0,MRO,MISO,IA,41.691944,-90.866389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.492883118676424 -59182,Hesperia,10-94,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.435,-117.378056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59183,"CID Solar, LLC",PV1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.138056,-119.564722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59184,Mulberry Farm LLC,PV1,2014.0,15.8,15.8,15.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.131944,-88.586667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59185,Jacobstown,PV1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.063743,-74.582429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59186,West Pemberton,PV1,2014.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.006667,-74.730278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59187,Beethoven Wind,B&H80,2015.0,80.0,80.0,80.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.16,-98.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59188,Selmer Farm LLC,PV1,2014.0,15.8,15.8,15.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.149722,-88.555278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59189,East Wayne Solar LLC,1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.441667,-77.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59190,Vickers,1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.823333,-79.080278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59191,Soluga Farms 1,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.243056,-78.386944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59192,Soluga Farms 2 LLC,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.500008,-78.689167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59193,Chapman Ranch Wind I,CHA1,2017.0,236.0,249.0,249.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.5925,-97.500833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59197,Univ Minnesota CHP Plant,CTG-1,2017.0,21.0,18.0,22.0,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8571428571428572,1.0,MRO,MISO,MN,44.978611,-93.240833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.690568890995475 -59198,Sterling PV 3,STER3,2014.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.6316,-103.194694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59199,Mesa PV1,MESA1,2014.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.0672,-108.509139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59200,Border Winds Wind Farm,1,2015.0,150.0,148.0,148.0,1,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9866666666666667,0.9866666666666667,MRO,MISO,ND,48.964722,-99.613889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59201,Pleasant Valley Wind Farm,1,2015.0,200.0,196.0,196.0,1,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.98,0.98,MRO,MISO,MN,43.805,-92.769722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59203,Farmersville,PV1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.19,-119.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59203,Farmersville,PV2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.19,-119.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59203,Farmersville,PV3,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.19,-119.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59204,OCI Alamo 3 LLC,OCIA3,2015.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.479167,-98.297222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59205,OCI Alamo 5 LLC,OCIA5,2015.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.216667,-99.716111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59206,Alamo 6,OCIA6,2017.0,105.0,116.0,116.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.993056,-102.270833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59207,OCI Alamo 7 LLC,OCIA7,2016.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.04,-99.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59213,Clipperton Holdings LLC,PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.966944,-78.354444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59217,Tiburon Holdings,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.903333,-80.416944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59219,Porterville 6 and 7,PV1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.05,-119.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59219,Porterville 6 and 7,PV2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.05,-119.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59220,Wildcat Point Generation Facility,CT1,2018.0,310.3,252.3,285.8, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8130841121495327,0.9210441508217854,RFC,PJM,MD,39.719364,-76.161625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.290995088066989 -59220,Wildcat Point Generation Facility,CT2,2018.0,310.3,241.1,303.8, ,NG,Natural Gas Fired Combined Cycle,OP,CT,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7769900096680631,0.9790525298098615,RFC,PJM,MD,39.719364,-76.161625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.685068106699651 -59220,Wildcat Point Generation Facility,ST1,2018.0,493.0,497.9,500.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,4.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,MD,39.719364,-76.161625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59221,Pecan Row Landfill To Electric Facility,GEN1,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.815,-83.3625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.734088984430981 -59221,Pecan Row Landfill To Electric Facility,GEN2,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.815,-83.3625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.734088984430981 -59221,Pecan Row Landfill To Electric Facility,GEN3,2013.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,12.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.815,-83.3625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.734088984430981 -59221,Pecan Row Landfill To Electric Facility,GM04,1977.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,1977.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,30.815,-83.3625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.734088984430981 -59222,Passadumkeag Windpark LLC,Q357,2016.0,42.9,39.9,39.9,3.3,WND,Onshore Wind Turbine,OP,WT,7.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9300699300699301,0.9300699300699301,NPCC,ISNE,ME,45.07,-68.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59223,Optimum Wind 5 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.014,-93.518056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59224,Optimum Wind 6 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.006944,-93.523611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59225,Optimum Wind 7 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.028333,-93.430278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59226,Optimum Wind 4 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.016389,-93.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59227,Optimum Wind 3 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.019167,-93.513611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59228,Leonardo Wind 1 LLC,WT1,2016.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.498056,-93.367778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59230,Venus Wind 3 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.741944,-92.672222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59231,Michelangelo Wind 1 LLC,WT1,2017.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.881,-93.623056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59232,Michelangelo Wind 4 LLC,WT1,2016.0,3.0,3.0,3.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.978,-93.700556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59233,Cogeneration 2,CT2,2002.0,6.0,5.0,5.0,2.8,NG,Natural Gas Fired Combined Cycle,OP,CS,11.0,2002.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.8333333333333334,0.8333333333333334,WECC,TEPC,AZ,32.240833,-110.948333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.188912647064136 -59234,Arbuckle Mountain Wind Farm LLC,GEN1,2015.0,100.0,100.0,100.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.386944,-97.136944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59235,Rising Tree Wind Farm II,GEN1,2015.0,19.8,19.8,19.8,1,WND,Onshore Wind Turbine,OP,WT,1.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.088889,-118.206389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59236,Rising Tree Wind Farm III,GEN1,2015.0,99.0,99.0,99.0,1,WND,Onshore Wind Turbine,OP,WT,6.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.060556,-118.243333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59237,Lone Valley Solar Park II LLC,CPII,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.408333,-116.8625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59238,Windthorst-2,WND2,2014.0,67.6,67.6,67.6,0,WND,Onshore Wind Turbine,OP,WT,9.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.495278,-98.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59239,Eagle Springs Solar LLC,ESS01,2013.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,WECC,PSCO,CO,39.526111,-107.696111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59240,Port Charlotte Energy LLC,G1,2011.0,1.5,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,10.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,SERC,FPL,FL,26.790833,-81.965278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.650084602368866 -59240,Port Charlotte Energy LLC,G2,2011.0,1.5,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,10.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9333333333333332,0.9333333333333332,SERC,FPL,FL,26.790833,-81.965278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.650084602368866 -59241,Brockelman,BROCK,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.481389,-71.716944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59242,Beverly,BVRLY,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.59,-70.911944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59244,Lorenzo Wind,FIBE1,2018.0,80.0,80.0,80.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.699167,-101.524722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59245,Fluvanna,FLUV1,2017.0,155.4,155.4,155.4,0,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.931944,-101.143611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59247,Hale Community Wind Farm,HALE1,2019.0,478.0,478.0,478.0,1,WND,Onshore Wind Turbine,OP,WT,6.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.927778,-101.742222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59248,CCMUA,CCMUA,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.923056,-75.1275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59249,Rio Bravo Solar 1 LLC,PV1,2016.0,20.0,19.5,14.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.705,WECC,CISO,CA,35.416111,-119.6825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59250,Rio Bravo Solar II LLC,PV1,2016.0,20.0,19.5,14.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.705,WECC,CISO,CA,35.4225,-119.629167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59251,Caprock Solar 1 LLC,PV1,2016.0,25.0,24.4,18.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.976,0.752,MRO,SWPP,NM,34.982778,-103.378333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59253,Wildwood Solar II,PV1,2017.0,15.0,14.7,11.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.98,0.7466666666666666,WECC,CISO,CA,35.63,-119.573889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59254,Johnston LFG Turbine Plant,GENS1,2013.0,10.5,8.9,9.9,4.2,LFG,Landfill Gas,OP,CA,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Steam Part,0.8476190476190477,0.9428571428571428,NPCC,ISNE,RI,41.803333,-71.523333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59254,Johnston LFG Turbine Plant,GENT1,2013.0,6.3,5.5,6.3,4.2,LFG,Landfill Gas,OP,CT,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.873015873015873,1.0,NPCC,ISNE,RI,41.803333,-71.523333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.872820380217878 -59254,Johnston LFG Turbine Plant,GENT2,2013.0,6.3,5.5,6.3,4.2,LFG,Landfill Gas,OP,CT,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.873015873015873,1.0,NPCC,ISNE,RI,41.803333,-71.523333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.52650876032699 -59254,Johnston LFG Turbine Plant,GENT3,2013.0,6.3,5.5,6.3,4.2,LFG,Landfill Gas,OP,CT,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.873015873015873,1.0,NPCC,ISNE,RI,41.803333,-71.523333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.517768026340397 -59254,Johnston LFG Turbine Plant,GENT4,2013.0,6.3,5.5,6.3,4.2,LFG,Landfill Gas,OP,CT,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Combined Cycle Combustion Turbine Part,0.873015873015873,1.0,NPCC,ISNE,RI,41.803333,-71.523333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.852778145239519 -59255,Osprey Point RES,1,2013.0,3.3,3.0,3.0,2.3,OG,Other Gases,OS,IC,6.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,0.9090909090909092,0.9090909090909092,RFC,MISO,IN,39.059167,-87.506111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59255,Osprey Point RES,2,2013.0,3.3,3.0,3.0,2.3,OG,Other Gases,OS,IC,6.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,0.9090909090909092,0.9090909090909092,RFC,MISO,IN,39.059167,-87.506111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59255,Osprey Point RES,3,2013.0,3.3,3.0,3.0,2.3,OG,Other Gases,OS,IC,6.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,0.9090909090909092,0.9090909090909092,RFC,MISO,IN,39.059167,-87.506111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59255,Osprey Point RES,4,2013.0,3.3,3.0,3.0,2.3,OG,Other Gases,OS,IC,6.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,0.9090909090909092,0.9090909090909092,RFC,MISO,IN,39.059167,-87.506111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59260,"Hidden View Dairy, LLC",HV3,2022.0,1.0,0.9,0.9,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9,0.9,RFC,MISO,IN,41.032778,-87.0725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.0 -59261,Verizon-Torrance,VZ300,2013.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,12.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,33.850556,-118.304167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59262,Lancaster Little Rock,LLRC,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.599444,-117.932778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59265,Merced Solar LLC,PV8,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.267778,-120.484444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59267,Mission Solar LLC,PV9,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.267778,-120.4825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59268,Hollister Solar LLC,PV10,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.8625,-121.428889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59269,Victor Mesa Linda B2,VMLB2,2014.0,1.5,1.6,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.512778,-117.387222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59270,Victor Mesa Linda C2,VMLC2,2014.0,1.5,1.6,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.511389,-117.387222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59271,Victor Mesa Linda D2,VMLD2,2014.0,1.5,1.6,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.509444,-117.387222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59272,Victor Mesa Linda E2,VMLE2,2014.0,1.5,1.6,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.508056,-117.387222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59273,SEPV Palmdale East,PALME,2015.0,10.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,34.613056,-117.938889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59274,Sutter Greenworks LLC,SUTTG,2015.0,5.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,NPCC,NYIS,NY,40.928056,-72.771111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59275,Sterlington Greenworks LLC,STERG,2015.0,1.3,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,NPCC,NYIS,NY,41.0675,-72.440278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59276,Leavenworth Greenworks LLC,LEAVG,2016.0,9.5,9.5,9.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9789473684210527,NPCC,NYIS,NY,40.925278,-72.763333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59277,Medford WWTP,MED1,2013.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.922222,-74.806667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59278,Reeves South,REEV1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.926667,-74.813611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59279,Life Technologies - Pleasanton,LFT01,2013.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,3.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.643889,-121.884167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59280,Kellogg's - San Jose,KLG00,2013.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,9.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.356389,-121.871944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59283,California PV Energy at ISD WWTP,W4236,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.001111,-121.703889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59284,Mammoth Plains,GE1.7,2014.0,199.0,199.0,199.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.978889,-98.710278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59292,Rattlesnake Creek Wind Project,RCWP,2019.0,318.1,318.1,318.1,0,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.374,-96.829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59295,WED NK Green,NKG1,2012.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,3.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.581667,-71.486667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59296,Northwest Ohio Wind,NWO-B,2021.0,0.8,0.8,0.8,0,MWH,Batteries,OP,BA,3.0,2021.0, , ,3.8,0.2,0.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,OH,41.016944,-84.593611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59296,Northwest Ohio Wind,NWO-S,2021.0,4.0,4.0,4.0,0,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.016944,-84.593611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59296,Northwest Ohio Wind,NWOH1,2018.0,105.0,100.0,100.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9523809523809523,0.9523809523809523,RFC,PJM,OH,41.016944,-84.593611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59297,Carrier Clinic,CARRI,2009.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.47,-74.685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59299,Waste Mangement Redwood LFGTE,RED1,2017.0,2.0,2.0,2.0,0.8,LFG,Landfill Gas,OP,IC,5.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.160833,-122.565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.744469944821525 -59299,Waste Mangement Redwood LFGTE,RED2,2017.0,2.0,2.0,2.0,0.8,LFG,Landfill Gas,OP,IC,5.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.160833,-122.565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.744469944821525 -59300,Hanford 1 and 2,HAN1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.306667,-119.629167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59300,Hanford 1 and 2,HAN2,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.306667,-119.629167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59301,WED Coventry 1,WEDC1,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.675833,-71.7075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59302,WED Coventry 2,COV2,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.6725,-71.705833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59302,WED Coventry 2,COV2A,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.6725,-71.705833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59302,WED Coventry 2,COV2B,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.6725,-71.705833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59305,WED Coventry 3,WEDC3,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.695556,-71.720833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59306,WED Coventry 4,WEDC4,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.686389,-71.728333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59308,Beacon Solar Plant Site 5,BEAC5,2017.0,37.8,37.8,37.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.248889,-118.034444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59309,Beacon Solar Plant Site 2,BEAC2,2017.0,47.3,47.3,47.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.265833,-117.999167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59310,Black Oak Power Producers,GEN1,2014.0,2.0,1.9,1.9,1,LFG,Landfill Gas,OP,IC,12.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,SERC,AECI,MO,37.231944,-92.453889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.449615312441359 -59310,Black Oak Power Producers,GEN2,2014.0,2.0,1.9,1.9,1,LFG,Landfill Gas,OP,IC,12.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,SERC,AECI,MO,37.231944,-92.453889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.449615312441359 -59311,Seiling Wind I,SEIL1,2014.0,199.0,199.0,199.0,5,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.1225,-98.992222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59312,Seiling Wind II,SEIL2,2014.0,98.6,98.6,98.6,5,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.1225,-98.992222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59313,WED Coventry 5,COV5,2017.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.659722,-71.699722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59314,WED Coventry 6,COV6,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.669722,-71.708333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59314,WED Coventry 6,COV6A,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.669722,-71.708333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59314,WED Coventry 6,COV6B,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.669722,-71.708333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59315,Hecate Energy Beacon Solar 1,BEAC1,2017.0,56.0,51.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9107142857142857,0.8928571428571429,WECC,LDWP,CA,35.269444,-118.014444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59316,Hecate Energy Beacon Solar 3,BEAC3,2016.0,56.0,51.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9107142857142857,0.8928571428571429,WECC,LDWP,CA,35.253056,-118.014722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59317,Hecate Energy Beacon Solar 4,BEAC4,2016.0,50.0,47.0,45.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.94,0.9,WECC,LDWP,CA,35.253611,-118.026944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59318,North Run,NRUN1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.069601,-74.584842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59319,Rock Solid,ROCK1,2014.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.229725,-74.225818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59320,Los Vientos Windpower III,GEN1,2015.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.388611,-98.806111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59321,Los Vientos Windpower IV,GEN1,2016.0,200.0,200.0,200.0,26,WND,Onshore Wind Turbine,OP,WT,7.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.380556,-98.818333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59322,Pumpjack Solar I,GEN1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.305556,-119.6225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59323,Sacramento (SMUD),SMUPV,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.587222,-121.457778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59324,MCCo Solar Generating Facility,MCCO1,2014.0,1.0,0.9,0.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.6,RFC,PJM,OH,41.516389,-81.597222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59325,Kings Mountain Energy Center,KMEC1,2018.0,310.2,259.0,305.0,107,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8349451966473244,0.9832366215344939,SERC,DUK,NC,35.2025,-81.363056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59325,Kings Mountain Energy Center,KMEC2,2018.0,233.7,227.0,208.0,93,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9713307659392384,0.8900299529311083,SERC,DUK,NC,35.2025,-81.363056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59326,Middletown Energy Center,MEC1,2018.0,310.2,248.0,279.9,100.8,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7994842037395229,0.902321083172147,RFC,PJM,OH,39.465,-84.347778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59326,Middletown Energy Center,MEC2,2018.0,233.7,215.6,225.0,11,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9225502781343603,0.9627727856225932,RFC,PJM,OH,39.465,-84.347778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59327,Marlboro Mushrooms Solar Field,GEN1,2011.0,1.0,1.0,0.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.30000000000000004,RFC,PJM,PA,39.882778,-75.829444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59328,Golden Acorn Casino,GAC1,2014.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,32.702107,-116.354587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59329,City of Soledad Water Reclamation,SOL1,2014.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.421111,-121.340278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59330,Taylor Farms,TAY1,2014.0,1.0,1.0,1.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.505,-121.451667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59331,Anheuser-Busch #2,ANB2,2014.0,1.6,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,38.233611,-122.0925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59332,Mesquite Creek Wind,MSCRK,2015.0,211.2,211.2,211.2,0,WND,Onshore Wind Turbine,OP,WT,4.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.7,-101.741111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59333,Faison Solar,FAIS1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.069722,-78.116111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59334,"Catalina Solar 2, LLC",INV-1,2015.0,18.0,18.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.812222,-118.352778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59335,MCLB Landfill Gas to Energy,GEN1,2011.0,1.9,1.7,1.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8947368421052632,0.9473684210526316,SERC,SOCO,GA,31.546111,-84.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.738984390436673 -59335,MCLB Landfill Gas to Energy,GEN2,2021.0,2.1,1.9,1.9,0.5,LFG,Landfill Gas,SB,IC,12.0,2021.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9047619047619047,0.9047619047619047,SERC,SOCO,GA,31.546111,-84.0675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.738984390436673 -59337,Harrell's Hill Solar Center LLC,HHS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.211944,-78.100833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59338,Gila River Power Block 1,CTG1,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,SRP,AZ,32.975,-112.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59338,Gila River Power Block 1,CTG2,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,SRP,AZ,32.975,-112.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59338,Gila River Power Block 1,ST9,2003.0,271.0,242.0,249.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8929889298892989,0.9188191881918819,WECC,SRP,AZ,32.975,-112.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59339,Quinto Solar PV Project,SSC13,2015.0,108.0,105.1,76.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9731481481481481,0.711111111111111,WECC,CISO,CA,37.130278,-121.052222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59357,Dorena Hydro-Electric Facility,FRNCS,2014.0,1.4,1.4,1.4,0.4,WAT,Conventional Hydroelectric,OP,HY,6.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.786667,-122.958056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59357,Dorena Hydro-Electric Facility,KAPLN,2014.0,6.1,6.1,6.1,1.8,WAT,Conventional Hydroelectric,OP,HY,6.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACW,OR,43.786667,-122.958056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59358,Devens,MA2,2014.0,3.0,2.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.6666666666666667,0.33333333333333337,NPCC,ISNE,MA,42.559173,-71.625875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59359,SCE-Snowline-Duncan Road (North),10400,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.473889,-117.562778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59360,SCE-Snowline-Duncan Road (South),11113,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.471389,-117.562222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59361,Browne Solar LLC,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.200833,-72.322222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59362,Indian Hill Solar LLC,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.200833,-72.322222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59363,State Street Solar LLC,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.200833,-72.322222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59364,Plainfield One Solar LLC,PV1,2011.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.605,-74.439444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59365,24 Applegate Solar LLC,PV1,2014.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.205833,-74.579722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59366,G&S Wantage Solar LLC,PV1,2014.0,8.5,8.5,8.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,41.189167,-74.591667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59367,Engelhard Solar LLC,PV1,2012.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.33,-74.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59368,Westborough Solar LLC,PV1,2014.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.263333,-71.609167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59370,4 Applegate Solar LLC,PV1,2012.0,1.4,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.196389,-74.583611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59371,12 Applegate Solar LLC,PV1,2012.0,1.5,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.200278,-74.576111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59373,Broshco Fabricated Products,1,2001.0,1.2,1.2,1.2,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,40.776111,-82.568611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394637126458395 -59373,Broshco Fabricated Products,2,2001.0,1.2,1.2,1.2,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,40.776111,-82.568611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394637126458395 -59373,Broshco Fabricated Products,3,2001.0,1.2,1.2,1.2,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2001.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,40.776111,-82.568611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394637126458395 -59373,Broshco Fabricated Products,4,2005.0,1.1,1.1,1.1,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,OH,40.776111,-82.568611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.394622069020663 -59374,Old Mill Solar,OMSLR,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.203333,-121.046389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59375,Rose Hill,ROSE1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.823889,-77.969722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59376,Dunn,DUNN1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.34854,-78.5532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59377,Town of Cary,CARY1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.823889,-77.969722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59379,Wapsie Valley Creamery Back Up Generator,1,2015.0,1.8,1.1,1.1,0,DFO,Petroleum Liquids,OP,IC,4.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6111111111111112,0.6111111111111112,MRO,MISO,IA,42.477778,-91.891111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59380,"Wildwood Solar I, LLC",WLD1,2015.0,19.5,19.5,19.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.615833,-119.578333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59381,"The Methodist Hospital, Gas Turbine",GT-1,2010.0,5.0,3.0,4.0,2.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6,0.8,TRE,ERCO,TX,29.709444,-95.400278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.553009777358934 -59382,Paisley Geothermal Generating Plant,SVEP1,2015.0,3.7,1.8,2.3,1,GEO,Geothermal,OS,ST,10.0,2015.0, , ,,,,,geothermal,geothermal,Geothermal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4864864864864865,0.6216216216216215,WECC,PACW,OR,42.695833,-120.557778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59383,"East Kansas Agri-Energy, LLC",KATO,2005.0,2.0,0.8,0.8,0.3,WH,All Other,OP,ST,6.0,2005.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.4,0.4,MRO,SWPP,KS,38.2725,-95.240278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59384,South Plains Wind Phase I,1,2015.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.080556,-101.323611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59386,"Enterprise Solar, LLC",ENTS1,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.641111,-113.6125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59387,"Escalante Solar I, LLC",ESCS1,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.524167,-113.033889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59388,"Escalante Solar II, LLC",ESCS2,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.500833,-113.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59389,"Escalante Solar III, LLC",ESCS3,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.497778,-112.986944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59390,True North,TNE1,2012.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.8475,-70.898333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59391,Red Gate Power Plant,ENG01,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG02,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG03,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG04,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG05,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG06,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG07,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG08,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG09,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG10,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG11,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59391,Red Gate Power Plant,ENG12,2016.0,18.7,18.3,18.3,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9786096256684492,0.9786096256684492,TRE,ERCO,TX,26.451111,-98.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.654264763486694 -59392,Blue Ridge Generating,GEN1,2013.0,1.6,1.2,1.2,1,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.75,0.75,RFC,PJM,KY,37.741111,-83.988889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.759629868732516 -59393,Eubank Landfill Solar Array,ESNM1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.049167,-106.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59394,Grafton Solar,KRS03,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.199167,-71.679167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59395,City of Tulare Water Facility,MM26,2018.0,2.8,2.8,2.8,2.8,NG,Other Natural Gas,OP,FC,5.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.185,-119.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59395,City of Tulare Water Facility,MM27,2019.0,3.0,2.8,2.8,2.4,OBG,Other Waste Biomass,OP,FC,12.0,2019.0, , ,,,,,biomass,biomass,Other Biomass Gas,Fuel Cell,0.9333333333333332,0.9333333333333332,WECC,CISO,CA,36.185,-119.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59395,City of Tulare Water Facility,SC500,2011.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,WECC,CISO,CA,36.185,-119.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59395,City of Tulare Water Facility,SOLAR,2020.0,2.4,2.2,1.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9166666666666667,0.7083333333333333,WECC,CISO,CA,36.185,-119.375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59396,Shaffer,SHF01,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.594167,-71.249444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59404,Searchlight Solar,1,2014.0,17.5,17.5,17.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.479722,-114.936111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59405,Diamond Valley Solar Project,PV11,2015.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.713056,-117.0725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59406,Facile Solar,SYS1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.098889,-79.493889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59407,Newman Solar,NEW1,2014.0,10.5,10.3,10.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.980952380952381,0.980952380952381,WECC,EPE,TX,31.978333,-106.4275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59408,Shafter Solar LLC,1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.393333,-119.127778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59409,"Madelyn Solar, LLC",SNL17,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.768333,-117.323611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59410,"Rudy Solar, LLC",SNL19,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.766389,-117.323611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59411,"Mitchell Solar, LLC",SNL18,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.765,-117.323611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59412,Algonquin SKIC20 Solar LLC,SKI20,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.126111,-119.243333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59413,Corcoran Solar 2,C2CA,2015.0,19.8,19.8,19.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.141944,-119.581667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59414,Atwell Island West Solar,AWCA,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.815,-119.459722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59415,Backus Microgrid Project,BMP1,2014.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.542778,-72.093611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987437185929648 -59415,Backus Microgrid Project,BMP2,2014.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.542778,-72.093611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987437185929648 -59415,Backus Microgrid Project,BMP3,2014.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.542778,-72.093611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987437185929648 -59415,Backus Microgrid Project,BMP4,2014.0,2.6,2.5,2.5,1.5,DFO,Petroleum Liquids,OP,IC,8.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.9615384615384615,0.9615384615384615,NPCC,ISNE,CT,41.542778,-72.093611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.987437185929648 -59416,Anaheim Solar Energy Plant,PV1,2014.0,2.1,2.0,1.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9523809523809523,0.5714285714285714,WECC,CISO,CA,33.8025,-117.919722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59417,Pleasant Hill Wind Energy Project,WT1,2015.0,20.0,20.0,20.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.738889,-101.485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59421,SCE-Snowline-White Road (South),11111,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.413056,-117.470833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59422,SCE-Snowline-White Road (North),10401,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.4175,-117.469722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59423,SCE-Snowline-White Rd (Central),10402,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.415278,-117.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59424,IND Solar Farm (Phase IIA),IND2A,2014.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.694722,-86.321667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59425,Zimmerman Energy,ZE#4,2020.0,1.6,1.4,1.4,0.8,LFG,Landfill Gas,OP,IC,12.0,2020.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,RFC,MISO,IN,41.237778,-86.246111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.734867396186075 -59425,Zimmerman Energy,ZE-#1,2014.0,2.0,1.9,1.9,0.9,LFG,Landfill Gas,OP,IC,11.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,RFC,MISO,IN,41.237778,-86.246111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.734867996464159 -59425,Zimmerman Energy,ZE-#2,2014.0,2.0,1.9,1.9,0.9,LFG,Landfill Gas,OP,IC,11.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,RFC,MISO,IN,41.237778,-86.246111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.734867996464159 -59425,Zimmerman Energy,ZE-#3,2014.0,2.0,1.9,1.9,0.9,LFG,Landfill Gas,OP,IC,11.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.95,0.95,RFC,MISO,IN,41.237778,-86.246111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.734867996464159 -59426,GKS Solar,GKS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.248333,-76.501944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59427,Two Mile Solar,TMS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.223056,-76.461944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59428,Baker Creek Hydroelectric,GENE1,2014.0,1.4,,1.4, ,WAT,Conventional Hydroelectric,OP,HY,11.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,1.0,WECC,CISO,CA,40.526389,-123.725556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59428,Baker Creek Hydroelectric,GENE2,2014.0,0.1,,0.1, ,WAT,Conventional Hydroelectric,OP,HY,11.0,2014.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,,1.0,WECC,CISO,CA,40.526389,-123.725556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59429,Downs Farm Solar,DOWN1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.361944,-76.916944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59430,Solar Las Vegas MB-1,MB-1,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.088611,-115.177778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59431,Sierra Solar Greenworks,SSG1,2015.0,20.0,18.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,WECC,CISO,CA,34.703611,-118.334167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59432,Duke Building 87,DUK87,2014.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.890833,-86.255556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59433,Duke Building 98,DUK98,2014.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.904722,-86.26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59434,Duke Building 129,DU129,2014.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.910833,-86.245278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59435,Oak Tree Energy,OTE14,2014.0,19.5,19.5,19.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,44.933333,-97.741389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59436,Lennon Generating,10,2012.0,1.6,1.5,1.5,1.4,LFG,Landfill Gas,OP,IC,9.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82211324828263 -59436,Lennon Generating,3,2001.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.822113052011776 -59436,Lennon Generating,4,2006.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.822113052011776 -59436,Lennon Generating,5,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.822113052011776 -59436,Lennon Generating,6,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.822113052011776 -59436,Lennon Generating,7,2014.0,1.6,1.5,1.5,1.4,LFG,Landfill Gas,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82211324828263 -59436,Lennon Generating,8,2014.0,1.6,1.5,1.5,1.4,LFG,Landfill Gas,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82211324828263 -59436,Lennon Generating,9,2012.0,1.6,1.5,1.5,1.4,LFG,Landfill Gas,OP,IC,9.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,MISO,MI,42.981667,-83.979444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.82211324828263 -59437,Stillwater B,SWB-1,2013.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.912667,-68.683833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59437,Stillwater B,SWB-2,2013.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.912667,-68.683833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59437,Stillwater B,SWB-3,2013.0,0.8,0.8,0.8,0.3,WAT,Conventional Hydroelectric,OP,HY,9.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.912667,-68.683833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59438,Orono B,ORB-1,2013.0,1.3,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.884444,-68.663889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59438,Orono B,ORB-2,2013.0,1.3,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.884444,-68.663889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59438,Orono B,ORB-3,2013.0,1.3,1.3,1.3,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,2013.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,ME,44.884444,-68.663889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59439,"COC Surry LFG, LLC",UNIT1,2013.0,1.6,1.5,1.5,0.4,LFG,Landfill Gas,OP,IC,5.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,DUK,NC,36.438611,-80.568333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.835779175401816 -59440,"Adelanto Solar II, LLC",SAS,2015.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.557222,-117.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59441,"Adelanto Solar, LLC",SAS,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.557222,-117.3775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59442,Logans Gap Wind LLC,1,2015.0,200.1,200.1,200.1,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.8225,-98.690556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59443,"TA-Acacia, LLC",WAS1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.689167,-118.324722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59444,Desert Star Hybrid,PV1,2015.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.145,-112.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59445,St. Albans SPEED Project,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.787778,-73.088611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59446,Cranbury,CRANB,2011.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.314722,-74.499167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59448,Waxdale,CGEN1,2003.0,3.5,3.5,3.5,0.2,LFG,Landfill Gas,OP,GT,12.0,2003.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,WI,42.709444,-87.885278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.452917013311149 -59448,Waxdale,CGEN2,2005.0,3.5,3.5,3.5,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,WI,42.709444,-87.885278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.452917013311149 -59448,Waxdale,WEC01,2012.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,WI,42.709444,-87.885278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59448,Waxdale,WEC02,2012.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,WI,42.709444,-87.885278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59449,Decatur County Solar Project,DCSP1,2015.0,20.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,SOCO,GA,30.965,-84.626111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59450,"Decatur Parkway Solar Project, LLC",DPSP1,2015.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.991944,-84.633889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59451,CBC Solar Energy Gen Fac Phase 2,PV2,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.674444,-78.526111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59452,East. Michigan Univ. Heating Plant,COGN2,2018.0,7.8,6.8,6.8,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8717948717948718,0.8717948717948718,RFC,MISO,MI,42.248889,-83.628889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.914878531178864 -59453,Albany Medical Ctr Cogen Plant,GTG1A,2020.0,4.3,4.0,4.4,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.930232558139535,1.0,NPCC,NYIS,NY,42.655,-73.7777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.658251083293212 -59454,Valencia Solar,VALEN,2013.0,10.0,10.0,10.0,0,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.145833,-110.866944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59455,Tech Park Solar,TECHP,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.097884,-110.815696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59456,P Plant,P-TG4,2007.0,4.6,4.0,4.0,3.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,32.894722,-117.198056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.231967332652763 -59456,P Plant,P-TG5,2015.0,4.6,4.0,4.0,3.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,32.894722,-117.198056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.231967332652763 -59457,Q Plant,Q-TG1,2013.0,4.6,4.0,4.0,3.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,32.904167,-117.201111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.378427169130092 -59458,W Plant,W-TG1,2005.0,4.6,4.0,4.0,3.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8695652173913044,0.8695652173913044,WECC,CISO,CA,32.903333,-117.195556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.662116484659386 -59459,Hickory Ridge Landfill Solar Project,5088,2011.0,0.6,0.6,0.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SEPA,GA,33.665,-84.336111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59460,"Kay Wind, LLC",KNG1,2015.0,299.0,299.0,299.0,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SPA,OK,36.984167,-97.133611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59461,"Bowerman Power LFG, LLC",GEN01,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59461,"Bowerman Power LFG, LLC",GEN02,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59461,"Bowerman Power LFG, LLC",GEN03,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59461,"Bowerman Power LFG, LLC",GEN04,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59461,"Bowerman Power LFG, LLC",GEN05,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59461,"Bowerman Power LFG, LLC",GEN06,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59461,"Bowerman Power LFG, LLC",GEN07,2016.0,3.4,3.4,3.4,0.5,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,33.718889,-117.702222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.651150591048777 -59462,Denver Intl Airport IV Solar,DIA4,2014.0,1.5,1.5,0.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.4,WECC,SWPP,CO,39.902697,-104.673935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59463,Ayers Village Solar,1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.791944,-71.1775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59464,Monson Solar,2,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.124444,-72.3325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59465,Sullivan Solar,1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.655,-70.956389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59466,Winchendon Solar,3,2014.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.659444,-71.991667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59467,Coldwater Peaking Plant,GEN1,2015.0,4.3,4.3,4.3,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.919444,-85.024167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.300827156482114 -59467,Coldwater Peaking Plant,GEN2,2015.0,4.3,4.3,4.3,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.919444,-85.024167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.300827156482114 -59467,Coldwater Peaking Plant,GEN3,2015.0,4.3,4.3,4.3,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,41.919444,-85.024167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.300827156482114 -59468,KS Solar Six LLC,HUBB,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.470833,-72.045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59469,Alamo Solar,ALAMO,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.682222,-117.3475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59470,Cornell Snyder Road Solar Array,CSR1,2014.0,1.8,1.8,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7777777777777777,NPCC,NYIS,NY,42.4975,-76.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59472,Ft. Churchill PV,NVC7,2015.0,19.9,19.5,19.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9798994974874372,0.9798994974874372,WECC,NEVP,NV,39.128056,-119.14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59473,Apple Campus 2 PV,AC2PV,2017.0,14.4,12.4,9.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8611111111111112,0.6597222222222222,WECC,CISO,CA,37.33,-122.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59474,Apple Data Center PV3,DCPV3,2015.0,17.5,17.5,14.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8228571428571428,SERC,DUK,NC,35.715,-81.15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59475,Palo Duro Wind,GE1.7,2014.0,249.9,249.9,249.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.243889,-101.001389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59476,Clarendon Solar Farm,VT001,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.539722,-72.955833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59477,Claire Solar Farm,CSF1,2014.0,2.2,2.2,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5909090909090908,NPCC,ISNE,VT,44.426111,-73.156389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59478,IMPA Richmond Solar Park,SRICH,2014.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IN,39.801111,-84.895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59479,IMPA Frankton Solar Park,SFRAN,2014.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IN,40.216389,-85.774722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59480,IMPA Rensselaer Solar Park,SRENS,2014.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,MISO,IN,40.946111,-87.136389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59481,IMPA Peru Solar Park,SPERU,2015.0,3.0,3.0,2.4, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,MISO,IN,40.767778,-86.045556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59482,IMPA Tell City Solar Park,STELL,2015.0,1.1,1.1,0.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8181818181818181,RFC,MISO,IN,37.946111,-86.7375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59483,IMPA Crawfordsville Solar Park,SCRAW,2015.0,3.0,3.0,2.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,MISO,IN,40.053056,-86.887222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59484,"Hadley Solar NG, LLC",PV1,2014.0,2.7,2.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7407407407407407,0.37037037037037035,NPCC,ISNE,MA,42.352085,-72.538853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59485,"265 Pleasant Solar NG, LLC",PV2,2014.0,1.0,0.9,0.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.30000000000000004,NPCC,ISNE,MA,42.581389,-71.762222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59486,Lanier Solar,LANIE,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.898889,-77.808889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59487,Highwater Solar I,HIGHW,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.433889,-77.99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59488,Bearford Solar II,BEARF,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.611944,-77.928889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59489,Anthony Wayne Solar #1,AWS1,2014.0,1.7,1.7,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7058823529411764,RFC,PJM,OH,41.627222,-83.574722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59490,Jett Creek Windfarm (Burnt River),JCW,2017.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,44.425,-117.273889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59491,Benson Creek Windfarm (Burnt River),BCW,2017.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,44.366944,-117.343889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59492,Durbin Creek Windfarm (Burnt River),DCW,2017.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,44.353056,-117.323056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59493,Prospector Windfarm (Burnt River),PW,2017.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,44.418056,-117.255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59494,Willow Spring Windfarm (Burnt River),WSW,2017.0,10.0,10.0,10.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,IPCO,OR,44.381944,-117.273056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59495,Antares-GRE 314 East Lyme LLC,GRE01,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.416944,-72.234444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59496,BYUI Central Energy Facility,ST601,2015.0,5.6,4.6,5.3,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8214285714285714,0.9464285714285715,WECC,PACE,ID,43.816944,-111.785833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.515077002717742 -59497,Andrew Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.1608,-77.1099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59498,Tracy Solar,PV1,2015.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.7998,-78.1398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59499,Candace Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.487,-78.1922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59500,Sarah Solar,SARAH,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.139444,-78.146944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59501,Nitro Solar,NITRO,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.486944,-78.313889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59502,Melinda Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.2487,-78.3475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59503,Jacob Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.2922,-79.6214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59504,Porter Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.2167,-77.0743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59505,Sun Devil Solar,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.432,-77.9703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59506,Quincy Solar,PV1,2015.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.0717,-78.8078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59507,Kenneth Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.4338,-78.1526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59508,Chei Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.8918,-78.1823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59509,Murdock Solar,PV1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.6633,-78.5206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59510,Husky Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.2847,-79.5667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59511,Beetle Solar,PV1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.1785,-81.665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59512,Happy Solar,PV1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.3965,-78.5108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59513,Meadows PV 1,MEAD1,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.836944,-77.126944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59514,Flat Meeks PV 1,FLAT1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.806667,-77.270556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59515,Benthall Bridge PV 1,BENT1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.42,-77.100278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59516,American Legion PV 1,AMLEG,2017.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.418333,-77.655833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59517,Baker PV 1,BAKE1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.270278,-77.060278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59518,Grandy PV 1,GRAND,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.233611,-75.880833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59519,Old Catawba PV 1,OLDC,2015.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.711667,-81.134167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59520,Manning PV 1,MANN,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.119167,-79.521389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59521,Little River PV 1,LTLRV,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.538889,-79.804167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59522,Giffen Solar Park,FRGSP,2017.0,20.0,20.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,CISO,CA,36.544722,-120.316111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59523,Five Points Solar Park,FRFSP,2016.0,60.0,60.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8333333333333334,WECC,CISO,CA,36.386944,-120.236667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59524,Blackwell Solar Park,FRBSP,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.612,-119.845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59525,Wright Solar Park,FRWSP,2019.0,200.0,200.0,180.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,CISO,CA,37.009444,-120.957222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59526,Whitakers,WHIT1,2015.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.127222,-77.734444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59527,Kelford,KELF1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.148056,-77.211944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59528,Solar Oasis LLC,OASIS,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.648889,-118.076667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59529,Bannock County LFG to Energy,GEN 2,2019.0,1.6,1.4,1.4,0.8,LFG,Landfill Gas,OP,IC,5.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,IPCO,ID,42.787778,-112.365556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.02807542154664 -59529,Bannock County LFG to Energy,GEN1,2014.0,1.6,1.4,1.4,0.8,LFG,Landfill Gas,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,IPCO,ID,42.787778,-112.365556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.02807542154664 -59530,Pasquotank,PASQ1,2014.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.264722,-76.306111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59531,Borden Solar Farm,BRDN,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.941111,-119.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59532,Springbok Solar Farm 1,SB1,2016.0,105.0,105.0,105.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.249167,-117.955278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59533,Princeton,PRCTN,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.504444,-78.192222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59534,4Oaks,4OAKS,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.4325,-78.411667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59535,SR Hazlehurst,HAZLE,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.810278,-82.575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59536,Coronus Adelanto West 1,AWI,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.548056,-117.464444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59537,Coronus Adelanto West 2,AW2,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.548056,-117.464444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59539,Park Meridian #1,1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.896111,-117.283611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59540,Rancho Cucamonga Dist #1,2,2015.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.100278,-117.552778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59541,Terra Francesco,3,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.039722,-117.606667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59542,Innovative Solar 6,IS6,2016.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.6575,-82.710278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59543,Acton Solar Landfill,ACTON,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.473333,-71.430556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59544,Parlin Solar LLC,PV1,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.456667,-74.328889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59545,Springfield Solar LLC,PV1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,39.893889,-83.805556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59546,Beaver Solar LLC,PV1,2012.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.691389,-80.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59547,Fowler Ridge IV Wind Farm LLC,1,2016.0,150.0,150.0,150.0,150,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.620556,-87.378056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59548,"Creswell Alligood Solar, LLC",CRES1,2015.0,14.0,14.0,14.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.898889,-76.379444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59549,"Everetts Wildcat Solar, LLC",EVER1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.847222,-77.111389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59550,Putah Creek Solar Farm,PCSF,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.521111,-121.993889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59551,"FLS Solar 200, LLC",FLS1,2014.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.581944,-78.94,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59552,"FLS Solar 170, LLC",FLS1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.6,-78.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59553,"Innovative Solar 14, LLC",FLS1,2014.0,2.0,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,SERC,CPLE,NC,35.368889,-82.3575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59554,"Innovative Solar 15, LLC",FLS1,2014.0,2.0,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,SERC,DUK,NC,35.319444,-81.764167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59555,Vega Solar,VEGA1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.925833,-120.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59556,Dalton 2,1,2014.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.718056,-84.931944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59557,Apple Campus 2 Fuel Cell,AC2FC,2017.0,4.0,4.0,4.0,2,LFG,Landfill Gas,OP,FC,6.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.33,-122.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59558,Sandoval Solar Energy Center,SSEC1,2014.0,6.1,6.1,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.21311475409836067,WECC,PNM,NM,35.283611,-106.812778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59560,Springer Solar 1,SPRG1,2015.0,1.0,0.9,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.8,WECC,PNM,NM,36.398056,-104.594167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59561,Crockett Farm,PV1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.230833,-77.5525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59562,Eastover Farm,PV1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.742222,-79.463056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59563,Foxfire Solar Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.220556,-79.551944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59564,Hutchinson Farm,PV1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.260833,-81.515833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59565,Keen Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.426667,-78.399983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59566,Ashley Solar Farm,PV1,2015.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.126111,-80.798889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59567,Bearford Farm Solar Project,PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.61,-77.924167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59569,Whitetail Solar,PV1,2021.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.398056,-79.383611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59570,Mocksville Solar,PV1,2016.0,15.4,15.4,15.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.833889,-80.574444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59573,Tisbury Landfill Solar,TIS1,2014.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.444722,-70.613056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59574,Southeast Berrien Generating Facility,SBL,2009.0,4.8,4.6,4.6,1.2,LFG,Landfill Gas,OP,IC,5.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9583333333333333,0.9583333333333333,RFC,PJM,MI,41.808611,-86.323889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.861737502445022 -59575,Manway Solar Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.745833,-78.429444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59576,Millikan Farm,GEN1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.81771,-79.771085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59577,Misenheimer Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.468611,-80.293611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59578,Monroe Moore Farm,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.971944,-80.601944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59579,Franklin Solar 2,PV1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.126944,-78.1525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59581,Stout Farm,PV1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.079167,-79.199722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59583,Tart Farm,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.204444,-78.681111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59584,Wellons Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.511698,-78.291129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59586,Woodland Church Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.058333,-77.853611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59587,Yadkin 601 Farm,PV1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.199167,-80.697222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59589,Rutherford Farm,PV1,2016.0,74.8,74.8,74.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.257778,-81.830556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59591,Schell Solar Farm,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.435556,-77.566389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59592,Sedberry Farm,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.243889,-79.321667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59593,"Spring Valley Farm 2, LLC",PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.371111,-78.415278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59595,Stikeleather Farm,PV1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.902222,-81.106111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59597,"Colton Solar One, LLC",CS001,2015.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.093333,-117.319444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59598,"Colton Solar Two, LLC",CS002,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.042222,-117.361667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59599,Tropico Solar PV Plant,GEN1,2016.0,14.0,13.0,11.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9285714285714286,0.7857142857142857,WECC,CISO,CA,35.831944,-119.056111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59600,Nicolis Solar PV Plant,GEN1,2016.0,20.0,19.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.8,WECC,CISO,CA,35.835833,-119.056111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59601,L&D Landfill Solar,L&D,2015.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.980278,-74.770278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59603,Walters Solar (FLS 260),FLS1,2015.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,CPLE,NC,34.496944,-79.048889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59604,Stagecoach Solar,FLS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.414722,-78.459722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59605,Vicksburg Solar,FLS1,2015.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,CPLE,NC,36.325,-78.343056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59606,Soul City Solar,FLS1,2015.0,3.5,3.5,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8571428571428572,SERC,CPLE,NC,36.25,-78.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59607,"Maricopa West Solar PV, LLC",MWS,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.115278,-119.317778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59610,"AP North Lake I, LP",APNLI,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.74,-117.010556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59611,"LKL BLBD, LLC",LKLBB,2015.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FMPP,FL,28.066389,-82.0175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59613,Town of Williamson Landfill PV,TWLL,2014.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.244444,-77.174722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59614,Monterey Diesel Generation Facility,MDG1,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG10,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG2,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG3,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG4,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG5,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG6,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG7,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG8,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59614,Monterey Diesel Generation Facility,MDG9,2016.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,OP,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,38.421389,-79.591389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.591549295774648 -59618,Meadow Lake Solar Energy Center,MLK,2015.0,9.1,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.989010989010989,0.989010989010989,WECC,PNM,NM,34.81,-106.52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59619,Cibola,CBLA,2015.0,7.6,7.6,7.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.20115,-107.245156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59620,South Milford Solar Plant,SMS1,2015.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.311111,-113.053611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59621,TX Jumbo Road Wind,JRWND,2015.0,299.7,299.7,299.7,1,WND,Onshore Wind Turbine,OP,WT,4.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.72,-102.253333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59622,Future Generation Wind,FGMA,2016.0,8.0,7.9,7.9,0,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9875,0.9875,NPCC,ISNE,MA,41.774444,-70.615833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59623,Clarkson Solar,CSPV,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.671944,-74.949444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59624,Twiss Street Solar,PV1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.148333,-72.748056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59625,Chicopee River Solar,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.150278,-72.552222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59626,Chicopee Granby Road Solar,PV1,2015.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.158056,-72.595833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59627,Harmony,HRMNY,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.755289,-75.170955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59628,Hanover,HNOVR,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.065278,-74.590556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59629,Jericho Rise Wind Farm LLC,GEN1,2016.0,77.7,77.7,77.7,1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,44.888889,-74.103333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59630,CentraState Medical Center PV Facility,CS,2014.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.236111,-74.321389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59631,Imclone Solar Electric Facility,IM,2014.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.555,-74.709444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59632,Midwest Energy Community Solar Array,1036,2015.0,1.0,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,39.406944,-101.039444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59633,Kettleman Solar -Centaurus,KS,2015.0,20.0,20.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,CISO,CA,36.050833,-119.9475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59634,Sandstone Solar,SNDST,2015.0,45.0,43.0,42.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9555555555555556,0.9333333333333333,WECC,SRP,AZ,33.035556,-111.430278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59635,Clinton LFGTE,1,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.120833,-88.961111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.501000818851788 -59635,Clinton LFGTE,2,2006.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.120833,-88.961111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.501000818851788 -59636,Charlton Solar I CSG,37021,2014.0,4.0,3.9,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.575,NPCC,ISNE,MA,42.1275,-71.996389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59637,Adams Wind,ADWF,2015.0,4.7,4.7,4.7,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.92,-94.671667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59637,Adams Wind,ADWF2,2015.0,43.3,39.0,39.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9006928406466513,0.9006928406466513,MRO,MISO,IA,40.92,-94.671667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59637,Adams Wind,ADWF3,2015.0,58.0,58.0,58.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.92,-94.671667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59637,Adams Wind,ADWF4,2016.0,48.3,48.3,48.3,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.92,-94.671667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59638,Coronal Lost Hills,CLH,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.726667,-119.905833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59639,"631-56 Airport Owner, LLC",LIGHT,2012.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OA,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.745556,-71.117222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59641,Garysburg Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.468,-77.592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59642,Gaston Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.514722,-77.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59643,Seaboard Solar LLC,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.476944,-77.467778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59645,Mt Olive Solar 1,FLS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.181111,-78.096944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59646,FLS Solar 230 (Warren),FLS1,2015.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.016111,-77.821944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59647,Stillwater Energy Center,1,2016.0,18.8,18.6,18.6,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9893617021276596,0.9893617021276596,MRO,SWPP,OK,36.161944,-97.036944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.27250219129201 -59647,Stillwater Energy Center,2,2016.0,18.8,18.6,18.6,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9893617021276596,0.9893617021276596,MRO,SWPP,OK,36.161944,-97.036944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.27250219129201 -59647,Stillwater Energy Center,3,2016.0,18.8,18.6,18.6,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9893617021276596,0.9893617021276596,MRO,SWPP,OK,36.161944,-97.036944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.27250219129201 -59648,Tarboro Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.858056,-77.499167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59649,Nelson Gardens Landfill Gas to Energy,UNIT1,2014.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.33,-98.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81160197297877 -59649,Nelson Gardens Landfill Gas to Energy,UNIT2,2014.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.33,-98.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81160197297877 -59649,Nelson Gardens Landfill Gas to Energy,UNIT3,2014.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.33,-98.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81160197297877 -59649,Nelson Gardens Landfill Gas to Energy,UNIT4,2014.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.33,-98.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.81160197297877 -59650,CII Methane Management III LFG Plant,GEN1,2014.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.925556,-83.263889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.531405782652044 -59651,"Forever 21 Retail, Inc.",W4161,2015.0,1.3,1.3,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7692307692307692,WECC,LDWP,CA,34.071389,-118.196111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59652,Nordhoff Place,W4162,2014.0,0.9,1.0,0.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6666666666666666,WECC,LDWP,CA,34.236667,-118.565833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59653,City of Truth or Consequences PV,COTC,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,33.121111,-107.287778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59654,Sendero,1,2015.0,78.0,78.0,78.0,0.8,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.18,-98.916667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59655,Campbell County Wind Farm,CCWF1,2015.0,97.8,97.8,97.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,45.753333,-100.275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59656,Comanche Solar,COMCH,2016.0,120.0,120.0,120.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.205278,-104.566667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59657,"Imperial Valley Solar Co (IVSC) 2, LLC",IVSC2,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.252222,-115.4975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59658,SPI Anderson 2,GEN1,2015.0,30.2,27.2,27.2,5,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,2015.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9006622516556291,0.9006622516556291,WECC,CISO,CA,40.472283,-122.324205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59660,Washington City Electric Generation,3,2008.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,37.155,-113.439167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.190010586319218 -59660,Washington City Electric Generation,4,2008.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,37.155,-113.439167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.190010586319218 -59660,Washington City Electric Generation,9,2007.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,37.155,-113.439167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.190010586319218 -59663,"Cornwall Solar Center, LLC",CSC1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.366944,-78.626111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59664,City of West Plains Power Station,UNIT1,2000.0,25.6,21.0,24.5,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8203125,0.95703125,SERC,SWPP,MO,36.748611,-91.868611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.788257066367393 -59664,City of West Plains Power Station,UNIT2,2000.0,21.8,21.0,24.5,5,NG,Natural Gas Fired Combustion Turbine,SB,GT,5.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.963302752293578,1.0,SERC,SWPP,MO,36.748611,-91.868611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.788254280321208 -59665,Innovative Solar 37 LLC,IS037,2017.0,100.0,97.5,97.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.975,SERC,DUK,NC,34.838297,-79.943889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59666,Innovative Solar 47,IS047,2017.0,33.8,33.8,33.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.801933,-79.332447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59667,Innovative Solar 48,IS048,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.711628,-79.30235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59669,Innovative Solar 54,IS054,2018.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.213697,-77.712408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59670,Innovative Solar 23,IS023,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.259825,-81.419019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59671,Innovative Solar 46,IS046,2016.0,78.5,78.5,78.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.918194,-78.94355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59675,Innovative Solar 44,IS044,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.85735,-79.10391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59676,Innovative Solar 55,IS044,2017.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.69648,-79.21681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59677,Innovative Solar 64,IS064,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.041048,-78.329675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59678,Innovative Solar 67,IS067,2018.0,33.3,33.3,33.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.623309,-78.005377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59682,Main Street Solar Project,MS258,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.626389,-72.975556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59683,Lordstown Motor Corp,12345,2015.0,2.2,1.7,0.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7727272727272727,0.2727272727272727,RFC,PJM,OH,41.148019,-80.883753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59684,"Lindahl Wind Project, LLC",LWP01,2017.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,48.533,-102.933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59685,Remington Solar Facility,01,2017.0,20.0,8.0,, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,,SERC,PJM,VA,38.548333,-77.776389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59686,Sarasota County LFGTE Facility,LESF1,2015.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,27.203,-82.387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.505367491054182 -59686,Sarasota County LFGTE Facility,LESF2,2015.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,27.203,-82.387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.505367491054182 -59686,Sarasota County LFGTE Facility,LESF3,2015.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,27.203,-82.387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.505367491054182 -59686,Sarasota County LFGTE Facility,LESF4,2019.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,27.203,-82.387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.505367491054182 -59687,Sun Harvest Solar NDP1,NDP1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.05758,-120.653625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59688,Wake County LFG Facility,E1,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E10,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E11,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E12,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E13,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E14,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E15,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E16,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E17,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E18,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E19,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E2,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E20,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E21,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E22,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E23,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E24,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E25,2019.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E26,2019.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E27,2019.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E28,2019.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E29,2019.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E3,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E30,2019.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,8.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E4,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E5,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E6,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E7,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E8,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59688,Wake County LFG Facility,E9,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,35.674,-78.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.043489344345874 -59689,Gulf Coast Solar Center I,GCSC1,2017.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,FL,30.515448,-86.518407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59690,Gulf Coast Solar Center II,GCSC2,2017.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,FL,30.430766,-86.895204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59691,Gulf Coast Solar Center III,GCSC3,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,FL,30.470351,-87.335193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59692,NBC Field's Point Wind Farm,FPWTG,2012.0,4.5,4.5,4.5,0,WND,Onshore Wind Turbine,OP,WT,10.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.79413,-71.38919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59693,Coastal Virginia Offshore Wind (CVOW) Pilot Project,OSW1,2021.0,12.0,12.0,12.0,0,WND,Offshore Wind Turbine,OP,WS,1.0,2021.0, , ,,,,,offwind,wind,Wind,"Wind Turbine, Offshore",1.0,1.0,SERC,PJM,VA,36.89155,-75.4916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59694,"Aspen Solar, LLC",GEN1,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,34.791163,-78.012122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59695,"Mt. Home Solar 1, LLC",MHPV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,43.129,-115.752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59701,Subase Microgrid Project,SFC1,2022.0,3.7,3.7,3.7,0.5,NG,Other Natural Gas,OP,FC,12.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.400008,-72.085993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59701,Subase Microgrid Project,SFC2,2022.0,3.7,3.7,3.7,0.5,NG,Other Natural Gas,OP,FC,12.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.400008,-72.085993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59702,"Pavant Solar, LLC",1,2015.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.960519,-112.36327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59703,"Cottonwood Solar, LLC Cottonwood Carport",1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.129759,-122.568158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59704,"Shell New Energies, Junction City",JCBIO,2011.0,1.6,1.6,1.6,0.7,OBG,Other Waste Biomass,OS,GT,10.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,BPAT,OR,44.183526,-123.200454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59705,Steel Sun,SSUN2,2016.0,2.0,2.0,1.7,2,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.85,NPCC,NYIS,NY,42.812811,-78.845313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59706,BRE,NB005,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,36.372546,-78.598507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59708,Franklinton Solar,5MWPV,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.08113,-78.35384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59709,St. Paul Intl Airport Red & Blue Parking,PV1,2015.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.88,-93.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59709,St. Paul Intl Airport Red & Blue Parking,PV2,2016.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.88,-93.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59710,Sand Valley Power Station,GMA,2013.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.343875,-85.866103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.212849386688116 -59710,Sand Valley Power Station,GMB,2013.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.343875,-85.866103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.212849386688116 -59710,Sand Valley Power Station,GMC,2013.0,1.6,1.6,1.6,0.7,LFG,Landfill Gas,OP,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,AL,34.343875,-85.866103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.212849386688116 -59711,"CII Methane Management IV, LLC",GEN1,2014.0,1.6,1.5,1.5,0.8,LFG,Landfill Gas,OP,IC,6.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,SERC,CPLE,NC,35.511903,-78.433794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.309415971394518 -59712,"San Roman Wind I, LLC",SRWI,2017.0,95.3,95.3,95.3,0,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.125979,-97.377599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59713,Holdrege Solar Center,HDSC,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,40.824736,-96.820315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59714,IKEA St. Louis 410,IK410,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,38.634995,-90.245549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59715,DD Hay Road Solar 23 LLC,PV1,2015.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.736708,-75.511747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59717,Framingham State University Plant,ACPV,2011.0,0.7,0.7,0.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59717,Framingham State University Plant,CCPV,2011.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59717,Framingham State University Plant,HA,2007.0,0.4,0.4,0.4,0.4,DFO,Petroleum Liquids,SB,IC,6.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.051152510262078 -59717,Framingham State University Plant,LIB,2005.0,0.3,0.3,0.3,0.3,DFO,Petroleum Liquids,SB,IC,6.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.052631578947368 -59717,Framingham State University Plant,MSC2,2015.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,12.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.0555906506633 -59717,Framingham State University Plant,NORTH,2011.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.0555906506633 -59717,Framingham State University Plant,OC,2003.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.046717171717171 -59717,Framingham State University Plant,PP,2009.0,0.4,0.4,0.4,0.4,DFO,Petroleum Liquids,SB,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.051152510262078 -59717,Framingham State University Plant,TOW1,2004.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,6.0,2004.0,6,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.0555906506633 -59717,Framingham State University Plant,TOW2,2013.0,0.4,0.4,0.4,0.4,DFO,Petroleum Liquids,SB,IC,6.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.051152510262078 -59717,Framingham State University Plant,WEST,2016.0,0.2,0.2,0.2,0.2,DFO,Petroleum Liquids,SB,IC,9.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.297949,-71.436065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.0555906506633 -59719,Charlotte Solar LLC VT,CS001,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.321972,-73.197608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59722,Seville 1,SEV1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.1125,-116.0139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59723,Seville 2,SEV2,2015.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.1101,-116.0059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59724,Scituate Wind,SCIWT,2012.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.175083,-70.728467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59725,Fairhaven Wind,FHWTG,2012.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,41.639061,-70.873372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59726,CML&P Generating Facility No. 2,10,2017.0,18.7,18.7,18.7,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.092977,-95.585154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.093822662815978 -59726,CML&P Generating Facility No. 2,8,2017.0,18.7,18.7,18.7,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.092977,-95.585154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.093822662815978 -59726,CML&P Generating Facility No. 2,9,2017.0,18.7,18.7,18.7,7.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,37.092977,-95.585154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.093822662815978 -59727,Bull Street Plant,GEN1,2005.0,2.0,2.0,2.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2005.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SCEG,SC,33.489767,-80.870272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -59728,Substation 20 Plant,GEN1,2014.0,2.0,2.0,2.0,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SCEG,SC,33.440183,-80.8417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.422360248447205 -59729,Macon Solar Power Project,MSF1,2015.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,39.76,-92.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59730,SEPV 18,SPV18,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.613602,-117.93439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59731,Templeton,TEMPL,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.521217,-72.067328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59732,Green Pastures Wind I,GPI,2015.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.628222,-99.411169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59733,Green Pastures Wind II,GPII,2015.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.645964,-99.532944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59734,Briscoe Wind Farm,BFW,2015.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.432267,-101.237233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59735,Kirkwood Wind Turbine,KCC01,2012.0,2.5,0.7,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.28,0.9199999999999999,MRO,MISO,IA,41.916558,-91.650897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59736,"Valentine Wind, LLC",7772,2014.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.859103,-100.592439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59737,Aspiration G,ASPRG,2017.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.552186,-120.352481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59738,Citizen B,CSB,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.723806,-120.432139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59739,Lancaster WAD B,LWADB,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.780192,-118.19333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59740,SEPV Mojave West,SPVMW,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.022903,-118.282694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59741,Barton Solar Farm,BARTN,2014.0,1.9,1.9,1.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8421052631578948,NPCC,ISNE,VT,44.725418,-72.184044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59742,Sunnyside Ranch Community Solar Array,HCE,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.415027,-107.157188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59743,Chimes West Friendship (Nixon Farms),1,2014.0,1.2,1.2,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5833333333333333,RFC,PJM,MD,39.296749,-76.957413,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59744,Lakeland Electric Co. (FL)-Airport 1,1,2011.0,2.3,2.3,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8695652173913044,SERC,TEC,FL,27.988523,-82.047295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59745,Leominster (MA)-South Street-R&D,1,2013.0,2.9,2.6,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.896551724137931,0.5862068965517242,NPCC,ISNE,MA,42.606184,-71.177223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59746,DSH (CA) - Coalinga State Hospital,1,2014.0,2.0,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.13726,-120.218453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59747,River Mountains Solar,1,2016.0,14.4,14.4,14.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.031616,-114.929399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59748,CDCR (CA) - Pleasant Valley State Prison,1,2014.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.137219,-120.224445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59749,UMES (MD) - Princess Anne,1,2011.0,2.0,2.1,1.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.65,RFC,PJM,MD,38.20257,-75.6764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59750,Bourne (MA) - Holliston I,1,2014.0,2.3,2.4,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6521739130434783,NPCC,ISNE,MA,42.177876,-71.454633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59751,"Wilzig Associates, LLC",WILZG,2013.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.825316,-74.09442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59752,BlueWave Capital - Grafton (SREC II),1,2015.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.225492,-71.662651,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59754,Lakeland Electric Co. (FL) - Airport II,1,2012.0,3.5,3.5,2.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8285714285714285,SERC,TEC,FL,27.991144,-82.047303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59755,Chester Power Partners,PVS1,2014.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.280929,-72.59757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59757,Pryor Mountain Wind,1,2021.0,239.8,239.8,239.8,1,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,MT,45.165525,-108.693138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59759,Glades Pike Generation Plant,CAT1,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.00665,-79.041035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.513179403351042 -59759,Glades Pike Generation Plant,CAT2,2011.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,10.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.00665,-79.041035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.513179403351042 -59760,"Red Hill Solar Center, LLC",RHILL,2014.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,36.404382,-78.141105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59761,"Van Slyke Solar Center, LLC",VSLYK,2014.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,35.776992,-77.880517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59762,"Broadway Solar Center, LLC",BRDWY,2014.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,34.309261,-78.831433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59763,Robeson County LFG to Energy,GEN01,2012.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OA,IC,1.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.791,-78.9088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59763,Robeson County LFG to Energy,GEN02,2015.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OS,IC,4.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,CPLE,NC,34.791,-78.9088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59764,Oregon Clean Energy Center,CTG11,2017.0,328.0,256.5,313.6,128,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7820121951219512,0.9560975609756098,RFC,PJM,OH,41.667928,-83.443664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59764,Oregon Clean Energy Center,CTG12,2017.0,328.0,256.5,313.6,128,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7820121951219512,0.9560975609756098,RFC,PJM,OH,41.667928,-83.443664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59764,Oregon Clean Energy Center,EDG13,2017.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,OP,IC,7.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.667928,-83.443664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59764,Oregon Clean Energy Center,STG10,2017.0,404.0,334.6,336.2, ,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8282178217821783,0.8321782178217821,RFC,PJM,OH,41.667928,-83.443664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59765,Stetson Road Solar - Barre I,BI,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.4029,-72.1027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59766,Barre II Solar Project,BII,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.362,-72.109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59767,Chester Solar Farm,CHSTR,2014.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.312,-72.949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59768,Concord Solar Farm,CMLP,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.444,-71.335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59769,TIA Solar,1,2015.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.965797,-82.532816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59770,IMPA Pendleton Solar Park,SPEND,2015.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,MISO,IN,39.988564,-85.770858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59771,Jefferson Solar Park,JSP01,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,WI,43.0146,-88.7992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59772,KCP&L SmartGrid Innovation Park,1,2012.0,1.0,1.0,1.0,0,MWH,Batteries,OA,BA,6.0,2012.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,MO,39.040263,-94.571215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59773,Carroll County Energy,CGT1,2017.0,235.5,213.3,228.3, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9057324840764331,0.9694267515923567,RFC,PJM,OH,40.60441,-81.05918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59773,Carroll County Energy,CGT2,2017.0,235.5,213.3,228.3, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9057324840764331,0.9694267515923567,RFC,PJM,OH,40.60441,-81.05918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59773,Carroll County Energy,SGT1,2017.0,361.3,288.0,303.8, ,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7971215056739551,0.8408524771657901,RFC,PJM,OH,40.60441,-81.05918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59774,BioTown Ag,ENG1,2011.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.765611,-86.879682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.749769922901576 -59774,BioTown Ag,ENG2,2011.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.765611,-86.879682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.749769922901576 -59774,BioTown Ag,ENG3,2011.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2011.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.765611,-86.879682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.749769922901576 -59774,BioTown Ag,ENG4,2014.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.765611,-86.879682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.749769922901576 -59774,BioTown Ag,ENG5,2014.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.765611,-86.879682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.749769922901576 -59774,BioTown Ag,ENG6,2014.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,4.0,2014.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,40.765611,-86.879682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.749769922901576 -59775,Adams Farm Solar,ADAMS,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.6,-72.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59776,Heartland Community College,T01,2012.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,6.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.537,-89.019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59777,RGS-Rutland VNM SREC II Project (MA),1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.43177,-71.978189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59778,Eden Solar LLC,EDENS,2015.0,47.7,47.7,47.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.148503,-79.636372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59779,Davis Monthan AFB (AZ) West Airfield,1,2014.0,12.6,12.6,12.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.17356,-110.899734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59780,New Bedford (MA) Plymouth,1,2014.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.925352,-70.649029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59781,Upper Blackstone (MA) Treasure Valley,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.332831,-71.987633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59782,Waynoka Gas Processing Plant,G1,2006.0,1.3,1.3,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,36.651,-98.7656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.666977132595514 -59782,Waynoka Gas Processing Plant,G2,2006.0,1.3,1.3,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,36.651,-98.7656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.666977132595514 -59782,Waynoka Gas Processing Plant,G3,2006.0,1.3,1.3,1.3,1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2006.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,SWPP,OK,36.651,-98.7656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.666977132595514 -59783,Croda Atlas Point CHP,91197,2013.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OP,IC,8.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.693333,-75.543056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.861747711593074 -59783,Croda Atlas Point CHP,91198,2013.0,1.1,1.1,1.1,0.7,LFG,Landfill Gas,OP,IC,8.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.693333,-75.543056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.861747711593074 -59783,Croda Atlas Point CHP,91199,2021.0,2.0,2.0,2.0,1.4,LFG,Landfill Gas,OP,IC,6.0,2021.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,DE,39.693333,-75.543056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.8617473182185 -59784,Gila River Power Block 3,CTG5,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,TEPC,AZ,32.975,-112.6944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59784,Gila River Power Block 3,CTG6,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,TEPC,AZ,32.975,-112.6944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59784,Gila River Power Block 3,ST11,2003.0,271.0,242.0,249.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8929889298892989,0.9188191881918819,WECC,TEPC,AZ,32.975,-112.6944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59785,"Fremont Community Digester, LLC",19001,2012.0,2.9,2.9,2.9,1.5,OBG,Other Waste Biomass,OP,IC,12.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.45965,-85.9761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.55011655011655 -59785,"Fremont Community Digester, LLC",19002,2012.0,2.9,2.9,2.9,1.5,OBG,Other Waste Biomass,OP,IC,12.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.45965,-85.9761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.55011655011655 -59786,Fiddler's Canyon #2,FID2,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.794678,-113.283666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59787,Fiddler's Canyon #1,FID1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.750268,-113.253724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59788,"Advance Stores Company, Inc",PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.015023,-72.511892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59789,Millbrook School,PV1,2015.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.84581,-73.619485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59790,Oregon University System Rabbit Field,PV1,2014.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.573484,-123.31695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59793,Industrial Plant,15,2016.0,41.7,23.5,23.5,2,DFO,Petroleum Liquids,OP,GT,11.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.5635491606714628,0.5635491606714628,non-conus,non-conus,AK,58.367635,-134.60802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.302726177421935 -59794,Chicago West Side Energy Center,GEN1,2003.0,3.5,3.5,3.5,1.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,IL,41.870751,-87.678378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.922153936201346 -59795,Ahoskie,FLS1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.306369,-76.993138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59796,Kelford,FLS1,2016.0,5.0,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9400000000000001,0.9400000000000001,SERC,PJM,NC,36.154227,-77.218502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59797,Bayonne MUA- Leitner-Poma Wind Turbine,WT1,2012.0,1.5,0.1,0.3,0,WND,Onshore Wind Turbine,OS,WT,7.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.06666666666666676,0.20000000000000007,RFC,PJM,NJ,40.652778,-74.117778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59798,Colon PV,W4172,2015.0,1.3,0.9,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.6923076923076923,1.0,WECC,LDWP,CA,33.792694,-118.252407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59800,Amazon San Bernardino,AMZ00,2014.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,11.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,34.088408,-117.245839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59801,IBM Southbury,IBM00,2014.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,11.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,NPCC,ISNE,CT,41.472492,-73.207043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59802,Maxim,MXM00,2014.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,8.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.405689,-121.949416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59803,Pixar - Emeryville,PXR00,2014.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,1.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.83286,-122.284003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59804,Starbucks - Evolution Fresh,SBK00,2014.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,6.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,34.093684,-117.551044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59805,Yahoo! - HQ,YAH00,2014.0,1.1,1.0,1.0,0,NG,Other Natural Gas,OP,FC,7.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.415419,-122.025747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59807,Airport 1 Solar (DIA),GBDIA,2009.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,CO,39.899455,-104.674809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59808,Munster Landfill Gas-to-Energy,GEN1,2012.0,1.1,1.1,1.1,0.5,LFG,Landfill Gas,OP,IC,11.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.524386,-87.509067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.54950781702374 -59809,Mountain Home Energy Center,GEN1,2002.0,3.2,3.2,3.2,0.1,NG,Natural Gas Internal Combustion Engine,OS,IC,6.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,TVA,TN,36.309609,-82.377504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.144212963395516 -59809,Mountain Home Energy Center,GEN2,2002.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,TN,36.309609,-82.377504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.144211948830591 -59809,Mountain Home Energy Center,GEN3,2002.0,1.8,1.8,1.8,0.6,DFO,Petroleum Liquids,SB,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,TVA,TN,36.309609,-82.377504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.144211948830591 -59810,Dairyland WTE Plant,GEN1,2012.0,0.7,0.7,0.7,0.1,OBG,Other Waste Biomass,OA,IC,1.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.540115,-87.805587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59810,Dairyland WTE Plant,GEN2,2012.0,0.7,0.7,0.7,0.1,OBG,Other Waste Biomass,OA,IC,1.0,2012.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,44.540115,-87.805587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59811,Rockfish Solar LLC,GEN1,2015.0,10.3,10.3,10.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.591545,-76.87486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59812,Wolf Hollow II,CGT4,2017.0,360.0,327.8,353.3,113,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9105555555555556,0.9813888888888889,TRE,ERCO,TX,32.337679,-97.734612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.62429788480931 -59812,Wolf Hollow II,CGT5,2017.0,360.0,329.3,354.6,113,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9147222222222222,0.9850000000000001,TRE,ERCO,TX,32.337679,-97.734612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.598978158043229 -59812,Wolf Hollow II,STG6,2017.0,511.2,458.3,485.1,60,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8965179968701096,0.948943661971831,TRE,ERCO,TX,32.337679,-97.734612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59814,"Copper Mountain Solar 4, LLC",PV01,2016.0,51.8,51.8,51.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.78222,-114.975375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59814,"Copper Mountain Solar 4, LLC",PV02,2016.0,41.8,41.8,41.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,35.78222,-114.975375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59815,Granby LFG,GLFG1,2001.0,3.2,2.8,2.8,0.4,LFG,Landfill Gas,OP,IC,9.0,2001.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,NPCC,ISNE,MA,42.227281,-72.547189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33.987955625990494 -59816,Nanticoke LFG,BR12,2006.0,4.0,4.0,4.0,0.8,LFG,Landfill Gas,OP,IC,3.0,2006.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,42.243704,-75.982533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.901703091159677 -59817,Tooele Army Depot(CSG),BATT1,2020.0,1.0,1.0,1.0, ,MWH,Batteries,OS,BA,10.0,2020.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PACE,UT,40.50303,-112.37059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59817,Tooele Army Depot(CSG),GEN01,2010.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,7.0,2010.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,UT,40.50303,-112.37059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59817,Tooele Army Depot(CSG),GEN03,2016.0,1.7,1.7,1.7,0.2,WND,Onshore Wind Turbine,OP,WT,7.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,UT,40.50303,-112.37059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59817,Tooele Army Depot(CSG),PV1,2021.0,1.5,0.1,0.1, ,SUN,Solar Thermal without Energy Storage,OP,OT,12.0,2021.0, , ,,,,,solar,solar,Solar,Other,0.06666666666666676,0.06666666666666676,WECC,PACE,UT,40.50303,-112.37059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59818,Concord Farm,1,2011.0,4.5,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.444235,-80.663641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59819,Mohave Electric at Fort Mohave,PV1,2015.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,34.9843,-114.5565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59820,Hunt Farm Solar,HUNTF,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.553732,-72.299718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59821,205 Sturbridge A,STURA,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.109272,-72.170507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59822,201 Sturbridge B,STURB,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.109143,-72.171188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59823,INDY III,INDY3,2015.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.722966,-86.314473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59824,Sweetgum Solar,5732,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,35.458333,-79.181111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59825,South Louisburg Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.057,-78.308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59826,Sunshine Valley Solar,GEN01,2019.0,103.5,103.5,103.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,NV,36.518,-116.497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59827,"Playa Solar 1, LLC",GEN01,2017.0,79.0,79.0,79.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.408,-114.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59828,Balsam,5375,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.458889,-79.173889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59829,Hickory,5515,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.802222,-78.009167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59831,Royal Solar,FLS1,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.216,-78.689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59832,Kinston Solar,FLS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.351436,-77.472283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59833,Laurinburg Solar,FLS1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.756481,-79.430243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59834,Indy Grocers,INGRO,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.737936,-86.237732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59835,Newton Grove,GEN1,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.251628,-78.367439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59836,Twin Falls (WI),11,2016.0,4.6,4.6,4.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.872778,-88.070833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59836,Twin Falls (WI),12,2016.0,4.6,4.6,4.6,1,WAT,Conventional Hydroelectric,OP,HY,7.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,MISO,WI,45.872778,-88.070833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59837,Slate Creek Wind Project LLC,GEN1,2015.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.1146,-97.2376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59838,Milo Wind Project LLC,GEN1,2016.0,50.0,50.0,50.0,50,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.901781,-103.34675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59839,Spring Hill Road,SHRD1,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.419036,-72.180652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59840,Springbok Solar Farm 2,SB2,2016.0,155.0,155.0,155.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.250031,-117.976847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59841,General Motors Corp at White Marsh MD,PV1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.3716,-76.4405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59842,CNE at Cambridge MD,PV1,2015.0,3.2,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.5158,-76.0192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59843,Georgia Power at Wadley GA,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SEPA,GA,32.883,-82.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59844,Munich Re Plaza,PZ1,2012.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.350341,-74.59268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59844,Munich Re Plaza,PZ2,2012.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.350341,-74.59268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59845,New River,E1,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E10,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E11,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E12,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E13,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E14,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E15,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E16,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E17,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E18,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E2,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E3,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E4,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E5,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E6,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E7,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E8,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59845,New River,E9,2013.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,9.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,VA,37.183,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.929700114558761 -59847,Northwest Community Hospital,1,1996.0,1.1,0.9,1.1,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,1.0,RFC,PJM,IL,42.067753,-87.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.017955801104973 -59847,Northwest Community Hospital,2,1996.0,1.1,0.9,1.1,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,1.0,RFC,PJM,IL,42.067753,-87.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.017955801104973 -59847,Northwest Community Hospital,3,1996.0,1.1,0.9,1.1,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,1.0,RFC,PJM,IL,42.067753,-87.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.017955801104973 -59847,Northwest Community Hospital,4,1996.0,1.1,0.9,1.1,0.9,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8181818181818181,1.0,RFC,PJM,IL,42.067753,-87.993492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.017955801104973 -59848,Pikes Peak Solar Garden 1 LLC CSG,PPSG1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,38.7745,-104.7458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59849,Adams Community Solar Garden LLC,23377,2015.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.7876,-104.5859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59850,Adams Community Solar Garden III LLC,23376,2015.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.7867,-104.5877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59851,Great Bay Solar 1,GBS01,2018.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.168889,-75.6975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59852,North Star Solar Project,NSSP1,2016.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.47,-92.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59853,Watervliet PV,WVPV1,2016.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MI,42.19,-86.23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59854,OlivePV,OLPV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IN,41.7,-86.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59855,Deer Creek PV,DCPV1,2016.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IN,40.51,-85.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59856,"SoINCPower6, LLC",SUN1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.443,-76.581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59857,"SoINCPower5, LLC",BAT1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.052801,-77.762458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59858,Johnston Solar,JSI01,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.800906,-71.559472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59860,HP Hood CT,HHOOD,2015.0,15.0,15.0,15.0,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,VA,39.132519,-78.187474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.234165584739838 -59861,Twin Branch PV,TBPV1,2016.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IN,41.69,-86.12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59862,Fort Benning Solar Facility,1,2015.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.352369,-84.968819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59863,Fort Gordon Solar Facility,1,2016.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.386625,-82.140117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59864,Kings Bay Solar Facility,1,2016.0,30.0,30.2,30.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.827627,-81.556238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59865,Fort Stewart Solar Facility,1,2016.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.90474,-81.595373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59866,Palmer Solar LLC,11111,2013.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.187176,-72.36558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59867,Lockheed Martin Solar System,LMSOL,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.0479,-82.6853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59868,Kingbird A Solar LLC,GEN01,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.819,-118.432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59870,"Little Bear Solar 1, LLC",GEN01,2020.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.716,-120.415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59872,UC Davis South Campus,UCD1,2015.0,13.0,13.0,13.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.55,-121.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59873,Lowell Solar Landfill,PV,2013.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.627147,-71.353369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59874,Richland Solar Center,PV1,2015.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SEPA,GA,32.638034,-83.378924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59875,Marshall Solar Energy Project,PV1,2017.0,62.3,62.3,62.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.475314,-95.669011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59876,Marine Corps Logistics Base Solar,1,2018.0,31.0,31.2,31.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.560729,-84.093261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59877,Riverside RWQCP Fuel Cell,MB20,2016.0,1.4,1.4,1.4,0.6,OBG,Other Waste Biomass,OP,FC,8.0,2016.0, , ,,,,,biomass,biomass,Other Biomass Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.9617,-117.455897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59878,Windhub Solar A LLC,GEN01,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.0199,-118.2879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59879,North Rosamond Solar LLC,GEN01,2019.0,151.1,151.1,151.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.862,-118.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59880,Kings Park Solar I,KIPS1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.868294,-73.249281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59881,Kings Park Solar II,KIPS2,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.868294,-73.249281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59882,Exelon West Medway II LLC,4,2019.0,131.8,95.3,103.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7230652503793626,0.7852807283763277,NPCC,ISNE,MA,42.137218,-71.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59882,Exelon West Medway II LLC,5,2019.0,131.8,95.5,103.5,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7245827010622155,0.7852807283763277,NPCC,ISNE,MA,42.137218,-71.4447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59887,"Beaufort Solar, LLC",GEN,2015.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.456,-77.134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59888,Bloom Wind,GEN,2017.0,178.2,178.2,178.2,1.5,WND,Onshore Wind Turbine,OP,WT,6.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.4863,-99.9247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59891,Butler Solar Farm 20,1,2016.0,22.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9090909090909091,0.9090909090909091,SERC,SOCO,GA,32.575542,-84.316547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59894,Pawpaw Solar Plant,1,2016.0,30.5,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9836065573770492,0.9836065573770492,SERC,SOCO,GA,32.572875,-84.256778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59896,Butler Solar Project 103,1,2016.0,104.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9615384615384616,0.9615384615384616,SERC,SOCO,GA,32.561944,-84.275833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59897,Taylor County Solar,1,2016.0,148.0,143.0,143.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9662162162162162,0.9662162162162162,SERC,SOCO,GA,32.583056,-84.297222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59898,"SunEnergy1-Scotland Neck, LLC",SE1SN,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.124961,-77.409085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59899,"Choco Solar, LLC",CHOCO,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.482032,-77.113067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59900,Corcoran Solar 3,C3CA,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.15042,-119.58542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59901,Albertson Solar LLC,ALBRT,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.093021,-77.812667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59902,Cardinal Point Wind,GEN,2020.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IL,40.588568,-90.751828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59903,New Frontier Wind,GEN,2018.0,100.0,100.0,100.0,1.5,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,47.861531,-100.947664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59904,Western Branch High School,1,2016.0,1.0,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,0.4,SERC,PJM,VA,36.848105,-76.407143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59905,Merck,1,2017.0,2.1,0.8,, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.38095238095238093,,SERC,PJM,VA,38.383222,-78.643688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59906,Moxie Freedom Generation Plant,GEN1,2018.0,529.0,490.0,525.0,200,NG,Natural Gas Fired Combined Cycle,OP,CS,8.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9262759924385633,0.9924385633270322,RFC,PJM,PA,41.113056,-76.158056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59906,Moxie Freedom Generation Plant,GEN2,2018.0,529.0,490.0,525.0,200,NG,Natural Gas Fired Combined Cycle,OP,CS,9.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9262759924385633,0.9924385633270322,RFC,PJM,PA,41.113056,-76.158056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59908,Mount Olive Solar,2MWPV,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.18,-78.098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59910,"KDC Solar PR1, LLC",SF,2019.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.136696,-74.439668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59911,Philip Morris,1,2016.0,2.0,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,0.4,SERC,PJM,VA,37.341838,-77.287027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59912,Freemont Solar Center LLC,FREE,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.427587,-80.997219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59913,Greensville County Power Station,CT01,2018.0,369.8,324.4,353.8, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8772309356408868,0.9567333693888589,SERC,PJM,VA,36.718236,-77.649559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59913,Greensville County Power Station,CT02,2018.0,369.8,324.4,353.8, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8772309356408868,0.9567333693888589,SERC,PJM,VA,36.718236,-77.649559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59913,Greensville County Power Station,CT03,2018.0,369.8,324.4,353.8, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8772309356408868,0.9567333693888589,SERC,PJM,VA,36.718236,-77.649559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59913,Greensville County Power Station,ST01,2018.0,663.9,611.8,648.6, ,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9215243259527037,0.9769543605964754,SERC,PJM,VA,36.718236,-77.649559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59914,Crestwood Solar Center LLC,CREST,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.353533,-78.584212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59915,Oro Loma,ORCA,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.876847,-120.667608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59916,SunE- E Philadelphia Ontario,12307,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.03527,-117.5341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59917,Pollocksville Solar,5MWPV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.998,-77.219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59919,Nellis Solar PV II,NSPV2,2015.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.206672,-115.047703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59921,Lillington Solar,5MWPV,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.368,-78.801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59922,South Campus Solar,G1789,2021.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.781498,-75.548387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59922,South Campus Solar,GA500,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.781498,-75.548387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59926,Alpine Power Plant,AI1,2016.0,226.9,202.6,220.0,101,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8929043631555751,0.9695901278096077,RFC,MISO,MI,45.063748,-84.825348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59926,Alpine Power Plant,AI2,2016.0,226.9,202.6,220.0,101,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8929043631555751,0.9695901278096077,RFC,MISO,MI,45.063748,-84.825348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59927,Hunt Road Solar,PV1,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.829833,-70.960208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59928,"Vance Solar Farm, LLC",NB007,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,36.258478,-78.411966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59929,"Cline Solar Farm, LLC",NB007,2017.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.72,-81.417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59930,"BG Stewart Solar Farm, LLC",NB005,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,34.970486,-80.389622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59931,FCPC Renewable Generation,GEN2,2013.0,1.1,1.0,1.0,0.3,OBG,Other Waste Biomass,OP,IC,10.0,2013.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9090909090909091,0.9090909090909091,RFC,MISO,WI,43.030016,-87.940914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59932,Fiddler's Canyon 3,FID3,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.731338,-113.216634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59934,Soluga Farms IV,SFIV,2018.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SEPA,NC,35.21871,-78.669479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59936,Meadowbrook Solar Farm,NB008,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.55543,-80.38589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59937,"Coats Solar Farm, LLC",NB006,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.414507,-78.690576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59938,Sky Global Power One,UNIT1,2016.0,8.5,8.3,8.4,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9764705882352942,0.9882352941176471,TRE,ERCO,TX,29.550278,-96.537778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.397012441447625 -59938,Sky Global Power One,UNIT2,2016.0,8.5,8.3,8.4,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9764705882352942,0.9882352941176471,TRE,ERCO,TX,29.550278,-96.537778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.397012441447625 -59938,Sky Global Power One,UNIT3,2016.0,8.5,8.3,8.4,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9764705882352942,0.9882352941176471,TRE,ERCO,TX,29.550278,-96.537778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.397012441447625 -59938,Sky Global Power One,UNIT4,2016.0,8.5,8.3,8.4,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9764705882352942,0.9882352941176471,TRE,ERCO,TX,29.550278,-96.537778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.397012441447625 -59938,Sky Global Power One,UNIT5,2016.0,8.5,8.3,8.4,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9764705882352942,0.9882352941176471,TRE,ERCO,TX,29.550278,-96.537778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.397012441447625 -59938,Sky Global Power One,UNIT6,2016.0,8.5,8.3,8.4,4.3,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9764705882352942,0.9882352941176471,TRE,ERCO,TX,29.550278,-96.537778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.397012441447625 -59939,RE Tranquillity,BESS1,2021.0,37.0,37.0,37.0,0.1,MWH,Batteries,OP,BA,11.0,2021.0, , ,128.0,32.0,32.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.581365,-120.40447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59939,RE Tranquillity,BESS2,2022.0,35.0,35.0,35.0, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,160.0,35.0,35.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.581365,-120.40447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59939,RE Tranquillity,TQ,2016.0,205.3,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9741841207988309,0.9741841207988309,WECC,CISO,CA,36.581365,-120.40447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59940,"Great Valley Solar Portfolio Holdings, LLC",GVS2,2017.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.581182,-120.37957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59940,"Great Valley Solar Portfolio Holdings, LLC",GVS3,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.581182,-120.37957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59940,"Great Valley Solar Portfolio Holdings, LLC",GVS4,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.581182,-120.37957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59940,"Great Valley Solar Portfolio Holdings, LLC",TQ8,2018.0,102.5,102.5,102.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.581182,-120.37957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59941,"Iron Springs Solar, LLC",ISS,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.7212,-113.1516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59942,Morgan Lancaster 1,ML1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.6608,-118.0836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59943,Rattlesnake Den,1,2015.0,207.2,207.2,207.2,0,WND,Onshore Wind Turbine,OP,WT,7.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.74325,-101.493407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59944,"Conetoe II Solar, LLC",CONE1,2015.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.822,-77.481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59945,"Granite Mountain Solar West, LLC",GMSW,2016.0,50.4,50.4,50.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.7989,-113.322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59946,"Granite Mountain Solar East, LLC",GMSE,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.77509,-113.226403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59947,SR Camden,AERO,2015.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SPA,AR,33.631538,-92.703611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59948,Bakersfield 111,BF111,2015.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,CA,35.317551,-118.989894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59949,AES Warrior Run Energy Storage Project,BESS1,2015.0,11.0,5.0,5.0,0,MWH,Batteries,OP,BA,12.0,2015.0, , ,5.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.4545454545454546,0.4545454545454546,RFC,PJM,MD,39.593075,-78.745333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59950,Yadkinville Solar,YAK,2015.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.13727,-80.596009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59951,Five Forks Solar,5FRK,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.515544,-78.033704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59952,Potrero Hills Energy Producers,1,2016.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.216973,-121.979452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.82566426958374 -59952,Potrero Hills Energy Producers,2,2016.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.216973,-121.979452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.82566426958374 -59952,Potrero Hills Energy Producers,3,2016.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.216973,-121.979452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.82566426958374 -59952,Potrero Hills Energy Producers,4,2016.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.216973,-121.979452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.82566426958374 -59952,Potrero Hills Energy Producers,5,2016.0,1.6,1.6,1.6,1.1,LFG,Landfill Gas,OP,IC,4.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,38.216973,-121.979452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.82566426958374 -59953,Antrim Wind,AWND1,2019.0,28.8,28.8,28.8,28.8,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,NH,43.06435,-72.00635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59954,Osceola Solar Facility,XXXXX,2016.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.058078,-81.241681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59955,ESA Smithfield,GEN01,2015.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.48835,-78.319751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59956,ESA Selma,GEN02,2015.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.5262,-78.2898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59957,Grand Ridge Battery Projects,GIVB,2013.0,4.5,4.5,4.5,0,MWH,Batteries,OP,BA,12.0,2013.0, , ,1.0,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,IL,41.2269,-88.6836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59957,Grand Ridge Battery Projects,GRES,2015.0,31.5,31.5,31.5,0,MWH,Batteries,OP,BA,3.0,2015.0, , ,12.5,31.5,31.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,IL,41.2269,-88.6836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59958,Milford 2,MIL2,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.388243,-112.990812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59961,Western Antelope Blue Sky B,WABSB,2016.0,20.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,WECC,CISO,CA,34.73206,-118.313573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59962,North Lancaster Ranch,NLR,2016.0,20.0,18.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.85,WECC,CISO,CA,34.719538,-118.31301,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59963,Central Antelope Dry Ranch C,CADRC,2016.0,20.0,17.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.85,0.8,WECC,CISO,CA,34.720499,-118.30046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59964,Elevation Solar C,ELVSC,2016.0,40.0,39.0,37.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.925,WECC,CISO,CA,34.730263,-118.30425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59965,Latigo Wind Park,LTIGO,2016.0,62.1,62.1,62.1,1.7,WND,Onshore Wind Turbine,OP,WT,3.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,UT,37.886706,-109.36839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59966,Camp Lejeune Solar and Energy Storage,PV1,2015.0,12.8,12.8,12.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.725699,-77.350273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59967,Pepperidge Farm Bloomfield,FCB,2008.0,1.2,0.8,0.8,0.6,NG,Other Natural Gas,OP,FC,9.0,2008.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.6666666666666667,0.6666666666666667,NPCC,ISNE,CT,41.869302,-72.718315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59967,Pepperidge Farm Bloomfield,FCC,2016.0,1.4,1.3,1.3,0.6,NG,Other Natural Gas,OP,FC,8.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9285714285714286,0.9285714285714286,NPCC,ISNE,CT,41.869302,-72.718315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59968,"Desert Wind Farm, LLC",1,2016.0,208.0,208.0,208.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,PJM,NC,36.31,-76.42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59972,Bearkat,BRKAT,2018.0,196.7,196.7,196.7,0,WND,Onshore Wind Turbine,OP,WT,2.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.727237,-101.582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59973,Walt Disney World Solar Facility,WDS1,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.3737,-81.562589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59974,Golden West Power Partners LLC,GW1,2015.0,250.0,250.0,250.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,38.935,-104.212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59975,Carousel Wind Farm LLC,CW1,2015.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,39.334,-102.173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59976,RE Astoria,ASTR1,2016.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.844226,-118.458466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59977,RE Astoria 2,ASTR2,2016.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.836649,-118.480204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59978,"Adapture CA2, LLC",ECA22,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,CA,39.69898,-122.175583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59979,"Columbia Solar Energy, LLC",GEN1,2015.0,19.2,19.2,19.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.019671,-121.86506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59980,Mashpee Landfill Solar,MASH,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.62996,-70.477852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59981,New Castle Solar RES,PV1,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.854126,-85.403423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59982,Scotland Solar RES,PV1,2015.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.9099,-86.9473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59983,New Haven Solar RES,PV1,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.1941,-86.9889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59984,Lanesville Solar RES,PV1,2015.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.2717,-85.9864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59985,Ellettsville Solar RES,PV1,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.25482,-86.656796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59986,Henryville Solar RES,PV1,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.5955,-85.7773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59987,Spring Mill Solar RES,PV1,2017.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.709545,-86.469676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59988,Decatur Co. Solar RES (IN),PV1,2017.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.337893,-85.506398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59989,Jackson Co. Solar RES,PV1,2017.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.881719,-86.032969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59990,Johnson Co. Solar RES,PV1,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.518026,-86.068353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59993,Babcock Solar Energy Center Hybrid,1,2016.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.861592,-81.751011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59993,Babcock Solar Energy Center Hybrid,BA,2018.0,10.0,10.0,10.0,0.5,MWH,Batteries,OP,BA,3.0,2018.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPL,FL,26.861592,-81.751011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59994,RE Roserock,ROSEK,2016.0,160.0,157.5,157.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.984375,0.984375,TRE,ERCO,TX,30.960209,-103.306662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59996,Boykin PV1,BOYK1,2020.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.113386,-78.750423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59997,High Shoals PV1,HISHO,2022.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.396478,-81.219144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -59999,Ouchchy PV1,OUCH1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.084097,-79.24481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60000,Turkey Creek PV1,TRKCK,2017.0,13.5,13.5,13.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.441359,-77.135575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60001,Vaughn Creek PV1,VNCRK,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.451012,-77.120595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60004,Clarkstown Landfill Solar Facility,INV#1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.100409,-73.951593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60004,Clarkstown Landfill Solar Facility,INV#2,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.100409,-73.951593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60005,Daytona International Speedway Solar,1,2016.0,1.6,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,SERC,FPL,FL,29.17016,-81.064121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60006,FIU Solar,1,2016.0,1.6,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,0.5,SERC,FPL,FL,25.770008,-80.367743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60007,Morelos del Sol,MORLS,2015.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.731362,-119.818712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60008,Hooper Solar,SCCO3,2015.0,52.0,52.0,52.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.691863,-105.990812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60009,Murphy Flat Solar,IPMF,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,43.213,-116.439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60010,Orchard Ranch Solar,IPOR,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,43.467,-116.285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60011,American Falls Solar,IPAF,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,42.824,-112.752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60012,American Falls Solar II,IPAF2,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,42.824,-112.752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60013,"Grant Wind, LLC",GRANT,2016.0,151.8,150.0,150.0,2.3,WND,Onshore Wind Turbine,OP,WT,4.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9881422924901185,0.9881422924901185,MRO,SWPP,OK,36.927071,-97.696331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60014,Manatee Solar Energy Center,1,2016.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.607469,-82.355275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60014,Manatee Solar Energy Center,BMS,2021.0,409.0,409.0,409.0,0,MWH,Batteries,OP,BA,11.0,2021.0, , ,900.0,74.5,409.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPL,FL,27.607469,-82.355275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60015,Findlay Wind Farm,WNDW1,2015.0,3.0,3.0,3.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.101219,-83.644394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60016,MESA 1,A,2015.0,1.0,1.0,1.0,0,MWH,Batteries,OA,BA,7.0,2015.0, , ,0.5,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,BPAT,WA,47.936194,-122.246917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60016,MESA 1,B,2016.0,1.0,1.0,1.0,0,MWH,Batteries,OA,BA,2.0,2016.0, , ,0.5,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,BPAT,WA,47.936194,-122.246917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60017,Domino Farms Solar,1,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.323377,-83.680252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60019,Greenwood Solar Farm,1,2016.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.1056,-82.6964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60022,Oxford,OXFRD,2014.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.141319,-71.850758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60023,SR Jenkins Ft Lupton,FTLUP,2016.0,13.0,13.0,13.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.081444,-104.746661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60024,Waipio Solar,WPO,2019.0,45.9,45.9,45.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.456,-157.982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60025,Eight Flags Energy,01,2016.0,21.6,21.4,21.4,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9907407407407406,0.9907407407407406,SERC,JEA,FL,30.6608,-81.4706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.104224433208286 -60026,Little Rock Pham Solar,PV1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.600231,-117.94751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60027,Adera Solar,ADERA,2015.0,20.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,WECC,CISO,CA,37.120586,-120.32488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60029,CES VMT Solar,VMMD,2015.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.680865,-77.727117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60030,Pecan Solar,PECAN,2018.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.481008,-77.481164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60032,SunE Rochester,RCHTR,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.097728,-117.544529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60033,"CA Flats Solar 130, LLC",GEN01,2017.0,130.0,130.0,130.0,0,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.615573,-120.404352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60034,"CA Flats Solar 150, LLC",GEN01,2019.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.615573,-120.404352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60035,Tequesquite Landfill Solar PV Project,RPU1,2015.0,7.3,7.3,7.3,0,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.97819,-117.38514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60036,CCBC-Catonsville,PV1,2015.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.2525,-76.735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60038,Owens Corning Headquarters,PV1,2015.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.6447,-83.5364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60039,Frontier Solar LLC,FTRS,2016.0,20.0,20.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,CISO,CA,37.379919,-121.130661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60040,UI RCP New Haven Fuel Cell,NHFC,2015.0,2.8,2.5,2.5,2.5,NG,Other Natural Gas,OP,FC,8.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.8928571428571429,0.8928571428571429,NPCC,ISNE,CT,41.288803,-72.898622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60043,"Cuyama Solar, LLC",GEN01,2017.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.901,-119.596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60044,Buckthorn Westex,BKTH1,2018.0,154.0,154.0,154.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.57552,-102.551292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60045,Shoreham Solar Commons,GEN1,2018.0,24.9,24.9,24.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.934411,-72.888511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60046,Portage Solar,PV7,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.5611,-87.1555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60047,Middlebury Solar,PV6,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,41.6972,-85.6875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60048,"TWE Chocowinity Solar, LLC",FLS1,2015.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.501688,-77.105614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60049,Golden Hills Wind,GE,2015.0,85.9,85.9,85.9,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.713311,-121.640353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60050,Innovative Solar 10,FLS1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.473629,-82.890319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60051,"Innovative Solar 18, LLC",FLS1,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.378187,-81.795051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60052,"Innovative Solar 26, LLC",FLS1,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.70974,-81.413308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60053,"Innovative Solar 63, LLC",FLS1,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.39169,-77.620395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60054,UI RCP Bridgeport Seaside,BPFC,2015.0,2.8,2.5,2.5,2.3,NG,Other Natural Gas,OP,FC,11.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.8928571428571429,0.8928571428571429,NPCC,ISNE,CT,41.157591,-73.208084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60054,UI RCP Bridgeport Seaside,BPPV,2016.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.157591,-73.208084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60055,Innovative Solar 16,FLS1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.363863,-82.350001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60056,"Syncarpha Palmer, LLC",SYNPA,2015.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222824,-72.309507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60057,"Steel Bridge Solar, LLC",STEEL,2016.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.068,-123.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60058,"River Bend Solar, LLC",RVRBN,2016.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,AL,34.831511,-87.842204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60059,Los Vientos V Wind Power,1,2015.0,110.0,110.0,110.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.411689,-98.571554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60060,Lindberg FIeld Solar,SDIA2,2016.0,1.8,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9444444444444444,0.9444444444444444,WECC,CISO,CA,32.729238,-117.207718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60060,Lindberg FIeld Solar,SDIAA,2015.0,0.6,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8333333333333334,0.8333333333333334,WECC,CISO,CA,32.729238,-117.207718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60060,Lindberg FIeld Solar,SDIAB,2015.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.729238,-117.207718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60061,Citrus Solar Energy Center Hybrid,1,2016.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.320919,-81.806863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60061,Citrus Solar Energy Center Hybrid,BA,2018.0,4.0,4.0,4.0,0.5,MWH,Batteries,OP,BA,3.0,2018.0, , ,16.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPL,FL,27.320919,-81.806863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60062,Avalon Solar II,ASII,2016.0,16.0,16.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9375,WECC,TEPC,AZ,32.000854,-110.958427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60063,"Live Oak Solar, LLC",LVEOK,2016.0,51.0,51.0,51.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.423798,-82.102824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60064,"White Pine Solar, LLC",WHTPN,2016.0,101.2,101.2,101.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.506017,-84.256976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60065,"Federal Road Solar 1, LLC CSG",FEDRD,2015.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.806894,-70.725717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60067,BWC Swan Pond River CSG,SPRMA,2015.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.795599,-71.226628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60068,Grand View Solar Two,GVS2,2016.0,60.0,60.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8333333333333334,WECC,IPCO,ID,42.989614,-116.093431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60068,Grand View Solar Two,GVS5,2016.0,20.0,20.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,IPCO,ID,42.989614,-116.093431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60069,"Cedar Bluff Wind, LLC",CBLF1,2015.0,198.6,198.6,198.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.697606,-99.729289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60071,Perry Solar Facility,XXXXX,2016.0,5.1,5.1,5.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,30.119304,-83.560054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60072,Neisler Street Solar,NSS1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.289757,-81.568878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60073,Leominster,SNLEO,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.561568,-71.755446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60074,North Adams Landfill,SNNOA,2015.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.669072,-73.092041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60075,Fisher Road Solar,SYFRS,2015.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.593314,-71.018053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60076,Palmer Landfill,SYNPL,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.216634,-72.315526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60077,CED Avenal,AVCA,2017.0,15.8,15.8,15.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.996324,-120.15146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60078,CED Ducor 1,DU1CA,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.856278,-119.068414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60079,CED Ducor 2,DU2CA,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.844167,-119.068069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60080,CED Ducor 3,DU3CA,2016.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.845378,-119.056992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60081,CED Ducor 4,DU4CA,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.850403,-119.026992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60082,"White Oak Solar, LLC",WHTOK,2016.0,76.5,76.5,76.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.036789,-82.111292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60083,Fresno Solar,PV-S,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.616846,-120.105144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60083,Fresno Solar,PV-W,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.616846,-120.105144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60084,PCA-Valdosta Mill,TG1,1954.0,10.1,10.1,10.1,1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1954.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,30.694444,-83.303056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60084,PCA-Valdosta Mill,TG2,1954.0,7.5,7.5,7.5,1,WDS,Wood/Wood Waste Biomass,OP,ST,1.0,1954.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,30.694444,-83.303056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60084,PCA-Valdosta Mill,TG3,2011.0,52.3,52.3,52.3,5,BLQ,Wood/Wood Waste Biomass,OP,ST,10.0,2011.0, , ,,,,,biomass,biomass,Black Liquor,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,30.694444,-83.303056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60085,AVS Lancaster 1,PV1,2016.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.748894,-117.973571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60086,US-TOPCO (Soccer Center),PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.66072,-118.081152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60087,South Plains II,SPII,2016.0,300.0,300.0,300.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.196962,-101.381494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60088,Sunflower Wind Project,SNFLR,2016.0,104.0,104.0,104.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,WACM,ND,46.837569,-102.07455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60089,Elkton Solar,ELKTN,2015.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.603531,-75.836235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60091,"Kingbird B Solar, LLC",GEN01,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.824206,-118.438547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60092,"Blythe Solar II, LLC",BLCK4,2016.0,33.2,33.2,33.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60092,"Blythe Solar II, LLC",BLCK5,2016.0,33.9,33.9,33.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60092,"Blythe Solar II, LLC",BLCK6,2016.0,32.0,32.0,32.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60092,"Blythe Solar II, LLC",BLCK7,2016.0,32.1,32.1,32.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60092,"Blythe Solar II, LLC",BLST2,2021.0,115.0,115.0,115.0,0,MWH,Batteries,OP,BA,3.0,2021.0, , ,538.6,115.0,115.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.68,-114.73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60093,"Blythe Solar 110, LLC",BES1,2021.0,63.0,63.0,63.0,0,MWH,Batteries,OP,BA,6.0,2021.0, , ,301.2,63.0,63.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.68,-114.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60093,"Blythe Solar 110, LLC",BLCK1,2016.0,38.7,38.7,38.7,0,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60093,"Blythe Solar 110, LLC",BLCK2,2016.0,36.3,36.3,36.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60093,"Blythe Solar 110, LLC",BLCK3,2016.0,34.8,34.8,34.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.68,-114.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60094,"Blythe Solar III, LLC Hybrid",BLSL3,2020.0,136.8,136.8,136.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.656,-114.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60094,"Blythe Solar III, LLC Hybrid",BLST3,2021.0,115.0,115.0,115.0,0,MWH,Batteries,OP,BA,5.0,2021.0, , ,538.6,115.0,115.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.656,-114.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60095,"Blythe Solar IV, LLC",BLS4A,2020.0,68.7,68.7,68.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.682,-114.768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60095,"Blythe Solar IV, LLC",BLS4B,2020.0,68.7,68.7,68.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.682,-114.768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60096,Town of Chestertown- Chestertown WWTP,PV1,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.199453,-76.076693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60097,Onondaga County - Metro Water Board,PV1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.183782,-76.224075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60098,Onondaga County - Oak Orchard WWTP,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.172719,-76.130123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60099,"Hewlett-Packard (HP) - Andover, MA",PV1,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.624687,-71.182914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60100,Dinuba Energy,G-1,1985.0,11.5,11.5,11.5,5,WDS,Wood/Wood Waste Biomass,SB,ST,10.0,1985.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,CISO,CA,36.571485,-119.419176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60101,"Shelby Randolph Road Solar 1, LLC",SRR,2015.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,DUK,NC,35.309229,-81.588436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60102,Lorin Industries,1,1990.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.216639,-86.214444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.664954128440367 -60102,Lorin Industries,2,1990.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.216639,-86.214444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.664954128440367 -60102,Lorin Industries,3,1990.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.216639,-86.214444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.664954128440367 -60102,Lorin Industries,4,1990.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,1990.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.216639,-86.214444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.664954128440367 -60104,"Javelina Wind Energy, LLC",GEWTG,2015.0,249.7,249.7,249.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.32,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60105,"Lafayette Solar I, LLC",LAF,2015.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,DUK,NC,35.232396,-81.564248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60106,"Rockingham Solar, LLC",ROCK,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,34.980661,-79.603732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60107,"York Road Solar I, LLC",YORK,2015.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,DUK,NC,35.222208,-81.333702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60108,"SID Solar I, LLC",SID,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.258647,-81.505606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60109,UDR Glastonbury Fuel Cell,UDRFC,2016.0,3.4,2.5,3.1,2.5,NG,Other Natural Gas,OP,FC,2.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.7352941176470589,0.911764705882353,NPCC,ISNE,CT,41.716998,-72.536077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60110,Town of Needham VNEM CSG,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.276717,-71.259394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60111,Williamsburg Solar LLC VNEM CSG,PV1,2016.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.387088,-72.713442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60112,Oregon Convention Center,PV1,2016.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,45.528457,-122.66317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60113,Jackson Board of Education-Liberty HS,PV1,2016.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.092672,-74.262001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60114,Oneida County- DPW,PV1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.150761,-75.371258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60115,Town of Halfmoon,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,42.834978,-73.675675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60116,"BJ's Wholesale Club, Inc- Uxbridge",PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.019659,-71.604149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60117,Western Michigan Solar Gardens,1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.2525,-85.64273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60118,Grand Valley Solar Gardens,1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.9531,-85.90117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60119,Granby Hydro,GEN1,2016.0,1.2,1.2,0.2,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.16666666666666663,WECC,PSCO,CO,40.1464,-105.8683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60121,"HCE Johnston I, LLC",HCEJI,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.560002,-78.59453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60122,Colorado Bend II,CT7,2017.0,360.9,329.3,360.2,113,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9124411194236631,0.9980604045441951,TRE,ERCO,TX,29.289415,-96.065399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.187080601593417 -60122,Colorado Bend II,CT8,2017.0,360.9,335.0,359.6,113,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9282349681352176,0.9963978941535052,TRE,ERCO,TX,29.289415,-96.065399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.256228859219876 -60122,Colorado Bend II,STG9,2017.0,508.5,478.4,490.5,70,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2017.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9408062930186823,0.9646017699115044,TRE,ERCO,TX,29.289415,-96.065399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60123,Castle Gap Solar Hybrid,BAT1,2019.0,9.9,9.9,9.9,0,MWH,Batteries,OP,BA,6.0,2019.0, , ,42.0,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.255,-102.272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60123,Castle Gap Solar Hybrid,CGAP,2018.0,180.0,180.0,180.0,180,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.255,-102.272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60124,Goldfinch,GFNCH,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FMPP,FL,27.982089,-82.042005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60125,Kawailoa Solar,KAWS,2019.0,49.0,49.0,49.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.624,-158.055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60126,Harpster Wind,H1,2016.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.718292,-83.22865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60127,"Eastern Shore Solar, LLC",PV1,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,37.943895,-75.569556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60128,Zephyr Wind,Z1,2015.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.096111,-83.641381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60128,Zephyr Wind,Z2,2015.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.096111,-83.641381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60128,Zephyr Wind,Z3,2015.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.096111,-83.641381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60129,"Red Toad 1425 A Powatan Road, LLC",POW,2015.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,DUK,NC,35.604208,-78.370875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60130,Big Sand Draw Plant,1,2015.0,1.6,1.4,1.4,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,WACM,WY,42.7527,-108.1697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.452067117769 -60130,Big Sand Draw Plant,2,2015.0,1.6,1.4,1.4,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,WACM,WY,42.7527,-108.1697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.452067117769 -60130,Big Sand Draw Plant,4,2015.0,1.6,1.4,1.4,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,WACM,WY,42.7527,-108.1697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.452067117769 -60130,Big Sand Draw Plant,5,2015.0,1.6,1.4,1.4,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,WACM,WY,42.7527,-108.1697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.452067117769 -60130,Big Sand Draw Plant,6,2015.0,1.6,1.4,1.4,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,WECC,WACM,WY,42.7527,-108.1697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.452067117769 -60131,Durham Solar,DURM,2015.0,3.5,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9714285714285714,0.9714285714285714,SERC,DUK,NC,36.004941,-78.848475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60132,New Creek Wind,NCG01,2016.0,103.0,103.0,103.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,PJM,WV,39.200639,-79.140639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60133,"Morgan Farm, LLC",MOR,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,36.095572,-78.151987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60134,"Nashville Farms, LLC",NASH,2015.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,DUK,NC,36.034354,-78.010611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60135,"Cedar Solar, LLC",CED,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,34.915767,-77.775743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60136,"Elm Solar, LLC",ELM,2015.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.453828,-79.189525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60137,Glasgow LFGTE,1,2015.0,1.0,0.9,0.9,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,0.9,SERC,PJM,KY,36.9874,-85.9575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.10267515923567 -60142,Lemoore 1,LEPV1,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.257938,-119.798139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60143,Peak View Wind Farm,WTG,2016.0,60.8,60.8,60.8,1,WND,Onshore Wind Turbine,OP,WT,11.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,37.710444,-104.505464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60144,"Baltimore Church Solar, LLC",FLS1,2017.0,5.4,5.4,5.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.466688,-79.152443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60145,"Broadview Energy JN, LLC",1,2017.0,181.7,181.7,181.7,181.7,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,GRIS,NM,34.734179,-103.108047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60146,"Cohen Farm Solar, LLC",FLS1,2016.0,4.9,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.557224,-79.195789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60147,"Floyd Solar, LLC",FLS1,2016.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.509128,-79.135875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60149,"Innovative Solar 43, LLC",FLS1,2016.0,50.8,50.8,50.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.529956,-78.304811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60150,Cornell Geneva Solar Farm,ARGOS,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.866,-77.031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60151,Building F,BLDGF,2016.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.914356,-118.050189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60152,"Broadview Energy KW, LLC",1,2017.0,142.6,142.6,142.6,142.6,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,GRIS,NM,34.727007,-103.166771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60153,Building G,BLDGG,2016.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.912917,-118.050561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60154,Buidling L,BLDG1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.912917,-118.041944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60156,Shelter Solar,PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.983772,-79.268026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60157,Heedeh Solar,PV1,2018.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.308744,-78.221475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60160,Tate Solar,PV1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.066109,-78.029612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60161,Eagle Solar,PV1,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.458327,-78.155087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60165,Robin Solar,PV1,2021.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.264418,-78.081389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60178,Cash Solar,PV1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.02818,-77.923306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60179,Daystar Solar,PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.035589,-77.202453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60180,Kathleen Solar,PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.513769,-78.802384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60181,Grove Solar,PV1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.16922,-77.1182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60182,Dulles,DULLE,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.030119,-117.517753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60183,Freeway Springs,FSPRI,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.892614,-118.037564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60184,ADS Renewable Energy-Wolf Creek LLC,GEN1,2011.0,1.4,1.4,1.4,0.5,LFG,Landfill Gas,OP,IC,11.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.7755,-83.4348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.56782857142857 -60184,ADS Renewable Energy-Wolf Creek LLC,GEN2,2011.0,1.4,1.4,1.4,0.5,LFG,Landfill Gas,OP,IC,11.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,32.7755,-83.4348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.56782857142857 -60185,Solverde 1,SOLV1,2016.0,85.0,81.0,78.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9529411764705882,0.9176470588235294,WECC,CISO,CA,34.655694,-118.298166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60186,Antelope DSR 1,DSR1,2016.0,50.0,48.0,46.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.92,WECC,CISO,CA,34.655556,-118.280722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60187,Antelope DSR 2,DSR2,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.686944,-118.311722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60188,Conetoe Solar,CON15,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.825182,-77.457772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60189,Sugar Run Solar,SRS15,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.437752,-76.597825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60190,HMW Minster PV I,MIN01,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,OH,40.390362,-84.401595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60191,"TWE New Bern Solar Project, LLC",FLS1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.154273,-77.13432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60193,Whitethorn Solar LLC,GEN1,2016.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.691,-121.717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60195,South Valley Solar Energy Center,SVSEC,2015.0,10.0,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.99,0.99,WECC,PNM,NM,34.986073,-106.736129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60196,Santa Fe Solar Energy Center,SFSEC,2015.0,9.5,9.3,9.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9789473684210527,0.9789473684210527,WECC,PNM,NM,35.587795,-106.060859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60197,Santolina Solar Energy Center,SANTO,2015.0,10.5,10.5,10.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.029719,-106.855498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60198,Rio Communities Solar Energy Center,RCSEC,2015.0,10.0,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.99,0.99,WECC,PNM,NM,34.582598,-106.682975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60199,"County Home Solar Center, LLC",CHSC1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.263255,-81.508684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60200,"Laurinburg Solar, LLC (Heelstone)",LAUR,2015.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,SERC,DUK,NC,34.707644,-79.29538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60201,CES Cherry Hill Solar,CHNJ,2016.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,39.941853,-75.026208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60207,Hemlock Solar,HEMLK,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.469089,-77.597517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60208,"Long Farm 46 Solar, LLC",PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.467021,-77.617957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60209,HXNAir Solar One,HXNAI,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.348734,-77.631511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60210,Cotton Plains Wind Farm,CPWF,2017.0,50.4,50.4,50.4,0,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.060333,-101.187628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60217,Rocksprings,RKSP,2017.0,149.3,149.3,149.3,0,WND,Onshore Wind Turbine,OP,WT,9.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,29.72753,-100.79431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60218,Frontier Windpower,FC1,2016.0,200.0,200.0,200.0,27,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SPA,OK,36.838884,-97.181015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60219,Strata Roof 1,UNIT1,2013.0,1.0,1.0,0.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,WECC,BANC,CA,38.643527,-121.505506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60220,Zero Waste Energy Development Co LLC,ZWED1,2015.0,0.8,0.8,0.8,0.5,OBG,Other Waste Biomass,OP,IC,2.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4325,-121.95285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.92429906542056 -60220,Zero Waste Energy Development Co LLC,ZWED2,2015.0,0.8,0.8,0.8,0.8,OBG,Other Waste Biomass,OP,IC,2.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.4325,-121.95285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24.92429906542056 -60222,Bristol Plant,A1,2016.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,A2,2016.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,A3,2016.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,A4,2016.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,A5,2016.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,A6,2016.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,C1,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,C2,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,C3,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,C4,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,C5,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60222,Bristol Plant,C6,2015.0,0.3,0.3,0.3,0.1,LFG,Landfill Gas,OP,IC,12.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,TVA,VA,36.60194,-82.143089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.205194560669455 -60223,Equinix San Jose,EQXOO,2015.0,1.1,1.0,1.0,0.1,NG,Other Natural Gas,OP,FC,11.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.241713,-121.781363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60224,Intel Santa Clara,NTL00,2015.0,1.1,1.0,1.0,0.1,NG,Other Natural Gas,OP,FC,1.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9090909090909091,0.9090909090909091,WECC,CISO,CA,37.384745,-121.963808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60225,CMEEC - Bozrah,PV1,2016.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.570584,-72.158607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60226,"Rancho Seco Solar, LLC",GEN01,2016.0,10.8,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.339857,-121.114494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60227,BJ's Wholesale Club Inc Dist Center,PV1,2016.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.098458,-74.825925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60228,Conn Mun Electric Energy Coop,PV1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.538324,-72.122544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60229,Orange County Solar Farm (NY),PV1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,41.404879,-74.359495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60230,Estrella Mountain PV,PV1,2019.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.409803,-112.340297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60231,Genentech-Oceanside Hybrid,BA1,2016.0,2.0,2.0,2.0,1,MWH,Batteries,OP,BA,4.0,2016.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.211095,-117.299593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60231,Genentech-Oceanside Hybrid,PV1,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.211095,-117.299593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60232,Onondaga County- Jamesville,PV1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.986644,-76.064219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60233,RE Garland,BESS1,2021.0,45.0,45.0,45.0,0.1,MWH,Batteries,OP,BA,8.0,2021.0, , ,176.0,44.0,44.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.825267,-118.524989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60233,RE Garland,BESS2,2021.0,43.0,43.0,43.0,0.1,MWH,Batteries,OP,BA,12.0,2021.0, , ,176.0,43.0,43.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.825267,-118.524989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60233,RE Garland,PV2,2016.0,185.1,180.0,180.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9724473257698542,0.9724473257698542,WECC,CISO,CA,34.825267,-118.524989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60234,Belle Haven Diesel Generation Facility,BDG10,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.54864,-75.790823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.620689655172415 -60234,Belle Haven Diesel Generation Facility,BDG9,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.54864,-75.790823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.620689655172415 -60235,Perdue Diesel Generation Facility,PDG5,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.741967,-75.655979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.580508474576272 -60235,Perdue Diesel Generation Facility,PDG6,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.741967,-75.655979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.580508474576272 -60236,Onancock Diesel Generation Facility,ODG7,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.74542,-75.720487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.608163265306123 -60236,Onancock Diesel Generation Facility,ODG8,2002.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,11.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.74542,-75.720487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.608163265306123 -60237,Midway Solar Farm II,MSF2,2017.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.162056,-115.531694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60238,"McDonald Solar Farm, LLC",PV1,2015.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.59458,-87.474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60239,"Pastime Farm, LLC",PV1,2015.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.52086,-87.18155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60240,"Yanceyville Farm 3, LLC",1,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.428608,-79.348886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60241,Union Renewable Energy Facility,00611,2015.0,1.6,1.2,1.3,0.8,LFG,Landfill Gas,OP,IC,1.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.75,0.8125,SERC,DUK,SC,34.61577,-81.818661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.156030479819027 -60241,Union Renewable Energy Facility,00677,2015.0,1.6,1.2,1.3,0.8,LFG,Landfill Gas,OP,IC,1.0,2015.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.75,0.8125,SERC,DUK,SC,34.61577,-81.818661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.156030479819027 -60242,"Algonquin SKIC 10 Solar, LLC",SKI10,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.126111,-119.243361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60243,Ambler,1A,2020.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.08798,-157.856719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.238975545639773 -60243,Ambler,2,1993.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,OP,IC,8.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.08798,-157.856719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.238988645515489 -60243,Ambler,3,1990.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,67.08798,-157.856719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.238975545639773 -60244,Marshall,1,2010.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.878186,-162.085147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.387032824226218 -60244,Marshall,2,2005.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.878186,-162.085147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.387029443174798 -60244,Marshall,3,1994.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,6.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,61.878186,-162.085147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.38704634845625 -60245,New Stuyahok,1,2010.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.448358,-157.325528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.180121850336914 -60245,New Stuyahok,2,2003.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.448358,-157.325528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.180126122215668 -60245,New Stuyahok,3A,2020.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,59.448358,-157.325528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.180126122215668 -60247,Valley View Solar,VVS,2015.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.418786,-104.891944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60248,Skylark,CAREY,2015.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.577889,-104.894792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60249,Silicon Valley Clean Water,BES,2020.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,11.0,2020.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.542619,-122.231119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60249,Silicon Valley Clean Water,CGN,2015.0,1.2,1.2,1.2,0.6,OBG,Other Waste Biomass,OP,IC,3.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.542619,-122.231119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.082893966022262 -60250,Swampy Acres Microgrid,13,2015.0,4.4,4.4,4.4,3.2,DFO,Petroleum Liquids,OP,IC,4.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.77556,-152.48028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60250,Swampy Acres Microgrid,6A,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,6.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.77556,-152.48028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60250,Swampy Acres Microgrid,7A,2002.0,2.0,2.0,2.0,1.5,DFO,Petroleum Liquids,OP,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,57.77556,-152.48028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60251,IMPA Huntingburg Solar Park,SHUNT,2016.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,MISO,IN,38.319623,-86.968074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60252,IMPA Washington Solar Park,SWASH,2016.0,4.0,4.0,3.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,MISO,IN,38.653455,-87.209215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60253,IMPA Anderson Solar Park,SANDE,2017.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IN,40.051556,-85.737129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60254,Owatonna Energy Station,UNIT1,2018.0,9.7,9.7,9.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.085225,-93.262714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.933522607146093 -60254,Owatonna Energy Station,UNIT2,2018.0,9.7,9.7,9.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.085225,-93.262714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.933522607146093 -60254,Owatonna Energy Station,UNIT3,2018.0,9.7,9.7,9.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.085225,-93.262714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.933522607146093 -60254,Owatonna Energy Station,UNIT4,2018.0,9.7,9.7,9.7,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.085225,-93.262714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.933522607146093 -60255,Weymouth Solar Plant,1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.108618,-117.782246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60255,Weymouth Solar Plant,2,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.108618,-117.782246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60256,Bluestem,1,2016.0,198.0,198.0,198.0,0.8,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.552151,-100.587557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60257,Stainback Solar Farm,INV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.395286,-78.328294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60258,Alta Luna,ALPV1,2017.0,28.1,28.1,28.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,32.572022,-107.486458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60259,"Pioneer Wind Park, LLC",PWP1,2016.0,80.0,80.0,80.0,1.7,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,42.728198,-105.866765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60260,Brevig Mission,1,2010.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,65.331716,-166.479506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.034649476228848 -60260,Brevig Mission,2,2010.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,65.331716,-166.479506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.034649476228848 -60260,Brevig Mission,3A,2018.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,65.331716,-166.479506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.034649476228848 -60261,Playa Solar 2,GEN1,2017.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.408,-114.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60262,Prairie Breeze II,GEN1,2015.0,73.4,73.4,73.4,0,WND,Onshore Wind Turbine,OP,WT,10.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.987656,-98.210401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60263,Durham AWTF,GEN1,2015.0,0.8,0.8,0.8,0.4,OBG,Other Waste Biomass,OP,IC,4.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,PGE,OR,45.400524,-122.765822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.539224832499364 -60263,Durham AWTF,GEN2,2015.0,0.8,0.8,0.8,0.4,OBG,Other Waste Biomass,OP,IC,4.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,PGE,OR,45.400524,-122.765822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.539224832499364 -60264,Bacliff,BCGT1,2018.0,71.2,54.0,60.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7584269662921348,0.8426966292134831,TRE,ERCO,TX,29.49233,-94.98483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.436237334051588 -60264,Bacliff,BCGT2,2018.0,71.2,54.0,60.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7584269662921348,0.8426966292134831,TRE,ERCO,TX,29.49233,-94.98483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.844742012421731 -60264,Bacliff,BCGT3,2018.0,71.2,54.0,60.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7584269662921348,0.8426966292134831,TRE,ERCO,TX,29.49233,-94.98483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.551651186001052 -60264,Bacliff,BCGT4,2018.0,71.2,54.0,60.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7584269662921348,0.8426966292134831,TRE,ERCO,TX,29.49233,-94.98483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.886674644914342 -60264,Bacliff,BCGT5,2018.0,71.2,54.0,60.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7584269662921348,0.8426966292134831,TRE,ERCO,TX,29.49233,-94.98483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.17166378524199 -60264,Bacliff,BCGT6,2018.0,71.2,54.0,60.0,54,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7584269662921348,0.8426966292134831,TRE,ERCO,TX,29.49233,-94.98483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.260968200085653 -60265,Junction Road,JUNCT,2016.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.5237,-74.843398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60266,Cedar Branch,CEDAR,2016.0,6.1,6.1,6.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.503337,-74.964482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60267,Sharon Station,SHRN1,2016.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.182623,-74.539003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60270,Blue Cloud Wind Energy LLC,WT1,2018.0,148.4,148.4,148.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,ERCO,TX,34.03821,-102.665242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60274,"CED Westfield Solar, LLC",WFMA,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.175625,-72.755181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60275,Westside Solar Power PV1,WSPV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.219,-119.907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60276,West Groton CHP,G1,2015.0,4.1,3.3,3.8,1.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8048780487804879,0.926829268292683,NPCC,ISNE,MA,42.61343,-71.633767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.132596192429444 -60277,Castor Solar,CASTR,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.211044,-119.387258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60278,Southbridge Solar,SBRDG,2016.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.090932,-72.011672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60279,Antelope Big Sky Ranch,ABSR,2016.0,20.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,WECC,CISO,CA,34.694839,-118.28769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60280,Summer Solar LLC,SUMSL,2016.0,20.0,19.0,19.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,WECC,CISO,CA,34.714703,-118.311006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60281,Central Antelope Dry Ranch B LLC,CADRB,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.705549,-118.301417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60283,SR Mavericks,MVRKS,2016.0,7.8,7.8,7.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.23,-105.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60284,Organ Church Solar,PV1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.525584,-80.451125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60285,Red Horse III,RH3,2016.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.13597,-110.05129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60287,Willard Solar,PV1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.70249,-77.9697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60288,Ajax Solar,PV1,2017.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,34.83091,-79.1194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60290,Jester Solar,PV1,2020.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.36118,-77.8861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60291,Trinity Solar,PV1,2019.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.87025,-79.9282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60293,St. Matthews Solar,PV1,2017.0,10.2,10.2,10.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.6867,-80.7586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60297,Clinton Battery,1,2016.0,10.0,5.0,5.0,0,MWH,Batteries,OP,BA,10.0,2016.0,10,2026,4.1,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.5,0.5,RFC,PJM,OH,39.295883,-83.960782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60298,"Pine Valley Solar Farm, LLC",PV1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.21812,-79.529333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60299,HMV Minster Energy Storage System,MIN02,2016.0,7.0,7.0,7.0,2.8,MWH,Batteries,OS,BA,3.0,2016.0, , ,7.0,7.0,7.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,OH,40.398844,-84.387266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60300,Montana Solar Facility,IMPV1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,TX,31.813061,-106.218892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60301,Holloman Solar Facility,HPV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.921261,-106.072411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60302,Keys Energy Center,10,2018.0,359.6,325.0,299.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.903781979977753,0.8314794215795327,RFC,PJM,MD,38.695519,-76.827785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60302,Keys Energy Center,11,2018.0,235.5,231.0,231.0,74,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9808917197452229,0.9808917197452229,RFC,PJM,MD,38.695519,-76.827785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.779331772659946 -60302,Keys Energy Center,12,2018.0,235.5,231.0,231.0,74,NG,Natural Gas Fired Combined Cycle,OP,CT,7.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9808917197452229,0.9808917197452229,RFC,PJM,MD,38.695519,-76.827785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.826260826413588 -60303,Sumrall II Solar Farm,SUM2,2017.0,52.0,52.0,52.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MS,31.397089,-89.485884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60304,"San Isabel Solar, LLC",SISPV,2016.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.372,-104.843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60306,Sumrall I Solar Farm,SUM1,2017.0,52.0,52.0,57.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,MS,31.403531,-89.49764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60307,"Mesquite Solar 2, LLC",1,2016.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.332777,-112.911388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60308,"Mesquite Solar 3, LLC",1,2016.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.347583,-112.936805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60310,"Portal Ridge Solar B, LLC",GEN01,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.71647,-118.2821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60311,"Portal Ridge Solar C, LLC",GEN01,2017.0,11.4,11.4,11.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.71412,-118.2739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60312,"Howell Midland Farm, LLC",1,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.225669,-80.543086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60313,"Augustus Farm, LLC",1,2015.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.599685,-77.639109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60314,Prairie Breeze III,GEN1,2016.0,35.8,35.8,35.8,0,WND,Onshore Wind Turbine,OP,WT,4.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.987656,-98.210401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60315,Midway Solar Farm III,MSF3,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.154761,-115.544918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60316,Scott Solar Farm,1,2016.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.523,-77.934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60317,"Grady Wind Energy Center, LLC",1,2019.0,220.5,220.5,220.5,200,WND,Onshore Wind Turbine,OP,WT,8.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.734142,-103.092227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60318,Woodland Solar Farm,1,2016.0,19.0,7.6,, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,,SERC,PJM,VA,36.89,-76.611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60319,Whitehouse Solar Farm,1,2016.0,20.0,8.0,, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,,SERC,PJM,VA,38.023,-77.972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60320,Jeffco Community Solar Gardens LLC,SSCO1,2016.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.859564,-105.149694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60324,"Willow Spring Solar, LLC",GEN01,2019.0,107.9,107.9,107.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.826697,-118.335211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60326,O'Brien Wind,OBWF,2016.0,61.9,61.9,61.9,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.200421,-95.624313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60326,O'Brien Wind,OBWF2,2016.0,108.7,108.7,108.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.200421,-95.624313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60326,O'Brien Wind,OBWF3,2016.0,79.7,79.7,79.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.200421,-95.624313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60327,East Amwell,AMWEL,2016.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.443266,-74.876373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60328,Schofield Generating Station,S1,2018.0,8.4,8.4,8.4,2.5,OBL,Other Waste Biomass,OP,IC,6.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.4785,-158.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.434060982819831 -60328,Schofield Generating Station,S2,2018.0,8.4,8.4,8.4,2.5,OBL,Other Waste Biomass,OP,IC,6.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.4785,-158.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.434060982819831 -60328,Schofield Generating Station,S3,2018.0,8.4,8.4,8.4,2.5,OBL,Other Waste Biomass,OP,IC,6.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.4785,-158.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.434060982819831 -60328,Schofield Generating Station,S4,2018.0,8.4,8.4,8.4,2.5,OBL,Other Waste Biomass,OP,IC,6.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.4785,-158.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.434060982819831 -60328,Schofield Generating Station,S5,2018.0,8.4,8.4,8.4,2.5,OBL,Other Waste Biomass,OP,IC,6.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.4785,-158.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.434060982819831 -60328,Schofield Generating Station,S6,2018.0,8.4,8.4,8.4,2.5,OBL,Other Waste Biomass,OP,IC,6.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Liquids ,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,HI,21.4785,-158.0581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.434060982819831 -60329,"Ringer Hill Wind Farm, LLC",RINGR,2016.0,39.9,38.3,38.3,1.2,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9598997493734336,0.9598997493734336,RFC,PJM,PA,39.744722,-79.188056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60330,"Grove Solar Center, LLC",GSC1,2016.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,43.936687,-117.381214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60331,"Hyline Solar Center, LLC",HSC1,2016.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,44.151256,-117.000071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60332,"Open Range Solar Center, LLC",ORSC1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,43.796766,-117.065311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60333,"Railroad Solar Center, LLC",RSC1,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,43.998019,-117.10118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60334,"Thunderegg Solar Center, LLC",TSC1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,43.93097,-116.987626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60335,"Vale Air Solar Center, LLC",VASC1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,43.965031,-117.25806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60336,Midway Solar Farm 1,MSF1,2018.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.176627,-115.572788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60337,Providence Solar,PROV,2017.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.578333,-89.047779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60338,Electra Wind Farm,EWF,2016.0,230.0,230.0,230.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.102943,-99.118746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60339,Horse Creek Wind Farm,HCWF,2016.0,230.0,230.0,230.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.35,-99.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60340,Albany Green Energy,1,2017.0,54.5,49.5,49.5,25,WDS,Wood/Wood Waste Biomass,OP,ST,7.0,2017.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.908256880733945,0.908256880733945,SERC,SOCO,GA,31.5559,-84.1103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60341,Wal-Mart Truth or Consequences PV,WMTOC,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,33.1526,-107.249831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60342,Ida Grove Wind,IGWF,2016.0,61.1,60.0,60.0,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9819967266775778,0.9819967266775778,MRO,MISO,IA,42.355721,-95.42038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60342,Ida Grove Wind,IGWF2,2016.0,119.6,119.6,119.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.355721,-95.42038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60342,Ida Grove Wind,IGWF3,2016.0,92.8,92.8,92.8,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.355721,-95.42038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60342,Ida Grove Wind,IGWF4,2016.0,27.6,27.6,27.6,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.355721,-95.42038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60344,Sudbury Solar,SUD,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.833,-73.192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60345,Okeechobee Clean Energy Center,1A,2019.0,376.6,376.6,376.6, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.634167,-80.791111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60345,Okeechobee Clean Energy Center,1B,2019.0,376.6,376.6,376.6, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.634167,-80.791111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60345,Okeechobee Clean Energy Center,1C,2019.0,376.6,376.6,376.6, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,FPL,FL,27.634167,-80.791111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60345,Okeechobee Clean Energy Center,1ST,2019.0,593.3,593.3,593.3, ,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,FPL,FL,27.634167,-80.791111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60346,Demille Solar Farm,1,2017.0,28.4,28.4,28.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.040011,-83.333247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60347,Turrill Solar Farm,1,2017.0,19.6,19.6,19.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.034739,-83.308886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60348,O'Shea Solar Farm,1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.378001,-83.200064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60349,"Hill AFB LFG Facility, Bldg #737",LFGG1,2005.0,0.6,0.6,0.6,0.4,LFG,Landfill Gas,OP,IC,1.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,41.12902,-111.964147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.051943839893244 -60349,"Hill AFB LFG Facility, Bldg #737",LFGG2,2005.0,0.7,0.7,0.7,0.6,LFG,Landfill Gas,OP,IC,1.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,41.12902,-111.964147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.05194180376383 -60349,"Hill AFB LFG Facility, Bldg #737",LFGG3,2008.0,1.0,0.9,1.0,0.8,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9,1.0,WECC,PACE,UT,41.12902,-111.964147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.051940770909447 -60350,"Solar Las Vegas MB 2, LLC",LVMB2,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.087426,-115.175381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60351,Bison Solar LLC,BSPV1,2016.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.863809,-105.0111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60352,"Boulder Solar Power, LLC",BSP,2016.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.348,-114.97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60353,Cecil County CCVT HS,CCVT,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.651002,-75.808331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60354,Brady II Wind Energy Center,BWEC2,2016.0,150.0,150.0,150.0,37,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,46.611515,-102.78821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60355,Brady Wind Energy Center,BWEC1,2016.0,150.0,150.0,150.0,37,WND,Onshore Wind Turbine,OP,WT,11.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,46.646471,-102.765089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60356,South Field Energy,SFCT1,2021.0,344.4,344.4,344.4,250,NG,Natural Gas Fired Combined Cycle,OP,CT,8.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,OH,40.63534,-80.678245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60356,South Field Energy,SFCT2,2021.0,344.4,344.4,344.4,250,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,RFC,PJM,OH,40.63534,-80.678245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60356,South Field Energy,SFST1,2021.0,260.8,260.8,260.8,100,NG,Natural Gas Fired Combined Cycle,OP,CA,8.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,OH,40.63534,-80.678245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60356,South Field Energy,SFST2,2021.0,260.8,260.8,260.8,100,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,RFC,PJM,OH,40.63534,-80.678245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60357,Lackawanna Energy Center,GEN1,2018.0,499.5,454.0,489.0,454,NG,Natural Gas Fired Combined Cycle,OP,CS,3.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9089089089089089,0.978978978978979,RFC,PJM,PA,41.471389,-75.544167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60357,Lackawanna Energy Center,GEN2,2018.0,499.5,454.0,489.0,454,NG,Natural Gas Fired Combined Cycle,OP,CS,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9089089089089089,0.978978978978979,RFC,PJM,PA,41.471389,-75.544167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60357,Lackawanna Energy Center,GEN3,2018.0,499.5,454.0,489.0,454,NG,Natural Gas Fired Combined Cycle,OP,CS,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9089089089089089,0.978978978978979,RFC,PJM,PA,41.471389,-75.544167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60359,Gastonia Solar Center,60916,2018.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.229033,-81.189078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60361,Wortham Solar Farm,INV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.352489,-78.376344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60363,"White Farm Solar, LLC",WFSPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.34764,-77.22244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60364,White Street Renewables,WSLFG,2019.0,1.6,1.6,1.6,0,LFG,Landfill Gas,OP,IC,6.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,36.10447,-79.723622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.676088924655467 -60364,White Street Renewables,WSPV,2020.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.10447,-79.723622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60365,Vulcraft Solar,VULC,2013.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.005874,-76.61935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60366,Old Settler Wind,OSWF,2017.0,151.2,151.2,151.2,0,WND,Onshore Wind Turbine,OP,WT,4.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.060333,-101.187628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60367,"Snow Camp Solar, LLC",SCSPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.86267,-79.42346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60368,Hummel Station LLC,CTG1,2018.0,244.8,223.8,243.1,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9142156862745098,0.9930555555555555,RFC,PJM,PA,40.839014,-76.825517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60368,Hummel Station LLC,CTG2,2018.0,244.8,219.9,231.6,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8982843137254902,0.946078431372549,RFC,PJM,PA,40.839014,-76.825517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60368,Hummel Station LLC,CTG3,2018.0,244.8,209.6,232.0,105,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8562091503267973,0.9477124183006536,RFC,PJM,PA,40.839014,-76.825517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60368,Hummel Station LLC,STG,2018.0,460.0,419.5,402.8,105,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9119565217391304,0.8756521739130435,RFC,PJM,PA,40.839014,-76.825517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60369,Battleboro Farm,BFPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.05864,-77.76077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60370,"Flint Hill Solar, LLC",FHSPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.40274,-79.55308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60371,Legoland Solar,1,2016.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.986163,-81.690172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60372,Lamesa Solar,LSPV1,2017.0,102.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9803921568627451,0.9803921568627451,TRE,ERCO,TX,32.715611,-101.926522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60375,ILR Landfill,ILR1,2016.0,6.6,6.6,6.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.470539,-74.383616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60376,"Clean Energy Future-Lordstown, LLC",CTG1,2018.0,311.0,267.3,308.1,121,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8594855305466238,0.9906752411575563,RFC,PJM,OH,41.14889,-80.85162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60376,"Clean Energy Future-Lordstown, LLC",CTG2,2018.0,311.0,267.7,308.3,121,NG,Natural Gas Fired Combined Cycle,OP,CT,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8607717041800642,0.9913183279742765,RFC,PJM,OH,41.14889,-80.85162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60376,"Clean Energy Future-Lordstown, LLC",STG1,2018.0,340.0,321.6,328.5,136,NG,Natural Gas Fired Combined Cycle,OP,CA,10.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9458823529411765,0.9661764705882353,RFC,PJM,OH,41.14889,-80.85162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60378,NHA at Mansfield NJ,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.76,-74.935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60380,"Shoe Creek Solar, LLC",SCSPV,2017.0,65.0,65.0,65.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.84492,-79.38472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60381,Sulphur Springs,SSSP,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,32.0628,-109.919283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60383,Monroe Solar Facility,MONPV,2017.0,54.6,54.6,54.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.929945,-80.625615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60384,Hertford Solar Farm,HERT,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.13026,-76.490915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60385,Santa Rita Jail Fuel Cell,MB-18,2016.0,1.4,1.4,1.4,0.6,NG,Other Natural Gas,OP,FC,12.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.719166,-121.886944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60386,RE Garland A,PV1,2016.0,20.2,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9900990099009901,0.9900990099009901,WECC,CISO,CA,34.821453,-118.497406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60388,Morgantown,GEMT,2016.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,5.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.174563,-75.913688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.613038173261286 -60389,RE Barren Ridge 1,REBR1,2016.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.20473,-118.06875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60390,Beech Ridge Energy Storage,BRES,2015.0,31.5,31.5,31.5,0,MWH,Batteries,OP,BA,10.0,2015.0, , ,12.5,31.5,31.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,WV,38.0878,-80.4925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60391,SJA Solar LLC-Solterra Monastery CSG,SJAPV,2016.0,14.7,14.7,14.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,ISNE,MA,42.283439,-72.008468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60392,Pfizer Groton Fuel Cell,MM-24,2016.0,2.8,2.8,2.8,0.6,NG,Other Natural Gas,OP,FC,10.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.333889,-72.071111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60392,Pfizer Groton Fuel Cell,MM-25,2016.0,2.8,2.8,2.8,0.6,NG,Other Natural Gas,OP,FC,10.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.333889,-72.071111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60393,Warbler Holdings,PV1,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.318824,-81.623934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60394,Tamworth Holdings,PV1,2019.0,5.0,5.0,5.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.745617,-78.421185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60395,MC1 Solar,MC1PV,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.8748,-77.1397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60396,"St. Pauls Solar 1, LLC",FLS1,2017.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.7716,-78.9836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60397,"Kennedy Solar, LLC",FLS1,2017.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.012282,-78.092185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60398,Innovative Solar 65,FLS1,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.7587,-79.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60399,"Lincoln Solar, LLC (NC)",FLS1,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.379505,-81.817582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60400,"Exum Farm Solar, LLC",FLS1,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.370441,-77.4549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60401,"Bizzell Church Solar 1, LLC",BCSPV,2015.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.549401,-78.179859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60402,"CB Bladen Solar, LLC",CBPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.822869,-78.624278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60403,"Currin Solar, LLC",CSPV,2015.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.289625,-78.633283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60404,Pisgah Mountain Wind,PISGA,2016.0,9.1,9.1,9.1,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.777337,-68.523419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60405,"Chaves Solar, LLC",CSPV,2016.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NM,33.45,-104.456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60406,"Roswell Solar, LLC",RSPV,2016.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NM,33.45293,-104.461074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60408,"Nash 97 Solar, LLC",97PV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.84927,-78.21152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60409,"South Winston Farm, LLC",SWFPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.0288,-80.302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60410,"Sullivan Solar, LLC",SULPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IN,39.13199,-87.41383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60411,"Coventry Photovoltaic, LLC",COVEN,2014.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.910152,-72.21975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60412,Munro Valley Solar,MUN,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.2647,-117.9955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60413,Bonnybrooke PV,AZPV1,2016.0,50.0,50.0,41.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8200000000000001,WECC,SRP,AZ,33.053,-111.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60414,Bethel Wind Farm LLC,GEN1,2017.0,276.0,276.0,276.0,2.3,WND,Onshore Wind Turbine,OP,WT,1.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,34.575311,-102.474698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60415,"Hardison Farm Solar, LLC",HFSPV,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.83079,-77.02194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60416,"Maxton Solar, LLC",MSPV,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.71472,-79.31463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60417,Modlin Solar Farm,MSFPV,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.85028,-77.11023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60418,Calligan Creek Hydroelectric Project,CC6MW,2018.0,6.0,6.0,6.0,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,2018.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.6008,-121.68861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60419,Don A Campbell 2 Geothermal,DAC2G,2015.0,25.0,16.2,22.5,16.2,GEO,Geothermal,OP,BT,9.0,2015.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6479999999999999,0.9,WECC,NEVP,NV,38.835836,-118.325339,Wild Rose 2,GEO,True,6.0,16.0,-1.0,10.22,10.22,0.0,0.0,1.0,3.098312,25.0,-1.76143218685249,146.78580337925078,-7.058149846139727e-06,-1.761176283841051,146.78357478356807,6.679002842038434,#TRUE#,#2015-09-18#,#2050-12-31#,Existing,SPPC,SW_NVE,5.0,25.0,12.95,NV,Geo,Binary,#FALSE#,5,25, -60421,Veyo Heat Recovery Project,WHR1,2016.0,9.5,8.4,8.6,2,WH,All Other,OP,ST,5.0,2016.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8842105263157896,0.9052631578947368,WECC,PACE,UT,37.348,-113.765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60422,Morgan's Corner,1,2015.0,20.0,19.8,19.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.99,0.99,SERC,PJM,NC,36.421064,-76.364244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60423,Fairhaven C CSG,FCPV,2017.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.66303,-70.86323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60424,West Bridgewater AB CSG,WBAB,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0253,-71.0336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60425,Skidmore College,SO049,2014.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.093682,-73.81132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60426,RCWD PV Project,RCWD,2016.0,4.1,3.9,2.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.951219512195122,0.6585365853658538,WECC,CISO,CA,33.5226,-117.1815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60427,CoServ Community Solar Station,CSS1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.2706,-96.979168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60428,CA Dept of Public Health at Richmond,PV1,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.92,-122.344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60429,Tides Lane Farm,PV1,2019.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.06936,-78.298796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60431,Tompkins Cortland Community College,TC3,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.5025,-76.2865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60432,Three Peaks Power,TPP,2016.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.827082,-113.137082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60435,Crane Solar Facility,XXXXX,2017.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.8164,-86.8842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60436,East Pecos Solar,1,2017.0,118.5,118.5,118.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.000883,-102.281744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60437,Bernards Solar,BERNS,2016.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.70266,-74.58158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60438,Whitakers Farm (Fisher Rd),1,2016.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.115542,-77.725147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60439,Sellers Farm Solar,PV1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.881973,-79.665351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60440,McGrigor Farm Solar,PV1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.019771,-78.350088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60441,Salem Smart Power Center,SSPC,2013.0,5.0,5.0,5.0,0.1,MWH,Batteries,SB,BA,8.0,2013.0, , ,5.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PGE,OR,44.922,-123.0183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60442,Carver MA 1 Community Solar,CMA1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.942796,-70.76114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60443,Wareham MA 1 Community Solar,WMA1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.80167,-70.70463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60444,Glacier Battery Storage,GLA,2016.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,9.0,2016.0, , ,4.4,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PSEI,WA,48.88804,-121.9462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60445,ID Solar,INV1,2016.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,43.444,-116.333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60446,E&B Resources,PVEB,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.534584,-119.060029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60447,Presbyterian Senior Living Service,PSLS,2013.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.4476,-76.516324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60448,Valdosta,VALD,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.81012,-83.225958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60449,Pavant Solar II LLC,PSII,2016.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,39.1625,-112.343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60450,Corcoran,PVCR,2014.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.102307,-119.566516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60451,Brookside,PVBR,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.987579,-71.583963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60452,Calverton,CALV,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.921086,-72.743701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60453,"Cummins, Inc",CUMM,2015.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.08124,-79.36125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60454,Houghton,HOUGH,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.426731,-78.156589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60455,Oneida - South,ONS,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.166353,-75.386866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60456,Oneida - West,ONW,2015.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.169617,-75.404866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60457,Athens Energy,1,2016.0,8.5,7.1,7.1,7.1,WDS,Wood/Wood Waste Biomass,OP,OT,10.0,2016.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,Other,0.8352941176470587,0.8352941176470587,NPCC,ISNE,ME,44.945514,-69.660705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.1587065793792 -60458,Hardwick-Athol & Eagle Hill,HAEH,2015.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.308391,-72.18958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60459,Port Comfort Power LLC,PC1,2017.0,60.5,43.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107438016528926,0.7603305785123967,TRE,ERCO,TX,28.64807,-96.54621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60459,Port Comfort Power LLC,PC2,2017.0,60.5,43.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107438016528926,0.7603305785123967,TRE,ERCO,TX,28.64807,-96.54621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60460,Chamon Power LLC,CH1,2017.0,60.5,43.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107438016528926,0.7603305785123967,TRE,ERCO,TX,29.883214,-95.111345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60460,Chamon Power LLC,CH2,2017.0,60.5,43.0,46.0,20,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7107438016528926,0.7603305785123967,TRE,ERCO,TX,29.883214,-95.111345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60461,The Clorox Company,PV1,2016.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.472128,-76.201342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60462,Onondaga County- Clearwater,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.429317,-76.515717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60463,Greene County Meter #1,PV1,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,42.294823,-74.00076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60464,Tenaska Westmoreland Generating Station,CTG1,2018.0,370.0,288.0,328.5,160,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7783783783783784,0.8878378378378379,RFC,PJM,PA,40.175249,-79.696665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60464,Tenaska Westmoreland Generating Station,CTG2,2018.0,370.0,288.0,328.5,160,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7783783783783784,0.8878378378378379,RFC,PJM,PA,40.175249,-79.696665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60464,Tenaska Westmoreland Generating Station,STG1,2018.0,394.0,371.0,375.0,90,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9416243654822335,0.9517766497461929,RFC,PJM,PA,40.175249,-79.696665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60465,Chesapeake College,PV1,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.953389,-76.083244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60467,Red Rock,PV1,2017.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,32.551026,-111.289232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60468,Friendswood Energy,GT-1,2018.0,121.5,117.0,119.0,25,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.962962962962963,0.9794238683127572,TRE,ERCO,TX,29.647267,-95.451516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60469,Solar Glynn,INV1,2016.0,18.0,18.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.25,-81.433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60470,Paulding Wind Farm III,1,2016.0,100.8,100.8,100.8,28,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.121,-84.751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60471,Green River Wind Farm,GRNRV,2019.0,194.3,194.3,194.3,2.2,WND,Onshore Wind Turbine,OP,WT,11.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.620264,-89.557033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60472,CPS 1 Community Solar,CPS1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.377966,-98.26922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60473,Westport MA 1 Community Solar,WPMA1,2016.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.621068,-71.056963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60474,"Bayshore Solar B, LLC",BSHRB,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.678305,-118.302649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60475,"Bayshore Solar C, LLC",BSHRC,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.681338,-118.314087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60476,Westport MA 2 Community Solar,WPMA2,2016.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.621068,-71.056963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60477,Bethlehem - East,BE,2016.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.539006,-73.824295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60478,Bethlehem - West,BW,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.539006,-73.824295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60480,"Germantown Solar, LLC",PV1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.24634,-80.25463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60481,"Bayshore Solar A, LLC",BSHRA,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.667817,-118.298089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60484,"Williamston West Farm, LLC",1,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.836544,-77.108044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60485,"Longboat Solar, LLC",PV1,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.541,-117.061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60486,Greenfield Wind - MT,1,2016.0,25.0,25.0,25.0,1,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,47.723,-111.963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60487,"River Road Solar, LLC",PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.351,-76.842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60489,Hamilton Solar-Crosswicks,PV1,2011.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.168958,-74.630095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60489,Hamilton Solar-Crosswicks,PV2,2011.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.168958,-74.630095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60490,Redwood 4 Solar Farm,RW4SF,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.314198,-118.81192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60491,Springbok 3 Solar Farm Hybrid,SB3BS,2019.0,1.5,1.5,1.5,0.1,MWH,Batteries,OP,BA,7.0,2019.0, , ,1.5,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,LDWP,CA,35.171153,-118.001652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60491,Springbok 3 Solar Farm Hybrid,SB3SF,2019.0,90.0,90.0,90.0,1,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,35.171153,-118.001652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60492,Rail Trail,PV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.243134,-73.363849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60493,Rising Paper,1,2016.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.228622,-73.344463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60494,Hampden,1,2015.0,3.2,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.044663,-72.438752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60495,Little Bay,1,2014.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.799201,-71.436048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60496,MEBA,1,2014.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.772903,-76.138912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60497,SR Skylark B,SKY B,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.579472,-104.895675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60498,Shirley Water,1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.554584,-71.62348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60500,Westside Avenue,1,2011.0,1.0,0.9,0.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.6,RFC,PJM,NJ,40.814092,-74.021325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60501,Hartz Way,1,2010.0,1.0,0.9,0.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.6,RFC,PJM,NJ,40.782829,-74.072782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60502,"Tyler Bluff Wind Project, LLC",GEN1,2016.0,125.6,125.0,125.0,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9952229299363058,0.9952229299363058,TRE,ERCO,TX,33.703851,-97.372009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60503,Crowned Ridge Wind Energy Center,CTTL1,2019.0,200.1,200.1,200.1,36.8,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,SD,45.154947,-96.836839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60504,Blazing Star Wind Farm 1,BLZG1,2020.0,200.0,200.0,200.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.544137,-96.36824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60505,Crocker Wind Farm,CRCKR,2019.0,200.0,200.0,200.0,2.5,WND,Onshore Wind Turbine,OP,WT,11.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,SD,45.051544,-97.826423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60506,ETT Presidio NaS Battery,BOB,2010.0,4.0,4.0,4.0,0,MWH,Batteries,OP,BA,3.0,2010.0,3,2023,4.0,4.0,4.0,NAB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.566263,-104.35535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60507,Broome County,NORTH,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.104731,-75.93073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60507,Broome County,SOUTH,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.104731,-75.93073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60509,Valley Center,PV1,2016.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.2503,-117.0226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60510,Two Mile Desert Project,PV1,2019.0,16.2,16.2,16.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.22,-76.46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60511,Clear Spring Ranch PV Project,PV1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,38.602102,-104.694688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60512,Greenville,SO073,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.045801,-84.714434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60513,Richland,SO076,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.088982,-84.663529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60514,Seminole,PV1,2014.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.065112,-84.931702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60515,Vidalia Water Treatment Plant,SO048,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.050322,-83.394659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60516,NLP Granger,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.2704,-117.0588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60517,Hancock Creek Hydroelectric Project,HY1,2018.0,6.0,6.0,6.0,0.5,WAT,Conventional Hydroelectric,OP,HY,2.0,2018.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PSEI,WA,47.5722,-121.6897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60518,Stafford Hill Solar Hybrid,BA1,2015.0,2.0,2.0,2.0,0.1,MWH,Batteries,OP,BA,9.0,2015.0, , ,3.4,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,VT,43.619444,-72.950277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60518,Stafford Hill Solar Hybrid,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.619444,-72.950277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60519,Albany Solar,PV1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.641268,-94.599251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60520,Annandale Solar,PV1,2016.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.247009,-94.106932,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60521,Atwater Solar,PV1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.140869,-94.769733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60522,Chisago Solar,PV1,2016.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.452479,-92.901952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60523,Dodge Center Solar,PV1,2016.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.026007,-92.881554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60524,Eastwood Solar,PV1,2016.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.154526,-93.916561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60525,Hastings Solar,PV1,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.759275,-92.824883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60526,Lake Emily Solar,PV1,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.320364,-93.903166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60527,Lake Pulaski Solar,PV1,2016.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.195854,-93.812137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60528,Lawrence Creek Solar,PV1,2016.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.401289,-92.693726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60529,Montrose Solar,PV1,2016.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.055628,-93.922807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60530,Paynesville Solar,PV1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.392905,-94.721226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60531,Pine Island Solar,PV1,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.206624,-92.663649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60532,Waseca Solar,PV1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.092414,-93.530984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60533,West Faribault Solar,PV1,2016.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.274932,-93.310634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60534,West Waconia Solar,PV1,2016.0,8.5,8.5,8.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.789894,-93.901292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60535,"Saluda Solar, LLC",PV1,2016.0,6.8,6.8,6.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.96839,-81.7829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60536,UA Central Utility Plant,TRBN1,2016.0,5.6,5.2,5.2,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9285714285714286,0.9285714285714286,SERC,SWPP,AR,36.066336,-94.172254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.285777592409154 -60537,Limerick Road Solar Farm,8027,2013.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.368889,-73.247083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60538,"Langdon Solar Farm, LLC",1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.447278,-78.413481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60539,Innovative Solar 42,IS042,2017.0,71.0,71.0,71.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.847627,-78.877359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60540,Innovative Solar 31,IS031,2017.0,35.0,35.0,35.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.539425,-78.755394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60541,Wind GEM,WT1,2015.0,1.9,1.9,1.9,0,WND,Onshore Wind Turbine,OP,WT,9.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.469985,-94.339357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60542,158th Fighter Wing Solar Farm,900,2011.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.477705,-73.153412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60544,Tri-County Solar Facility,PV1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.308113,-83.389601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60545,"Grant Plains Wind, LLC",WT,2016.0,147.2,147.0,147.0,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9986413043478262,0.9986413043478262,MRO,SWPP,OK,36.9708,-97.7053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60546,KIUC Kapaia PV and BA Storage Project Hybrid,BA1,2017.0,13.0,11.0,11.0,11,MWH,Batteries,OP,BA,5.0,2017.0, , ,52.0,11.0,11.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.8461538461538461,0.8461538461538461,non-conus,non-conus,HI,21.997272,-159.379194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60546,KIUC Kapaia PV and BA Storage Project Hybrid,PV1,2017.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.997272,-159.379194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60547,GMP Solar - Richmond,PV1,2016.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.42691,-73.008489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60548,"NorWest Energy 2, LLC",PV1,2016.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.06803,-121.22838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60549,"ZV Solar 3, LLC",ZV3,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,34.816182,-79.200218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60550,GRP Franklin Renewable Energy Facility,GEN,2019.0,58.0,58.0,58.0,31,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2019.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,34.376111,-83.330556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.893961114824016 -60551,Big Level Wind,BLW01,2019.0,90.0,90.0,90.0,90,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,PA,41.869326,-77.665939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60552,Hattiesburg Solar Farm,HATTI,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,MS,31.275828,-89.301156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60553,Southerland Farm Solar,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.265611,-78.367806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60554,Hazlehurst II,STHLV,2016.0,52.5,52.5,52.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.819444,-82.602222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60555,Selmer I,SELMI,2016.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.140556,-88.551111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60556,Selmer II,SELM2,2016.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.166111,-88.646667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60558,Solar Blythe 2,PV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.618678,-114.696182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60559,Marquette Energy Center,MEC1,2017.0,17.1,16.7,16.7,6.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9766081871345028,0.9766081871345028,RFC,MISO,MI,46.56597,-87.437245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478269752587032 -60559,Marquette Energy Center,MEC2,2017.0,17.1,16.7,16.7,6.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9766081871345028,0.9766081871345028,RFC,MISO,MI,46.56597,-87.437245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478269752587032 -60559,Marquette Energy Center,MEC3,2017.0,17.1,16.7,16.7,6.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9766081871345028,0.9766081871345028,RFC,MISO,MI,46.56597,-87.437245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478269752587032 -60560,Millington Solar Farm,MILL,2018.0,53.0,53.0,53.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.351533,-89.854725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60562,GMP Solar - Panton Hybrid,GMPBP,2018.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,6.0,2018.0, , ,4.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,VT,44.085795,-73.195385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60562,GMP Solar - Panton Hybrid,GMPSP,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.085795,-73.195385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60563,Flywheel Energy Storage System Microgrid,FESS,2015.0,2.0,2.0,2.0,0,MWH,Flywheels,OP,FW,9.0,2015.0, , ,2.0,2.0,2.0,nan,other,other,Energy Storage,"Energy Storage, Flywheel ",1.0,1.0,non-conus,non-conus,AK,57.780114,-152.443783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60564,Westside Energy Station,WES1,2018.0,9.3,9.3,9.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.039023,-92.551866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.589361012001296 -60564,Westside Energy Station,WES2,2018.0,9.3,9.3,9.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.039023,-92.551866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.589361012001296 -60564,Westside Energy Station,WES3,2018.0,9.3,9.3,9.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.039023,-92.551866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.589361012001296 -60564,Westside Energy Station,WES4,2018.0,9.3,9.3,9.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.039023,-92.551866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.589361012001296 -60564,Westside Energy Station,WES5,2018.0,9.3,9.3,9.3,4,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.039023,-92.551866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.589361012001296 -60565,Borrego Springs Energy Storage,SES1,2012.0,0.5,0.5,0.5,0.1,MWH,Batteries,OP,BA,12.0,2012.0, , ,1.5,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.27011,-116.3496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60565,Borrego Springs Energy Storage,SES2,2014.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,2.0,2014.0, , ,3.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.27011,-116.3496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60566,Pala Energy Storage Yard,SES2,2015.0,1.0,1.0,1.0,0.1,MWH,Batteries,OS,BA,8.0,2015.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.35651,-117.113599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60567,Ortega Highway Energy Storage,SES1,2015.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,5.0,2015.0, , ,3.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.562061,-117.543777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60567,Ortega Highway Energy Storage,SES2,2015.0,1.0,1.0,1.0,0.1,MWH,Batteries,OA,BA,10.0,2015.0, , ,3.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.562061,-117.543777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60568,Canyon Crest Academy,SES,2014.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,10.0,2014.0, , ,3.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.95907,-117.191622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60569,El Cajon Energy Storage,SES,2017.0,7.5,7.5,7.5,1,MWH,Batteries,OP,BA,2.0,2017.0, , ,30.0,7.5,7.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.8115,-117.050546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60570,Escondido Energy Storage,SES,2017.0,30.0,30.0,30.0,1,MWH,Batteries,OP,BA,3.0,2017.0, , ,120.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.124446,-117.114274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60571,North City - Landfill Gas Engine North,NCEP,2013.0,1.6,1.4,1.5,1.2,LFG,Landfill Gas,OS,IC,11.0,2013.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.9375,WECC,CISO,CA,32.877822,-117.197788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.10050011907597 -60573,HQC Rock River Solar Power Gen Station,PV1,2016.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.578831,-89.033021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60574,"Great Western Wind Energy, LLC",GEN1,2016.0,225.0,225.0,225.0,225,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.166503,-99.596006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60575,Wadesboro Farm 2,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.023406,-80.093192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60576,Wadesboro Farm 3,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.969356,-80.051028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60577,Hector Farm,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.376236,-79.909719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60578,Kojak Farm,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.79915,-78.102178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60579,Meriwether Farm,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.288911,-78.604589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60580,Soluga Farms III,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.219272,-78.673331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60581,Upton County Solar,UCTX,2017.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.241808,-102.29027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60582,CoTAL Solar Farm,PV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TAL,FL,30.37926,-84.353938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60583,LaFayette Solar Farm,PV1,2017.0,79.2,79.2,79.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,AL,32.876313,-85.38821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60584,Oceana Solar,01,2017.0,17.6,7.0,, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.3977272727272727,,SERC,PJM,VA,36.789753,-76.051419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60585,Mount Vernon Solar,MV01,2015.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,SOCO,GA,33.8388,-83.638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60586,Pleasant Valley Solar,PV01,2016.0,2.5,2.5,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,SOCO,GA,33.7368,-83.6971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60587,Kelly Creek Wind Project,WND1,2016.0,184.0,184.0,184.0,184,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,40.9675,-88.1975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60589,CPV Fairview Energy Center,GEN1,2019.0,372.0,341.8,348.7,115,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9188172043010753,0.9373655913978495,RFC,PJM,PA,40.412,-78.855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60589,CPV Fairview Energy Center,GEN2,2019.0,372.0,342.9,346.6,115,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9217741935483871,0.9317204301075269,RFC,PJM,PA,40.412,-78.855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60589,CPV Fairview Energy Center,GEN3,2019.0,453.0,387.2,398.9,115,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8547461368653422,0.8805739514348785,RFC,PJM,PA,40.412,-78.855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60590,"Golden Fields Solar I, LLC",RS1,2016.0,54.0,54.0,54.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.839012,-118.386843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60591,"Solar Star California, XLI, LLC",RS1,2016.0,54.0,54.0,54.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.839012,-118.386843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60592,Rush Springs Wind,WT1,2016.0,249.9,249.9,249.9,7.4,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.682883,-97.829283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60593,UI RCP Woodbridge FC,WBFC,2016.0,2.8,2.2,2.2,2.2,NG,Other Natural Gas,OP,FC,12.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.7857142857142858,0.7857142857142858,NPCC,ISNE,CT,41.358035,-73.007805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60594,Voyager Wind I,VYGR1,2019.0,131.1,131.1,131.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.046061,-118.28273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60597,Wayne Solar III LLC,WYN3,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.324377,-77.871225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60598,Wayne Solar II LLC,WYN2,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.31556,-78.07948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60599,Duplin Solar I LLC (160 Houston Lane),DPLN,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.960083,-77.980388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60600,Old Pageland Monroe Road Solar Farm,PV1,2015.0,5.3,5.3,5.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.95233,-80.48191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60601,Bay Branch Solar,BBSOL,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.4745,-77.1191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60602,Wayne Solar I LLC,WYN1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.221083,-78.019026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60603,Jacobson 5 MW Solar,PV1,2017.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,35.304528,-114.01183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60604,Wye Mills VNEM CSG,PV1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.94037,-76.045658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60605,CMEEC - Rogers Rd Solar,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.538324,-72.122544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60607,CMEEC - Polaris Park Solar Hybrid,BA1,2017.0,0.8,0.8,0.8,0.8,MWH,Batteries,OP,BA,8.0,2017.0, , ,3.3,0.8,0.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,CT,41.381256,-72.076886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60607,CMEEC - Polaris Park Solar Hybrid,PV1,2017.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.381256,-72.076886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60608,CMEEC - Navy NE Trident,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.39546,-72.079191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60609,CMEEC - Norwich Stott St Solar Hybrid,BA1,2016.0,0.8,0.8,0.8,0.8,MWH,Batteries,OP,BA,12.0,2016.0, , ,3.0,0.8,0.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,CT,41.576946,-72.104609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60609,CMEEC - Norwich Stott St Solar Hybrid,PV1,2016.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.576946,-72.104609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60610,St. Mary Clean Energy Center,1,2019.0,50.9,41.3,48.6,10.2,WH,All Other,OP,ST,8.0,2019.0, , ,,,,,other,other,Waste heat not directly attributed to a fuel source (undetermined),"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.8113948919449901,0.9548133595284873,SERC,MISO,LA,29.68455,-91.470619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60611,Summit Farms Solar,PV1,2017.0,62.4,62.4,62.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.4765,-76.136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60612,Morin Solar 2013 LLC,MORIN,2013.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.166995,-72.192896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60613,Brookfield Solar 2013 LLC,NBKFD,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.25609,-72.067877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60614,WYM 1250 Palmer LLC,PALMR,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.151092,-72.26974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60615,Southern Sky Renew Energy Berkley LLC,BRKLY,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.83777,-71.091296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60616,BC Solar,BCSLR,2016.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.175,-120.3598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60619,Rush Creek Wind,GEN1,2018.0,600.0,582.3,582.3,1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9704999999999999,0.9704999999999999,WECC,PSCO,CO,39.172111,-103.845358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60620,"Ninnescah Wind Energy, LLC",NSW,2016.0,208.3,208.3,208.3,1.7,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.586714,-98.579264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60621,Worcester Landfill,WL,2017.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.219,-71.791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60622,DG AMP Solar Bowling Green,AMPBG,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.396,-83.582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60623,Brantley Solar,PV1,2018.0,50.2,50.2,50.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.890485,-78.155153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60624,Fox Creek Solar,PV1,2018.0,50.2,50.2,50.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.126912,-78.273106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60625,Renew Canal 1 CSG LLC,CANAL,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.766987,-70.521172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60627,BRE NC Solar 3,BEAM3,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.383,-78.612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60629,"Perkins Solar, LLC",PV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.43741,-78.97198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60631,Empire Solar,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.66438,-93.108809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60632,Blue Lake Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.79642,-93.429593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60633,"Gainey Solar, LLC",PV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.499,-78.653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60634,"Auten Road Farm, LLC",PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.30498,-81.13735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60635,"Creech Solar 2, LLC",PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.72196,-78.60434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60636,"Bunn Level Farm, LLC",1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.308639,-78.774331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60637,Cork Oak Solar,NC160,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.371,-77.571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60638,Sunflower Solar,NC160,2017.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.395,-77.593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60639,Kingman Wind,KMW1,2016.0,107.4,100.0,100.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9310986964618249,0.9310986964618249,MRO,SWPP,KS,37.586714,-98.579264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60639,Kingman Wind,KMW2,2016.0,107.4,100.0,100.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9310986964618249,0.9310986964618249,MRO,SWPP,KS,37.586714,-98.579264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60640,"Solar Mule, LLC",COLBY,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.557725,-69.671364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60641,Henrietta D Energy Storage LLC,HDES1,2021.0,10.0,10.0,10.0,0.1,MWH,Batteries,OP,BA,11.0,2021.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.228872,-119.904686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60644,"West Brookfield Solar, LLC",WBRK,2016.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222798,-72.129525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60645,"Javelina Wind Energy II, LLC",WJ21,2016.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.44,-98.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60647,Shakopee Energy Park,SQA01,2017.0,9.3,9.3,9.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.783611,-93.481111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.816997221423781 -60647,Shakopee Energy Park,SQA02,2017.0,9.3,9.3,9.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.783611,-93.481111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.816997221423781 -60647,Shakopee Energy Park,SQA03,2017.0,9.3,9.3,9.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.783611,-93.481111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.816997221423781 -60647,Shakopee Energy Park,SQA04,2017.0,9.3,9.3,9.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.783611,-93.481111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.816997221423781 -60647,Shakopee Energy Park,SQA05,2017.0,9.3,9.3,9.3,3,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,MN,44.783611,-93.481111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.816997221423781 -60649,Rabbit Hill Energy Storage Project,1,2020.0,9.9,9.9,9.9,0.1,MWH,Batteries,OP,BA,4.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.587828,-97.687023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60651,"North Nash Farm, LLC",1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.070336,-78.038319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60652,Dickinson Solar Array,PV1,2016.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.11444,-93.813799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60653,Belchertown,PV1,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.259548,-72.400429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60654,Townsite Solar Project Hybrid,GEN01,2021.0,180.0,160.0,130.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8888888888888888,0.7222222222222222,WECC,WALC,NV,35.937336,-114.883999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60654,Townsite Solar Project Hybrid,GEN02,2021.0,90.0,90.0,90.0,0,MWH,Batteries,OP,BA,12.0,2021.0, , ,360.0,90.0,90.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,WALC,NV,35.937336,-114.883999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60655,Rock Creek Wind Project,WT1,2017.0,300.0,300.0,300.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,MO,40.4,-95.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60656,McHenry Battery Storage,MCH1,2016.0,19.8,19.8,19.8,19.8,MWH,Batteries,OP,BA,2.0,2016.0, , ,7.8,19.8,19.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,PJM,IL,42.331411,-88.274352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60657,"Salt Fork Wind Project, LLC",GEN1,2016.0,174.0,174.0,174.0,2,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.18172,-100.934408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60658,Moffett Solar Project,PV1,2017.0,71.4,71.4,71.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.620653,-80.995994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60659,Ridgeland Solar Project,PV1,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.465,-80.961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60660,Willey Battery Utility,WBU,2016.0,6.0,6.0,6.0,0,MWH,Batteries,OP,BA,1.0,2016.0, , ,2.0,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,OH,39.287747,-84.680313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60661,Mira Loma Energy Storage Facility,013A,2016.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,12.0,2016.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.006125,-117.560934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60661,Mira Loma Energy Storage Facility,013B,2016.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,12.0,2016.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.006125,-117.560934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60662,Archdiocese of Baltimore J,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.445,-76.217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60663,Archdiocese of Baltimore L,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.445,-76.217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60664,Baltimore City B,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60665,Baltimore City D,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60666,Baltimore City F,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60667,Baltimore City G,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60668,City of Havre De Grace C,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60669,Sod Run WTP A,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60672,Osborn Wind Energy,GEN1,2016.0,200.9,195.8,195.8,37,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9746142359382778,0.9746142359382778,MRO,SWPP,MO,39.747699,-94.473482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60673,"Nixa Solar, LLC",NIXA,2017.0,7.9,7.9,7.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,37.043903,-93.338969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60677,Tannery Road Landfill,TRSP,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,NYIS,NY,43.239004,-75.534588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60678,San Joaquin Solar,SJ1A,2018.0,19.8,18.5,18.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9343434343434343,0.9343434343434343,WECC,CISO,CA,36.527,-120.149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60678,San Joaquin Solar,SJ1B,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.527,-120.149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60679,Fort Rucker Solar Array,1,2017.0,10.6,10.6,10.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,AL,31.331148,-85.73019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60680,ANAD Solar Array,1,2017.0,7.4,7.4,7.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,AL,33.626728,-85.969481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60681,"Annapolis Solar Park, LLC",ASP12,2018.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.992144,-76.573773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60682,Pearl Solar,PEARL,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.98784,-102.26831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60683,TRS Fuel Cell,MMH1,2019.0,3.7,3.7,3.7,0.6,NG,Other Natural Gas,OS,FC,2.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.3907,-73.4354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60684,Amphitheater High School Solar,AHS1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.269,-110.975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60685,Canyon Del Oro High School Solar,CDO1,2016.0,1.4,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7142857142857144,0.7142857142857144,WECC,TEPC,AZ,32.374,-110.974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60685,Canyon Del Oro High School Solar,CDO2,2016.0,1.4,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.07142857142857151,0.07142857142857151,WECC,TEPC,AZ,32.374,-110.974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60685,Canyon Del Oro High School Solar,CDO3,2016.0,1.4,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.1428571428571428,0.1428571428571428,WECC,TEPC,AZ,32.374,-110.974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60685,Canyon Del Oro High School Solar,CDO4,2016.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.374,-110.974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60686,Pierre Solar,PIERS,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,SD,44.388753,-100.307043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60687,"Cimarron Bend Wind Project I, LLC",1,2016.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.355,-99.991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60688,"Cimarron Bend Wind Project II, LLC",1,2017.0,200.0,200.0,200.0,1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.355,-99.991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60689,Western Plains Wind Farm,1,2017.0,280.6,280.6,280.6,0,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.854801,-99.67981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60690,"Blue Summit Storage, LLC",WBSS,2017.0,30.0,30.0,30.0,0,MWH,Batteries,OP,BA,8.0,2017.0, , ,12.6,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,34.299,-99.399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60691,Tanager Holdings,PV1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.7527,-79.784627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60694,WakeSun LLC,MLC27,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.472889,-94.406417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60694,WakeSun LLC,MLC28,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.472889,-94.406417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60694,WakeSun LLC,MLC29,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.472889,-94.406417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60695,BentonSun LLC,MLC17,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.766167,-93.857944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60695,BentonSun LLC,MLC18,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.766167,-93.857944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60695,BentonSun LLC,MLC19,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.766167,-93.857944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60695,BentonSun LLC,MLC20,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.766167,-93.857944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60695,BentonSun LLC,MLC21,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.766167,-93.857944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60696,Four Peaks Camino Real,1,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,4.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,EPE,NM,31.811078,-106.59326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.197129988478057 -60696,Four Peaks Camino Real,2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,4.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,EPE,NM,31.811078,-106.59326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.197129988478057 -60698,Stanton Energy Reliability Center Hybrid,BESS1,2020.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,8.0,2020.0, , ,4.5,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.806801,-117.985758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60698,Stanton Energy Reliability Center Hybrid,BESS2,2020.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,8.0,2020.0, , ,4.5,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.806801,-117.985758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60698,Stanton Energy Reliability Center Hybrid,GT1,2020.0,70.5,70.5,70.5,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.806801,-117.985758,Stanton 1,GT LM_LM6000 Hybrid,False,1.0,1.0,-1.0,45.0,45.0,1497.902,213.816,1.0,0.45,50.0,5.426975056011309,93.56852963136586,0.28744855619618204,-14.20352723682632,408.1729981671992,8.491828871304348,#TRUE#,#2020-05-20#,#2050-12-31#,Under Construction,CISC,CA_CISO,20.88,50.0,0.0,CA,NG,Areo,#FALSE#,20.88,50, -60698,Stanton Energy Reliability Center Hybrid,GT2,2020.0,70.5,70.5,70.5,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,33.806801,-117.985758,Stanton_2,GT LM_LM6000 Hybrid,False,1.0,1.0,-1.0,45.0,45.0,1497.902,213.816,1.0,0.45,50.0,5.426975056011309,93.56852963136586,0.28744855619618204,-14.20352723682632,408.1729981671992,8.491828871304348,#TRUE#,#2020-05-20#,#2050-12-31#,Under Construction,CISC,CA_CISO,20.88,50.0,0.0,CA,NG,Areo,#FALSE#,20.88,50, -60699,DESI-1 Battery Energy Storage Facility,DESI1,2016.0,2.4,2.4,2.4,0,MWH,Batteries,OP,BA,12.0,2016.0, , ,3.9,2.4,2.4,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.799248,-117.873371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60700,Wind Colebrook South,WCS,2015.0,5.0,5.0,5.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,CT,41.961067,-73.140779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60701,JED Solid Waste Mgmt Renewable Energy,00603,2017.0,1.6,1.4,1.4, ,LFG,Landfill Gas,OP,IC,3.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,FPC,FL,28.063777,-81.097236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.925149198799451 -60701,JED Solid Waste Mgmt Renewable Energy,00696,2017.0,1.6,1.4,1.4, ,LFG,Landfill Gas,OP,IC,3.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,FPC,FL,28.063777,-81.097236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.925149198799451 -60701,JED Solid Waste Mgmt Renewable Energy,00697,2017.0,1.6,1.4,1.4, ,LFG,Landfill Gas,OP,IC,3.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,FPC,FL,28.063777,-81.097236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.925149198799451 -60701,JED Solid Waste Mgmt Renewable Energy,00698,2017.0,1.6,1.4,1.4, ,LFG,Landfill Gas,OP,IC,3.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,FPC,FL,28.063777,-81.097236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.925149198799451 -60701,JED Solid Waste Mgmt Renewable Energy,00699,2017.0,1.6,1.4,1.4, ,LFG,Landfill Gas,OP,IC,3.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,FPC,FL,28.063777,-81.097236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.925149198799451 -60701,JED Solid Waste Mgmt Renewable Energy,00700,2017.0,1.6,1.4,1.4, ,LFG,Landfill Gas,OP,IC,3.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.8749999999999999,0.8749999999999999,SERC,FPC,FL,28.063777,-81.097236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.925149198799451 -60702,Rincon Solar I,PV1,2016.0,18.4,18.3,18.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9945652173913044,0.9945652173913044,SERC,SOCO,GA,32.292879,-81.284401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60703,"Green City Recovery, LLC",1,2016.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,1.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.345278,-84.548889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.20762711864407 -60703,"Green City Recovery, LLC",2,2019.0,1.0,1.0,1.0,0.5,LFG,Landfill Gas,OP,IC,7.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,LGEE,KY,38.345278,-84.548889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.20762711864407 -60704,Trenton Solar Farm (MO),TSF1,2015.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,40.1155,-93.6122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60705,Rolla Solar Farm (MO),RSF1,2016.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,37.9853,-91.7169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60706,Waynesville Solar Farm (MO),WSF1,2016.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,37.8041,-92.2535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60707,Marshall Solar Farm (MO),MMSF1,2016.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,39.0948,-93.2104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60708,Havre de Grace II - E at Perryman,PV1,2016.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.436,-76.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60709,IFF Hazlet,GRND,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0,12,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.43819,-74.160147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60710,Stone Hill Solar CSG,PV1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.059104,-71.089157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60711,Chisago Community Solar,CCS1,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.413357,-92.682957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60711,Chisago Community Solar,CCS2,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.413357,-92.682957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60711,Chisago Community Solar,CCS3,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.413357,-92.682957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60711,Chisago Community Solar,CCS4,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.413357,-92.682957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60712,Ursa Community Solar,UCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.671581,-93.082555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60712,Ursa Community Solar,UCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.671581,-93.082555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60712,Ursa Community Solar,UCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.671581,-93.082555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60712,Ursa Community Solar,UCS4,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.671581,-93.082555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60712,Ursa Community Solar,UCS5,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.671581,-93.082555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60713,Sunrise Community Solar,SCS1,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.474994,-92.891092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60713,Sunrise Community Solar,SCS2,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.474994,-92.891092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60713,Sunrise Community Solar,SCS3,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.474994,-92.891092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60713,Sunrise Community Solar,SCS4,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.474994,-92.891092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60713,Sunrise Community Solar,SCS5,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.474994,-92.891092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60714,Rosemount Community Solar,RCS1,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.72241,-93.022909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60714,Rosemount Community Solar,RCS2,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.72241,-93.022909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60714,Rosemount Community Solar,RCS3,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.72241,-93.022909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60714,Rosemount Community Solar,RCS4,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.72241,-93.022909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60714,Rosemount Community Solar,RCS5,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.72241,-93.022909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60715,Paynesville Community Solar,PCS1,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.402543,-94.715472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60715,Paynesville Community Solar,PCS2,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.402543,-94.715472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60715,Paynesville Community Solar,PCS3,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.402543,-94.715472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60715,Paynesville Community Solar,PCS4,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.402543,-94.715472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60715,Paynesville Community Solar,PCS5,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.402543,-94.715472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60716,Orion Community Solar,OCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.587899,-94.401439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60716,Orion Community Solar,OCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.587899,-94.401439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60716,Orion Community Solar,OCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.587899,-94.401439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60717,Northfield Community Solar,NCS1,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.475433,-93.198308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60717,Northfield Community Solar,NCS2,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.475433,-93.198308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60717,Northfield Community Solar,NCS3,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.475433,-93.198308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60717,Northfield Community Solar,NCS4,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.475433,-93.198308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60717,Northfield Community Solar,NCS5,2016.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.475433,-93.198308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60720,Weld 1 Community Solar Array,WELD1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.232146,-104.791865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60721,Green Cow Power,ENG1,2015.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,4.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.536735,-85.927204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.686065290553804 -60721,Green Cow Power,ENG2,2015.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,4.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.536735,-85.927204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.686065290553804 -60721,Green Cow Power,ENG3,2015.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,4.0,2015.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.536735,-85.927204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.686065290553804 -60721,Green Cow Power,ENG4,2021.0,1.3,1.3,1.3,0.5,OBG,Other Waste Biomass,OP,IC,1.0,2021.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,41.536735,-85.927204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.686067236547414 -60722,Logan 1 Community Solar Array,LOGA1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.609968,-103.145084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60723,Conejos 1 Community Solar Array,CONEJ,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.195886,-105.982424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60724,Arapahoe 3 Community Solar Array,ARAP3,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.638358,-104.674249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60725,Xcel Adams 2 Community Solar Array,ADCO2,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.784937,-104.583391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60726,Xcel Adams 1 Community Solar Array,ADCO1,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.765479,-104.588631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60727,East Orange Solar,PV1,2015.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.747582,-74.335762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60728,Howell Solar,PV1,2016.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.147009,-74.167516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60729,Raritan Solar,PV1,2016.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.464221,-74.857879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60730,Bridgewater Solar CSG,PV1,2015.0,1.3,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.964116,-70.971931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60730,Bridgewater Solar CSG,PV2,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.964116,-70.971931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60731,Holliston Solar CSG,PV1,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.169641,-71.468223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60732,Frankford Solar,PV1,2012.0,8.2,8.2,8.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.166566,-74.701645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60733,Brickyard Solar,PV1,2015.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.189425,-74.154483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60734,Bordentown Solar,PV1,2015.0,6.8,6.8,6.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.0389,-74.7766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60735,Longview Solar,PV1,2016.0,13.6,13.6,13.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.394728,-75.672715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60736,Wilmington Solar,PV1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.546281,-71.175281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60737,Church Hill,PV1,2016.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.100947,-75.959681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60738,Fall River Solar CSG,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.751347,-71.114536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60739,DSM Solar,PV1,2014.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.843699,-75.065155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60740,Pittsgrove Solar,PV1,2014.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.539042,-75.179342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60741,Old Midville Solar,OMD,2016.0,19.7,19.7,19.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.820676,-81.98176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60742,Argonne National Laboratory CHP,CHP,2016.0,6.3,4.7,7.1,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.746031746031746,1.0,RFC,PJM,IL,41.716534,-87.970608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.785728305672475 -60743,"Rattlesnake Power, LLC",WT1,2018.0,160.0,160.0,160.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.360331,-99.551356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60744,SEPV Imperial Dixieland West,SESI2,2016.0,3.0,2.9,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9666666666666667,0.7999999999999999,WECC,IID,CA,32.79411,-115.779317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60745,SEPV Imperial Dixieland East,SESI1,2016.0,2.0,1.9,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.8,WECC,IID,CA,32.792038,-115.773448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60746,Silvi Gibraltar Rock,08502,2016.0,2.5,3.0,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.450916,-74.717077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60747,Seabrook Village,07724,2016.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.234177,-74.087225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60748,Simcoe Solar,IDSS,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,43.288439,-115.955371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60750,Osawatomie Power Plant South Sub,CAT4,2017.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,3.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.495623,-94.95255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.789988946786673 -60750,Osawatomie Power Plant South Sub,CAT5,2017.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,3.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.495623,-94.95255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.789988946786673 -60750,Osawatomie Power Plant South Sub,CAT6,2017.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,OP,IC,3.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.495623,-94.95255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.789988946786673 -60751,Osawatomie Power Plant North Sub,CAT1,2018.0,2.0,2.0,2.0, ,DFO,Petroleum Liquids,OP,IC,5.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.501309,-94.956918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.90945042956498 -60751,Osawatomie Power Plant North Sub,CAT2,2018.0,2.0,2.0,2.0, ,DFO,Petroleum Liquids,OP,IC,5.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.501309,-94.956918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.90945042956498 -60751,Osawatomie Power Plant North Sub,CAT3,2018.0,2.0,2.0,2.0, ,DFO,Petroleum Liquids,OP,IC,5.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.501309,-94.956918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.90945042956498 -60752,Gloucester Community College Solar,PV1,2014.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.780789,-75.122887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60753,Shirley Landfill,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.54171,-71.67636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60754,DDR Shoppers World,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.300745,-71.396228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60755,Spartan,PV1,2017.0,8.3,8.3,8.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.047769,-74.616461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60756,Meadow Solar,PV1,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.230095,-71.133341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60757,Cedarville CSG,PV1,2017.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.802697,-70.549809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60757,Cedarville CSG,PV2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.802697,-70.549809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60757,Cedarville CSG,PV3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.802697,-70.549809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60759,Freeze Solar,PV1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0,1,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.376292,-74.527849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60760,PPA Grand,PE101,2016.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,12.0,2016.0, , ,8.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.691,-117.833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60761,"Roper Farm, LLC",1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.187475,-81.440717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60762,Pfizer Peapack Solar,07934,2016.0,6.2,6.2,6.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.711882,-74.663434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60763,Holland Solar,PV1,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.599743,-75.108622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60764,Victory Solar LLC,PV1,2016.0,12.8,12.8,12.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.795,-104.433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60765,L'Oreal Franklin,PV1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.487906,-74.521366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60766,L'Oreal Monmouth,PV1,2013.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.400273,-74.504689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60768,Gila River Power Block 2,CTG3,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,SRP,AZ,32.975,-112.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.384002468342999 -60768,Gila River Power Block 2,CTG4,2003.0,174.0,164.0,184.0,70,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9425287356321839,1.0,WECC,SRP,AZ,32.975,-112.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.088631084150304 -60768,Gila River Power Block 2,ST10,2003.0,271.0,242.0,249.0,70,NG,Natural Gas Fired Combined Cycle,OP,CA,7.0,2003.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8929889298892989,0.9188191881918819,WECC,SRP,AZ,32.975,-112.694444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60769,Lower Cape May HS,PV1,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,38.976718,-74.906513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60771,Timber Creek HS,PV1,2013.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.760172,-75.014791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60772,Adams Ave MS and HS,PVHS,2012.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.411372,-74.530865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60772,Adams Ave MS and HS,PVMS,2011.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.411372,-74.530865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60774,Phantom Solar,GEN1,2017.0,15.4,15.4,15.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.114983,-97.845111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60775,Deerfield CSG Solar,PV1,2017.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.56288,-72.589186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60776,Community Foodbank of NJ,FDBNK,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.697259,-74.212235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60777,"American Kings Solar, LLC",GEN01,2020.0,128.0,128.0,128.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.24,-119.898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60778,"Hew Fulton Farm, LLC",1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.784039,-79.474542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60779,"McGoogan Farm, LLC",1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.888736,-79.062708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60781,Royal Wine Corp Solar Power Plant,PV1,2011.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.66362,-74.100182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60782,"Barnhill Road Solar, LLC",1,2016.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.269175,-76.299469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60783,"Leggett Solar, LLC",1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.058,-77.623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60784,Jersey Holdings,PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.564307,-79.037483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60785,Tungsten Mountain,OEC2,2022.0,25.5,17.0,25.5,5,GEO,Geothermal,OP,BT,4.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,NEVP,NV,39.667002,-117.693658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60785,Tungsten Mountain,TMSOL,2019.0,7.3,7.3,3.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.4931506849315068,WECC,NEVP,NV,39.667002,-117.693658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60785,Tungsten Mountain,UNIT1,2017.0,37.0,24.4,37.0,5,GEO,Geothermal,OP,BT,12.0,2017.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6594594594594594,1.0,WECC,NEVP,NV,39.667002,-117.693658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60787,"Williamston Speight Solar, LLC",SPGHT,2016.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.887545,-77.164201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60788,Suwannee Solar Facility,XXXXX,2017.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,30.376254,-83.174114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60789,Bluebell Solar,UNIT1,2018.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.87,-100.828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60790,"PVN Milliken, LLC",PV,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0,7,2047,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.038433,-117.565802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60791,SunAnza,ANZA1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.555267,-116.639647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60791,SunAnza,ANZA2,2020.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.555267,-116.639647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60792,"Republic Services Renewable Energy, LLC",GT1,2012.0,6.0,3.3,3.6,3.2,LFG,Landfill Gas,OP,GT,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.55,0.6000000000000001,WECC,NEVP,NV,36.35867,-114.87483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.811342475029626 -60792,"Republic Services Renewable Energy, LLC",GT2,2012.0,6.0,3.3,3.6,3.2,LFG,Landfill Gas,OP,GT,3.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Combustion (Gas) Turbine,0.55,0.6000000000000001,WECC,NEVP,NV,36.35867,-114.87483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.811342475029626 -60795,Eichtens Community Solar,SO228,2016.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.382662,-92.772538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60796,Red Wing Community Solar,SO234,2016.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.53509,-92.516083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60797,Lake Forest Hospital Central Energy Plant,GEN1,1996.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.25416,-87.864282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.106870229007633 -60797,Lake Forest Hospital Central Energy Plant,GEN2,1996.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.25416,-87.864282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.106870229007633 -60797,Lake Forest Hospital Central Energy Plant,GEN3,1996.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.25416,-87.864282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.106870229007633 -60797,Lake Forest Hospital Central Energy Plant,GEN4,1996.0,0.8,0.8,0.8,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,IL,42.25416,-87.864282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.106870229007633 -60798,South Atlantic Services Solar Farm I,PV1,2013.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.290189,-77.975668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60799,"Iron Horse Solar 4, LLC",PV1,2017.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.580047,-71.260325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60800,Catawba Solar LLC,PV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.61,-80.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60801,"CEC Solar #1117, LLC",PUEB2,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.284425,-104.523951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60802,ACCC Mays Landing,PV1,2013.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2013.0,12,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.460566,-74.68093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60804,"Gemini Technologies Services, Inc. Solar",DBGAT,2013.0,1.3,1.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.923076923076923,0.15384615384615385,RFC,PJM,NJ,40.848445,-74.467582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60805,Beaver Run,BRUN1,2015.0,7.4,7.4,7.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.152955,-74.638077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60806,North Bergen Solar,PV1,2016.0,1.6,1.7,1.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6875,RFC,PJM,NJ,40.818,-74.017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60808,US Foods Solar,USFDS,2012.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.534414,-74.275153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60809,"Summit Water Nexus Mt. Holly, LLC Solar",MHWWT,2013.0,1.0,1.0,0.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.30000000000000004,RFC,PJM,NJ,39.987281,-74.801807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60810,Sabert Solar,SABER,2011.0,1.8,2.1,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.16666666666666674,RFC,PJM,NJ,40.475477,-74.320933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60813,Cloverdale Solar Center,ECA02,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.769581,-123.020724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60815,Hampshire College Hybrid,BA1,2017.0,0.5,0.5,0.5,0.5,MWH,Batteries,OP,BA,5.0,2017.0, , ,0.5,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.37686,-72.46914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60815,Hampshire College Hybrid,BA2,2017.0,0.5,0.5,0.5,0.5,MWH,Batteries,OP,BA,12.0,2017.0, , ,0.5,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.37686,-72.46914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60815,Hampshire College Hybrid,PV1,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.37686,-72.46914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60815,Hampshire College Hybrid,PV2,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.37686,-72.46914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60816,Town of Lexington Solar,PV1,2017.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.469135,-71.25546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60817,Sullivan County - Adult Care Solar,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.7966,-74.708077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60818,Oswego County - Fulton Solar,PV1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.342437,-76.34325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60819,Jefferson-Lewis BOCES Solar,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.970958,-75.969805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60820,Montgomery County Correctional Facility,PV1,2017.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.237945,-77.293217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60821,Weber State University - Davis Campus PV,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,UT,41.098957,-111.982167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60822,Intel - Ocotillo Campus Solar,PV1,2017.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.243261,-111.892354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60822,Intel - Ocotillo Campus Solar,PV2,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.243261,-111.892354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60823,South Sioux City Solar,PV1,2016.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,42.45847,-96.439688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60824,Valley Sanitary District WTP Solar,PV1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.708661,-116.198885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60825,Colgreen North Shore Solar Farm,CNS1,2018.0,74.8,74.8,74.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.540124,-115.974771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60827,"Sun Streams, LLC",GEN01,2020.0,160.0,160.0,160.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.34884,-112.8348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60830,Webster Holdco Solar CSG,WEBST,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.529703,-93.410622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60831,Orbit Energy RI,1,2017.0,3.2,3.2,3.2,1.2,OBG,Other Waste Biomass,OP,IC,7.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,RI,41.8054,-71.514166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.331423895253682 -60832,Farmington Holdco Solar,FARMI,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.623117,-93.134002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60833,Dodge Holdco Solar CSG,DODGE,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.022374,-92.756972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60834,Hwy 14 Holdco Solar CSG,HWY14,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.021848,-92.592192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60835,Pine Island Solar CSG,PINEI,2017.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.220122,-92.654324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60836,Big Lake Holdco Solar CSG,BLAKE,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.334575,-93.775577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60837,Forest Lake Solar CSG,FORES,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.253488,-92.89397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60838,Wabasha Holdco Solar CSG,WABAS,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.36714,-92.01928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60839,"Goya Foods, Inc- Jersey City Solar",PV1,2015.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.760069,-74.065394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60840,"Goya Foods, Inc- Secaucus Solar",PV1,2016.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.77312,-74.077397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60841,Prudential 55 Livingston Roseland Solar,PV1,2013.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.814586,-74.297098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60842,Prudential 80 Livingston Roseland Solar,PV1,2013.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.815363,-74.304989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60843,River Terminal Development Solar,RTD1,2006.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2006.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7278,-74.1142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60843,River Terminal Development Solar,RTD2,2009.0,0.6,0.6,0.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7278,-74.1142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60843,River Terminal Development Solar,RTD3,2011.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7278,-74.1142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60843,River Terminal Development Solar,RTD4,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7278,-74.1142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60843,River Terminal Development Solar,RTD5,2016.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7278,-74.1142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60843,River Terminal Development Solar,RTD6,2020.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7278,-74.1142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60844,Genentech Vacaville Meter #1,PV1,2017.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.390756,-121.94777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60844,Genentech Vacaville Meter #1,PV2,2017.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.390756,-121.94777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60846,US GSA - Sacramento,PV1,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.601354,-121.397929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60847,Garrett County - DPU Treatment Plant,PV1,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.505187,-79.392991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60848,Temple Solar Arrays,51599,2011.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.423484,-75.925225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60849,Emmitsburg Solar Arrays,87353,2014.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.69373,-77.314427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60851,Curtis Hill Solar CSG,PV1,2016.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,NPCC,ISNE,MA,42.175,-71.986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60852,Depot Hill Solar CSG,PV1,2016.0,2.0,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.95,NPCC,ISNE,MA,42.153,-71.988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60853,SR Houston,HOUST,2016.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,MS,33.926666,-88.997563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60854,Bird Machine Solar Farm,BRDMA,2017.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.109564,-71.266743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60855,Iron Horse Solar I CSG,DOW,2016.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.582855,-71.246389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60856,Astra Wind Farm,ASTRA,2017.0,163.0,163.0,163.0,1.4,WND,Onshore Wind Turbine,OP,WT,5.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.769544,-102.052422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60857,NES Rutgers Solar,LKWD1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.070879,-74.161153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60858,126 Grove Solar LLC,PV1,2012.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.076119,-71.422707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60860,VEC Alburgh Array,PV1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.96234,-73.274146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60861,Dept of General Services -FTB,PV1,2017.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.565,-121.343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60863,Cooperative Solar One,PV1,2017.0,8.5,8.5,8.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,KY,38.027241,-84.254726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60864,"Kokomo Solar 1, LLC",PV1,2016.0,5.4,5.4,5.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,40.473,-86.146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60865,Equity Industrial Turbines,WT1,2012.0,4.0,4.0,4.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.625649,-70.656489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60866,"Bashaw Solar CSG 1, LLC",4MID,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.789327,-70.880032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60867,Kearsarge Southwick LLC,SOU,2015.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.01627,-72.775239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60868,Timothy Lake Powerhouse,1,2018.0,1.2,1.1,1.1,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,2018.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9166666666666667,0.9166666666666667,WECC,PGE,OR,45.370546,-121.756527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60869,"Solar Star California, XLIV, LLC",PB1,2016.0,9.5,9.5,9.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.511889,-117.922819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60873,Prairie Wind Farm,PWE,2018.0,168.0,169.0,169.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.4369,-92.703817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60874,GMP Solar - Hartford,GMPSH,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.632074,-72.418566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60875,GMP Solar - Williston,GMPSW,2016.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.465485,-73.103241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60876,Eastern Iowa Solar,EIS1,2016.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,41.596959,-91.036295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60877,GMP Solar - Williamstown,GMPSN,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.136051,-72.510509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60878,Sutton Solar CSG,54508,2016.0,1.9,1.9,1.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8421052631578948,NPCC,ISNE,MA,42.102447,-71.697711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60879,Nexamp Peak CSG,02731,2015.0,2.0,1.7,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.85,0.6,NPCC,ISNE,MA,42.562091,-73.287065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60880,Stafford MS Ground Mount Community Solar,MS1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.964,-72.309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60880,Stafford MS Ground Mount Community Solar,MS2,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.964,-72.309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60881,Bernhardt Furniture Solar Farm,BERN4,2015.0,1.1,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9090909090909091,0.7272727272727273,SERC,DUK,NC,35.84995,-81.540861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60882,Carl Friedrich Gauss Solar,GAUSS,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.345842,-77.633477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60883,"Deerfield Wind Energy, LLC",WT1,2017.0,41.6,41.6,41.6,1,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.941851,-82.898675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60883,"Deerfield Wind Energy, LLC",WT2,2017.0,74.5,74.5,74.5,1,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.941851,-82.898675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60883,"Deerfield Wind Energy, LLC",WT3,2017.0,32.9,32.9,32.9,1,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.941851,-82.898675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60885,"Boulder Solar II, LLC",BSII,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.85,-114.944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60886,Pavant Solar III,PSIII,2016.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,39.154474,-112.359849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60887,Sauk DPC Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.59591,-90.3226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60888,Lafayette DPC Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.88782,-91.3524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60889,Conrath DPC Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.36614,-91.0482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60890,Warren DPC Solar,PV1,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.95963,-92.5182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60891,Liberty Pole DPC Solar,PV1,2017.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.49412,-90.9071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60892,Downsville DPC Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.81423,-91.8841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60893,Mt. Hope DPC Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.97498,-90.8318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60894,Medford DPC Solar,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.16305,-90.3729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60895,Whistling Winds DPC Solar,PV1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.9721,-90.0719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60901,Willow Springs Wind Farm,WSPWF,2017.0,250.0,250.0,250.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.345366,-99.624257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60902,Dermott Wind,DERM,2017.0,253.0,253.0,253.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.863769,-100.975128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60903,Salem Harbor Power Development LP,1,2018.0,158.4,337.8,352.6,140,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,MA,42.525486,-70.878239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.638381851697275 -60903,Salem Harbor Power Development LP,2,2018.0,158.4,337.2,357.8,140,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,NPCC,ISNE,MA,42.525486,-70.878239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.977307802019224 -60903,Salem Harbor Power Development LP,3,2018.0,240.7,,, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,NPCC,ISNE,MA,42.525486,-70.878239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60903,Salem Harbor Power Development LP,4,2018.0,240.7,,, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2018.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,,,NPCC,ISNE,MA,42.525486,-70.878239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60904,Time Warner Cable - Knowles,PV1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.337435,-77.375323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60905,"Oliver Wind III, LLC",WT1,2017.0,99.3,99.3,99.3,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.9571,-101.1681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60906,Mt. Tom Solar Project Hybrid,BA1,2019.0,3.1,3.1,3.1,0,MWH,Batteries,OP,BA,3.0,2019.0, , ,6.1,2.0,3.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.2686,-72.603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60906,Mt. Tom Solar Project Hybrid,PV1,2017.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.2686,-72.603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60908,Northampton Landfill Solar PV,62380,2017.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.293717,-72.714011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60909,Hartford Landfill Solar EGF,PV1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.7915,-72.6509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60911,Green Energy Machine,GRN,2016.0,1.7,1.7,1.7,0,WND,Onshore Wind Turbine,OP,WT,6.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.373,-94.754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60912,Cold River Road Solar,PV1,2016.0,2.3,2.3,2.3,0,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.5857,-72.952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60913,Ohio Northern University Solar Site,PV1,2016.0,2.0,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.85,0.85,RFC,PJM,OH,40.759622,-83.8391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60913,Ohio Northern University Solar Site,PV2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.759622,-83.8391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60914,Westmont 300B,W5328,2016.0,3.0,2.3,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7666666666666666,0.5,WECC,LDWP,CA,33.766067,-118.284733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60915,Correctional Solar LLC,PV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.471464,-76.844612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60916,"Sussex Drive, LLC",PV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.940529,-77.41776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60917,Buckingham Solar LLC,PV1,2017.0,19.8,19.8,19.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.502944,-78.379237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60918,Verwey-Hanford Dairy Digester #1,00003,2016.0,1.0,1.0,1.0,0.1,OBG,Other Waste Biomass,OP,IC,10.0,2016.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.18519,-119.681495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.216216216216216 -60919,Shakopee Met Council WTP,SHAK,2016.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.796611,-93.436971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60920,Viper Solar,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.934886,-78.962159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60921,Scarlet Solar,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.287803,-77.795061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60922,Ruskin Solar,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.274,-78.022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60923,Clyde Solar Array,PV1,2016.0,2.8,2.8,0.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.2500000000000001,RFC,PJM,OH,41.319351,-82.984331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60924,Ozarks Natural Energy Community Solar,GEN1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,AR,36.164296,-94.082269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60925,Montgomery County,1A,2021.0,250.0,250.0,250.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,TX,30.44083,-95.5275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60925,Montgomery County,1B,2021.0,250.0,250.0,250.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,1.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,TX,30.44083,-95.5275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60925,Montgomery County,1C,2021.0,500.0,500.0,500.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,1.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,TX,30.44083,-95.5275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60926,St. Charles Power Station (LA),1A,2019.0,250.0,250.0,250.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,LA,30.01,-90.460833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.538392896544774 -60926,St. Charles Power Station (LA),1B,2019.0,250.0,250.0,250.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,LA,30.01,-90.460833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.459705577927283 -60926,St. Charles Power Station (LA),1C,2019.0,500.0,500.0,500.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,30.01,-90.460833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60927,Lake Charles Power,1A,2020.0,250.0,250.0,250.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,LA,30.27099,-93.28861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.891298165082748 -60927,Lake Charles Power,1B,2020.0,250.0,250.0,250.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,1.0,1.0,SERC,MISO,LA,30.27099,-93.28861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.881776864459185 -60927,Lake Charles Power,1C,2020.0,500.0,500.0,500.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,1.0,1.0,SERC,MISO,LA,30.27099,-93.28861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60928,New Orleans Power,1,2020.0,250.0,129.7,129.7,18,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.5187999999999999,0.5187999999999999,SERC,MISO,LA,30.0081,-89.9372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.81204627392374 -60929,"Red Oak Solar Farm, LLC",RDOAK,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,DUK,NC,35.993015,-77.933518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60930,Dublin Solar I,DUBL1,2015.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.581,-82.926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60931,CCC Hastings Wind Turbine,WT1,2016.0,1.7,1.7,1.7,0.5,WND,Onshore Wind Turbine,OP,WT,12.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.57,-98.334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60932,Creston Ridge Wind Farm,WT1,2015.0,6.8,6.8,6.8,0.2,WND,Onshore Wind Turbine,OP,WT,12.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.678,-97.386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60933,Hopewell Cogeneration NJ,GEN1,2015.0,2.0,2.0,2.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.348275,-74.771501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.38477801268499 -60933,Hopewell Cogeneration NJ,GEN2,2015.0,2.0,2.0,2.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.348275,-74.771501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.38477801268499 -60935,GRE Marshan Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.6922,-92.8169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60936,New Auburn DPC Solar,PV1,2018.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.21,-91.4353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60937,Antlia Community Solar,IACS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,43.906524,-96.138235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60937,Antlia Community Solar,IACS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,43.906524,-96.138235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60938,Aries Community Solar,AACS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.044924,-92.988569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60938,Aries Community Solar,AACS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.044924,-92.988569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60938,Aries Community Solar,AACS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.044924,-92.988569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60938,Aries Community Solar,AACS4,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.044924,-92.988569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60939,Centaurus Community Solar,KCCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.949053,-95.511257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60939,Centaurus Community Solar,KCCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.949053,-95.511257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60940,Gemini Community Solar,LGCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.300294,-92.804361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60940,Gemini Community Solar,LGCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.300294,-92.804361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60940,Gemini Community Solar,LGCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.300294,-92.804361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60941,Mapleton Community Solar,DMCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,43.928851,-93.956064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60941,Mapleton Community Solar,DMCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,43.928851,-93.956064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60941,Mapleton Community Solar,DMCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,43.928851,-93.956064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60942,Morgan Community Solar,BMCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.413186,-94.907619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60942,Morgan Community Solar,BMCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.413186,-94.907619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60942,Morgan Community Solar,BMCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.413186,-94.907619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60943,Spica Community Solar,MSCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.936146,-94.854097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60943,Spica Community Solar,MSCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.936146,-94.854097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60944,Vega Community Solar,NVCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.382813,-95.203741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60944,Vega Community Solar,NVCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.382813,-95.203741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60944,Vega Community Solar,NVCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.382813,-95.203741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60944,Vega Community Solar,NVCS4,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.382813,-95.203741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60944,Vega Community Solar,NVCS5,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.382813,-95.203741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60945,"Spartan PV 1, LLC",PV1,2017.0,10.5,10.5,10.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.7151,-84.4824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60947,Jacumba Solar Farm,Q644A,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.6212,-116.12896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60951,West Dubuque Solar,PV1,2017.0,3.8,3.4,3.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8947368421052632,0.8157894736842106,MRO,MISO,IA,42.491754,-90.79225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60953,Owens Valley Solar Project 11,W5381,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,36.275144,-118.012151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60954,VEC Magee Hill Solar,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.3682,-73.0608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60955,Strawberry Point DPC Solar,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.6786,-91.5452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60956,Westar Cities Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,38.0194,-97.9753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60957,Sand Lake DPC Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.4455,-92.549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60958,Nesvold Watertown Solar,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.937098,-93.828672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60958,Nesvold Watertown Solar,PV2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.937098,-93.828672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60958,Nesvold Watertown Solar,PV3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.937098,-93.828672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60958,Nesvold Watertown Solar,PV4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.937098,-93.828672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60958,Nesvold Watertown Solar,PV5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.937098,-93.828672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60959,Chocksett Rd Energy Storage Project,BA1,2017.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,4.0,2017.0, , ,3.9,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.451836,-71.737747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60960,Hyperion Treatment Plant CHP Plant,CTG1,2017.0,11.0,10.0,10.0,8.8,OBG,Other Waste Biomass,OP,GT,4.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,WECC,LDWP,CA,33.9254,-118.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.935102921021697 -60960,Hyperion Treatment Plant CHP Plant,CTG2,2017.0,11.0,10.0,10.0,8.8,OBG,Other Waste Biomass,OP,GT,4.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.9090909090909091,0.9090909090909091,WECC,LDWP,CA,33.9254,-118.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.935102921021697 -60960,Hyperion Treatment Plant CHP Plant,STG1,2017.0,11.0,2.0,2.0,1,OBG,Other Waste Biomass,OP,GT,4.0,2017.0, , ,,,,,biomass,biomass,Other Biomass Gas,Combustion (Gas) Turbine,0.18181818181818177,0.18181818181818177,WECC,LDWP,CA,33.9254,-118.4298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.935102921021697 -60961,Violet Solar,PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.401091,-80.4185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60962,Red Maple Solar,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.3194,-93.899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60962,Red Maple Solar,PV2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.3194,-93.899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60962,Red Maple Solar,PV3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.3194,-93.899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60964,Apache Solar 1,AEPS1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,32.068141,-109.890379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60965,"Cotten Farm, LLC",COT,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,35.528489,-79.198481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60966,Lind Solar CSG,S0222,2017.0,4.9,4.9,4.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8571428571428571,MRO,MISO,MN,44.802355,-93.908719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60967,Onyx - Lamphear Road CSG,10016,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.18413,-75.476724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60968,Scott-II Solar LLC,PV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.526244,-77.944637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60971,Michael Solar,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.667472,-94.708334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60971,Michael Solar,PV2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.667472,-94.708334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60971,Michael Solar,PV3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.667472,-94.708334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60974,Glendale Battery Energy Storage System,2BESS,2017.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,10.0,2017.0, , ,1.0,1.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,LDWP,CA,34.162327,-118.283684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60975,Whitney Point Solar,WS532,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.376889,-120.138472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60976,"OSLH, LLC",PV1,2016.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.061,-121.228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60978,CSUF State College,PV1,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.87912,-117.8887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60979,CSUF Nutwood Solar,PV1,2016.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.87912,-117.8887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60980,ZV Solar 1,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.81319,-79.20143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60981,NextEra Westside PV,WS526,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.381775,-120.134486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60982,Atkinson Farm Solar,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.896953,-77.795169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60983,Buckthorn Wind,BWIND,2017.0,100.5,100.5,100.5,3.8,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.371306,-98.377389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60984,Lindberg Field Solar 2,PV1,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.729444,-117.205083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60985,Elizabethtown Solar,ESPV,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.152693,-76.581401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60986,AIS Solar Project,SO212,2016.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.501949,-71.737786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60987,Santa Rita Wind Energy,GEN1,2018.0,300.0,300.0,300.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.181377,-101.318787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60989,SolaireHolman Solar Project,PV1,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.45512,-103.4747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60990,"Florence Solar W3-080, LLC",PV1,2016.0,7.9,7.9,7.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.095611,-74.787611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60991,Sterling I Wind Farm,STER1,2017.0,29.9,29.9,29.9,0,WND,Onshore Wind Turbine,OP,WT,7.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.3596,-103.25058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60992,Northern Cardinal Solar,NCARD,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.433289,-77.719745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60993,"Darlington Solar, LLC",PV1,2016.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.32,-79.917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60994,French's Landfill PV,GEN1,2014.0,5.1,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9803921568627452,0.9803921568627452,RFC,PJM,NJ,40.109677,-74.130198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60995,Ramona Solar Energy,1,2017.0,4.3,3.7,3.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8604651162790699,0.8372093023255814,WECC,CISO,CA,33.018486,-116.860713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60996,Iron Horse Battery Storage Hybrid,BA1,2017.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,4.0,2017.0, , ,2.5,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,TEPC,AZ,32.098492,-110.819119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60996,Iron Horse Battery Storage Hybrid,PV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.098492,-110.819119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60997,Everett PV1,EVRT1,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.821137,-77.30957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60998,Underwood PV2,UNWD2,2020.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.419353,-77.049537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -60999,Reading Wind Project,READW,2020.0,200.1,200.1,200.1,3.4,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.475,-95.9655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61000,King Mill,1,1944.0,0.7,0.6,0.6,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.8571428571428572,0.8571428571428572,SERC,SOCO,GA,33.485245,-81.991203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61000,King Mill,2,1944.0,1.5,1.4,1.4,0.3,WAT,Conventional Hydroelectric,OP,HY,1.0,1944.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9333333333333332,0.9333333333333332,SERC,SOCO,GA,33.485245,-81.991203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61001,Cactus Flats Wind Energy Project,WT1,2018.0,148.4,148.4,148.4,3.4,WND,Onshore Wind Turbine,OP,WT,7.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.112474,-100.028142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61002,"WED Portsmouth One, LLC",PORT1,2016.0,1.5,1.5,1.5,0.2,WND,Onshore Wind Turbine,OP,WT,8.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.612027,-71.249262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61003,Musgrave East Solar Farm,CMUSW,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.731496,-76.663665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61004,Whirlpool Corporation - Ottawa Wind Farm,W1,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.002764,-84.033742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61005,Whirlpool Corporation - Marion Wind Farm,W1,2017.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.591154,-83.178491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61005,Whirlpool Corporation - Marion Wind Farm,W2,2017.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.591154,-83.178491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61005,Whirlpool Corporation - Marion Wind Farm,W3,2017.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.591154,-83.178491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61006,SCDA Solar 1,SCAIR,2017.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.690186,-121.586514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61007,Redbrook Community Solar 1,REDBR,2017.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.829117,-70.614839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61008,Brook Street Solar 1 CSG,BROOK,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.955897,-70.786125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61009,Spring Street Solar 1 CSG,SPRIN,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.942522,-70.766403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61010,Bullock Road Solar 1,BULLO,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.728936,-70.990453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61011,Chestnut Solar,PV1,2020.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.18,-77.712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61012,Mill Seat Renewable Energy Facility,GEN1,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN2,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN3,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN4,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN5,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN6,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN7,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61012,Mill Seat Renewable Energy Facility,GEN8,2007.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.063706,-77.932902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.275121218883772 -61013,Marin Clean Energy Solar One,MCES1,2017.0,10.5,10.5,10.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.945296,-122.377202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61015,Musgrave West Solar Farm,CMUSW,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.731496,-76.663665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61016,Stafford St Solar 1 CSG,STAF1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.224044,-71.87065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61017,Stafford St 2 Community Solar,STAF2,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.224044,-71.87065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61018,Stafford St Solar 3 CSG,STAF3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.224044,-71.87065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61019,"Siler 421 Farm, LLC",SILER,2016.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,35.747372,-79.449675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61020,Indian River Solar Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.573256,-80.578178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61021,Horizon Solar Energy Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.665556,-82.058333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61022,Coral Farms Solar Energy Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.756944,-81.897222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61023,Hollyfield,1,2018.0,17.0,6.8,, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,,SERC,PJM,VA,37.672005,-77.170439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61024,Hammock Solar,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.692646,-81.324953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61025,Montefiore - Westchester Square,EGEN1,1983.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840648,-73.848367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.5 -61026,New York Presbyterian Hospital-168th St,CHNY1,2003.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.072939620978403 -61026,New York Presbyterian Hospital-168th St,CHNY2,2003.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.072939620978403 -61026,New York Presbyterian Hospital-168th St,GARG,2000.0,0.1,0.1,0.1,0,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.059471365638768 -61026,New York Presbyterian Hospital-168th St,MHB1,2000.0,2.0,2.0,2.0,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.072939620978403 -61026,New York Presbyterian Hospital-168th St,MHB2,2000.0,1.4,1.4,1.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.073823390524165 -61026,New York Presbyterian Hospital-168th St,MHB3,2000.0,1.4,1.4,1.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.073823390524165 -61026,New York Presbyterian Hospital-168th St,MHB4,2008.0,1.5,1.5,1.5,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.072866167180845 -61026,New York Presbyterian Hospital-168th St,MHB5,2008.0,1.5,1.5,1.5,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.840854,-73.941391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28.072866167180845 -61028,Hickory Run Energy Station,CTG1,2020.0,295.0,277.0,320.4,146,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9389830508474576,1.0,RFC,PJM,PA,40.994444,-80.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61028,Hickory Run Energy Station,CTG2,2020.0,295.0,277.0,320.2,146,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9389830508474576,1.0,RFC,PJM,PA,40.994444,-80.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61028,Hickory Run Energy Station,STG1,2020.0,443.7,425.3,436.3,195,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9585305386522426,0.9833220644579671,RFC,PJM,PA,40.994444,-80.43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61029,Blue Cypress Solar Energy Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.609456,-80.537189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61030,Harford Solar Farm,CMUSW,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.448,-76.245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61031,Floyd Road Solar Farm,PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.50592,-77.677474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61032,Heart of Texas Wind Project,HTX,2020.0,180.0,180.0,180.0,180,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.242177,-99.421266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61035,Birdsboro Power,GEN1,2019.0,525.0,485.0,485.0,90,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9238095238095239,0.9238095238095239,RFC,PJM,PA,40.268522,-75.799669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61039,Deerfield Wind LLC,WT1,2017.0,30.0,30.0,30.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,VT,42.877215,-72.993721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61040,Twin Buttes II Wind,WT1,2017.0,75.0,75.0,75.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,37.773,-102.546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61041,"Roaring Brook, LLC",WT1,2021.0,79.7,79.7,79.7,0,WND,Onshore Wind Turbine,OP,WT,10.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.709597,-75.616219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61042,Canandaigua Westbrook Solar Array,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.869086,-77.28446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61043,Canandaigua Solar Array,PV1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.86887,-77.284561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61044,La Joya NM,LAJ1,2021.0,165.0,165.0,165.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.81,-105.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61044,La Joya NM,LAJ2,2021.0,141.2,141.2,141.2,0,WND,Onshore Wind Turbine,OP,WT,6.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.81,-105.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61046,Tatanka Ridge,WT1,2021.0,154.0,154.0,154.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,SD,44.592,-96.576,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61047,Coyote Ridge,WT1,2019.0,97.4,97.4,97.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,WACM,SD,44.45,-96.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61048,Solar Star Oregon II,PV1,2017.0,56.3,56.0,56.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9946714031971581,0.9946714031971581,WECC,PACW,OR,44.1843,-120.918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61050,Wildflower Solar Energy Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.316187,-81.783899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61051,Barefoot Bay Solar Energy Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.865833,-80.521111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61052,Loggerhead Solar Energy Center,1,2018.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.237778,-80.541389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61053,Greenfield Solar Park,SGREE,2017.0,2.8,2.8,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7857142857142858,RFC,PJM,IN,39.793847,-85.816507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61054,IMPA Anderson Solar Park 2,SAND2,2017.0,8.1,8.1,6.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8024691358024691,RFC,PJM,IN,40.138307,-85.690907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61055,DG AMP Solar Front Royal,AMPFR,2017.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,38.929,-78.18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61056,Seward Wind Farm,T1,2017.0,1.7,1.7,1.7,1.7,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.895,-97.1951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61058,Kramer Solar CSG,0000B,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MN,44.746994,-94.705735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61058,Kramer Solar CSG,KRAM2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MN,44.746994,-94.705735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61058,Kramer Solar CSG,KRAM3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MN,44.746994,-94.705735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61059,Novel OYA of Osakis CSG,0000G,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.85,-95.15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61060,Novel - OYA of Mapleton CSG,0000I,2018.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.93,-93.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61066,Foundation CDCR LAC,WTG1,2017.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,34.691,-118.221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61067,Foundation Scheid Vineyards,WTG1,2017.0,1.9,1.9,1.9,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.274508,-121.191589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61068,AES Lawai Solar Hybrid,LAWA1,2018.0,20.0,20.0,20.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.90823,-159.491974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61068,AES Lawai Solar Hybrid,LAWA2,2018.0,20.0,20.0,20.0,20,MWH,Batteries,OP,BA,12.0,2018.0, , ,100.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,21.90823,-159.491974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61069,"BWC Wading River One, Two, Three CSG",62381,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.085278,-71.526667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61070,Saratoga Wind Farm,SWE,2019.0,66.0,66.0,66.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.448855,-92.280725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61072,Lemond Solar,LEMND,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.080995,-93.285927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61073,Pemberton Road I,PEMB1,2017.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.981764,-74.697369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61074,Pemberton Road II,PEMB2,2017.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.979936,-74.701917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61077,Orient Wind Farm,1,2018.0,102.0,100.0,100.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9803921568627451,0.9803921568627451,MRO,MISO,IA,41.202447,-94.417197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61077,Orient Wind Farm,2,2019.0,398.8,400.0,400.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.202447,-94.417197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61079,Beaver Creek Wind,1,2017.0,170.0,170.0,170.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.106964,-94.164636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61079,Beaver Creek Wind,GT1,2018.0,170.0,170.0,170.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.106964,-94.164636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61080,Sub 12,IC1,2018.0,9.3,9.2,9.2,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9892473118279569,0.9892473118279569,SERC,TAL,FL,30.459813,-84.260028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.272096862960925 -61080,Sub 12,IC2,2018.0,9.3,9.2,9.2,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9892473118279569,0.9892473118279569,SERC,TAL,FL,30.459813,-84.260028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.272096862960925 -61084,Luning Energy,LNING,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,38.546947,-118.19156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61085,Stone Solar,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.583119,-79.031836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61086,Tripple State Farm,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.734972,-80.774867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61087,Wadesboro Farm 1,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.99115,-80.09732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61088,Delco Farm,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.318997,-78.20905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61089,Fisher Solar Farm - NC,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.24125,-80.03465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61090,Kinston Davis Farm,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.2184,-77.64259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61091,Laurinburg Farm,1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.764403,-79.442969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61092,Independence Solar Farm,IPL1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,MO,39.117142,-94.288161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61093,Mills Anson Farm,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.968056,-79.935844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61094,Old Wire Farm,1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.817836,-79.513928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61095,Railroad Farm 2,1,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.807903,-78.950494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61096,Sampson Solar,1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.961039,-78.470536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61097,Syncarpha Freetown,SYNFR,2016.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.768919,-70.786494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61098,Battle Mountain Solar Project,BMBS,2021.0,25.0,25.0,25.0,0,MWH,Batteries,OP,BA,6.0,2021.0, , ,25.0,25.0,25.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,NEVP,NV,40.718433,-117.06143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61098,Battle Mountain Solar Project,BMSP,2021.0,101.0,101.0,101.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,40.718433,-117.06143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61099,Kihei Solar Farm,KIHEI,2018.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.7937,-156.4339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61100,"Burke Wind, LLC",GE23,2020.0,199.4,199.4,199.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,48.754492,-102.637766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61101,Ku'ia Solar,KUIA,2018.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,20.886013,-156.657889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61104,Pima Community College - East Campus,PV1,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.146142,-110.990639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61106,Pine River Wind Park,1,2019.0,161.3,161.3,161.3,0.6,WND,Onshore Wind Turbine,OP,WT,3.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.524324,-84.696781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61107,Vanadium Redox Flow Battery Plant,VRF,2017.0,2.0,2.0,2.0,0.1,MWH,Batteries,OP,BA,6.0,2017.0, , ,8.0,2.0,2.0,FLB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.682506,-116.988781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61115,Manteca Land PV,MANT1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.84013,-121.216191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61116,Delano Land 1,DELA1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.761217,-119.344408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61117,Bakersfield PV 1,BAKE1,2017.0,5.3,5.3,5.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.324982,-118.981522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61118,Bakersfield Industrial PV 1,BIND1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.330032,-118.993119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61119,Quichapa 1,W5519,2016.0,3.0,3.0,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,PACE,UT,37.658223,-113.216679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61120,Quichapa 2,W5520,2016.0,3.0,3.0,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,PACE,UT,37.666772,-113.188953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61121,Quichapa 3,W5521,2016.0,3.0,3.0,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,WECC,PACE,UT,37.649816,-113.236928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61124,Elizabeth Mines Solar 1,EMS1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.823611,-72.33111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61125,Nebraska Valley Solar Farm,NVSF,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.46234,-72.770856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61126,Bedford Solar,12346,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,37.335046,-79.480995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61127,Gamble Solar,12348,2019.0,3.0,3.0,3.0,3,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.348375,-81.817362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61128,Salisbury Solar,12349,2018.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.632585,-80.422626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61129,Wadesboro Solar,12347,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.973863,-80.028987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61131,Tolson Solar,12345,2015.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.829572,-77.615869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61134,Phelps 158 Solar Farm,15800,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.442636,-77.161514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61135,Lebanon Solar Farm (MO),LSF1,2017.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,37.667831,-92.670628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61138,Armstrong Solar,0000A,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.642252,-95.35635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61139,Marmas Solar CSG,MARM2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.556056,-94.117112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61139,Marmas Solar CSG,MARM3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.556056,-94.117112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61139,Marmas Solar CSG,MARM4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.556056,-94.117112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61139,Marmas Solar CSG,MARM5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.556056,-94.117112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61140,"CF Novel Solar CSG Gardens Two, LLC",0000D,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.845905,-93.83675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61141,"CF Novel Solar CSG Gardens Eleven, LLC",0000F,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.24,-93.96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61142,WasecaSun,0000H,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.051448,-93.386458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61142,WasecaSun,WASE2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.051448,-93.386458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61142,WasecaSun,WASE3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.051448,-93.386458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61142,WasecaSun,WASE4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.051448,-93.386458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61142,WasecaSun,WASE5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.051448,-93.386458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61144,Astoria Station,1,2021.0,349.0,244.2,284.5,142,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.6997134670487106,0.8151862464183381,MRO,MISO,SD,44.574965,-96.55942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.532275390091893 -61145,Brown County LFGTE Power Station,GM01,2017.0,1.6,1.5,1.5,1.1,LFG,Landfill Gas,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,OH,38.895,-83.903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.36077349861596 -61145,Brown County LFGTE Power Station,GM02,2017.0,1.6,1.5,1.5,1.1,LFG,Landfill Gas,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,OH,38.895,-83.903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.36077349861596 -61145,Brown County LFGTE Power Station,GM03,2017.0,1.6,1.5,1.5,1.1,LFG,Landfill Gas,OP,IC,6.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,OH,38.895,-83.903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.36077349861596 -61152,Intel Folsom Phase 3,PV1,2016.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.645961,-121.162623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61153,AT&T Holger,AT057,2016.0,1.3,1.3,1.3,0,NG,Other Natural Gas,OP,FC,6.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.417638,-121.94453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61154,AT&T Anaheim,AT058,2016.0,1.3,1.3,1.3,0,NG,Other Natural Gas,OP,FC,9.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.836439,-117.916893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61155,Big Timber Wind Farm,BT-MT,2018.0,25.0,25.0,25.0,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,45.855428,-109.649167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61156,St. Pauls Solar 2,STPAU,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.7691,-78.981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61157,Boaz Farm Solar,BOAZF,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.46777,-79.13444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61158,Bizzell Church Solar 2,BIZZE,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.544405,-78.177204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61160,MILL SOLAR 1,MILL1,2015.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OS,PV,12.0,2015.0,5,2023,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.575,-80.821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61161,Harvest Ridge Wind Farm,GEN01,2020.0,202.0,202.0,202.0,1.3,WND,Onshore Wind Turbine,OP,WT,7.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,39.83188,-88.072302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61162,RB Manufacturing LLC Belle Mead NJ,RBBM,2016.0,1.5,1.4,0.8, ,SUN,Solar Photovoltaic,OS,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.5333333333333334,RFC,PJM,NJ,40.483601,-74.650123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61163,Onset East Community Solar Facility,ONSE,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.757027,-70.653675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61164,Onset West Community Solar Facility,ONSW,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.757027,-70.653675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61165,Columbus Solar Project,88029,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,31.86673,-107.587513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61166,Tyee Lake Hydroelectric Facility,UNIT1,1983.0,11.3,11.3,11.3,2,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,56.216403,-131.504344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61166,Tyee Lake Hydroelectric Facility,UNIT2,1983.0,11.3,11.3,11.3,2,WAT,Conventional Hydroelectric,OP,HY,7.0,1983.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,non-conus,non-conus,AK,56.216403,-131.504344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61172,EE Waianae Solar Project,WAIAN,2017.0,28.3,27.6,27.6,0,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9752650176678446,0.9752650176678446,non-conus,non-conus,HI,21.452002,-158.187888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61173,IKEA Miami 327,PV,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,25.7915,-80.3838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61174,Taurus Community Solar,ETCS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.95028,-95.691471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61174,Taurus Community Solar,ETCS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.95028,-95.691471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61174,Taurus Community Solar,ETCS3,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.95028,-95.691471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61174,Taurus Community Solar,ETCS4,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.95028,-95.691471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61175,Pegasus Community Solar,CPCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.495453,-95.124682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61175,Pegasus Community Solar,CPCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.495453,-95.124682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61176,Antares Community Solar,FACS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.226179,-95.623804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61176,Antares Community Solar,FACS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.226179,-95.623804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61176,Antares Community Solar,FACS3,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.226179,-95.623804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61177,Corvus Community Solar,GCCS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.191352,-93.944002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61177,Corvus Community Solar,GCCS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.191352,-93.944002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61177,Corvus Community Solar,GCCS3,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.191352,-93.944002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61177,Corvus Community Solar,GCCS4,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.191352,-93.944002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61177,Corvus Community Solar,GCCS5,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.191352,-93.944002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61178,Capella Community Solar,HCCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.0901,-96.161204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61178,Capella Community Solar,HCCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.0901,-96.161204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61178,Capella Community Solar,HCCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.0901,-96.161204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61178,Capella Community Solar,HCCS4,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.0901,-96.161204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61178,Capella Community Solar,HCCS5,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.0901,-96.161204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61179,Carina Community Solar,JCCS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.164677,-92.241187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61179,Carina Community Solar,JCCS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.164677,-92.241187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61179,Carina Community Solar,JCCS3,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.164677,-92.241187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61179,Carina Community Solar,JCCS4,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.164677,-92.241187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61180,Caelum Community Solar,PCCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.662006,-93.936782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61180,Caelum Community Solar,PCCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.662006,-93.936782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61181,Andromeda Community Solar,OACS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.901926,-94.031626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61181,Andromeda Community Solar,OACS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.901926,-94.031626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61181,Andromeda Community Solar,OACS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.901926,-94.031626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61181,Andromeda Community Solar,OACS4,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.901926,-94.031626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61181,Andromeda Community Solar,OACS5,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.901926,-94.031626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61182,Lyra Community Solar,RLCS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.240346,-93.585787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61182,Lyra Community Solar,RLCS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.240346,-93.585787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61182,Lyra Community Solar,RLCS3,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.240346,-93.585787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61183,Argo Navis Community Solar,UACS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.255245,-92.772284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61183,Argo Navis Community Solar,UACS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.255245,-92.772284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61183,Argo Navis Community Solar,UACS3,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.255245,-92.772284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61185,Pfeffers,SO147,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.42757,-76.393562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61186,Boston Medical Center CHP Plant,COGEN,2017.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.334651,-71.074171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.952035741380763 -61187,Century Drive Solar Farm,CENT1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.837841,-78.6689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61189,Shavano Falls Hydro,GEN1,2015.0,2.8,2.8,2.8,1.1,WAT,Conventional Hydroelectric,OP,HY,6.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,WACM,CO,38.491966,-108.002283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61190,Shavano Falls Hydro Drop 4,GEN1,2015.0,4.8,4.5,4.5,1.4,WAT,Conventional Hydroelectric,OP,HY,6.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9375,0.9375,WECC,WACM,CO,38.450483,-107.776727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61191,Drop 5,GEN1,2017.0,2.4,2.4,,2.4,WAT,Conventional Hydroelectric,OP,HY,3.0,2017.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,,WECC,WACM,CO,38.404377,-107.810213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61192,IKEA Joliet Rooftop PV System,PV,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.48,-88.07,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61193,IKEA Las Vegas 462,PV,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.068926,-115.280825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61194,"Barker Solar, LLC",BARK,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.635599,-78.928657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61195,"231 Dixon 74 Solar I, LLC",DIXON,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.244125,-81.430385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61196,"Mill Pond Solar Farm, LLC",MILLL,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.307121,-78.701463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61197,Pima Energy Storage System,PIMA,2017.0,10.0,10.0,10.0,0.1,MWH,Batteries,OP,BA,1.0,2017.0, , ,2.0,8.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,TEPC,AZ,32.251647,-110.991333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61198,Merck - Upper Gwynedd Solar Array,SA-1,2011.0,1.5,1.5,1.5,0,SUN,Solar Photovoltaic,OP,PV,1.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.215399,-75.28309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61199,T0588 Phoenix - AZ,PV1,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,33.447225,-112.217664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61200,"OR Solar 2, LLC",ORSR2,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.542084,-122.781338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61201,"OR Solar 3, LLC",ORSR3,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.022336,-121.418873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61202,Mount Signal Solar Farm V,MTSG3,2018.0,252.3,252.3,252.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.678805,-115.56721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61203,"Lahr 1, LLC",PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.431189,-94.426041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61204,"AES ES Alamitos, LLC",ALMTS,2021.0,100.0,100.0,100.0,0,MWH,Batteries,OP,BA,1.0,2021.0, , ,400.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.770202,-118.099665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61205,Bandera Electric Coop PV,PV1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.681032,-99.762212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61206,Onyx - Allen Harim,10021,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,38.717509,-75.288789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61207,Green Island Hydroelectric Station,UNIT1,1922.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.748106,-73.69022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61207,Green Island Hydroelectric Station,UNIT2,1922.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.748106,-73.69022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61207,Green Island Hydroelectric Station,UNIT3,1922.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.748106,-73.69022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61207,Green Island Hydroelectric Station,UNIT4,1922.0,1.5,1.5,1.5,0.5,WAT,Conventional Hydroelectric,OP,HY,11.0,1922.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.748106,-73.69022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61208,Gulfport Naval Base CSG PV System,PV1,2017.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,MS,30.379866,-89.119233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61209,Sacramento Regional County Sanitation PV,PV1,2017.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.448604,-121.46369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61210,Finger Lakes Solar I,FLS1,2016.0,1.9,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.814025,-77.045631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61211,IKEA Memphis 508,PV,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.189991,-89.799302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61212,Flat Top Wind I,FTWI,2018.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.684511,-98.603358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61213,GRP Madison Renewable Energy Facility,GEN,2019.0,58.0,58.0,58.0,31,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2019.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SOCO,GA,34.040559,-83.192902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.962767342184577 -61215,Green Beanworks C PV,GBWXC,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.597,-117.931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61216,Green Beanworks D PV,GBWXD,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.654976,-118.08215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61217,Head of U Canal Hydro Project,HY1,2015.0,1.2,1.2,1.2,0.1,WAT,Conventional Hydroelectric,OP,HY,6.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,42.7628,-114.3958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61218,"Broadridge Solar, LLC",BROAD,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.522942,-78.957206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61219,"Kelly Solar, LLC",KELLY,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.391194,-78.449024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61220,"Spencer Farm, LLC",1,2017.0,5.0,5.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,SERC,DUK,NC,35.712886,-80.407853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61221,Redbed Plains Wind Farm,WT1,2017.0,99.1,99.1,99.1,7.1,WND,Onshore Wind Turbine,OP,WT,7.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.290759,-97.854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61222,Golden Hills North Wind Energy Center,1,2017.0,46.0,46.0,46.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.769189,-121.630163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61223,Chillicothe Solar Farm,CHSF1,2017.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,39.788769,-93.536833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61224,"350 Clark Solar, NG, LLC",5400,2011.0,1.8,1.8,0.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.33333333333333326,NPCC,PJM,NJ,40.894197,-74.730162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61237,"433 Purchase Solar NG, LLC",5402,2012.0,2.8,2.8,0.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.1785714285714286,NPCC,ISNE,MA,41.809353,-71.192244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61238,NY - Presbyt. Hospital - 525 E 68TH St,ANX1,2016.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190338324096286 -61238,NY - Presbyt. Hospital - 525 E 68TH St,ANX2,2016.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,5.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190338324096286 -61238,NY - Presbyt. Hospital - 525 E 68TH St,CGTB,2009.0,7.7,7.7,7.7,0.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.003873996618461 -61238,NY - Presbyt. Hospital - 525 E 68TH St,DHK1,2017.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190184049079756 -61238,NY - Presbyt. Hospital - 525 E 68TH St,DHK2,2017.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190184049079756 -61238,NY - Presbyt. Hospital - 525 E 68TH St,DHK3,2017.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,11.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190184049079756 -61238,NY - Presbyt. Hospital - 525 E 68TH St,GRB1,1997.0,1.4,1.4,1.4,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190782184799469 -61238,NY - Presbyt. Hospital - 525 E 68TH St,GRB2,1997.0,1.4,1.4,1.4,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190782184799469 -61238,NY - Presbyt. Hospital - 525 E 68TH St,GRB3,1997.0,1.4,1.4,1.4,0.1,DFO,Petroleum Liquids,SB,IC,4.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190782184799469 -61238,NY - Presbyt. Hospital - 525 E 68TH St,GRB4,2008.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.764396,-73.95393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.190184049079756 -61241,Tres City Power LLC,VC-1,2020.0,50.0,43.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,28.7853,-97.0093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61241,Tres City Power LLC,VC-2,2020.0,50.0,43.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,28.7853,-97.0093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61242,"Tres Port Power, LLC",VP-1,2019.0,50.0,43.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,28.69637,-96.9453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61242,"Tres Port Power, LLC",VP-2,2019.0,50.0,43.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,28.69637,-96.9453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61243,Old Wardour Solar,5406,2016.0,5.5,4.3,1.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7818181818181817,0.3090909090909091,NPCC,ISNE,MA,42.237578,-72.037453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61244,Shuman Solar,5404,2016.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.114918,-71.066039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61245,Vuelta Solar,5405,2016.0,5.5,4.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8545454545454546,0.3090909090909091,NPCC,ISNE,MA,42.237578,-72.037453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61246,ACE-Stanton PV,ASLF1,2017.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FMPP,FL,28.47735,-81.18036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61247,ACE-Stanton A PV,ASA1,2017.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FMPP,FL,28.48455,-81.17411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61248,Glopak Solar PV Power Plant,INV1R,2011.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.575378,-74.39281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61248,Glopak Solar PV Power Plant,INV2G,2012.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.575378,-74.39281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61249,Westmont 300A,W5531,2017.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.766067,-118.288925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61250,USPS PV,USPS1,2017.0,7.4,7.4,7.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.977922,-118.2587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61255,"Haywood Farm Solar, LLC",HAY02,2017.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.343,-79.915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61256,"Hood Farm Solar, LLC",HOF05,2017.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.205,-77.497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61257,"ZV Solar 2, LLC",ZV204,2017.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.816,-79.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61258,"Innovative Solar 35, LLC",ISS35,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.046,-77.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61259,"Innovative Solar 59, LLC",ISS59,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.094719,-77.97928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61260,"Innovative Solar 60, LLC",ISS60,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.091,-77.992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61261,Rock Falls Wind Farm LLC,RF1,2017.0,154.5,154.5,154.5,49,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.927165,-97.4271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61262,Stuttgart Solar,STGRT,2018.0,81.0,81.0,81.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,34.439722,-91.44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61263,Wolf Run Energy,GEN1,2019.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.610981,-76.299361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.076249604996562 -61263,Wolf Run Energy,GEN2,2019.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.610981,-76.299361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.076249604996562 -61263,Wolf Run Energy,GEN3,2019.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.610981,-76.299361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.076249604996562 -61263,Wolf Run Energy,GEN4,2019.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.610981,-76.299361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.076249604996562 -61263,Wolf Run Energy,GEN5,2019.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.610981,-76.299361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.076249604996562 -61264,Antelope Expansion 2,ANTX2,2018.0,105.0,105.0,105.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.744977,-118.309153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61265,Antelope DSR 3,ADSR3,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.736859,-118.304071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61267,Hurricane Creek Lift Station,HURR,2004.0,2.0,2.0,2.0,1.7,DFO,Petroleum Liquids,SB,IC,9.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,MISO,IN,39.5879,-86.1858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.01834862385321 -61268,Kayenta Solar Project,PV1,2017.0,27.3,27.3,27.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,36.771944,-110.263889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61268,Kayenta Solar Project,PV2,2019.0,28.0,28.0,28.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,36.771944,-110.263889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61269,Thunder Ranch Wind Project,WT1,2018.0,297.8,297.8,297.8,1,WND,Onshore Wind Turbine,OP,WT,1.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.550834,-97.058944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61270,Red Dirt Wind Project,RDDRT,2018.0,299.3,299.3,299.3,1,WND,Onshore Wind Turbine,OP,WT,1.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.1,-97.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61271,Biltmore Solar Fields,18950,2012.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLW,NC,35.561156,-82.58844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61272,Gray Hawk Solar,GHS,2018.0,55.0,55.0,55.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,35.3635,-113.8978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61274,Wilson Solar Farm 1,WISL1,2017.0,3.4,3.3,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9705882352941176,0.5882352941176471,SERC,CPLE,NC,35.7,-77.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61275,Wilson Solar Farm 2,WILS2,2017.0,5.0,3.8,3.7, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.76,0.74,SERC,CPLE,NC,35.683,-78.016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61276,Wilson Solar Farm 3,WILS3,2017.0,10.0,9.0,8.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.8099999999999999,SERC,CPLE,NC,35.78,-78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61277,Wilson Solar Farm 4,WILS4,2017.0,10.0,9.0,8.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.8099999999999999,SERC,CPLE,NC,35.7,-78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61278,Wilson Solar Farm 5,WILS5,2017.0,10.0,9.5,6.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.67,SERC,CPLE,NC,35.68,-77.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61279,Wilson Solar Farm 6,WILS6,2017.0,10.0,9.7,7.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.97,0.72,SERC,CPLE,NC,35.68,-77.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61280,Wilson Solar Farm 7,WILS7,2017.0,10.0,9.2,8.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9199999999999999,0.8400000000000001,SERC,CPLE,NC,35.75,-78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61281,Bear Creek Solar Center,BCRSC,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.060814,-121.237203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61282,APG Combined Heat and Power Plant,GEN1,2016.0,7.9,6.2,9.0,3.9,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7848101265822784,1.0,RFC,PJM,MD,39.3975,-76.2991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.129483725113786 -61283,"Bladenboro Solar, LLC",GEN1,2015.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.547761,-78.817652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61284,"Lux Solar, LLC",GEN1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.241145,-81.429433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61287,"Sun Farm V, LLC",SF5PV,2018.0,5.0,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.96,SERC,PJM,NC,36.160629,-76.489357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61288,"Roxboro Solar Farm, LLC",GEN1,2015.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.326821,-78.622242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61289,"River Bend Solar, LLC",RBSMT,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NWMT,MT,45.703779,-109.565219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61290,"South Mills Solar, LLC",SMSMT,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NWMT,MT,45.730113,-107.632624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61291,"Green Meadow Solar, LLC",GMSMT,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NWMT,MT,46.694488,-112.063623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61292,Jackson Solar Farm,JAKSN,2017.0,10.0,8.6,7.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.86,0.76,SERC,CPLE,NC,35.75,-77.83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61294,Farley Road Community Solar,02419,2017.0,1.9,1.9,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7894736842105263,NPCC,ISNE,MA,42.1,-72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61295,Belchertown Renewables Community Solar,02675,2018.0,4.0,4.0,3.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.3,-72.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61296,Theodore Drive Community Solar,02529,2018.0,1.5,1.5,1.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,NPCC,ISNE,MA,42.5,-71.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61297,Upton Community Solar,02567,2017.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.1,-71.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61298,Pleasantdale Road Community Solar,02112,2017.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.322246,-71.987015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61299,Hatfield Renewables Community Solar,02599,2017.0,1.9,1.9,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7894736842105263,NPCC,ISNE,MA,42.3,-72.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61303,Bluff Point Wind Facility,BLUFF,2017.0,119.7,119.7,119.7,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.319,-84.9769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61307,Peterson Road Solar,02076,2017.0,2.5,2.5,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.1,-72.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61308,Sampson Road Community Solar,02696,2017.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.1,-72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61309,IKEA Grand Prairie Rooftop PV System,PV1,2017.0,1.2,1.1,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9166666666666667,0.5833333333333333,TRE,ERCO,TX,32.82,-97.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61310,Crittenden Solar Facility,PV1,2017.0,2.7,2.7,2.7,2.7,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,KY,38.751822,-84.613255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61311,Walton 1 Solar Facility,PV1,2017.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,KY,38.85018,-84.592263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61312,Walton 2 Solar Facility,PV1,2017.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,KY,38.85018,-84.592263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61313,BPU Solar Farm,BPU1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,39.166436,-94.696892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61314,SR Kersey,KERS,2017.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.386197,-104.55095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61315,Golden Hills Solar,02196,2017.0,4.7,4.7,3.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8085106382978723,NPCC,ISNE,MA,42.4,-72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61316,Higginsville Solar Farm,HSF1,2017.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,MO,39.002139,-93.726825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61318,Mt. Jackson Solar,SOLAR,2021.0,15.7,15.7,15.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.739621,-78.660158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61319,Port of LA Solar FiT Project,W4885,2015.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.727977,-118.280032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61322,Long Ridge Energy Generation,HPPP1,2021.0,521.9,485.0,485.0,190,NG,Natural Gas Fired Combined Cycle,OP,CS,10.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9292968001532861,0.9292968001532861,RFC,PJM,OH,39.70257,-80.84552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61323,Saluda Solar II,PGRB5,2017.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,34.011,-81.739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61324,Odyssey Solar,PGRB4,2017.0,8.2,8.2,8.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.79,-81.266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61325,Hampton Solar I,PGRB3,2017.0,6.8,6.8,6.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.879,-81.133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61326,Cameron Solar II,PGRB2,2017.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.567,-80.699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61327,Barnwell Solar,PGRB1,2017.0,5.4,5.4,5.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.237,-81.351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61328,Crater Community Solar,TCCS1,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.798733,-95.508331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61328,Crater Community Solar,TCCS2,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.798733,-95.508331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61328,Crater Community Solar,TCCS3,2017.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,44.798733,-95.508331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61329,Delphinus Community Solar,QDCS1,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.618565,-94.088758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61329,Delphinus Community Solar,QDCS2,2018.0,1.0,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.9,MRO,MISO,MN,45.618565,-94.088758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61330,Hog Creek Wind Project,WT1,2017.0,66.0,66.0,66.0,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.793073,-83.728714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61332,SR Innovation - NIKE PV,NIKE2,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.300066,-89.962991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61333,Oak Hill Solar Array,OHSA1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,37.99,-87.53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61334,Volkman Road Solar Array Hybrid,VRSA1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.1492,-87.548212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61334,Volkman Road Solar Array Hybrid,VRSA2,2019.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,1.0,2019.0, , ,4.6,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,MISO,IN,38.1492,-87.548212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61335,"Great Divide Solar, LLC",GDSMT,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NWMT,MT,46.805739,-112.249048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61336,"Black Eagle Solar, LLC",BESMT,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NWMT,MT,47.547466,-111.253974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61337,"Magpie Solar, LLC",MSMT,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NWMT,MT,46.291439,-108.937935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61338,Mill Creek Solar (OR),PGRC1,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.16964,-123.13633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61339,Green Beanworks B PV,GBWXB,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.688042,-117.989541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61340,Next Generation Solar Farm,NGSF1,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.084824,-73.226647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61341,Grafton PV,MSBW1,2016.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.225504,-71.662614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61342,Barrett PV,MSBW2,2016.0,11.9,11.9,11.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.162207,-71.864455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61343,Karankawa Wind LLC,WT1,2019.0,307.1,307.1,307.1,0,WND,Onshore Wind Turbine,OP,WT,11.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,28.170179,-97.817507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61344,Otter Creek Wind Farm LLC,WT1,2020.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.055385,-88.993862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61345,WyEast Solar,PV1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AVRN,OR,45.5846,-120.59994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61346,RE Maplewood,PV1,2021.0,222.0,222.0,222.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.976638,-102.257753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61346,RE Maplewood,PV2,2021.0,28.0,28.0,28.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.976638,-102.257753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61347,Long Henry Solar,GEN1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.195302,-77.895125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61348,Westmont 400A,W5691,2017.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.764227,-118.288925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61349,Westmont 400B,W5694,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.764227,-118.284733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61350,MDFA Devens-Saratoga,SO145,2016.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.544134,-71.598813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61351,Bear Creek Solar,GEN1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.540344,-79.449053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61352,Bondi Solar,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.134054,-77.53849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61353,Mount Signal Solar Farm II,IVS2,2020.0,153.5,153.5,153.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.6685,-115.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61354,Princeton Solar Project,STONY,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.379736,-74.625694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61355,Arlington Outlet Hydroelectric Generator,HY1,2015.0,1.3,1.3,1.3,0,WAT,Conventional Hydroelectric,OP,HY,9.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,TRE,ERCO,TX,32.639069,-97.242906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61356,Valfilm Wind Project,W1,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.084329,-83.644131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61356,Valfilm Wind Project,W2,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.084329,-83.644131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61357,Red Pine Wind Project,RP1,2017.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.478,-96.1538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61358,IGS Solar I - BWI5,BWI5,2016.0,1.1,1.1,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7272727272727273,RFC,PJM,MD,39.27,-76.548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61359,IGS Solar I - EWR5,EWR5,2016.0,1.9,2.9,1.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.631578947368421,RFC,PJM,NJ,40.582,-74.255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61360,IGS Solar I - EWR6,EWR6,2016.0,1.9,1.9,1.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5789473684210527,RFC,PJM,NJ,40.583,-74.257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61362,NRG Elbow Creek Energy Storage Project,ECBS,2017.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,11.0,2017.0, , ,0.7,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.167575,-101.479217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61363,Equuleus Community Solar Gardens,CSG1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.726098,-93.022687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61363,Equuleus Community Solar Gardens,CSG2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.726098,-93.022687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61363,Equuleus Community Solar Gardens,CSG3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.726098,-93.022687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61363,Equuleus Community Solar Gardens,CSG4,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.726098,-93.022687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61363,Equuleus Community Solar Gardens,CSG5,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.726098,-93.022687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61366,Top Gun Energy Storage,TGES,2021.0,30.0,30.0,30.0,30,MWH,Batteries,OP,BA,6.0,2021.0, , ,120.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.876198,-117.167791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61367,Smith & Wesson at Springfield MA PV,PV1,2017.0,1.9,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.736842105263158,0.736842105263158,NPCC,ISNE,MA,42.13794,-72.5509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61368,Midway Solar - TX,PV1,2018.0,182.0,182.0,182.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.995503,-102.223537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61369,Sweetwater Solar,PV1,2018.0,92.0,92.0,92.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,WY,41.629056,-109.683472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61370,Walnut Springs Solar,GEN1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.07868,-97.768464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61371,Centaurus Solar - MA,ASH24,2016.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.253,-71.426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61373,Kearsarge Bellingham PV,BELL,2016.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.071176,-71.458562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61374,Hecate Energy Clarke County LLC,PV1,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,39.06485,-78.138207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61375,Hecate Energy Cherrydale LLC,PV1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,37.37,-75.917171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61376,Cedar Creek PV,CEDR1,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.64889,-73.506672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61377,Amazon - Patterson PV,PATT1,2017.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,37.468888,-121.166326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61378,Northern Westchester Hospital,1,2017.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.196839,-73.725695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61378,Northern Westchester Hospital,2,2017.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.196839,-73.725695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61378,Northern Westchester Hospital,3,2017.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,12.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.196839,-73.725695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61378,Northern Westchester Hospital,4,1971.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,6.0,1971.0,2,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.196839,-73.725695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61378,Northern Westchester Hospital,5,1971.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,6.0,1971.0,2,2023,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.196839,-73.725695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61378,Northern Westchester Hospital,P,1971.0,1.0,1.0,1.0,0.3,NG,Natural Gas Internal Combustion Engine,SB,IC,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.196839,-73.725695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61379,DodgeSun CSG,DODG1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.040418,-92.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61379,DodgeSun CSG,DODG2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.040418,-92.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61379,DodgeSun CSG,DODG3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.040418,-92.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61379,DodgeSun CSG,DODG4,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.040418,-92.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61379,DodgeSun CSG,DODG5,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.040418,-92.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61380,Johnson Solar CSG,JOHN1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.912138,-96.187032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61380,Johnson Solar CSG,JOHN2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.912138,-96.187032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61380,Johnson Solar CSG,JOHN3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.912138,-96.187032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61380,Johnson Solar CSG,JOHN4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.912138,-96.187032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61380,Johnson Solar CSG,JOHN5,2018.0,0.7,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.912138,-96.187032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61381,Koppelman Sun CSG,KOPP1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.182609,-93.876267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61381,Koppelman Sun CSG,KOPP2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.182609,-93.876267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61381,Koppelman Sun CSG,KOPP3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.182609,-93.876267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61381,Koppelman Sun CSG,KOPP4,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.182609,-93.876267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61381,Koppelman Sun CSG,KOPP5,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.182609,-93.876267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61382,Lindstrom Solar CSG,LIND1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.319892,-92.796599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61382,Lindstrom Solar CSG,LIND2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.319892,-92.796599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61382,Lindstrom Solar CSG,LIND3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.319892,-92.796599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61383,Rengstorf Solar CSG,RENG1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.259504,-94.28907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61383,Rengstorf Solar CSG,RENG2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.259504,-94.28907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61383,Rengstorf Solar CSG,RENG3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.259504,-94.28907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61383,Rengstorf Solar CSG,RENG4,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.259504,-94.28907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61383,Rengstorf Solar CSG,RENG5,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.259504,-94.28907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61384,St. Cloud Solar CSG,STCL1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.477397,-94.121314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61384,St. Cloud Solar CSG,STCL2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.477397,-94.121314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61384,St. Cloud Solar CSG,STCL3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.477397,-94.121314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61384,St. Cloud Solar CSG,STCL4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.477397,-94.121314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61384,St. Cloud Solar CSG,STCL5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.477397,-94.121314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61385,Georgia LFG Oak Grove Plant,GM01,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,8.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,33.964988,-83.76564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.274942767347616 -61385,Georgia LFG Oak Grove Plant,GM02,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,8.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,33.964988,-83.76564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.274942767347616 -61385,Georgia LFG Oak Grove Plant,GM03,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,8.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,33.964988,-83.76564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.274942767347616 -61386,Georgia LFG Pine Ridge Plant,GM01,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,6.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,33.244192,-84.122025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.10194046105529 -61386,Georgia LFG Pine Ridge Plant,GM02,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,6.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,33.244192,-84.122025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.10194046105529 -61386,Georgia LFG Pine Ridge Plant,GM03,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,6.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,33.244192,-84.122025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.10194046105529 -61387,Georgia LFG Richland Creek Plant,GM01,2016.0,2.4,2.4,2.4,1,LFG,Landfill Gas,OP,IC,9.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,34.127146,-84.033376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.162284567892453 -61387,Georgia LFG Richland Creek Plant,GM02,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,9.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,34.127146,-84.033376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.162284091621334 -61387,Georgia LFG Richland Creek Plant,GM03,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,9.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,34.127146,-84.033376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.162284091621334 -61387,Georgia LFG Richland Creek Plant,GM04,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,9.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,34.127146,-84.033376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.162284091621334 -61387,Georgia LFG Richland Creek Plant,GM05,2016.0,2.2,2.1,2.1,1,LFG,Landfill Gas,OP,IC,9.0,2016.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9545454545454545,0.9545454545454545,SERC,SOCO,GA,34.127146,-84.033376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.162284091621334 -61388,AEP Jacksonville Solar Project,PV1,2017.0,7.1,7.1,7.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,JEA,FL,30.523647,-81.686443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61389,Letchworth Solar Project,PV1,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.618969,-78.17952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61391,A.J. Mihm Generating Station,M1,2019.0,18.8,18.9,18.9,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.792669,-88.614009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.485383273425043 -61391,A.J. Mihm Generating Station,M2,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.792669,-88.614009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.485383273425043 -61391,A.J. Mihm Generating Station,M3,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.792669,-88.614009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.485383273425043 -61392,F.D. Kuester Generating Station,K1,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61392,F.D. Kuester Generating Station,K2,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61392,F.D. Kuester Generating Station,K3,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61392,F.D. Kuester Generating Station,K4,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61392,F.D. Kuester Generating Station,K5,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61392,F.D. Kuester Generating Station,K6,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61392,F.D. Kuester Generating Station,K7,2019.0,18.8,18.8,18.8,5,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,46.512697,-87.510741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55783683895359 -61397,Georgia Power at Jakin GA PV,PV1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.138,-85.031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61398,Canis Major Solar Farm,S1980,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.009,-72.65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61399,Ashby Duffy CSG Solar Farm,DU183,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.68,-71.83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61402,Foard City Wind,FOARD,2019.0,352.8,350.3,350.3,0.3,WND,Onshore Wind Turbine,OP,WT,9.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9929138321995464,0.9929138321995464,TRE,ERCO,TX,33.915315,-99.740278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61403,Deep Branch Farm,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.670842,-79.199375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61404,Pikeville Farm,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.478155,-77.979166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61405,"Moorings Farm 2, LLC",1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.305747,-77.828889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61406,Essex Solar Center,ESSEX,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.834094,-76.799967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61407,Cottonwood Wind Energy Center,CTNWD,2017.0,89.7,89.7,89.7,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.240168,-98.405956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61408,Canis Minor Solar Farm,B1000,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.892997,-72.98595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61409,Highway 56 Solar,GEN1,2017.0,5.3,5.3,5.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.614436,-96.690448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61410,Whitesboro Solar,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.616526,-96.868721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61411,Whitesboro Solar II,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.624853,-96.867474,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61412,Latitude Solar Center,LATSC,2018.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.306387,-89.167539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61413,NYC-HH - CONEY ISLAND HOSPITAL,GEN1,1993.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,7.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.58549,-73.965581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.493834889138945 -61413,NYC-HH - CONEY ISLAND HOSPITAL,GEN2,2005.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,3.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.58549,-73.965581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.493848292004973 -61413,NYC-HH - CONEY ISLAND HOSPITAL,GEN3,2014.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,2.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.58549,-73.965581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.493977431215926 -61413,NYC-HH - CONEY ISLAND HOSPITAL,GEN4,2019.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.58549,-73.965581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.493977431215926 -61414,NY Times Daily Production Facility,GEN1,2005.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,9.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.775397,-73.830918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.228779384282483 -61414,NY Times Daily Production Facility,GEN2,2005.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,9.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.775397,-73.830918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.228779384282483 -61414,NY Times Daily Production Facility,GEN3,2005.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,9.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.775397,-73.830918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.228779384282483 -61414,NY Times Daily Production Facility,GEN4,2005.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,9.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.775397,-73.830918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.228779384282483 -61414,NY Times Daily Production Facility,GEN5,2008.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.775397,-73.830918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.228779384282483 -61414,NY Times Daily Production Facility,GEN6,2008.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,OP,IC,8.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.775397,-73.830918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.228779384282483 -61415,West Boylston Community Shared Solar,CS1,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.331362,-71.771135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61416,Mount Sinai Hospital,5EAST,2022.0,0.4,0.4,0.4,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153591352859136 -61416,Mount Sinai Hospital,AP1,1970.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.15305766682937 -61416,Mount Sinai Hospital,AP2,1970.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.15305766682937 -61416,Mount Sinai Hospital,AP3,1970.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.15305766682937 -61416,Mount Sinai Hospital,AP4,1970.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.15305766682937 -61416,Mount Sinai Hospital,AP5,1997.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,10.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153270419785226 -61416,Mount Sinai Hospital,AP6,1997.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,10.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153270419785226 -61416,Mount Sinai Hospital,CAM12,2007.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153591352859136 -61416,Mount Sinai Hospital,EB10,1996.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153270419785226 -61416,Mount Sinai Hospital,EB11,1996.0,1.5,1.5,1.5,0.4,DFO,Petroleum Liquids,SB,IC,6.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153270419785226 -61416,Mount Sinai Hospital,FPA15,2014.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,5.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153533240353324 -61416,Mount Sinai Hospital,GP7,1988.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153017742310374 -61416,Mount Sinai Hospital,GP8,1998.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,SB,IC,6.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153017742310374 -61416,Mount Sinai Hospital,HES13,2012.0,2.5,2.5,2.5,0.7,DFO,Petroleum Liquids,SB,IC,6.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153185317416045 -61416,Mount Sinai Hospital,HES14,2012.0,2.5,2.5,2.5,0.7,DFO,Petroleum Liquids,SB,IC,6.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.78999,-73.953689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.153185317416045 -61417,Gopher Creek Wind Farm,GCWF,2019.0,158.0,158.0,158.0,0.5,WND,Onshore Wind Turbine,OP,WT,9.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.875073,-101.208955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61418,Valencia 1 Solar CA,VAL1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.04358,-115.62779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61419,One Ten Partners PV,OTP,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.615622,-117.936594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61420,Merced 1 PV,MRCD1,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.989475,-120.878081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61421,Madera 1 PV,MDRA1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.056468,-120.167021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61422,"Southampton Solar, LLC",PV1,2017.0,100.0,103.6,103.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.614,-77.166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61423,"OR Solar 5, LLC",PV1,2018.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.030332,-121.611565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61424,"OR Solar 8, LLC",PV1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.238888,-121.585833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61425,Coyote Ridge Community Solar,COYCS,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.500969,-105.13143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61426,Gopher CSG,PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.398562,-92.679157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61427,Richmond CSG,PV1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.458606,-94.513847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61428,Taylors Falls CSG,PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.391842,-92.68435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61429,Big George PV CSG,12344,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.902312,-70.716128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61430,"OR Solar 6, LLC",PV6,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.208988,-120.367807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61431,Beacon BESS 1,BCNB1,2018.0,20.0,20.0,20.0,0.1,MWH,Batteries,OP,BA,10.0,2018.0, , ,10.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,LDWP,CA,35.256526,-118.027519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61432,SCE&G Curie CSG,SCCU1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.89,-81.106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61433,SCE&G Nimitz CSG,SCNM1,2018.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.497759,-80.956084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61434,SCE&G Springfield CSG,SCSP1,2018.0,6.1,6.1,6.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.491,-81.297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61435,DG AMP Solar Coldwater,AMPCW,2018.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,41.934117,-84.997244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61436,DG AMP Solar Orrville 3,AMPO3,2018.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.856428,-81.759461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61437,DG AMP Solar Versailles,AMPVS,2018.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.2207,-84.4978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61438,DG AMP Solar Jackson Center,AMPJC,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.444969,-84.047247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61439,Panasonic Carport Solar Hybrid,PANBS,2017.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,8.0,2017.0, , ,2.2,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PSCO,CO,39.808719,-104.781494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61439,Panasonic Carport Solar Hybrid,PANPV,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.808719,-104.781494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61441,Denver Braswell PV,GPDB1,2017.0,1.4,1.6,1.4, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.3,-83.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61442,Foundation California Training Facility,WTG1,2018.0,1.8,1.8,1.8,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.464,-121.382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61443,Foundation Mann Packing,WTG1,2019.0,1.8,1.8,1.8,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.504,-121.454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61444,Foundation SaIinas Valley State Prison,WTG1,2018.0,1.8,1.8,1.8,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.474,-121.371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61445,Gaskell West 1 Solar Facility,PV1,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.832786,-118.563578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61450,Farmington Solar Farm,FSF1,2018.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,37.755333,-90.427736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61451,Northfield Holdco CSG,NORTH,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.457874,-93.124648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61452,Waterford Holdco CSG,WATER,2017.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.475467,-93.19859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61453,B.R. Corcoran CSG,42278,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.0695,-93.6432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61453,B.R. Corcoran CSG,42279,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.0695,-93.6432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61453,B.R. Corcoran CSG,42280,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.0695,-93.6432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61453,B.R. Corcoran CSG,42281,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.0695,-93.6432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61453,B.R. Corcoran CSG,42282,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.0695,-93.6432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61454,B.R. Sartell CSG,42286,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.665,-94.2254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61454,B.R. Sartell CSG,42287,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.665,-94.2254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61454,B.R. Sartell CSG,42288,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.665,-94.2254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61455,B.R. Sauk Rapids CSG,42292,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.6236,-94.0782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61455,B.R. Sauk Rapids CSG,42294,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.6236,-94.0782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61455,B.R. Sauk Rapids CSG,42295,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.6236,-94.0782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61455,B.R. Sauk Rapids CSG,42296,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.6236,-94.0782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61455,B.R. Sauk Rapids CSG,42297,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.6236,-94.0782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61456,Montgomery Winsted CSG,41620,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.9517,-94.0556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61456,Montgomery Winsted CSG,41621,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.9517,-94.0556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61456,Montgomery Winsted CSG,41622,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.9517,-94.0556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61457,Palmer Solar Center,PALM,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.96724,-78.230963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61458,Martin Solar Center,MARTN,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.88051,-78.049191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61459,Georgia Power at Swainsboro,PV1,2017.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.605,-82.321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61460,IOS - MEW Phase 1,MEW1,2017.0,4.1,4.1,2.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7073170731707317,NPCC,ISNE,ME,44.804,-69.838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61461,North Smithfield Solar Power 1,NSS01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.9759,-71.586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61462,SR Platte Solar Farm,PV1,2017.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.181742,-104.692067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61463,Vandenberg Solar Project,VBERG,2017.0,25.3,25.3,25.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.749708,-120.509982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61464,"CoreSite Real Estate 2972 Stender, L.P.",G-1,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376248,-121.970706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61464,"CoreSite Real Estate 2972 Stender, L.P.",G-2,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376248,-121.970706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61464,"CoreSite Real Estate 2972 Stender, L.P.",G-3,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376248,-121.970706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61464,"CoreSite Real Estate 2972 Stender, L.P.",G-4,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376248,-121.970706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61464,"CoreSite Real Estate 2972 Stender, L.P.",G-5,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376248,-121.970706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61464,"CoreSite Real Estate 2972 Stender, L.P.",G-6,2011.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,6.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376248,-121.970706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61465,IGS Solar I - BWI2,BWI2,2017.0,1.4,1.4,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7142857142857144,RFC,PJM,MD,39.267,-76.548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61466,IOS - ERW9,EWR9,2017.0,5.3,5.0,4.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9433962264150944,0.7735849056603773,RFC,PJM,NJ,40.595,-74.225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61467,City of Lexington,LXNE1,2017.0,3.5,3.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.4571428571428572,MRO,SWPP,NE,40.757,-99.734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61468,Valdosta Prison,GPVP1,2017.0,1.0,1.2,1.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.9,-83.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61469,Lichtenthal,LIC01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.020053,-78.158181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61470,Call Farms 1,CFM11,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.037794,-78.187295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61471,Call Farms 3,CFM31,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.023046,-78.178591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61472,San Luis Solar Garden,ANTO2,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.068132,-106.018925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61473,Hopewell Valley High School Hybrid,BA1,2015.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,12.0,2015.0, , ,1.0,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,NJ,40.328005,-74.804896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61473,Hopewell Valley High School Hybrid,HWVHS,2015.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.328005,-74.804896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61474,CoreSite Real Estate 55 S. Market Street,G-1,2007.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.334151,-121.891622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61474,CoreSite Real Estate 55 S. Market Street,G-2,2007.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.334151,-121.891622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61474,CoreSite Real Estate 55 S. Market Street,G-3,2007.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.334151,-121.891622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61474,CoreSite Real Estate 55 S. Market Street,G-4,2007.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,10.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.334151,-121.891622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61475,"CoreSite Real Estate 1656 McCarthy, L.P.",G-1,2000.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.405727,-121.916248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61475,"CoreSite Real Estate 1656 McCarthy, L.P.",G-2,2000.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.405727,-121.916248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61475,"CoreSite Real Estate 1656 McCarthy, L.P.",G-3,2000.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.405727,-121.916248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61475,"CoreSite Real Estate 1656 McCarthy, L.P.",G-4,2000.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.405727,-121.916248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61475,"CoreSite Real Estate 1656 McCarthy, L.P.",G-5,2000.0,1.0,1.0,1.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.405727,-121.916248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61476,"CoreSite Real Estate 2901 Coronado, L.P.",G-1,2010.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.375089,-121.971728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61476,"CoreSite Real Estate 2901 Coronado, L.P.",G-2,2010.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.375089,-121.971728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61476,"CoreSite Real Estate 2901 Coronado, L.P.",G-3,2010.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.375089,-121.971728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61476,"CoreSite Real Estate 2901 Coronado, L.P.",G-4,2010.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.375089,-121.971728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61476,"CoreSite Real Estate 2901 Coronado, L.P.",G-5,2010.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.375089,-121.971728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61478,"SunE Feely 1 CSG, LLC",FELY1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.655217,-93.110402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61478,"SunE Feely 1 CSG, LLC",FELY2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.655217,-93.110402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61478,"SunE Feely 1 CSG, LLC",FELY3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.655217,-93.110402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61478,"SunE Feely 1 CSG, LLC",FELY4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.655217,-93.110402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61478,"SunE Feely 1 CSG, LLC",FELY5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.655217,-93.110402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-1,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-10,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-11,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-12,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-2,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-3,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-4,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-5,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-6,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-7,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-8,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",G-9,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61482,"CoreSite Real Estate 3032 Coronado, L.P.",S-13,2015.0,3.0,3.0,3.0,0.5,DFO,Petroleum Liquids,SB,IC,8.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.376181,-121.973097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61483,"Cottage Grove CSG, LLC",CTGR1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.842124,-92.873655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61483,"Cottage Grove CSG, LLC",CTGR2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.842124,-92.873655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61483,"Cottage Grove CSG, LLC",CTGR3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.842124,-92.873655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61483,"Cottage Grove CSG, LLC",CTGR4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.842124,-92.873655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61483,"Cottage Grove CSG, LLC",CTGR5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.842124,-92.873655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61484,"Fox CSG, LLC",FOX1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.392643,-92.681317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61484,"Fox CSG, LLC",FOX2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.392643,-92.681317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61484,"Fox CSG, LLC",FOX3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.392643,-92.681317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61484,"Fox CSG, LLC",FOX4,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.392643,-92.681317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61484,"Fox CSG, LLC",FOX5,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.392643,-92.681317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61485,"SunE Stolee CSG, LLC",STOL1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.173879,-93.35047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61485,"SunE Stolee CSG, LLC",STOL2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.173879,-93.35047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61485,"SunE Stolee CSG, LLC",STOL3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.173879,-93.35047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61486,"Wyoming 2 CSG, LLC",WY01,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.35,-92.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61486,"Wyoming 2 CSG, LLC",WY02,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.35,-92.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61486,"Wyoming 2 CSG, LLC",WY03,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.35,-92.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61486,"Wyoming 2 CSG, LLC",WY04,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.35,-92.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61486,"Wyoming 2 CSG, LLC",WY05,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.35,-92.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61487,SL Babylon,SLBAB,2017.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.730844,-73.375833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61488,NYU LANGONE HEALTH,ENB1,2016.0,2.7,2.7,2.7,0.8,DFO,Petroleum Liquids,SB,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.21019079068061 -61488,NYU LANGONE HEALTH,ENB2,2016.0,2.7,2.7,2.7,0.8,DFO,Petroleum Liquids,SB,IC,6.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.21019079068061 -61488,NYU LANGONE HEALTH,ENB3,2015.0,2.5,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.11999999999999988,0.11999999999999988,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210163950666204 -61488,NYU LANGONE HEALTH,GT,2016.0,7.5,7.5,7.5,4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.88486019993752 -61488,NYU LANGONE HEALTH,HCC1,2006.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.2106501547987625 -61488,NYU LANGONE HEALTH,KML1,2018.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210163950666204 -61488,NYU LANGONE HEALTH,KML2,2018.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210163950666204 -61488,NYU LANGONE HEALTH,KML3,2018.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210163950666204 -61488,NYU LANGONE HEALTH,SCI1,2015.0,3.0,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.1333333333333333,0.1333333333333333,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.2103937917939405 -61488,NYU LANGONE HEALTH,SCI2,2015.0,3.0,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.1333333333333333,0.1333333333333333,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.2103937917939405 -61488,NYU LANGONE HEALTH,SKB1,1992.0,1.3,1.3,1.3,0.4,DFO,Petroleum Liquids,SB,IC,10.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210325776338351 -61488,NYU LANGONE HEALTH,SMB1,2006.0,1.4,1.4,1.4,0.4,DFO,Petroleum Liquids,SB,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210065451972405 -61488,NYU LANGONE HEALTH,SMB2,2006.0,1.4,1.4,1.4,0.4,DFO,Petroleum Liquids,SB,IC,9.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.746778,-73.972226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.210065451972405 -61489,Cameron Solar,CAM,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.574,-80.707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61490,Estill Solar,EST1,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.763843,-81.242151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61493,E-Volve Energy Holdings LLC,SEALY,2015.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.740788,-96.15994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61494,Wright Cuddyer CSG,41327,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.1831,-93.7341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61494,Wright Cuddyer CSG,41328,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.1831,-93.7341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61494,Wright Cuddyer CSG,41329,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.1831,-93.7341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61494,Wright Cuddyer CSG,41330,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.1831,-93.7341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61495,Carver Gladden CSG,42254,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.8071,-93.8717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61495,Carver Gladden CSG,42255,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.8071,-93.8717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61495,Carver Gladden CSG,42256,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.8071,-93.8717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61496,Adams Solar Center,ADAMS,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.675,-121.122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61497,Elbe Solar Center,ELBE,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.618,-121.205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61498,Hampton Solar 2,HAM2,2017.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.881,-81.136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61499,CED Foster,FORI,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.795,-71.787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61500,Porter Way Community Solar Garden,PV1,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.851028,-93.778397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61501,ABEC #2 dba West-Star Dairy,GEN1,2018.0,1.0,1.0,1.0,0.8,OBG,Other Waste Biomass,OP,IC,2.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,35.472113,-119.432866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.62457379444715 -61502,ABEC #3 dba Lakeview Dairy,GEN1,2018.0,1.0,1.0,1.0,0.9,OBG,Other Waste Biomass,OP,IC,2.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,35.21426,-119.202974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.018596123624935 -61503,ABEC #4 dba CE&S Dairy,GEN1,2018.0,1.0,1.0,1.0,0.9,OBG,Other Waste Biomass,OP,IC,2.0,2018.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,35.17306,-119.116384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.272968197879859 -61504,RJC I CSG,RCJ1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.125053,-93.279116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61505,Huneke I CSG,HUNE1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.726789,-92.669448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61506,Krause CSG,KRAUS,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.795624,-95.209719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61507,DG New Jersey Solar RLS Logistics,RLSNJ,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.575217,-75.014147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61508,Provo Power Plant,1,2018.0,2.4,2.4,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.2427,-111.66298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.32094982765224 -61508,Provo Power Plant,2,2018.0,2.4,2.4,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.2427,-111.66298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.32094982765224 -61508,Provo Power Plant,3,2018.0,2.4,2.4,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.2427,-111.66298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.32094982765224 -61508,Provo Power Plant,4,2018.0,2.4,2.4,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.2427,-111.66298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.32094982765224 -61508,Provo Power Plant,5,2018.0,2.4,2.4,2.4,1,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,40.2427,-111.66298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.32094982765224 -61509,Monroe County Sites A & B,MONA,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.174071,-77.392234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61509,Monroe County Sites A & B,MONB,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.174071,-77.392234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61510,"Monroe County Sites C, D, & E",MONC,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.31879,-77.740208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61510,"Monroe County Sites C, D, & E",MOND,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.31879,-77.740208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61510,"Monroe County Sites C, D, & E",MONE,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.31879,-77.740208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61512,"Bullock Solar, LLC",GEN1,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.475369,-78.315078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61513,Marlin Solar,GEN1,2017.0,5.3,5.3,5.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.286739,-96.877205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61514,North Gainesville Solar,GEN1,2017.0,5.2,5.2,5.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.656072,-97.148569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61515,DG Camden LLC Holtec,HOLTC,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.910969,-75.1186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61516,School Sisters CSG,SCHOO,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.17897,-93.968902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61518,301 Chestnut Solar NG,3010,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.055179,-72.52178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61519,Baker Point,GEN1,2016.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.570338,-77.363415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61520,Rosewood Solar,GEN1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.4375,-78.10709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61521,Swamp Fox Solar,PGRD2,2017.0,10.8,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.791505,-81.256166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61522,Champion Solar,PGRD3,2017.0,10.8,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.794732,-81.262417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61523,Haley Solar,PGRD1,2017.0,8.2,8.2,8.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.023402,-81.29337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61524,Whitewright Solar,GEN1,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.498186,-96.378894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61525,ABD Farms,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.728738,-79.748273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61526,Antanavica Solar,GEN1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.250771,-71.948876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61527,Bakatsias Solar,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.072359,-79.347471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61528,Bayboro Solar Farm,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.148339,-76.810226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61529,Estill Solar II,GEN1,2017.0,10.2,10.2,10.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.727842,-81.253453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61530,Gaston Solar I - SC,GEN1,2018.0,10.2,10.2,10.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.774657,-81.110546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61532,Leon Solar,GEN1,2017.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.16114,-96.239739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61533,Mustang Solar,GEN1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.416167,-79.57597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61534,Old Caroleen Solar Farm,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.297715,-81.812045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61535,Statesville Solar,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.739704,-80.712405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61536,Wakefield Solar,GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.814236,-78.312403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61537,Weston Landfill Solar,WESTO,2016.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.374553,-71.2825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61538,Braintree Landfill Solar,BRAIN,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.207264,-70.997778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61539,GELD Solar Farm,GELD,2016.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.262269,-71.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61540,Fort Hays State University Wind Farm,WIND1,2013.0,2.0,2.0,2.0,0.5,WND,Onshore Wind Turbine,OP,WT,11.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.874316,-99.405214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61540,Fort Hays State University Wind Farm,WIND2,2013.0,2.0,2.0,2.0,0.5,WND,Onshore Wind Turbine,OP,WT,11.0,2013.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.874316,-99.405214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61541,Town of Rocky Hill PV CSG,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.643223,-72.633011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61541,Town of Rocky Hill PV CSG,PV2,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.643223,-72.633011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61541,Town of Rocky Hill PV CSG,PV3,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.643223,-72.633011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61542,"PopeSun CSG, LLC",GEN1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.643438,-95.526171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61543,"CF Novel Solar CSG Gardens Five, LLC",GEN1,2017.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.093763,-93.401684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61544,"LeSun CSG, LLC",GEN1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.213446,-93.552423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61545,"CGSun, LLC Community Solar",GEN1,2017.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.847916,-92.874985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61547,"WrightSun CSG, LLC",GEN1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.21643,-93.718376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61548,"CF Novel Solar CSG Gardens Seven, LLC",GEN1,2017.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.430807,-94.02188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61550,DG Haverhill CSG,HAVER,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.817023,-71.116786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61551,Good Samaritan Hospital,EGEN1,1980.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.111498,-74.135402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.434944237918215 -61551,Good Samaritan Hospital,EGEN2,2012.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.111498,-74.135402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.434505546377154 -61551,Good Samaritan Hospital,EGEN3,2012.0,0.2,0.2,0.2,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.111498,-74.135402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.4349442379182165 -61552,Fort Detrick Solar PV,FDSPV,2016.0,15.7,15.7,12.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.802547770700637,RFC,PJM,MD,39.44,-77.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61553,Klamath Falls Solar 2 CSG,1,2017.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.183,-121.764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61554,Comer Solar,1,2018.0,2.0,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.0942,-83.1439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61555,DG Crystal Spring CSG,SPRIN,2017.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.679836,-70.495276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61556,Facebook 1 Solar Energy Center,FB1,2017.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,34.831,-106.762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61557,Facebook 2 Solar Energy Center,FB2,2018.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,35.08,-106.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61558,Facebook 3 Solar Energy Center,FB3,2018.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,35.075,-106.865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61559,Woodline Solar,PGRD5,2017.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.236443,-121.57766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61560,Eagle Point Solar,PGRD4,2017.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.400814,-122.82917,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61561,Bladen Solar,GEN1,2017.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.823522,-78.62345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61562,Falmouth Landfill Solar,FAL1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.610106,-70.598611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61563,Denver Metro Solar,53962,2017.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.759298,-104.621139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61564,Upland Prairie,1,2019.0,299.3,299.3,299.3,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.207406,-95.349397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61565,English Farms,1,2019.0,171.5,171.5,171.5,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.57,-92.40718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61566,El Dorado Springs Solar Farm,EDSF1,2018.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,AECI,MO,37.858706,-94.002631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61567,Woodhull Hospital,EGEN1,1972.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.704774,-73.94186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.869210256410257 -61567,Woodhull Hospital,EGEN2,1972.0,1.5,1.5,1.5,0.5,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.704774,-73.94186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.869210256410257 -61567,Woodhull Hospital,EGEN3,2001.0,2.0,2.0,2.0,0.6,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.704774,-73.94186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86923076923077 -61567,Woodhull Hospital,EGEN4,2001.0,2.0,2.0,2.0,0.5,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.704774,-73.94186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86923076923077 -61567,Woodhull Hospital,EGEN5,2001.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.704774,-73.94186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.86923076923077 -61568,The Allen Hospital,EGEN1,2009.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.873268,-73.912967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.61965811965812 -61569,Mount Sinai Beth Israel,EGEN1,1988.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.812080536912752 -61569,Mount Sinai Beth Israel,EGEN2,1988.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.81187716087045 -61569,Mount Sinai Beth Israel,EGEN4,1988.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.813744184272746 -61569,Mount Sinai Beth Israel,EGEN5,1988.0,0.3,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.81187716087045 -61569,Mount Sinai Beth Israel,EGEN7,1988.0,0.5,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.814864535025627 -61569,Mount Sinai Beth Israel,EGEN8,1988.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.81187716087045 -61569,Mount Sinai Beth Israel,EGEN9,1988.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.812080536912752 -61569,Mount Sinai Beth Israel,GEN10,1988.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,1988.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.732666,-73.981597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23.81341143449875 -61570,Veseli Community Solar Garden,40921,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.526806,-93.366494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61571,New Germany Community Solar Garden,39062,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.905428,-94.000847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61572,Lake Waconia Community Solar Garden,38610,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.874961,-93.815011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61573,Lake Waconia IV Community Solar Garden,40926,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.874961,-93.815011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61574,Zumbro Community Solar Garden,38674,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.319478,-92.670339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61575,Anheuser-Busch Baldwinsville,BAL01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.151537,-76.414844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61576,Columbia University - Johnson Farms,JF01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.379107,-74.263804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61577,Time Warner Cable Enterprises - Martino,MRT01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.183689,-75.43048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61578,Columbia University - Minisink,MIN01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.293747,-74.554452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61579,St. Lawrence University - Sutton,SUT01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.932397,-75.872257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61580,"Tumbleweed Solar, LLC",TUMBL,2017.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.192575,-121.233106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61581,"Davis Lane Solar, LLC",DAVIS,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.107345,-76.52924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61582,Voyager Wind II,VYGR2,2018.0,128.7,128.7,128.7,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.073377,-118.268616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61583,Voyager Wind III,VYGR3,2018.0,43.2,43.2,43.2,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.060768,-118.264734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61584,Voyager Wind IV,VYGR4,2018.0,21.6,21.6,21.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.077872,-118.2497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61585,Scandia CSG,40802,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.2528,-92.8766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61585,Scandia CSG,40803,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.2528,-92.8766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61585,Scandia CSG,40804,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.2528,-92.8766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61585,Scandia CSG,40805,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.2528,-92.8766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61585,Scandia CSG,40806,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.2528,-92.8766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61586,MontSun Community Solar,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.060283,-93.904656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61587,WaveSun Community Solar,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.060844,-93.980233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61588,Independence II Solar Farm,1,2018.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,MO,39.04,-94.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61588,Independence II Solar Farm,2,2018.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,MO,39.04,-94.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61589,UL Advanced Wind Turbine Test Facility,MT-1,2016.0,0.1,0.1,0.1,0,WND,Onshore Wind Turbine,OP,WT,1.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,34.966012,-101.78412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61589,UL Advanced Wind Turbine Test Facility,UT-1,2018.0,3.4,3.4,3.4,0,WND,Onshore Wind Turbine,OP,WT,7.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,34.966012,-101.78412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61590,DG Foxborough Elm CSG,FOXEL,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.056053,-71.141312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61591,Town of Foxborough - Landfill (SREC II) CSG,FOXLA,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.059675,-71.135414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61593,Westmont 301,W5791,2017.0,1.8,1.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.4444444444444444,WECC,LDWP,CA,33.763012,-118.286558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61594,Westmont 401,W5792,2017.0,2.9,2.0,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.6896551724137931,0.4482758620689655,WECC,LDWP,CA,33.762421,-118.288214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61595,Flambeau Solar Partners,FLAMB,2017.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.7368,-90.471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61596,Citizens Agawam Landfill Solar,PV1,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.092988,-72.597211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61597,Norton Landfill Solar,PV1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.959582,-71.150524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61598,Tyngsborough Solar,PV1,2017.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.669744,-71.446484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61599,"New Road Solar, LLC",NEWRD,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.403238,-74.567786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61600,Old Bridge Solar Farm,OLDBR,2018.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.444372,-74.243376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61601,Raritan Solar - 53 Highway,RARIT,2018.0,8.4,8.4,8.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.453864,-74.863033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61602,CED Chicopee Solar,CSMA,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.203921,-72.551031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61603,UMASS,UMASS,2016.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.391306,-72.5325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61604,Camden CSD Solar Array,1,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.312306,-75.695263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61605,San Luis Valley Solar Array,1,2017.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.777,-106.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61606,Vilas Solar Array,1,2017.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.384,-102.466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61607,Stenner Creek Solar,CPOLY,2018.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.32,-120.691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61608,Montgomery County Solar,1,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.113,-77.236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61609,"Heartland Divide Wind Project, LLC",1,2018.0,103.5,103.5,103.5,50,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.71138,-94.80199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61610,NC 102 Project LLC,NC102,2018.0,74.8,74.8,74.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.2925,-80.4975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61611,Techren Solar I LLC,TECH1,2019.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.851336,-114.974386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61612,"WED Kingstown Solar I, LLC - West",KTNEA,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.49175,-71.624581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61613,WED Stilson Solar,STILS,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.518751,-71.686461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61614,Cyril,1,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,34.8981,-98.227872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61615,Hinton,1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,35.494656,-98.385661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61616,Marietta,1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,33.943183,-97.108608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61617,Pine Ridge,1,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,35.013397,-98.444717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61618,Tuttle,1,2017.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,35.266556,-97.846528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61619,CDCR (CA) - Solano State Prison,SOLSP,2013.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.32272,-121.97062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61620,CDCR (CA) - Corcoran State Prison,CORSP,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.06502,-119.55756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61621,CDCR (CA) - Wasco State Prison,WASCO,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.60053,-119.40366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61622,WED Kingstown Solar I - East Array,KTNWA,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.492253,-71.619114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61625,West Moore Solar II,GEN1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.61748,-96.6284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61626,Dundas Solar Holdings LLC CSG,DU,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.439647,-93.197327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61627,Waterville CSG Solar Holdings LLC,WA,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.197103,-93.571169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61628,Kilroy Solar,KILRO,2018.0,1.1,1.1,0.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8181818181818181,WECC,CISO,CA,32.936137,-117.234157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61629,West Brookfield Solar - Gilbertsville Rd (CSG),WB,2017.0,4.0,4.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.75,NPCC,ISNE,MA,42.272516,-72.210291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61630,William G Mennen Sports Solar,MENN,2011.0,1.3,1.3,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7692307692307692,RFC,PJM,NJ,40.814851,-74.47586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61631,"Chiloquin Solar, LLC",CHILO,2018.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.610732,-121.861248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61633,DG Tufts Science LLC CSG,SCIEN,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.237583,-71.686069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61634,DG Dighton LLC CSG,DIGHT,2017.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.801491,-71.144835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61635,DG Tufts Knoll LLC CSG,KNOLL,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.24325,-71.672328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61636,DG Webster LLC CSG,WEBST,2017.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.41389,-71.513556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61637,Denison Solar Array,PV1,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.073337,-82.517957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61638,Turtle Creek Wind Farm LLC,TC1,2018.0,199.2,199.2,199.2,1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.429604,-92.839506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61640,Texon Hydroelectric Project,1,1982.0,1.5,1.5,1.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1982.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.221412,-72.85964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61641,Seneca Falls Hydroelectric Project,23,1917.0,1.7,1.7,1.7,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.915299,-76.78672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61641,Seneca Falls Hydroelectric Project,24,1917.0,1.7,1.7,1.7,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.915299,-76.78672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61641,Seneca Falls Hydroelectric Project,25,1917.0,1.7,1.7,1.7,0.6,WAT,Conventional Hydroelectric,OP,HY,1.0,1917.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.915299,-76.78672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61642,Waterloo Hydroelectric Project,10,1915.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.901914,-76.86233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61642,Waterloo Hydroelectric Project,11,1915.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.901914,-76.86233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61642,Waterloo Hydroelectric Project,12,1915.0,0.5,0.5,0.5,0.2,WAT,Conventional Hydroelectric,OP,HY,1.0,1915.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.901914,-76.86233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61643,Denton Energy Center,DEC1,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC10,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC11,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC12,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC2,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC3,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC4,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC5,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC6,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC7,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC8,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61643,Denton Energy Center,DEC9,2018.0,18.8,18.8,18.8,3.8,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.214869,-97.209692,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.333221172495849 -61644,August Wind Farm,AUG,2017.0,1.8,1.8,1.8,0,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.764914,-94.475628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61645,Altair Community Solar Garden,ALTA,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.924981,-93.485831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61646,LA3 West Baton Rouge Solar Facility,LA3WB,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,LA,30.465105,-91.331855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61647,ENO Paterson Solar,NOSPB,2016.0,0.5,0.5,0.5,0.1,MWH,Batteries,OP,BA,6.0,2016.0, , ,0.5,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,MISO,LA,30.011409,-90.023973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61647,ENO Paterson Solar,NOSPS,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,LA,30.011409,-90.023973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61648,Robins Air Force Base Solar,1,2021.0,128.0,128.0,128.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.681222,-83.616387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61650,Blazing Star 2 Wind Farm,BLZS2,2021.0,200.0,200.0,200.0,1,WND,Onshore Wind Turbine,OP,WT,1.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.445293,-96.35276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61651,Capricornus Community Solar Garden,CAPR,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.398742,-94.717433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61652,"Fiber Recovery, Inc.",ENG1,2008.0,0.8,0.8,0.8,0.2,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,44.8875,-89.3859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61652,"Fiber Recovery, Inc.",ENG2,2008.0,0.8,0.8,0.8,0.2,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,44.8875,-89.3859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61652,"Fiber Recovery, Inc.",ENG3,2008.0,0.8,0.8,0.8,0.2,LFG,Landfill Gas,OP,IC,1.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,WI,44.8875,-89.3859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61654,Balm Solar,PV1,2018.0,74.4,74.4,74.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.769667,-82.233972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61655,Bonnie Mine Solar,PV1,2019.0,37.5,37.5,37.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.89008,-81.98717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61656,Grange Hall Solar,PV1,2019.0,61.1,61.1,61.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.681278,-82.164656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61657,Lake Hancock Solar,PV1,2019.0,49.5,49.5,49.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.719139,-82.033889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61658,"Cougar Solar, LLC",COUGR,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.462405,-79.180654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61660,Whirlpool Corp-Greenville Wind Farm,WTG1,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.131293,-84.609857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61660,Whirlpool Corp-Greenville Wind Farm,WTG2,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.131293,-84.609857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61660,Whirlpool Corp-Greenville Wind Farm,WTG3,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,40.131293,-84.609857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61661,Vista Energy Storage System ,VISTA,2018.0,40.0,40.0,40.0,0,MWH,Batteries,OP,BA,6.0,2018.0, , ,40.0,40.0,40.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.203977,-117.253852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61662,Carrizozo Solar,PV1,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,33.610306,-105.747825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61663,Lithia Solar,GEN1,2019.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.753272,-82.164656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61664,Mountain View Solar (FL),GEN1,2022.0,54.6,54.6,54.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,28.39799,-82.22043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61665,Payne Creek Solar,GEN1,2018.0,70.3,70.3,70.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.664583,-81.964222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61666,Peace Creek Solar,GEN,2019.0,55.4,55.4,55.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.913306,-81.810111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61667,Wimauma Solar,1,2020.0,74.8,74.8,74.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.736389,-82.271722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61668,"Creston Ridge II, LLC",CR2-1,2017.0,2.3,2.3,2.3,0.2,WND,Onshore Wind Turbine,OP,WT,6.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.677,-97.391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61668,"Creston Ridge II, LLC",CR2-2,2017.0,2.3,2.3,2.3,0.2,WND,Onshore Wind Turbine,OP,WT,6.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.677,-97.391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61668,"Creston Ridge II, LLC",CR2-3,2017.0,2.3,2.3,2.3,0.2,WND,Onshore Wind Turbine,OP,WT,6.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.677,-97.391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61669,Scandia Community Solar Garden,SCAND,2018.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.28718,-92.8125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61670,RJC II Community Solar Garden,RJCII,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.138851,-93.257152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61671,Betcher Community Solar Garden,BETCH,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.392415,-92.595952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61672,Sherburne Community Solar,PV1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.438123,-94.044166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61673,Arkwright Summit Wind Farm LLC,WT,2018.0,78.4,78.4,78.4,7.1,WND,Onshore Wind Turbine,OP,WT,8.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.414911,-79.242681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61674,Wildcat Ranch Wind Project,WT,2018.0,150.0,150.0,150.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.5296,-102.9619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61675,NCSU CCUP Cogeneration Plant,CTG1,2019.0,5.6,5.3,5.6,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9464285714285715,1.0,SERC,CPLE,NC,35.775583,-78.673723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.280343198688904 -61675,NCSU CCUP Cogeneration Plant,STG,2019.0,1.0,1.0,1.0,0.1,NG,Natural Gas Steam Turbine,OP,ST,2.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,CPLE,NC,35.775583,-78.673723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51.185870080606925 -61676,NCSU Cates Cogeneration Plant,CTG1,2012.0,5.6,4.7,5.3,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8392857142857144,0.9464285714285715,SERC,CPLE,NC,35.784027,-78.674704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.895979761726734 -61676,NCSU Cates Cogeneration Plant,CTG2,2012.0,5.6,4.7,5.3,3,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8392857142857144,0.9464285714285715,SERC,CPLE,NC,35.784027,-78.674704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.895979761726734 -61677,Perennial Windfarm,T-1,2018.0,2.3,2.3,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.631872,-97.642708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61677,Perennial Windfarm,T-2,2018.0,2.3,2.3,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.631872,-97.642708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61677,Perennial Windfarm,T-3,2018.0,2.3,2.3,2.3,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.631872,-97.642708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61678,Pinal Central Energy Center Hybrid,BA1,2018.0,10.0,10.0,10.0,0.3,MWH,Batteries,OP,BA,4.0,2018.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,SRP,AZ,32.875697,-111.551111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61678,Pinal Central Energy Center Hybrid,PCEC,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,32.875697,-111.551111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61679,Cox Battery Energy Storage,1,2017.0,1.2,1.2,1.2,1,MWH,Batteries,OP,BA,9.0,2017.0,12,2023,1.5,1.2,1.0,PBB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,MO,37.135022,-93.324363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61680,Tatanka Wi,MMPA,2017.0,7.1,7.1,7.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.210766,-93.884273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61681,Middle Daisy,10257,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NM,32.978636,-103.371284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61682,USG 1,USG1,2014.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.79278,-115.857336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61683,USG 2,USG2,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.790403,-115.863214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61684,Klawock Power Generation Station,1,2017.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,55.553197,-133.08535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.081272084805654 -61685,Slana Generating Station ,1,2016.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.592756,-143.588869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.051365199602253 -61685,Slana Generating Station ,2,2016.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.592756,-143.588869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.051365199602253 -61685,Slana Generating Station ,4,2021.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,62.592756,-143.588869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.051365199602253 -61686,Johnson 1 Community Solar,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.483155,-92.815184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61688,North Gooding Main Hydro,NGM1,2016.0,1.3,1.3,0.1,0.4,WAT,Conventional Hydroelectric,OP,HY,10.0,2016.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.07692307692307698,WECC,IPCO,ID,43.0451,-114.5588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61689,Grimm Community Solar,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.731404,-94.609342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61690,Foreman's Hill Community Solar,FOREM,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.553337,-92.636857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61691,"Depot Solar Center, LLC",DEPOT,2022.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.276278,-79.116506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61692,IVC Solar,IVCS,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.83186,-115.506629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61693,Buckleberry Solar,GEN,2018.0,52.1,52.1,52.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.380683,-77.405992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,35540,2005.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,9.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,35541,1998.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,10.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,35543,2005.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,38471,2020.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,38742,2020.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,38743,2020.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,12.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,38746,2020.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61694,Lockheed Martin Solar,SOLAR,2017.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.539415,-81.216368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61695,Johnson II Community Solar,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.491965,-92.854173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61696,Twiggs Solar,TWIGG,2020.0,204.0,204.0,204.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.604997,-83.491239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61697,Lamesa II,IVORY,2018.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.713326,-101.885218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61698,Folsom SP and CSP Sacramento,FOLSM,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.687,-121.16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61699,Otarre Solar Park,OTRRE,2017.0,1.6,1.6,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.625,SERC,SCEG,SC,33.9324,-81.0514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61700,PowerFin Kingsbery,PFPKB,2018.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.265877,-97.684861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61701,Seabrook Solar,GEN1,2019.0,72.5,72.5,72.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.56445,-80.742047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61702,Greater New Bedford LFG Utiliz. Facility,11052,2005.0,3.3,3.2,3.2,1.6,LFG,Landfill Gas,OP,IC,10.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9696969696969698,0.9696969696969698,NPCC,ISNE,MA,41.72496,-70.977965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.88733459357278 -61703,Sikorsky Aircraft CHP,PV-1,2010.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2010.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.250009,-73.09865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61703,Sikorsky Aircraft CHP,STG-1,2021.0,0.6,0.6,0.6,0.1,NG,Natural Gas Steam Turbine,OP,ST,1.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,NPCC,ISNE,CT,41.250009,-73.09865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61703,Sikorsky Aircraft CHP,TG-1,2011.0,9.2,10.3,11.8,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,CT,41.250009,-73.09865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.69008550632464 -61704,Aquila Community Solar,AQUI,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.651056,-95.3401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61705,Acturus Community Solar,ARCT,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.283211,-93.954417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61706,Auriga Community Solar,AURI,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.977875,-95.767356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61707,Canopus Community Solar,CANO,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.428308,-94.823247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61708,Sagitta Community Solar,SAGI,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.948328,-95.386192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61709,Libra Community Solar,LIBR,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.671231,-95.388514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61710,Aquarius Community Solar,AQUA,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.229142,-95.620106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61711,Cassiopeia Community Solar,CASS,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.647342,-95.328661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61712,Crux Community Solar,CRUX,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.04006,-92.69318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61713,Leo Community Solar,LEO,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.978197,-95.850781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61715,Deneb Community Solar,DENE,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.404139,-94.831075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61716,Kaus Community Solar,KAUS,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.050383,-92.961372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61717,"IRE Solar I, LLC",SSIRE,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.3,-75.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61718,Aerolease,APLEX,2018.0,1.3,1.1,0.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8461538461538463,0.6923076923076923,WECC,LDWP,CA,34.189857,-118.451355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61719,"CJ Solar I, LLC",LWCJ1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.7,-75.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61720,"COU Solar I, LLC",LECOU,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.7,-75.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61721,HEBT WLA 1,WLA01,2019.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,8.0,2019.0, , ,6.9,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.669266,-117.646846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61722,HEBT Irvine 1,IRV01,2018.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,5.0,2018.0, , ,6.5,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.713489,-117.852086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61722,HEBT Irvine 1,IRV1W,2018.0,4.5,4.5,4.5,0,MWH,Batteries,OP,BA,5.0,2018.0, , ,27.0,4.5,4.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.713489,-117.852086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61723,HEBT Irvine 2,IRV06,2018.0,2.5,2.5,2.5, ,MWH,Batteries,OP,BA,8.0,2018.0, , ,15.0,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.665246,-117.768222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61723,HEBT Irvine 2,IRV2W,2018.0,3.3,3.3,3.3, ,MWH,Batteries,OP,BA,2.0,2018.0, , ,19.8,3.3,3.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.665246,-117.768222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61724,Onyx - Saratoga Springs Landfill Solar CSG,10254,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.096874,-73.744855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61725,Madison County,PV1,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.028289,-75.700978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61726,Onyx - Pembroke Landfill Solar,10244,2017.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.049906,-70.802417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61727,Onyx - Brockton Thatcher Landfill Solar CSG,10238,2017.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.066369,-70.983446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61728,Barrett Farm Solar - Phase I,10263,2017.0,1.7,1.2,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7058823529411764,0.5882352941176471,NPCC,ISNE,CT,41.946333,-71.883799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61729,Richmond Solar Site 2,SRIC2,2018.0,7.4,7.4,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8108108108108107,RFC,PJM,IN,39.833452,-84.816212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61730,MA Solar Storage 1 Hybrid,61730,2018.0,1.0,1.0,1.0,0.2,MWH,Batteries,OP,BA,4.0,2018.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.450729,-71.742627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61730,MA Solar Storage 1 Hybrid,SCSS1,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.450729,-71.742627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61731,"Solten Plainville 6000, LLC",PLAIN,2017.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.041166,-71.293279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61732,Randolph,RAND,2017.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.177563,-71.077386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61733,Haywood Solar,HWOOD,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.5775,-89.286944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61734,Seneca Nation Cattaraugus Wind Turbine,1,2017.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,42.5809,-79.1027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61735,Hilltopper Wind Project,WT1,2019.0,185.0,185.0,185.0,0,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,PJM,IL,39.952927,-89.310249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61736,Woods Hill Solar,PV1,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.83184,-71.919867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61737,Navy Yard Peaker Station,GEN1,2017.0,2.0,2.0,2.0,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.890223,-75.185539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.404774424229677 -61737,Navy Yard Peaker Station,GEN2,2017.0,2.0,2.0,2.0,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.890223,-75.185539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.404774424229677 -61737,Navy Yard Peaker Station,GEN3,2017.0,2.0,2.0,2.0,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.890223,-75.185539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.404774424229677 -61737,Navy Yard Peaker Station,GEN4,2018.0,2.0,2.0,2.0,1.4,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,39.890223,-75.185539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.404774424229677 -61737,Navy Yard Peaker Station,GEN5,2021.0,6.2,6.2,6.2,0.1,MWH,Batteries,OP,BA,8.0,2021.0, , ,6.2,6.2,6.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,PA,39.890223,-75.185539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61738,GWCC PV Solar Farm,SOLAR,2015.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.017238,-76.908997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61739,Lockheed Martin RMS Syracuse,SYR1,2017.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,8.0,2017.0,8,2027,1.3,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.109574,-76.189224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61740,Gratis Road Solar Facility,GR01,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.844621,-83.697356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61741,Kingsberry Energy Storage System,KBESS,2018.0,1.5,1.5,1.5,0,MWH,Batteries,OP,BA,9.0,2018.0, , ,3.0,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.266028,-97.686139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61742,System Control Center,GEN1,2012.0,2.5,2.5,2.5,2,MWH,Flywheels,SB,FW,6.0,2012.0, , ,2.5,2.5,2.5,nan,other,other,Energy Storage,"Energy Storage, Flywheel ",1.0,1.0,TRE,ERCO,TX,30.219946,-97.708808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61742,System Control Center,GEN2,2012.0,2.5,2.5,2.5,2,MWH,Flywheels,SB,FW,6.0,2012.0, , ,2.5,2.5,2.5,nan,other,other,Energy Storage,"Energy Storage, Flywheel ",1.0,1.0,TRE,ERCO,TX,30.219946,-97.708808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61743,Naval Sub Base New London Fuel Cell,MMH2,2022.0,3.7,3.7,3.7,0.4,NG,Other Natural Gas,OP,FC,12.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.4,-72.0855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61743,Naval Sub Base New London Fuel Cell,MMH3,2022.0,3.7,3.7,3.7,0.4,NG,Other Natural Gas,OP,FC,12.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.4,-72.0855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61744,L'Oreal Solar - Florence,1,2017.0,1.1,0.9,0.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8181818181818181,0.5454545454545454,SERC,PJM,KY,38.987696,-84.608172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61745,Aurora County Wind,ACSD,2018.0,20.0,20.0,20.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.730833,-98.764167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61746,Brule County Wind,BCSD,2018.0,20.0,20.0,20.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.717,-98.922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61747,"Foxtail Wind, LLC",1,2020.0,150.0,150.0,150.0,1,WND,Onshore Wind Turbine,OP,WT,1.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.098211,-98.880073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61748,"Southern Current One, LLC",PRGE1,2017.0,10.2,10.2,10.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.947262,-81.215942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61750,Wistaria Ranch Solar,WICA,2018.0,106.7,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9372071227741331,0.9372071227741331,WECC,CISO,CA,32.676,-115.619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61751,Rotor Clip,RCLIP,2018.0,2.8,2.7,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9642857142857144,0.7857142857142858,RFC,PJM,NJ,40.539051,-74.532375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61752,Quincy II Solar Garden,PV1,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.638409,-104.662508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61753,Imboden Solar Garden,PV1,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.786769,-104.583574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61753,Imboden Solar Garden,PV2,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.786769,-104.583574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61754,SunSelect1,1,2018.0,3.3,3.3,3.3,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,35.096709,-118.602184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61754,SunSelect1,2,2018.0,3.3,3.3,3.3,1.6,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,35.096709,-118.602184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61755,"East Acres Solar NG, LLC",EA,2017.0,5.8,5.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.48275862068965514,NPCC,ISNE,MA,42.487476,-73.242331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61756,Meadow Lake Wind Farm VI LLC,MWLVI,2018.0,200.4,200.4,200.4,4,WND,Onshore Wind Turbine,OP,WT,11.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IN,40.692552,-87.127011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61758,Gaston County Renewable Energy Center,GEN1,2011.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,6.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3857,-81.172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.738275188035908 -61758,Gaston County Renewable Energy Center,GEN2,2011.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,6.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3857,-81.172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.738275188035908 -61758,Gaston County Renewable Energy Center,GEN3,2011.0,1.4,1.4,1.4,0.7,LFG,Landfill Gas,OP,IC,6.0,2011.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,DUK,NC,35.3857,-81.172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.738275188035908 -61759,Covington Solar Farm,CVS1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,36.31792,-97.58589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61761,Douglas County Forest Products,GEN-1,2006.0,6.3,6.3,6.3,1,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2006.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,PACW,OR,43.2898,-123.361638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.44917440993392 -61762,Sherburne North Project CSG,SHERB,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.4978,-94.1143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61763,Sunshine Gateway Solar Energy Center,1,2019.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,30.29,-82.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61763,Sunshine Gateway Solar Energy Center,2,2021.0,30.0,30.0,30.0,0.7,MWH,Batteries,OP,BA,12.0,2021.0, , ,75.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPL,FL,30.29,-82.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61764,Gore Mountain Solar II,SNWH2,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.543378,-73.32307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61765,HGS Solar I,SNWH1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.543716,-73.325257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61766,Miami Dade Solar Energy Center,1,2019.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,25.64,-80.49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61767,Pioneer Trail Solar Energy Center,1,2019.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.08,-81.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61768,Interstate Solar Energy Center,1,2019.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.5,-80.44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61769,Syncarpha Hancock I CSG,SYNH1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.433031,-73.336092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61770,Syncarpha Hancock II CSG,SYNH2,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.426866,-73.346996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61771,Syncarpha Hancock III CSG,SYNH3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.428054,-73.332624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61773,"Palmas Wind, LLC",PW,2020.0,144.9,142.6,142.6,0,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9841269841269841,0.9841269841269841,TRE,ERCO,TX,26.288889,-97.496389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61774,"Syncarpha Still River, LLC CSG",SYNBO,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.42075,-71.641533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61775,Town of Otis Wind Energy Project,OT196,2018.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.225765,-73.025764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61776,"Midway Wind, LLC",MIDWY,2019.0,162.9,162.9,162.9,0,WND,Onshore Wind Turbine,OP,WT,8.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.954976,-97.300202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61777,Brevard,ENG1,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.39265,-80.828666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.660329708874078 -61777,Brevard,ENG2,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.39265,-80.828666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.660329708874078 -61777,Brevard,ENG3,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.39265,-80.828666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.660329708874078 -61777,Brevard,ENG6,2008.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,5.0,2008.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.39265,-80.828666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.660329708874078 -61778,North 301 Solar,N301,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.213,-77.624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61779,Hernando,ENG1,2010.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2010.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,SEC,FL,28.66898,-82.485733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.60836866949356 -61780,Seminole Energy,ENG1,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.790186,-81.089015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.220665265452281 -61780,Seminole Energy,ENG2,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.790186,-81.089015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.220665265452281 -61780,Seminole Energy,ENG3,2007.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,11.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,FPL,FL,28.790186,-81.089015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.220665265452281 -61781,Edenton Solar,EDE,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.054,-76.544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61782,Live Oak Wind Project,WTGS,2019.0,199.5,199.5,199.5,2.6,WND,Onshore Wind Turbine,OP,WT,3.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.048557,-100.623114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61784,Upstream Wind Energy LLC,UWE,2018.0,202.5,202.5,202.5,2,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.184336,-97.964978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61785,Camilla Solar Energy Project,CAMSR,2020.0,171.4,171.4,171.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.26955,-84.228721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61786,Trinity College Fuel Cell,MB-22,2018.0,1.4,1.4,1.4,1.1,NG,Other Natural Gas,OP,FC,8.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.746288,-72.689356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61787,Bishop Hill III,BHIII,2018.0,119.0,119.0,119.0,2,WND,Onshore Wind Turbine,OP,WT,6.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,41.211057,-90.276024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61788,Hilltop Power,WT,2008.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.912882,-96.193221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61789,"Diamond Vista Wind Project, LLC",DV,2019.0,299.3,299.3,299.3,0,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,38.56564,-97.040628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61790,"Shaw Creek Solar, LLC",SHAWC,2019.0,74.9,74.9,74.9,0.1,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.674689,-81.754444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61791,Stage Gulch Solar,5001,2018.0,1.0,0.8,0.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.7,WECC,CISO,CA,38.216841,-122.542866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61792,Lavio Solar,5002,2018.0,1.0,1.0,0.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5,WECC,CISO,CA,38.194599,-122.663388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61793,Heyer CSG,HEYER,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.227172,-93.421725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61794,Gateway Solar,GTWYN,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.376941,-75.274195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61794,Gateway Solar,GTWYS,2019.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.376941,-75.274195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61795,Pacific Union College BESS,12649,2020.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,6.0,2020.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,38.570028,-122.444028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61798,Prairie Sky Solar Farm,1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,37.751716,-97.074497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61799,Rensselaer Solar Site 2,SREN2,2018.0,3.8,3.8,3.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8157894736842106,RFC,MISO,IN,40.949786,-87.14817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61800,DG AMP Solar Smyrna,AMPSM,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.279702,-75.622424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61804,City of Rochester Solar,ROC01,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.176918,-77.678512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61805,DG AMP Solar Piqua Staunton,AMPPS,2018.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.140866,-84.23148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61807,Hamilton Solar Power Plant,PV1,2018.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,30.444324,-83.186935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61809,"EGP Stillwater Solar PV II, LLC",STWII,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.542041,-118.560147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61810,Chisum,GEN1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.63291,-95.39071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61811,Titan Solar,PCEC,2018.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.68646,-104.01398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61813,"Ranchland Solar, LLC",RCHLD,2017.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.472591,-76.154089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61814,Kearsarge Concord II,CII,2017.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.449306,-71.420429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61815,Kearsarge Granby,KSG1,2017.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222962,-72.508328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61815,Kearsarge Granby,KSG2,2017.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222962,-72.508328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61815,Kearsarge Granby,KSG5,2017.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222962,-72.508328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61815,Kearsarge Granby,KSG6,2017.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222962,-72.508328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61815,Kearsarge Granby,KSG7,2017.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.222962,-72.508328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61816,IKEA Oak Creek Rooftop PV System,PV1,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,WI,42.902949,-87.935448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61817,Big Lake Project CSG,BIGLA,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.334,-93.792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61818,DG AMP Solar Brewster,AMPBR,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.702397,-81.58983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61819,IKEA Conshohocken Rooftop PV System,211,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.095176,-75.306372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61820,IKEA New Haven Rooftop PV & Fuel Cell,213FC,2016.0,0.3,0.3,0.3,0.3,NG,Other Natural Gas,OP,FC,12.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.295715,-72.91995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61820,IKEA New Haven Rooftop PV & Fuel Cell,213PV,2012.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.295715,-72.91995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61821,IKEA Jacksonville Rooftop PV System,PV1,2017.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,JEA,FL,30.23,-81.51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61822,"Princeton Energy Center, LLC",EDG1,2012.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,12.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.339838,-74.62393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61822,"Princeton Energy Center, LLC",EDG2,2012.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,12.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.339838,-74.62393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61822,"Princeton Energy Center, LLC",EDG3,2012.0,2.0,2.0,2.0,0.7,DFO,Petroleum Liquids,SB,IC,12.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.339838,-74.62393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61822,"Princeton Energy Center, LLC",GT1,2012.0,4.6,4.4,4.4,2,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9565217391304349,0.9565217391304349,RFC,PJM,NJ,40.339838,-74.62393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.193936498284325 -61822,"Princeton Energy Center, LLC",S1,2012.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.339838,-74.62393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61824,RPUWD Scheuer Well Solar Project,RPU2,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.11193,-117.27326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61825,Dignity - Siena Campus,PV1,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.004293,-115.115305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61826,O'Fallon Renewable Energy Center,OREC,2014.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,38.826648,-90.678124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61827,Dayton Cutoff Solar,PGRC3,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.17,-123.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61828,Valley Creek Solar,PGRC6,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.033,-123.094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61829,Silverton Solar,PGRC7,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.014,-122.807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61830,Sheep Solar,PGRC8,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.826,-122.949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61831,Colton Solar,PGRC2,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.17,-122.473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61832,Interstate Solar,PGRC5,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.129,-122.899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61833,Freedom Solar,PGRC9,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.287,-79.148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61834,Soboba Community Solar Project,SCSP1,2016.0,1.0,0.9,0.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.8,WECC,CISO,CA,33.767061,-116.905874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61834,Soboba Community Solar Project,SCSP2,2017.0,1.0,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,WECC,CISO,CA,33.767061,-116.905874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61835,Grand Ronde Solar,PGRC4,2017.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.054,-123.61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61836,"Minco Wind IV, LLC",MIV,2018.0,130.0,130.0,130.0,130,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.381047,-98.269562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61838,Cleveland Thermal,ST1,2017.0,0.5,0.5,0.5,0.1,NG,Natural Gas Steam Turbine,OP,ST,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.5094,-81.682272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -61838,Cleveland Thermal,ST2,2017.0,0.5,0.5,0.5,0.1,NG,Natural Gas Steam Turbine,OP,ST,2.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.5094,-81.682272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40.9374948089173 -61839,FECC Solar Benton,FECC1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,34.638429,-92.578347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61840,"Hope Farm Solar, LLC",HOPE,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.7479,-71.5263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61842,"Sun Farm VI, LLC",PV1,2018.0,5.0,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.96,SERC,PJM,NC,36.114444,-76.507778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61843,SeaWorld Aquatica,10276,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.586536,-117.004884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61844,Brush Solar Center,BRUSH,2020.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,44.465334,-118.204075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61846,Tulare BioMAT Fuel Cell,MM27,2019.0,2.8,2.8,2.8,2.2,OBG,Other Waste Biomass,OP,FC,12.0,2019.0, , ,,,,,biomass,biomass,Other Biomass Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.187138,-119.375097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61847,Broadalbin,10046,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.061306,-74.154885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61848,"PYCO Industries, Inc. Wind Farm",WT1,2008.0,10.0,3.0,4.4,0.2,WND,Onshore Wind Turbine,OS,WT,5.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.30000000000000004,0.44000000000000006,TRE,ERCO,TX,33.553184,-101.792412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61849,Danville,SO291,2018.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.660591,-79.29906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61850,Amana Society Service Company,IC1,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC10,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC11,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC12,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC2,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC3,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC4,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC5,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC6,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC7,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC8,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61850,Amana Society Service Company,IC9,2001.0,1.8,1.8,1.8,0.5,DFO,Petroleum Liquids,SB,IC,5.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.79323,-91.89179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.008222446284277 -61853,Jordanelle Dam Hydroelectric Project,GEN 1,2008.0,6.5,6.5,6.5,2.6,WAT,Conventional Hydroelectric,OP,HY,7.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.596605,-111.423589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61853,Jordanelle Dam Hydroelectric Project,GEN 2,2008.0,6.5,6.5,6.5,2.6,WAT,Conventional Hydroelectric,OP,HY,7.0,2008.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,PACE,UT,40.596605,-111.423589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61854,Baker City Solar,BAKER,2020.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,44.702418,-117.763482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61855,Morgan Solar Center,MORGN,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,43.951376,-117.07478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61856,Vale Solar Center,VALE,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,44.157874,-117.44434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61857,Toray Plastic America's CHP Plant,CG1,2003.0,7.5,6.8,7.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9066666666666666,1.0,NPCC,ISNE,RI,41.593802,-71.427609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.732731977287429 -61857,Toray Plastic America's CHP Plant,KG12,2014.0,5.0,5.0,5.0,1.8,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,RI,41.593802,-71.427609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.69116755513745 -61857,Toray Plastic America's CHP Plant,KG18,2014.0,7.5,7.5,7.5,2.6,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,RI,41.593802,-71.427609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.691167555137453 -61858,"Stillwater Wind, LLC",WT,2018.0,79.7,79.7,79.7,79.7,WND,Onshore Wind Turbine,OP,WT,10.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,45.86584,-109.476647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61860,Ontario Solar Center,ONTRO,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,OR,44.112841,-117.028093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61861,AES ES GILBERT,SRP,2019.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,1.0,2019.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,SRP,AZ,33.446804,-111.956261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61862,Dignity - San Martin,PV1,2018.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.057181,-115.272131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61863,Duanesburg,10048,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.762173,-74.201552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61864,"Dix Solar, L.L.C",DIXSL,2017.0,13.0,13.0,13.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.977433,-74.621862,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61865,"Rio Bravo Windpower, LLC",1,2019.0,237.6,237.6,237.6,3.5,WND,Onshore Wind Turbine,OP,WT,6.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.649,-99.0387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61866,Wildhorse Mountain Wind Facility,1,2019.0,100.0,100.0,100.0,3.5,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.591031,-95.191808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61867,Bovine,GEN1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.631324,-96.076894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61868,Bronson,GEN1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.537482,-95.969548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61869,Scenic Hill Solar III,SHS3,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SPA,AR,35.46715,-93.51517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61870,"Montevideo Solar LLC, CSG",MONTE,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.899475,-95.694192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61871,Sterling Solar (TX),GEN1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.166173,-96.172617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61872,Lampwick,GEN1,2019.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,30.872228,-99.537261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61873,Yellow Jacket,GEN1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.933841,-97.653747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61874,Eddy II,GEN1,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.291151,-97.260738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61875,Cascade Solar (TX),GEN1,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.205355,-96.023384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61876,"Persimmon Creek Wind Farm 1, LLC",PCWF1,2018.0,198.6,198.6,198.6,198.6,WND,Onshore Wind Turbine,OP,WT,9.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.174278,-99.349164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61877,"Hanover Solar, LLC",HAN01,2018.0,4.9,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9795918367346937,SERC,DUK,NC,34.800947,-77.213772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61878,John A Logan College Solar,JALC,2019.0,1.3,1.3,1.3,0,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,37.750571,-89.085297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61879,Bartow Solar Energy LLC,PV,2018.0,7.3,7.3,7.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,27.925984,-81.819102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61881,Morning View,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.546315,-79.742842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61882,Copperfield,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.340067,-79.991158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61883,Hopewell Friends,GEN1,2018.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.62845,-79.8727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61884,Kearney NPPD Solar Project,PV1,2017.0,5.8,5.8,5.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,40.721688,-99.041196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61885,Staunton,GEN1,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IN,39.45746,-87.20824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61886,Bar D,GEN1,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.923679,-108.462709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61887,Fort Bliss (DEA EPIC),DEPIC,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,EPE,TX,31.829986,-106.372861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61888,Johnstown,10049,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.999179,-74.314787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61889,Sholes Wind Energy Center,WSN1,2019.0,160.0,160.0,160.0,0.1,WND,Onshore Wind Turbine,OP,WT,11.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.3119,-97.3647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61890,NRG Chalk Point CT,SGT1,1990.0,94.0,80.2,80.2,30,DFO,Petroleum Liquids,OP,GT,6.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8531914893617022,0.8531914893617022,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25.431235431235432 -61891,"Stryker 22, L.L.C.",EDGRD,2018.0,19.8,19.8,19.8,19.8,MWH,Batteries,OP,BA,12.0,2018.0, , ,19.8,19.8,19.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,NJ,40.66538,-75.144467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61892,Plumsted 537 LLC,PLMST,2019.0,19.8,19.8,19.8,19.8,MWH,Batteries,OP,BA,2.0,2019.0, , ,19.8,19.8,19.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,NJ,40.1094,-74.497779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61893,BNB Camden Solar,BNBHQ,2017.0,2.2,2.1,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9545454545454545,0.5909090909090908,RFC,PJM,NJ,39.93903,-75.10802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61893,BNB Camden Solar,BNBSO,2017.0,1.5,1.4,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.6000000000000001,RFC,PJM,NJ,39.93903,-75.10802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61894,National Raisin,CR1,2015.0,1.0,0.9,0.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.6,WECC,CISO,CA,36.624512,-119.673088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61894,National Raisin,CR2,2015.0,1.0,0.8,0.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.4,WECC,CISO,CA,36.624512,-119.673088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61894,National Raisin,CR3,2015.0,0.6,0.5,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8333333333333334,0.5,WECC,CISO,CA,36.624512,-119.673088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61894,National Raisin,CR4,2015.0,0.3,0.3,0.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.33333333333333337,WECC,CISO,CA,36.624512,-119.673088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61895,Toyota HQ Plan,TOYHQ,2017.0,7.7,5.9,3.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7662337662337663,0.4545454545454546,TRE,ERCO,TX,33.084219,-96.84113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61898,Solean Solar Project,SOLEA,2016.0,4.0,4.0,4.0,4,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.086926,-78.448212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61899,Lincoln Ave Solar Project,LINC,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.78144,-73.083437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61900,Blydenburgh Solar Project,BLYD,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.815331,-73.182407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61901,Redstone Arsenal Hybrid,BA,2017.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,12.0,2017.0, , ,2.0,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,TVA,AL,34.610987,-86.611551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61901,Redstone Arsenal Hybrid,REDST,2017.0,10.0,7.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.72,0.42000000000000004,SERC,TVA,AL,34.610987,-86.611551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61902,Holtsville Solar Project,HOLTS,2017.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.797667,-73.033977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61903,Sharon Springs,10116,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.775105,-74.567145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61904,Amsterdam North,10044,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.953622,-74.119802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61905,Amsterdam South,10045,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.948957,-74.126159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61906,Phoebe Solar,PHOEB,2019.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.843422,-102.868295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61907,Springfield Solar Project,NJLND,2018.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.032087,-74.647387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61908,"Stratford Solar Center, LLC",STRAT,2022.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.660483,-76.56093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61909,Parkview Battery,PKVWB,2018.0,1.1,1.0,1.0,0,MWH,Batteries,OP,BA,9.0,2018.0, , ,1.0,1.1,1.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9090909090909091,0.9090909090909091,RFC,MISO,MI,42.26,-85.649722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61911,Ivester Wind Farm,WT1,2018.0,90.8,90.0,90.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9911894273127754,0.9911894273127754,MRO,MISO,IA,42.33327,-92.946436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61912,McGinness Hills 3,G1A,2021.0,24.8,24.8,24.8,12,GEO,Geothermal,OP,BT,4.0,2021.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,39.5963,-116.8942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61912,McGinness Hills 3,OEC31,2018.0,37.0,24.7,37.0,20,GEO,Geothermal,OP,BT,12.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6675675675675675,1.0,WECC,NEVP,NV,39.5963,-116.8942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61912,McGinness Hills 3,OEC32,2018.0,37.0,24.7,37.0,20,GEO,Geothermal,OP,BT,12.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6675675675675675,1.0,WECC,NEVP,NV,39.5963,-116.8942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61913,Punkin Center Battery Storage,B1,2018.0,2.0,2.0,2.0,1,MWH,Batteries,OP,BA,6.0,2018.0, , ,8.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,AZPS,AZ,33.87581,-111.31356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61914,Susquehanna University Solar,SO829,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.795166,-76.882525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61915,Bowie State Solar,SO285,2018.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.019083,-76.759479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61916,Pegasus Wind,PWEC,2019.0,48.0,48.0,48.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.452003,-83.50721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61916,Pegasus Wind,PWEC2,2020.0,130.0,130.0,130.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.452003,-83.50721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61917,Kearsarge Oppenheim CSG,OPPEN,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.060223,-74.736424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61918,"Blackville Solar Farm, LLC",1,2020.0,7.2,7.2,7.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.342619,-81.258933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61919,"Frontenac Holdco LLC, CSG",FRONT,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.501673,-92.358711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61920,Galloway 1 Solar Farm,GSM01,2021.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.435932,-99.796613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61921,Tahoka Wind,TAH,2018.0,300.0,300.0,300.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.150904,-101.679188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61922,Sunlight Beacon,BEACO,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.494632,-73.981635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61923,ACUA,VACUA,2018.0,1.0,1.0,1.0,0.1,MWH,Batteries,OP,BA,6.0,2018.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,NJ,39.381969,-74.445146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61924,"Cumblerland Land Holdings, LLC",CUMB,2018.0,14.7,14.7,14.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,AL,34.94974,-86.868053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61925,Casa Mesa Wind Energy Center Hybrid,CMNM,2018.0,50.9,50.9,50.9,10,WND,Onshore Wind Turbine,OP,WT,11.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.604989,-103.966089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61925,Casa Mesa Wind Energy Center Hybrid,CMNMB,2018.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,11.0,2018.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PNM,NM,34.604989,-103.966089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61926,"Armadillo Flats Wind Project, LLC",ARM,2018.0,247.3,247.3,247.3,247.3,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.300964,-97.567042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61927,Georgia-Pacific Taylorsville Plywood,CTG1,2018.0,7.2,6.2,8.2,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8611111111111112,1.0,SERC,SOCO,MS,31.837173,-89.4635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.163906878386799 -61928,Saint Albans Solar,GEN1,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.779729,-73.105823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61930,Techren Solar II LLC,TECH2,2019.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.867258,-114.956428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61931,Techren Solar III LLC,TECH3,2020.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.844106,-114.9713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61932,Techren Solar IV LLC,TECH4,2020.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.892658,-114.936525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61933,Adams Nielson Solar,ADAMS,2018.0,19.2,19.2,19.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AVA,WA,46.95528,-118.621244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61934,WHA Southbridge Solar Park CSG,2,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.723644,-75.545978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61935,1634 Solar,3,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.3368,-80.081493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61936,Abbot Solar,2,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.678358,-80.240292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61937,Ace Solar,18,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.722882,-82.525795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61938,Bani Solar,4,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.953775,-79.93713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61939,Blacktip Solar,5,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.900481,-79.755961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61940,Bloom Solar,6,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.610454,-80.336613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61941,Bond Solar,7,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.617189,-80.362997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61942,Gary Solar,8,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.199094,-80.221678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61943,Goldenrod Solar,9,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.962884,-79.562891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61944,Jessamine Solar,10,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.230544,-79.390606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61945,Pelzer Solar I,19,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.657642,-82.501964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61946,Redwing Solar,11,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.274414,-79.887503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61947,River Solar,12,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.107849,-80.128107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61948,Sapphire Solar,17,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.887786,-79.783683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61949,South Solar,13,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.995392,-79.606062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61950,Vincent Solar,14,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.091583,-80.108313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61951,Watauga Solar,15,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.523944,-79.844619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61952,Whitt Solar,20,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.721613,-82.524315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61953,Willis Solar,16,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.984625,-79.564983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61954,Delta Solar Power I,DSPI,2018.0,8.1,7.7,7.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9506172839506174,0.9012345679012346,RFC,MISO,MI,42.7,-84.701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61955,Delta Solar Power II,DSPII,2018.0,15.9,15.2,14.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9559748427672955,0.9056603773584906,RFC,MISO,MI,42.707,-84.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61956,MCRD Parris Island PV Hybrid,BAKUP,2019.0,2.5,2.5,2.5,0.7,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.51850459536186 -61956,MCRD Parris Island PV Hybrid,BKST2,2019.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.5183096765830575 -61956,MCRD Parris Island PV Hybrid,BLKST,2019.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.5183096765830575 -61956,MCRD Parris Island PV Hybrid,CARPT,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61956,MCRD Parris Island PV Hybrid,CHPP,2019.0,3.5,3.5,3.5,2.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.719411076857659 -61956,MCRD Parris Island PV Hybrid,GRDMT,2018.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61956,MCRD Parris Island PV Hybrid,TBESS,2018.0,4.0,4.0,4.0,4,MWH,Batteries,OP,BA,12.0,2018.0, , ,8.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,SCEG,SC,32.329402,-80.694722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61957,"Pratt Wind, LLC",PW,2018.0,243.5,243.5,243.5,3,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.55,-98.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61958,Broadalbin-Perth Solar,BAP1,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.018029,-74.191836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61959,"Coolidge Solar 1, LLC",COLS,2018.0,19.6,19.6,19.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.424817,-72.665336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61960,Atood II,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,35.030303,-81.808469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61961,Gaston II,GEN1,2018.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.778378,-81.110251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61962,Holstein 1 Solar Farm,HSF01,2020.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.104125,-100.162375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61965,"Quakertown Solar Farm, LLC",QKRTN,2018.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.522818,-74.944168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61966,Victoria Port Power II LLC,VP2-1,2022.0,50.0,43.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,28.698477,-96.946125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61966,Victoria Port Power II LLC,VP2-2,2022.0,50.0,43.0,48.0,32,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,28.698477,-96.946125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61968,"Chisago Holdco LLC, CSG",CHIS,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.386802,-92.801239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61969,"Torrecillas Wind Energy, LLC",TWE,2019.0,300.0,300.0,300.0,1,WND,Onshore Wind Turbine,OP,WT,2.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.614411,-98.7945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61970,"Blue Summit II Wind, LLC",BSII,2019.0,99.4,99.4,99.4,1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.225882,-99.477986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61971,Corcoran CSG,201,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.095757,-93.645011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61971,Corcoran CSG,202,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.095757,-93.645011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61971,Corcoran CSG,203,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.095757,-93.645011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61971,Corcoran CSG,204,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.095757,-93.645011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61971,Corcoran CSG,205,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.095757,-93.645011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61972,Richardson Solar,C2BV,2019.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.27774,-81.35173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61973,Blackville Solar II,C2BV,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.344319,-81.261774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61974,Diamond Solar,C2BV,2019.0,8.2,8.2,8.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.786193,-81.273625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61975,Edison Solar,C2BV,2019.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.244191,-81.386156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61976,Peony Solar,PGRG1,2018.0,39.0,39.0,39.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.502,-81.254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61977,Cornillie,SO334,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.46013,-92.89609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61978,Pinesage,GEN1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.220823,-79.51909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61979,Syncarpha Prinsburg CSG (Ledeboer),SYPRN,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.931794,-95.188419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61980,Syncarpha Clara City CSG I (Stamer),SCSG1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.955515,-95.357069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61982,Columbia Solar Power Plant,PV1,2020.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,29.882644,-82.696145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61983,Cottage Grove Project CSG,COTG,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.7907,-92.8727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61984,"Solomon Forks Wind Project, LLC",WTGS,2019.0,275.6,275.6,275.6,2.6,WND,Onshore Wind Turbine,OP,WT,7.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.306,-101.0744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61985,Colonial Trail West,CTWS,2019.0,142.4,142.4,142.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,37.138889,-76.902222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61986,Spring Grove I,SGIS,2020.0,97.9,97.9,97.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,37.173916,-76.919245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61987,West Loch Solar One,WLS1,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.340339,-158.015084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61988,Citrus Ridge Solar,FL501,2018.0,52.0,52.0,52.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.40078,-81.61632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61989,Pacific Ethanol Madera Solar Array,PV,2018.0,4.3,3.9,2.4, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9069767441860466,0.5581395348837209,WECC,CISO,CA,36.916111,-119.97138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61990,TAC-Distributed Energy Resource Hybrid,BA,2017.0,0.3,0.3,0.3,0,MWH,Batteries,OP,BA,5.0,2017.0, , ,0.5,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,MISO,IL,40.089797,-88.243573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61990,TAC-Distributed Energy Resource Hybrid,NG,2017.0,1.0,1.0,1.0,0.6,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,IL,40.089797,-88.243573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61990,TAC-Distributed Energy Resource Hybrid,SOLAR,2017.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.089797,-88.243573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61990,TAC-Distributed Energy Resource Hybrid,WIND,2017.0,0.1,0.1,0.1,0,WND,Onshore Wind Turbine,OP,WT,3.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.089797,-88.243573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61991,"Pioneer Solar (CO), LLC",PI-QF,2021.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.761569,-104.45903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61993,Gavilan Community College Solar Project,GDCBA,2019.0,0.5,0.5,0.5,0.5,MWH,Batteries,OP,BA,6.0,2019.0, , ,0.5,0.2,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.003832,-121.593567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61993,Gavilan Community College Solar Project,GDCPV,2018.0,1.4,1.2,0.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8571428571428572,0.2857142857142857,WECC,CISO,CA,37.003832,-121.593567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61995,UC Merced Solar Hybrid,UCMBA,2018.0,0.5,0.5,0.5,0.5,MWH,Batteries,OP,BA,12.0,2018.0, , ,0.9,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.365688,-120.432228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61995,UC Merced Solar Hybrid,UCMPV,2018.0,4.5,4.3,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9555555555555555,0.3999999999999999,WECC,CISO,CA,37.365688,-120.432228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61996,"Rankin Solar Center, LLC",RANKI,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,34.23453,-79.655149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61997,USS Big Lake 1 Solar CSG,USSBL,2018.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.317071,-93.764931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61998,USS Good Solar CSG,USSGO,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.436226,-92.940656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -61999,USS Kasch Solar CSG,USSKA,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.623423,-94.059269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62000,USS Rockpoint Solar CSG,USSRP,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.439639,-92.922057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62001,The Bank of New York,6087K,1983.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.092646853634715 -62001,The Bank of New York,6187H,1983.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.092646853634715 -62001,The Bank of New York,6287P,1983.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.092646853634715 -62001,The Bank of New York,8587X,1983.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.092646853634715 -62001,The Bank of New York,8687N,1983.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.092646853634715 -62001,The Bank of New York,8887H,1983.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1983.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.092646853634715 -62002,Brooklyn Hospital Center,400DF,2004.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2004.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.690544,-73.97793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.416666666666668 -62002,Brooklyn Hospital Center,500RE,2014.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,SB,IC,1.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.690544,-73.97793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.416666666666666 -62002,Brooklyn Hospital Center,C18,2019.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.690544,-73.97793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.416666666666666 -62003,Saint Catherine of Siena Medical Center,5FPX4,1972.0,0.8,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.5,NPCC,NYIS,NY,40.89952,-73.27093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.714201532115498 -62003,Saint Catherine of Siena Medical Center,855G3,2002.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.89952,-73.27093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.715913555992142 -62003,Saint Catherine of Siena Medical Center,D400F,1997.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.89952,-73.27093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.715913555992142 -62003,Saint Catherine of Siena Medical Center,DFG65,2001.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.89952,-73.27093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.71249018067557 -62003,Saint Catherine of Siena Medical Center,E4486,2002.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.89952,-73.27093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.715913555992142 -62004,San Pablo Raceway,SPRWY,2019.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.723748,-118.280345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62010,Gibbon Solar,PGRK1,2019.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.520923,-94.524364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62011,Richmond Spider Solar,RMDSS,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.247123,-77.786223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62012,Pleinmont Solar 1,PLNM1,2020.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.247123,-77.786223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62013,Pleinmont Solar 2,PLNM2,2021.0,240.0,240.0,240.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.247123,-77.786223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62014,Highlander Solar Energy Station 1,HLND1,2020.0,165.0,165.0,165.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.247123,-77.786223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62015,Mustang Two,M2BAR,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.216806,-119.896389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62015,Mustang Two,M2WHI,2020.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.216806,-119.896389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62016,UC Riverside Lots 30 & 32,UCRIV,2017.0,4.0,3.5,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.875,0.5,WECC,CISO,CA,33.97036,-117.33099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62017,Riverhead Solar Farm,RIV1,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.922992,-72.7645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62018,Page Solar,PGRI1,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.533191,-78.639456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62020,Stanford Campus Solar,STANF,2017.0,3.4,3.3,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9705882352941176,0.47058823529411764,WECC,CISO,CA,37.43434,-122.16077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62021,Franklin Solar,FRANK,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.656,-72.159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62023,Wilson Solar,WILSN,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.656,-72.16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62024,Jefferson Solar,JEFRS,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.656,-72.162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62025,Hamilton Solar,HAMLT,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.657,-72.161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62026,Adams Solar,ADAMS,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.655,-72.161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62027,Caldwell Wastewater Treatment Plant Hybrid,BAT1,2016.0,1.0,0.5,0.5, ,MWH,Batteries,OP,BA,12.0,2016.0, , ,2.0,0.5,0.5,OTH,battery,other,Energy Storage,"Energy Storage, Battery ",0.5,0.5,RFC,PJM,NJ,40.838568,-74.312476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62027,Caldwell Wastewater Treatment Plant Hybrid,PV1,2016.0,0.7,0.7,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.838568,-74.312476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62028,CSU Long Beach Lots 7 & 14,CSULB,2017.0,4.5,3.3,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7333333333333333,0.3999999999999999,WECC,CISO,CA,33.78104,-118.11357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62029,Enfield Community Solar,5515,2017.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.453307,-76.594813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62030,Nautilus Lindstrom Solar (CSG),LI,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.336131,-92.813972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62031,Nautilus Saint Cloud Solar (CSG),SC,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.495562,-94.118924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62032,Nautilus Winsted Solar (CSG),WS,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.948882,-94.085661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62034,Baer Road CSG,7,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.797,-75.068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62035,Glaciers Edge Wind Project,GEW,2019.0,211.7,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.944733112895607,0.944733112895607,MRO,MISO,IA,42.862,-95.772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62036,Sartell Holdco CSG,SARTE,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.36443,-94.123291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62037,Rollingstone Holdco CSG,ROLLI,2019.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.114425,-91.791247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62038,Santa Rita East,STRAE,2019.0,302.4,302.4,302.4,13,WND,Onshore Wind Turbine,OP,WT,6.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.207988,-101.110787,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62039,Santa Rosa Junior College Petaluma Solar,SRJCP,2018.0,1.2,1.1,0.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9166666666666667,0.5,WECC,CISO,CA,38.46905,-122.72188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62040,Becker Solar CSG,BCKR1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.175532,-93.683884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62041,Cuyahoga County Landfill,CCBO1,2018.0,3.7,3.7,2.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7837837837837838,RFC,PJM,OH,41.443122,-81.751526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62042,USS Solar Rapids CSG,USSSR,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.590952,-94.138625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62043,First Baptist Church of Glenarden,FBCG1,2018.0,1.5,1.6,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.82,-76.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62044,USS Solar Dawn CSG,USSSD,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.491799,-92.841712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62045,USS Norelius Solar CSG,USSNO,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.473642,-92.88658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62046,USS Nillie Corn Solar CSG,USSNC,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.456657,-92.89758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62047,USS JJ Solar CSG,USSJJ,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.636126,-94.050356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62048,USS Dubhe Solar CSG,USSDB,2018.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.492616,-92.904452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62049,USS Brockway Solar CSG,USSBR,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.682305,-94.211331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62050,Kingsbrook Jewish Medical Center,SR4,1999.0,0.6,0.6,0.6,0,DFO,Petroleum Liquids,SB,IC,8.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.7060922763191435 -62050,Kingsbrook Jewish Medical Center,TPSDM,2019.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,8.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.706179259712449 -62050,Kingsbrook Jewish Medical Center,VHP59,2002.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,2.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.659328,-73.933752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.706179259712449 -62051,St Johns Riverside Hospital,EG650,2000.0,0.7,0.7,0.7,0,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.968929,-73.886589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.00300042863266 -62051,St Johns Riverside Hospital,EG750,1968.0,0.8,0.8,0.8,0,DFO,Petroleum Liquids,SB,IC,1.0,1968.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.968929,-73.886589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.99737532808399 -62052,Citizens Imperial Solar,CIS1,2019.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.191661,-115.433783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62053,Syncarpha Dodge 1 CSG,SPGD1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.044978,-92.880709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62054,Alpha Value Solar,AVS01,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.157401,-76.489563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62055,Wareham Solar PV,LG395,2018.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.78,-70.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62056,Lancaster,LANC,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.743383,-117.972222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62057,Hazlehurst III,HZIII,2019.0,40.0,40.0,40.0,40,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.832474,-82.602139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62058,SR Terrell,TERRL,2020.0,74.0,74.0,74.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.871387,-84.361952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62059,East Longmeadow Solar PV,LG400,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.046767,-72.459123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62060,Hampton MN GRE,PV1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.548799,-93.020502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62061,Anoka County MN CONX,PV1,2018.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.234722,-93.482957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62062,Athens MN CONX,PV1,2018.0,6.6,6.6,6.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.459021,-93.265706,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62063,Greenfield Solar PV,LG400,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.64,-72.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62064,Hinsdale Solar PV,LG400,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.44,-73.11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62065,Savoy Solar PV,LG400,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.56,-73.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62066,Southampton Solar PV,LG400,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.2,-72.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62067,Urtica Solar Project,URTIC,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSEI,WA,47.10754,-120.68974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62069,Penstemon Solar Project,PENST,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSEI,WA,46.95931,-120.50905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62071,Camas Solar Project,CAMAS,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSEI,WA,46.95931,-120.50905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62072,Springfield Solar PV,LG395,2019.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.134453,-72.549688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62073,Hampden Solar PV,LG390,2019.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.04565,-72.459268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62074,"Bd of Educ of Queen Anne's Cnty, Cnty HS",PV1,2019.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.035986,-76.054316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62075,Pima Community College,PV1,2019.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.166494,-110.816669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62076,Town of Branford,PV1,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.28114,-72.81028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62077,Blue Shld Of Cal- El Dorado Hlls Mtr B,PV1,2019.0,1.5,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.650627,-121.074115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62079,Whispering Willow North,1,2020.0,201.3,201.3,201.3,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.774955,-93.418067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62080,Richland,1,2020.0,130.9,130.9,130.9,0.1,WND,Onshore Wind Turbine,OP,WT,9.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.363152,-95.2263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62081,Golden Plains,1,2020.0,199.8,199.8,199.8,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.430639,-94.016407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62082,Southwick Solar PV,REC34,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.05,-72.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62084,Becker Solar 2 CSG,BCKR2,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.174612,-93.684085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62085,Becker Solar 3 CSG,BCKR3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.174942,-93.683653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62086,Becker Solar 4 CSG,BCKR4,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.175662,-93.679726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62087,Becker Solar 5 CSG,BCKR5,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.175654,-93.679354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62088,Schultz CSG,SCHUL,2018.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.5576,-93.376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62089,"Panda Solar NC 1, LLC",20002,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0,4,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.436698,-79.090206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62090,Sunderland Solar PV,REC34,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.429126,-72.539889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62091,Hatfield Solar PV,LG395,2018.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.41,-72.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62092,Montague Site 36-Grosolar,REC34,2018.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.5,-72.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62093,East Springfield Solar PV,REC34,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.14,-72.55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62095,Quarter Horse Solar,PGRF5,2018.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.437,-77.642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62096,Atkinson Solar II,PGRF3,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.897,-77.792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62097,Ludlow Site 72 - Conti,LG390,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.164561,-72.446246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62098,Tiller CSG,TILLE,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.435,-94.0403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62099,Hammer CSG,HAMME,2018.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.4176,-94.0094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62100,Warrenton I Solar,PGRI4,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.412,-78.178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62101,Bladenboro Solar 2,PGRF6,2018.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.536,-78.799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62102,Sadiebrook NC Solar,PGRF1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.44,-78.658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62103,Kossuth,1,2020.0,152.2,152.2,152.2,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.994681,-94.128733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62104,Lane Solar,PGRF2,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.395,-78.051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62105,Monticello Project CSG,MONTI,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.2722,-93.8278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62106,"WED Green Hill, LLC",GHILL,2019.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.79785,-71.529736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62107,"WED Plainfield II, LLC",PLAI2,2019.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.794583,-71.539967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62108,"WED Plainfield III, LLC",PLAI3,2019.0,3.0,3.0,3.0,0.2,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.793519,-71.530622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62109,"WED Plainfield, LLC",PLAI1,2019.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.796078,-71.535825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62110,"WED Shun I, LLC",SHUN1,2019.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.798456,-71.540656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62111,"WED Shun II, LLC",SHUN2,2019.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.800111,-71.536189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62112,"WED Shun III, LLC",SHUN3,2019.0,3.0,3.0,3.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.799078,-71.549331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62115,AES Alamitos Energy Center,1A,2020.0,231.0,194.0,231.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8398268398268398,1.0,WECC,CISO,CA,33.767229,-118.100194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.901017362553809 -62115,AES Alamitos Energy Center,1B,2020.0,231.0,194.0,231.0, ,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8398268398268398,1.0,WECC,CISO,CA,33.767229,-118.100194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.809064224704771 -62115,AES Alamitos Energy Center,1S,2020.0,216.0,215.0,216.0, ,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9953703703703703,1.0,WECC,CISO,CA,33.767229,-118.100194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62116,AES Huntington Beach Energy Project,1A,2020.0,231.0,205.0,227.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8874458874458875,0.9826839826839827,WECC,CISO,CA,33.645618,-117.979372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.644928984967564 -62116,AES Huntington Beach Energy Project,1B,2020.0,231.0,205.0,227.0,80,NG,Natural Gas Fired Combined Cycle,OP,CT,2.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8874458874458875,0.9826839826839827,WECC,CISO,CA,33.645618,-117.979372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.562749889278125 -62116,AES Huntington Beach Energy Project,1S,2020.0,237.2,220.0,236.0,60,NG,Natural Gas Fired Combined Cycle,OP,CA,2.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.927487352445194,0.9949409780775718,WECC,CISO,CA,33.645618,-117.979372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62117,Beloit Memorial Hospital Power Plant,GEN-1,2000.0,1.5,1.5,1.5,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.5486,-89.0083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.868480725623582 -62117,Beloit Memorial Hospital Power Plant,GEN-2,2000.0,1.5,1.5,1.5,0.8,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2000.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.5486,-89.0083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.868480725623582 -62118,"WED GW Solar, LLC",GWSOL,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.937033,-71.487574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62119,University Park Solar,PSUPV,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.817019,-77.844117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62120,"Panda Solar NC 2, LLC",20003,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0,4,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.4384,-79.0847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62121,"Panda Solar NC 3, LLC",20011,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0,6,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.631814,-79.090672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62122,"Panda Solar NC 4, LLC",20009,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.519408,-78.52434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62123,"Panda Solar NC 5, LLC",20007,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0,6,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.047153,-78.810478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62124,"Panda Solar NC 6, LLC",20028,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0,6,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.353586,-78.7874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62125,"Panda Solar NC 7, LLC",20038,2019.0,1.5,1.5,1.5,1.5,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.121181,-78.205464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62126,"Panda Solar NC 8, LLC",20052,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0,9,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.420931,-79.705958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62127,"Panda Solar NC 9, LLC",20022,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0,6,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.910856,-78.9136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62128,"Panda Solar NC 10, LLC",20031,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0,6,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.909631,-78.912997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62129,"Panda Solar NC 11, LLC",20032,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0,6,2049,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.908589,-78.912481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62130,Roseman,ROS,2017.0,1.8,1.8,1.8,0,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.370997,-94.753929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62131,"Red Toad 4451 Buffalo Road, LLC",G4451,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.557397,-78.297336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62132,Arbor Hill Wind Farm,1,2020.0,60.0,60.0,60.0,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.404231,-94.261358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62132,Arbor Hill Wind Farm,WT1,2018.0,250.0,250.0,250.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.404231,-94.261358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62133,North English,1,2019.0,140.0,140.0,140.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.642776,-92.499064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62133,North English,GT1,2018.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.642776,-92.499064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62135,Palmer,PAL01,2019.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.20382,-72.32536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62136,"Arthur Solar, LLC",ART01,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.16087,-78.84663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62137,Eichtens II CSG,SO340,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.396581,-92.782627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62138,Barone CSG,SO328,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.944513,-94.073899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62139,Huneke II CSG,SO346,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.297154,-92.741545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62140,Puller Solar,PULL,2018.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.57245,-76.46734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62141,Rambler,RMBLR,2020.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.517,-100.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62142,Amadeus Wind Farm,AM-TX,2020.0,250.0,250.0,250.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.96736,-100.56428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62143,MSC-GreyCloud01 Community Solar,52785,2019.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.802017,-92.996879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62144,MSC-Scandia01 CSG,52741,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.289314,-92.884717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62145,Minisink Solar 1 LLC,MINI1,2018.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.321224,-74.514084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62146,Minisink Community Solar 2 LLC,MINI2,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.319351,-74.515278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62147,KCE NY 1,KNY1,2019.0,20.0,20.0,20.0,0,MWH,Batteries,OP,BA,3.0,2019.0, , ,8.4,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,42.962412,-73.746506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62148,Goose Lake MN DPC-GM,PV1,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.667563,-93.294017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62149,Syncarpha Eagle Nest,SYEN1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.544166,-105.2772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62150,Chaffey College Rancho Cucamonga Campus,SOLAR,2017.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.148139,-117.570404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62151,Clif Bar Bakery of Twin Falls,PV1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,42.540968,-114.412523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62152,IKEA Live Oak Rooftop PV System,570,2019.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.48,-98.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62154,Kelly Bridge Road Community Solar Farm,12,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.775422,-74.776464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62155,Hospital Rd Community Solar Farm CSG,9,2019.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.774772,-75.036074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62156,Pool Brook Rd Community Solar Farm,15,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.542175,-75.083378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62157,Breesport Road Community Solar Farm,235,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.088,-76.713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62158,Sacket Lake Rd #1 Community Solar Farm,11,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.38251,-74.43526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62159,Sacket Lake Rd #2 Community Solar Farm,20,2019.0,1.7,1.7,1.7,1.7,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.38251,-74.43526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62160,Turner Rd Community Solar Project,300,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.09305,-76.67848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62161,Galactic Wind,GWT,2012.0,9.9,9.9,9.9,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2012.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,WI,43.101605,-89.331855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62162,4710 Hosting,4710,2012.0,7.5,5.0,5.0,1,DFO,Petroleum Liquids,SB,IC,6.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,MRO,MISO,MN,44.070814,-92.522265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.791666666666666 -62163,Meridian III,MRDII,2019.0,52.5,52.5,52.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,MS,32.453955,-88.549484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62164,Meridian II,MRDII,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,MS,32.55332,-88.580396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62165,Snipesville,SNIPE,2020.0,86.0,86.0,86.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.715814,-82.74946,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62167,County Home Solar LLC,COU01,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.925452,-79.722852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62168,Church Road Solar LLC,CHU01,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.523663,-78.625352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62169,Boring Solar LLC,BSPV2,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.431,-122.285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62170,Ballston Solar LLC,BSPV1,2018.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.077,-123.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62171,Labish Solar LLC,LSPV2,2018.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.023,-122.922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62172,Birch,BIR,2017.0,1.8,1.8,1.8,0,WND,Onshore Wind Turbine,OP,WT,2.0,2017.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.767636,-94.474375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62173,SR Jonesborough,JONES,2018.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,36.252039,-82.520924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62174,Maimonides Medical Center,625DI,1999.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.639538,-73.998833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.033719174635127 -62174,Maimonides Medical Center,CM500,2006.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.639538,-73.998833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.033719174635127 -62174,Maimonides Medical Center,CM800,2002.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.639538,-73.998833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.032237773234787 -62174,Maimonides Medical Center,CM900,2006.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.639538,-73.998833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.031870282359517 -62174,Maimonides Medical Center,CN900,2006.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.639538,-73.998833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.031870282359517 -62174,Maimonides Medical Center,ON300,1990.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,SB,IC,1.0,1990.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.639538,-73.998833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.029769392033543 -62175,Diablo Energy Storage,DIBLO,2022.0,200.0,200.0,200.0,0,MWH,Batteries,OP,BA,4.0,2022.0, , ,800.0,200.0,200.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,38.028792,-121.900596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62176,Berry NMW Cogens,21Z,2017.0,4.8,5.7,5.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.307555,-119.611551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.167084630462355 -62176,Berry NMW Cogens,PF,2017.0,4.8,5.7,5.0,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,WECC,CISO,CA,35.307555,-119.611551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.167084630462355 -62177,"Desert Harvest, LLC",DH001,2020.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62178,"Maverick Solar, LLC",MAV01,2020.0,125.0,125.0,125.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.7,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62191,CNMEC Solar Energy Center,CNMEC,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,34.783205,-106.051092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62192,Blue Water Energy Center,11,2022.0,394.4,359.0,375.6,150,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9102434077079108,0.9523326572008115,RFC,MISO,MI,42.773716,-82.479331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.225099129802619 -62192,Blue Water Energy Center,12,2022.0,394.4,359.0,375.6,150,NG,Natural Gas Fired Combined Cycle,OP,CT,6.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9102434077079108,0.9523326572008115,RFC,MISO,MI,42.773716,-82.479331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.449282730449132 -62192,Blue Water Energy Center,1S,2022.0,478.6,428.0,417.8,80,NG,Natural Gas Fired Combined Cycle,OP,CA,6.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8942749686585875,0.8729628081905558,RFC,MISO,MI,42.773716,-82.479331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62193,Winegar CSG,SO377,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.11283,-93.507258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62194,Bolduan CSG,SO360,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.906161,-93.489353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62195,Guse CSG,SO371,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.092021,-93.707763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62196,"Hadley 2 Solar, LLC CSG",2368,2016.0,1.9,1.9,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6842105263157896,NPCC,ISNE,MA,42.351237,-72.556505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62197,East Bridgewater Solar,EBRID,2017.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.059895,-70.981746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62198,"Griffin Road Solar, LLC CSG",2639,2018.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.146633,-72.004384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62199,"Ashby Solar, LLC CSG",4472,2018.0,1.8,1.8,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7777777777777777,NPCC,ISNE,MA,42.630163,-71.798723,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62200,Hillcrest Solar,HILLC,2021.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,39.076972,-83.906046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62201,Dudley Solar CSG,02419,2017.0,1.9,1.9,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7894736842105263,NPCC,ISNE,MA,42.0539,-71.9229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62202,Williamsburg,WIL01,2019.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.425855,-72.768999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62203,"Monson Solar, LLC",2701,2017.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.098292,-72.290071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62204,"Red Toad 5840 Buffalo Road, LLC",G5840,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.572873,-78.302297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62205,"Nickelson Solar, LLC",GNICK,2018.0,5.3,5.3,5.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.747103,-77.987375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62206,Hibiscus Solar Energy Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.7601,-80.3065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62207,Reloj del Sol Wind Farm,RELOJ,2021.0,209.4,209.4,209.4,20,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,27.03028,-99.388388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62208,NIST Solar,PV1,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.127,-77.216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62209,Randolph CSG PV1-5,RAND1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.527671,-92.972111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62209,Randolph CSG PV1-5,RAND2,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.527671,-92.972111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62209,Randolph CSG PV1-5,RAND3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.527671,-92.972111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62209,Randolph CSG PV1-5,RAND4,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.527671,-92.972111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62209,Randolph CSG PV1-5,RAND5,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.527671,-92.972111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62210,Felton CSG PV1-5,FELT1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.541704,-92.973584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62210,Felton CSG PV1-5,FELT2,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.541704,-92.973584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62210,Felton CSG PV1-5,FELT3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.541704,-92.973584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62210,Felton CSG PV1-5,FELT4,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.541704,-92.973584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62210,Felton CSG PV1-5,FELT5,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.541704,-92.973584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62211,Denmark Solar,35,2020.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.347128,-81.142844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62216,Gaines Solar,41,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.192353,-80.218533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62219,Ashburnham Energy Storage Project,AMLPB,2019.0,3.0,3.0,3.0,0.1,MWH,Batteries,OP,BA,3.0,2019.0, , ,3.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.671444,-71.926696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62220,"East Fork Wind Project, LLC",WTGS,2020.0,195.8,195.8,195.8,2.7,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.306,-101.0744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62223,Warren Solar Farm LLC,10423,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.252,-78.369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62224,Oak Leaf Solar XXVII LLC,53971,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.44,-104.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62225,Hunterdon Health System Solar Project,PV1,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.652,-74.908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62226,"Westminster Renewables, LLC CSG",2479,2018.0,1.5,1.5,1.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7333333333333334,NPCC,ISNE,MA,42.583671,-71.896242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62227,"Seymour Hills Wind Project, LLC",WTGS,2019.0,30.2,30.2,30.2,2.5,WND,Onshore Wind Turbine,OP,WT,5.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.57824,-99.1921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62228,Otis Elevator Company Solar,O1614,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.23933,-79.79227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62233,Jefferson Solar,47,2022.0,8.2,8.2,8.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.349567,-80.058122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62238,Marshall Solar,52,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.371908,-80.021614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62239,Oak Leaf Solar XXX LLC (CSG),53963,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.453381,-105.878021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62240,"Burgaw Solar, LLC",1072,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.536,-77.911678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62241,NorWest Energy 9 LLC,NWE9,2018.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,45.917,-119.343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62242,County of San Diego SBRC,SBRC,2018.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.63266,-117.07775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62243,Oak Leaf Solar XXI (CSG),53964,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.638,-104.604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62244,Oak Leaf Solar XXXI LLC (CSG),53977,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.145,-108.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62245,Oak Leaf Solar XXV LLC (CSG),53968,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.637,-104.529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62246,Target Woodland Solar Project,TWSP,2018.0,2.3,1.8,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7826086956521741,0.8695652173913044,WECC,CISO,CA,38.682746,-121.723451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62247,Prevailing Wind Park,PWPSD,2020.0,220.0,220.0,220.0,0.8,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,43.039,-97.526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62249,Misae Solar,77777,2020.0,240.0,240.0,240.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,34.380532,-100.099625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62250,NYC-HH-New Bellevue Hospital,CAT15,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.611933316322192 -62250,NYC-HH-New Bellevue Hospital,CAT2H,2011.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.61183318714616 -62250,NYC-HH-New Bellevue Hospital,CAT2M,2011.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.61183318714616 -62250,NYC-HH-New Bellevue Hospital,CAT2X,2011.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.61183318714616 -62250,NYC-HH-New Bellevue Hospital,CAT2Y,2011.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.61183318714616 -62250,NYC-HH-New Bellevue Hospital,CAT6M,1996.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.612333864965445 -62250,NYC-HH-New Bellevue Hospital,CAT6P,1996.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.612333864965445 -62250,NYC-HH-New Bellevue Hospital,CUM6Z,2011.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.612134958888574 -62250,NYC-HH-New Bellevue Hospital,RUD3R,2002.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.739556,-73.976083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.612333864965445 -62251,Oak Leaf Solar XXXII (CSG),53975,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.523,-107.815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62252,Oak Leaf Solar XXII LLC (CSG),53965,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.903806,-104.667473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62253,Oak Leaf Solar XXIV LLC (CSG),53967,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.637,-104.561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62254,Oak Leaf Solar XXVI LLC,53970,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.899959,-104.73453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62255,Oak Leaf Solar XXVIII LLC (CSG),53973,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.237,-104.779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62256,Oak Leaf Solar XXIII LLC (CSG),53966,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.80165,-104.62146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62257,Station 9 Energy Storage System,ESS1,2018.0,2.0,2.0,2.0,0.1,MWH,Batteries,OP,BA,6.0,2018.0, , ,4.2,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.187743,-70.976448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62258,Mesteno,MES,2019.0,201.6,200.0,200.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9920634920634921,0.9920634920634921,TRE,ERCO,TX,26.523692,-98.745522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62259,Ranchero Wind Farm LLC,RAN,2019.0,300.0,300.0,300.0,300,WND,Onshore Wind Turbine,OP,WT,9.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.594908,-101.453021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62260,Trout Creek Solar,44901,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.8151,-106.1104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62264,Pittsfield 44 - M&W PV,LG400,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.487419,-73.215833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62265,Lee Site 31 Solar,LG370,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.296872,-73.2275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62266,Plymouth Solar,LG400,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.94726,-70.688427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62267,Held Solar Project,HELD,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.5239,-94.2736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62268,"NorWest Energy 4, LLC",NWE4,2019.0,5.6,5.6,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8928571428571429,WECC,PACW,OR,42.695,-121.614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62269,"Stoneray Power Partners, LLC",STNRY,2019.0,100.0,100.0,100.0,50,WND,Onshore Wind Turbine,OP,WT,2.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.104377,-96.126733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62270,Westchester County Medical Center,CAT04,2000.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.703961848862802 -62270,Westchester County Medical Center,CAT2C,2019.0,1.5,1.5,1.5,0.3,DFO,Petroleum Liquids,SB,IC,9.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.702841492639507 -62270,Westchester County Medical Center,CATH1,2002.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.702942919217856 -62270,Westchester County Medical Center,CATH2,2002.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.702942919217856 -62270,Westchester County Medical Center,CATN1,1974.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.703961848862802 -62270,Westchester County Medical Center,CATN2,1974.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1974.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.703961848862802 -62270,Westchester County Medical Center,CATN3,1996.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.703961848862802 -62270,Westchester County Medical Center,CATR3,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.702182284980744 -62270,Westchester County Medical Center,CATR4,1980.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.706335616438357 -62270,Westchester County Medical Center,CUM37,2000.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.702182284980744 -62270,Westchester County Medical Center,DT080,2002.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.70467385721623 -62270,Westchester County Medical Center,DT250,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.706335616438357 -62270,Westchester County Medical Center,DT500,2000.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.08921,-73.80443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.70467385721623 -62271,NYPH-Queens,PB809,2010.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.75043,-73.82573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.076923076923077 -62271,NYPH-Queens,PB909,2010.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.75043,-73.82573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.076923076923077 -62271,NYPH-Queens,PR601,2000.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.75043,-73.82573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.076923076923077 -62271,NYPH-Queens,PR602,2010.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.75043,-73.82573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.076923076923077 -62271,NYPH-Queens,PR816,2000.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.75043,-73.82573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.076923076923077 -62272,Bly Solar Center,BLY,2018.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.392193,-121.024494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62274,Liberty HS Solar Project,LHSSP,2018.0,1.5,1.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7999999999999999,0.1333333333333333,WECC,CISO,CA,35.364408,-119.127496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62275,Frontier HS Solar Project,FHSSP,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.41824,-119.14888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62286,Xebec 1,W7188,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.224041,-118.392921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62287,Francisco St. Solar,W7190,2018.0,1.2,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8333333333333334,0.8333333333333334,WECC,LDWP,CA,33.8482,-118.3055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62288,"Valentine Solar, LLC",VAL01,2019.0,111.2,111.2,111.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.90422,-118.384341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62289,Dearborn Energy Center,GTG-1,2019.0,15.0,11.2,14.6, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7466666666666666,0.9733333333333333,RFC,MISO,MI,42.2969,-83.23125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.32281214269887 -62289,Dearborn Energy Center,GTG-2,2019.0,15.0,11.2,14.6, ,NG,Natural Gas Fired Combined Cycle,OP,CT,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.7466666666666666,0.9733333333333333,RFC,MISO,MI,42.2969,-83.23125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.326966167537789 -62289,Dearborn Energy Center,STG-1,2019.0,5.0,4.5,4.5, ,NG,Natural Gas Fired Combined Cycle,OP,CA,12.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9,0.9,RFC,MISO,MI,42.2969,-83.23125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62290,Polaris Wind Park,1,2020.0,168.6,168.6,168.6,1,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.262611,-84.499838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62291,"Palmer's Creek Wind Farm, LLC",PCWF,2018.0,44.6,44.6,44.6,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,MN,44.857694,-95.568888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62301,Richmond NMCA,RNM02,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.440191,-71.715387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62302,Founders Homestead Farms Solar,RFH01,2019.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.57677,-71.2782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62303,Mattas Farms,MF01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.893714,-74.216251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62304,Woodleaf Solar Facility,PV1,2018.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.724427,-80.608449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62305,Tipton Solar Park,STIP,2019.0,5.3,5.3,4.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7924528301886793,RFC,MISO,IN,40.276073,-86.076899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62306,IFF Union Beach Project,IFFUB,2019.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.446574,-74.154627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62315,Tedder Solar,79,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.301806,-79.924456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62318,"North Stonington Solar Center, LLC",PAWCA,2022.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.418331,-71.836729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62319,Western Sugar Cooperative - Billings,1,2011.0,1.5,1.5,1.5,0.5,SUB,Conventional Steam Coal,OP,ST,3.0,2011.0, , ,,,,,coal,coal,Subbituminous Coal,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,WECC,NWMT,MT,45.765346,-108.499232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.540529326110166 -62320,Antelope Expansion 1B,ANE1B,2022.0,17.0,17.0,17.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.71611,-118.259161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62321,Cedar Falls Solar Farm,1,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.481409,-92.458184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62322,Mechanicville Hydroelectric Station,MG8,2011.0,2.0,1.5,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,42.876535,-73.680169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62322,Mechanicville Hydroelectric Station,MG9,2011.0,2.0,1.5,2.0,0.3,WAT,Conventional Hydroelectric,OP,HY,5.0,2011.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.75,1.0,NPCC,NYIS,NY,42.876535,-73.680169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62323,Macy's MD Joppa Solar Project,MMDJ,2016.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.44752,-76.32095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62324,Dynamic - Walpole,WAL01,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.133208,-71.271945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62325,46 Meadowlands Parkway,1,2018.0,1.5,1.5,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,PJM,NJ,40.78976,-74.071521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62326,77 Metro Way,1,2018.0,1.0,1.0,0.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7,RFC,PJM,NJ,40.770516,-74.072239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62327,"Synergen Panorama, LLC CSG",SP,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.772107,-76.973379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62328,"Mill Pond Solar, LLC",MLLPD,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.829426,-76.790764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62329,"Jamesville Road Solar, LLC",JMVLR,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.845354,-76.801491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62330,"Camden Dam Solar, LLC",CMDND,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.311822,-76.125847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62331,Sol Phoenix,SOLPH,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.85,-76.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62332,Blue Star,BLUES,2020.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.35,-75.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62333,"Polk County Renewables, LLC",T-1,2018.0,2.5,2.5,2.5,2.5,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,41.165278,-97.570194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62335,USS Centerfield Solar CSG,USCEN,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.529,-93.348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62336,USS Webster Solar CSG,USWEB,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.529,-93.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62337,USS Lake Patterson Solar CSG,USLP,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.839,-93.888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62339,USS Kost Trail Solar CSG,USSKT,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.468,-92.872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62340,"Aulander Holloman Solar, LLC",HOLLO,2018.0,80.0,99.9,99.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.29116,-77.066561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62346,Trask East Solar,83,2020.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.470606,-80.748189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62347,Weaver Solar,90,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.069422,-80.078469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62353,Yemassee Solar,93,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,32.705139,-80.903275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62355,IKEA Norfolk Rooftop PV System,569PV,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.875877,-76.200935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62356,Lockett Windfarm,LOC,2019.0,183.8,183.8,183.8,0,WND,Onshore Wind Turbine,OP,WT,9.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.072251,-99.264676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62357,Gloversville Landfill Solar,08158,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.052981,-74.308356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62358,USS King 2 CSG,USK12,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.848,-93.846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62359,USS Eggo Solar CSG,USEGG,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.72,-93.788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62360,USS DVL Solar CSG,USDVL,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.818,-93.785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62363,Barre Solar III LLC,BSPV,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.419331,-72.113901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62364,Nobles 2 Wind Project,WT1,2020.0,250.0,250.0,250.0,2,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.789636,-95.852766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62365,Wright Kirby 1-5 CSG,WK1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.259,-93.791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62365,Wright Kirby 1-5 CSG,WK2,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.259,-93.791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62365,Wright Kirby 1-5 CSG,WK3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.259,-93.791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62365,Wright Kirby 1-5 CSG,WK4,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.259,-93.791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62365,Wright Kirby 1-5 CSG,WK5,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.259,-93.791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62366,NYP-Lower Manhattan Hospital,CATR4,1992.0,1.5,1.5,1.5,0,DFO,Petroleum Liquids,SB,IC,1.0,1992.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.710315,-74.004965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.368421052631579 -62367,SR Arlington II,ARLII,2019.0,102.5,102.5,102.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.415531,-84.830714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62368,BWC Origination 18,62591,2018.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.679081,-70.836391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62369,BWC Gibbs Brook,62595,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.774864,-70.695934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62370,BWC Wareham River,62593,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.783733,-70.693242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62371,BWC Harlow Brook,62592,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.782854,-70.690717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62372,BWC Pocasset River,62594,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.782181,-70.687728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62373,I25 Battery Storage,I25BA,2018.0,4.0,4.0,4.0,1,MWH,Batteries,OP,BA,12.0,2018.0, , ,16.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,WACM,CO,40.140285,-104.978012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62374,JBAB - Washington DC,PV1,2019.0,5.9,5.9,5.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.852655,-77.009291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62375,"Dougherty County Solar, LLC",PV1,2019.0,120.0,120.0,120.0,0.1,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.512003,-84.044499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62376,Grazing Yak Solar,PV1,2019.0,35.0,35.0,35.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,38.977759,-104.252715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62377,Moody Air Force Base Solar,1,2020.0,49.5,49.5,49.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.9574,-83.2229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62378,CFW Solar X LLC - Vaughn,VSCFW,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.277355,-118.429836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62380,"Emmons-Logan Wind, LLC",ELLLC,2019.0,200.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.373013,-100.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62381,GMP Solar/Storage-Milton Hybrid,GMPBM,2019.0,2.0,2.0,2.0,2,MWH,Batteries,OP,BA,9.0,2019.0, , ,8.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,VT,44.392141,-73.10233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62381,GMP Solar/Storage-Milton Hybrid,GMPSM,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.392141,-73.10233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62382,GMP Solar/Storage-Ferrisburgh Hybrid,GMPBF,2019.0,2.0,2.0,2.0,2,MWH,Batteries,OP,BA,9.0,2019.0, , ,8.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,VT,44.133411,-73.144064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62382,GMP Solar/Storage-Ferrisburgh Hybrid,GMPSF,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.133411,-73.144064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62383,GMP Solar/Storage-Essex Hybrid,GMPBE,2019.0,2.0,2.0,2.0,2,MWH,Batteries,OP,BA,9.0,2019.0, , ,8.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,VT,44.285937,-73.023366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62383,GMP Solar/Storage-Essex Hybrid,GMPSE,2019.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.285937,-73.023366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62389,Pasto Solar,PASTO,2019.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.210028,-76.523763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62392,Guyton Community Solar,1,2019.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.412773,-81.442846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62393,Atlanta Falcons Solar,1,2015.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.755421,-84.400933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62393,Atlanta Falcons Solar,2,2017.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.755421,-84.400933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62393,Atlanta Falcons Solar,3,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.755421,-84.400933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62394,Sweetbay Solar Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.060112,-80.474488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62395,Bell Bay Solar Farm,1,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,33.667675,-78.917988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62396,Jamison Solar Farm,1,2019.0,1.1,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,33.57398,-80.837105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62397,Runway Solar Farm,1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,33.667675,-78.917988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62398,Albert Einstein College of Medicine,CM058,2022.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.41970802919708 -62398,Albert Einstein College of Medicine,CM454,2012.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.43535427319211 -62398,Albert Einstein College of Medicine,CP035,2002.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.43535427319211 -62398,Albert Einstein College of Medicine,CP643,2002.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.41970802919708 -62398,Albert Einstein College of Medicine,CP703,2001.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.43535427319211 -62398,Albert Einstein College of Medicine,CP810,2002.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.431403234220134 -62398,Albert Einstein College of Medicine,CP919,2002.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.41970802919708 -62398,Albert Einstein College of Medicine,CP922,2008.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.43535427319211 -62398,Albert Einstein College of Medicine,CP925,2002.0,0.9,0.9,0.9,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2002.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.437094155844157 -62398,Albert Einstein College of Medicine,CP961,2008.0,1.8,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.43294785960641 -62398,Albert Einstein College of Medicine,CP962,2008.0,1.8,1.8,1.8,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.43294785960641 -62398,Albert Einstein College of Medicine,WK259,2002.0,0.2,0.2,0.2,0.1,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2002.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85132,-73.8483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.41970802919708 -62399,Sage Solar I-III,77778,2019.0,57.6,57.6,57.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,41.77,-111.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62405,UMCES Ground Mount,X0009,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.583064,-76.13475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62406,City of Gallup Solar,X0022,2018.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.52236,-108.778791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62407,Anne Arundel County Public Schools,X0001,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.13728,-76.498041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62408,Fort Indiantown Gap,X0028,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.427558,-76.57313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62409,Waynesboro Community Solar,1,2019.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.170593,-81.823938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62411,Griffin Trail Wind,GTWND,2021.0,225.6,225.6,225.6,0.3,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.609313,-99.58229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62412,Daum Solar,DAUM,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.760799,-77.247333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62413,Ellis Solar,ELLIS,2019.0,18.0,18.0,18.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.444628,-76.433237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62414,Lady Slipper Solar Array CSG,PV1,2019.0,4.5,4.5,4.5,0,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.554384,-92.661686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62415,West of the Pecos Solar,WOTP1,2019.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.4308,-103.7289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62416,Cranell Wind Farm LLC,WT1,2022.0,220.0,220.0,220.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,28.197778,-97.444953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62417,Peyton Creek Wind Farm LLC,WT1,2020.0,151.2,151.2,151.2,25,WND,Onshore Wind Turbine,OP,WT,6.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,28.8433,-95.8631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62418,Verwey-Hanford Dairy Digester #2,4,2019.0,1.0,1.0,1.0,0.6,OBG,Other Waste Biomass,OP,IC,7.0,2019.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.18519,-119.681495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.75030198446937 -62419,Verwey-Hanford Dairy Digester #3,4,2019.0,1.0,1.0,1.0,0.6,OBG,Other Waste Biomass,OP,IC,7.0,2019.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.18519,-119.681495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.725862669919833 -62420,Prairie State Solar Project,PSS01,2021.0,99.0,99.0,99.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,38.208333,-89.579166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62421,NYP-Hudson Valley Hospital Center,600CP,2012.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.286739,-73.888802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.90243220575902 -62421,NYP-Hudson Valley Hospital Center,600OE,2012.0,0.6,0.6,0.6,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.286739,-73.888802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.90243220575902 -62421,NYP-Hudson Valley Hospital Center,750RX,2010.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.286739,-73.888802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.905011532816104 -62421,NYP-Hudson Valley Hospital Center,TER,2018.0,0.6,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.16666666666666663,0.16666666666666663,NPCC,NYIS,NY,41.286739,-73.888802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35.90243220575902 -62422,Assembly Solar Project,ASP01,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.02268,-83.94527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62423,Regeneron Pharmaceuticals Inc.,735G1,2009.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15479143179256 -62423,Regeneron Pharmaceuticals Inc.,735G2,2009.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.155589379333671 -62423,Regeneron Pharmaceuticals Inc.,745G1,2016.0,2.0,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,4.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15439249175615 -62423,Regeneron Pharmaceuticals Inc.,745G2,2016.0,2.0,1.5,1.5,0.3,DFO,Petroleum Liquids,SB,IC,4.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.75,0.75,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15439249175615 -62423,Regeneron Pharmaceuticals Inc.,765G1,2016.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,4.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.154153138528137 -62423,Regeneron Pharmaceuticals Inc.,765G2,2020.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15439249175615 -62423,Regeneron Pharmaceuticals Inc.,771NG,2010.0,0.8,0.8,0.8,0.2,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.153878672585078 -62423,Regeneron Pharmaceuticals Inc.,777G1,2013.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,SB,IC,2.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.155589379333671 -62423,Regeneron Pharmaceuticals Inc.,777G2,2020.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,3.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.154153138528137 -62423,Regeneron Pharmaceuticals Inc.,785G1,2015.0,1.5,1.0,1.0,0.2,DFO,Petroleum Liquids,SB,IC,4.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.6666666666666667,0.6666666666666667,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15479143179256 -62423,Regeneron Pharmaceuticals Inc.,795G1,2015.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,SB,IC,4.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15439249175615 -62423,Regeneron Pharmaceuticals Inc.,795G2,2015.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,SB,IC,4.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.07875,-73.82227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15439249175615 -62431,Willow Creek Wind Power LLC,1,2020.0,105.0,103.5,103.5,0,WND,Onshore Wind Turbine,OP,WT,9.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9857142857142858,0.9857142857142858,MRO,SWPP,SD,44.825883,-103.207412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62436,SR Arlington I,ARLI,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.402919,-84.836814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62438,Heller 400M,A,2013.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0,5,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.4987,-74.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62438,Heller 400M,B,2013.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0,5,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.4987,-74.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62438,Heller 400M,C,2013.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2013.0,5,2028,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.4987,-74.3878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62439,Owens Corning,A,2016.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.838784,-75.052996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62440,Techren Solar V,TECH5,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,35.899694,-114.92625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62441,Kearny Mesa Storage LLC,U1,2020.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,2.0,2020.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.815256,-117.126079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62442,"Lake Region Community Hybrid, LLC",LRCH,2018.0,2.0,2.0,2.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,46.505052,-96.157281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62442,"Lake Region Community Hybrid, LLC",LRCHS,2018.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.505052,-96.157281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62443,Westminster,A,2016.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.0864,-72.4554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62444,Meyersdale Battery,BMY,2015.0,18.0,18.0,18.0,0,MWH,Batteries,OP,BA,12.0,2015.0, , ,12.1,18.0,18.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,PA,39.790739,-79.00205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62445,Busch Ranch II Wind Farm,WT,2019.0,59.4,59.4,59.4,1,WND,Onshore Wind Turbine,OP,WT,11.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,37.766416,-104.42945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62446,JLL-One Rockwood Road,EGEN1,2003.0,1.5,1.5,1.5,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.109042,-73.862594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.428571428571429 -62446,JLL-One Rockwood Road,EGEN2,2003.0,1.5,1.5,1.5,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2003.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.109042,-73.862594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.428571428571429 -62447,Mount Sinai South Nassau Hospital,3,2005.0,1.0,1.0,1.0,0,DFO,Petroleum Liquids,SB,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.651614,-73.62993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.418753924509872 -62447,Mount Sinai South Nassau Hospital,4,2020.0,2.0,1.0,0.8,0,DFO,Petroleum Liquids,SB,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.5,0.4,NPCC,NYIS,NY,40.651614,-73.62993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.418530017092825 -62448,Lapetus,LAP,2019.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.460054,-102.672809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62449,Kimberly Clark Mobile - CHP Plant,GT100,2019.0,25.0,21.8,23.0,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.872,0.92,SERC,SOCO,AL,30.737741,-88.04977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.6200593172136 -62449,Kimberly Clark Mobile - CHP Plant,GT200,2019.0,25.0,21.8,23.0,11,NG,Natural Gas Fired Combustion Turbine,OP,GT,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.872,0.92,SERC,SOCO,AL,30.737741,-88.04977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.6200593172136 -62450,St. Johns Episcopal Hospital,CT205,2010.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.598688,-73.753461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.044995909462776 -62450,St. Johns Episcopal Hospital,F1040,1995.0,1.0,1.0,1.0,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.598688,-73.753461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.045546282659685 -62451,Rantoul Solar,RANTL,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.286726,-88.132797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62452,St. Joseph Hospital,CT250,1960.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.636333333333333 -62452,St. Joseph Hospital,CT750,1978.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.636375 -62453,Mt.Sinai-St.Lukes Roosevelt Hosp. Center,CT250,1960.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1960.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000523834468309 -62453,Mt.Sinai-St.Lukes Roosevelt Hosp. Center,CT750,1978.0,0.8,0.8,0.8,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.999803574936161 -62453,Mt.Sinai-St.Lukes Roosevelt Hosp. Center,EG1,1995.0,0.2,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.997643362136685 -62453,Mt.Sinai-St.Lukes Roosevelt Hosp. Center,EG2,2010.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000523834468309 -62453,Mt.Sinai-St.Lukes Roosevelt Hosp. Center,EG3,2015.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000062857502042 -62453,Mt.Sinai-St.Lukes Roosevelt Hosp. Center,EG4,2015.0,2.5,2.5,2.5,0.3,DFO,Petroleum Liquids,SB,IC,1.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.928827,-73.898015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.000062857502042 -62454,Lakewood Cheddar School,1,2013.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.0709,-74.1808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62455,Digital Fairfield,DGR01,2018.0,2.0,2.0,2.0,0.1,NG,Other Natural Gas,OP,FC,6.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,ISNE,CT,41.24019,-73.14603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62456,Regeneron Tarrytown,RGP00,2018.0,1.5,1.5,1.5,0.1,NG,Other Natural Gas,OP,FC,10.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,41.077952,-73.820649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62458,Ratkovich Alhambra,RAT00,2018.0,1.0,1.0,1.0,0.1,NG,Other Natural Gas,OP,FC,12.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.08145,-118.15191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62459,Micro Santa Clara,SMC01,2018.0,2.0,2.0,2.0,0.1,NG,Other Natural Gas,OP,FC,7.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.378422,-121.899969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62460,DESI-2 Battery Storage Facility,DESI2,2019.0,1.4,1.4,1.4, ,MWH,Batteries,OP,BA,12.0,2019.0, , ,3.7,1.4,1.4,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.7357,-117.915286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62461,Farmers Electric Cooperative - Kalona,1,2001.0,2.0,2.0,2.0,0.4,DFO,Petroleum Liquids,SB,IC,3.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.566688,-91.736663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.195221892949915 -62461,Farmers Electric Cooperative - Kalona,2,2001.0,2.0,2.0,2.0,0.4,DFO,Petroleum Liquids,SB,IC,3.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.566688,-91.736663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.195221892949915 -62461,Farmers Electric Cooperative - Kalona,3,2006.0,2.0,2.0,2.0,0.4,DFO,Petroleum Liquids,SB,IC,3.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.566688,-91.736663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.195221892949915 -62462,Muscle Shoals,GEN01,2021.0,227.0,227.0,227.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,AL,34.76973,-87.90454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62463,Little Bear 3,GEN01,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.716,-120.415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62464,Little Bear 4,GEN01,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.716,-120.415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62465,Little Bear 5,GEN01,2020.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.716,-120.415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62467,Vista Solar Energy Center,VISTA,2019.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,34.741,-106.655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62468,Music City Community Solar,MCS01,2018.0,1.6,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9375,0.9375,SERC,TVA,TN,36.248832,-86.746776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62469,Cove Mountain Solar,GEN01,2020.0,58.0,58.0,58.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.623123,-113.619219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62470,Cove Mountain Solar 2,GEN01,2020.0,122.0,122.0,122.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.638602,-113.637097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62471,Washington St Community Solar Farm #4,1034,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.175,-77.849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62472,Washington St Community Solar Farm #1,617,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.173,-77.846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62473,Washington St Community Solar Farm #3,1035,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.172,-77.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62474,Gaskill Rd Community Solar Farm CSG,928,2019.0,5.0,5.0,5.0,5,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.116,-76.183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62475,Kings Point Wind Energy Center,KPW1,2021.0,149.4,145.6,145.6,2.1,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9745649263721552,0.9745649263721552,MRO,SWPP,MO,37.269858,-94.05271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62476,Big Tree Community Solar Farm,607,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.766,-78.559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62477,Dryden Rd #2 Community Solar Farm CSG,372,2019.0,1.3,1.3,1.3,1.3,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.487821,-76.319983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62478,North Fork Ridge Wind Energy Center,NFRW1,2020.0,149.4,145.5,145.5,2.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9738955823293173,0.9738955823293173,MRO,SWPP,MO,37.38999,-94.51027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62479,Woodoak Drive Community Solar Farm CSG,175,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.594,-75.027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62480,Burritt Rd Community Solar Farm,635,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.275,-77.764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62481,Neosho Ridge Wind Energy Center,NRW1,2021.0,301.0,294.4,294.4,2.1,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9780730897009966,0.9780730897009966,MRO,SWPP,KS,37.485357,-95.37673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62482,Beech Ridge II Wind Energy Center,GEN1,2020.0,56.2,56.2,56.2,2.8,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,38.112222,-80.613055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62483,Taygete Energy Project LLC,PV1,2021.0,255.0,255.0,255.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.165245,-103.125868,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62484,Crawfordsville 2 Solar Park,SCRA2,2019.0,7.9,7.9,6.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7974683544303797,RFC,MISO,IN,40.055753,-86.88841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62485,Crawfordsville 3 Solar Park,SCRA3,2019.0,4.8,4.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7916666666666666,RFC,MISO,IN,40.078126,-86.896811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62486,CMR Solar LLC,CMRSL,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.561847,-74.345912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62487,Flowers Solar LLC,FLOW,2019.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.41218,-78.603088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62488,Prairie Queen Wind Farm,WT,2019.0,199.3,199.3,199.3,2,WND,Onshore Wind Turbine,OP,WT,5.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.9788,-95.2244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62489,Crossing Trails Wind Power Project LLC.,GEN1,2021.0,104.0,104.0,104.0,0.7,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,39.046623,-102.822377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62490,Echo River Solar,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,30.296207,-82.864333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62490,Echo River Solar,2,2021.0,30.0,30.0,30.0,0.7,MWH,Batteries,OP,BA,12.0,2021.0, , ,75.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPL,FL,30.296207,-82.864333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62491,Okeechobee Solar,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.630392,-80.794784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62492,"DTE Atlantic, LLC",ACB-1,2010.0,7.5,7.1,7.8,5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2010.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9466666666666667,1.0,RFC,PJM,NJ,39.3733,-74.4369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.081487065399253 -62493,Southfork Solar,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.573193,-82.191421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62494,Skeleton Creek Energy Center Hybrid,SKC,2020.0,250.0,250.0,250.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.521428,-98.03436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62495,Palmer Solar,20181,2020.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,38.6299,-104.6526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62496,Telegraph Rd #1 Community Solar Farm,1268,2021.0,3.8,3.8,3.8,3.8,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.561672,-78.17953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62497,Orange County Energy Storage 2,OCES2,2021.0,9.0,9.0,9.0,0.1,MWH,Batteries,OP,BA,11.0,2021.0, , ,36.0,9.0,9.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.715536,-117.854314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62498,Telegraph Rd #2 Community Solar Farm,1413,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.559475,-78.179411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62499,Orange County Energy Storage 3,OCES3,2021.0,6.0,6.0,6.0,0.1,MWH,Batteries,OP,BA,11.0,2021.0, , ,24.0,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.714896,-117.85431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62500,Route 19 #1 Community Solar Farm,1258,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.534,-78.151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62502,Route 19 #2 Community Solar Farm,1415,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.533807,-78.15377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62503,Winchendon Landfill Solar,10237,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.689687,-72.085671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62504,Frey Rd #1 Community Solar Farm,1159,2020.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.099866,-77.34513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62505,G.S.E. One LLC,1,2021.0,83.0,82.5,82.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9939759036144579,0.9939759036144579,TRE,ERCO,TX,33.500378,-96.146489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62507,County Route 11 Community Solar Farm,1419,2020.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.935,-73.677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62508,Furnace Rd Community Solar Farm,1420,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.241,-77.27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62516,TB Flats,1,2021.0,503.2,503.2,503.2,1,WND,Onshore Wind Turbine,OP,WT,10.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,42.177245,-106.234141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62517,Yellow Mills Rd #1 Community Solar Farm,1142,2022.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.017848,-77.26049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62518,Yellow Mills Rd #2 Community Solar Farm,1181,2022.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.016419,-77.26091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62519,Yellow Mills Rd #3 Community Solar Farm,1244,2022.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.015301,-77.260662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62521,Frey Rd #2 Community Solar Farm,1442,2020.0,1.4,1.4,1.4,1.4,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.099893,-77.343495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62524,Route 22 Community Solar Farm CSG,1444,2021.0,3.7,3.7,3.7,3.7,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.725076,-73.467034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62525,Villa Roma Rd #1,40,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.757083,-74.960959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62526,Villa Roma Rd #2,41,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.756217,-74.961191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62527,Villa Roma Rd #3 CSG,390,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.754421,-74.96152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62528,Villa Roma Rd #4 CSG,391,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.754435,-74.958625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62530,Boas Rd #1 Community Solar Farm,496,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.934274,-73.672382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62531,Boas Rd #2 Community Solar Farm,1010,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.933177,-73.67122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62532,Boas Rd #3 Community Solar Farm,1011,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.933525,-73.66933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62533,Boas Rd #4 Community Solar Farm,1023,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.928987,-73.666505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62535,MSC-Scott01 LLC,52737,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.669475,-93.504197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62536,MSC-Chisago01 LLC CSG,52739,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.492389,-92.787942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62537,MSC-Rice01 LLC CSG,52738,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.239015,-93.392662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62538,MSC-Chisago02 LLC,52740,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.48776,-92.775487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62539,HCE Moore I,PGR02,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.13432,-79.419519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62540,Three Bridge,PGR01,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.6705,-79.2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62541,Lake Placid Solar Power Plant,PV1,2019.0,45.0,45.0,45.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,27.331136,-81.364018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62542,Debary Solar Power Plant,PV1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.899548,-81.330856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62543,Trenton Solar Power Plant,PV1,2019.0,74.9,74.9,74.9,74.9,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,29.635051,-82.843085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62544,Wilkinson Solar LLC,GEN1,2019.0,80.6,80.6,80.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.596814,-76.763849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62545,Renew Solar ABC Sacramento LLC,SACRA,2020.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.39945,-121.29319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62547,Aquamarine,AQUAM,2021.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.189722,-119.904166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62548,SJRR Power LLC,SJ-1,2022.0,50.0,43.0,48.0,34,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,29.88193,-95.11148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62548,SJRR Power LLC,SJ-2,2022.0,50.0,43.0,48.0,34,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.86,0.96,TRE,ERCO,TX,29.88193,-95.11148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62549,Kearsarge Johnstown 1 CSG,JOHNN,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.066012,-74.360177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62550,Kearsarge GB,GB123,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.192495,-73.407863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62551,Kearsarge SKSC1 LLC,SKSC1,2018.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.471571,-71.494452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62552,Kearsarge Uxbridge,UX680,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.103499,-71.597588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62556,Kearsarge Johnstown 2 CSG,JOHNS,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.064422,-74.360221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62557,Kearsarge Montague,MONTA,2018.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.586363,-72.563491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62558,Kearsarge SKSC2 LLC,SKSC2,2018.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.498281,-71.533414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62559,Kearsarge Wilmington,WILM1,2017.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.561264,-71.136855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62560,Airport Solar,APS,2019.0,47.3,47.3,47.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.170176,-120.402317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62561,"Roadrunner, LLC Hybrid",RODR1,2020.0,200.0,200.0,200.0,0,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.219444,-102.19222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62561,"Roadrunner, LLC Hybrid",RODR2,2020.0,200.0,200.0,200.0,0,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.219444,-102.19222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62562,"High Lonesome Wind Power, LLC Hybrid",HILO,2021.0,449.5,449.5,449.5,0,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.171652,-101.881147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62562,"High Lonesome Wind Power, LLC Hybrid",HILO2,2021.0,50.0,50.0,50.0,0,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.171652,-101.881147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62563,High Prairie Wind Farm,HPWF,2020.0,400.0,375.5,385.4,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.93875,0.9634999999999999,SERC,MISO,MO,40.398244,-92.518612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62564,Elkhorn Battery Energy Storage System,ELKHO,2022.0,182.5,182.5,182.5, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,730.0,182.5,182.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.808039,-121.781788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62565,"Hill Top Energy Center, LLC",GEN1,2021.0,664.7,621.3,624.6,210,NG,Natural Gas Fired Combined Cycle,OP,CS,7.0,2021.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9347073867910334,0.9396720324958627,RFC,PJM,PA,39.894212,-79.938201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62566,Blue Summit III Wind,BS3,2019.0,200.2,200.2,200.2,1,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,34.170488,-99.563436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62567,"GD Richmond Buttonwoods I, LLC",GDBUT,2020.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.522911,-71.684093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62568,"GD West Greenwich Victory I, LLC",GDVIC,2020.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.657866,-71.687478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62569,Knoxville Battery Energy Storage,ES1,2018.0,1.1,1.1,1.1,0.1,MWH,Batteries,OP,BA,12.0,2018.0, , ,4.0,1.1,1.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,IA,41.315962,-93.060973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62570,Jiminy Peak Wind QF,32651,2007.0,1.5,1.8,2.7,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2007.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.543748,-73.292632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62571,Disney Prospect,DSY01,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,3.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.083387,-118.43378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62572,ATT Jericho,ATT49,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,3.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.830219,-73.352241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62573,ATT Kelvin,ATT56,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,4.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.684675,-117.836821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62574,ATT Van Nyus,ATT93,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,7.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.196324,-118.448225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62575,FLEX Gibraltar,FLX01,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,2.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.417288,-121.894109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62576,MER Queens,MER01,2017.0,1.2,1.2,1.2,0,NG,Other Natural Gas,OP,FC,3.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.7345,-73.870942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62577,APP Prune A-D,AP11A,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,5.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.331666,-122.006686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62577,APP Prune A-D,AP11B,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,6.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.331666,-122.006686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62577,APP Prune A-D,AP11C,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,6.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.331666,-122.006686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62577,APP Prune A-D,AP11D,2017.0,1.0,1.0,1.0,0,NG,Other Natural Gas,OP,FC,6.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.331666,-122.006686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62578,Preferred Freezer San Leandro,SLPV1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.711995,-122.150665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62579,Plainfield Community Solar LLC,2999,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.5205,-72.9191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62580,Route 14A CDG Solar North and South LLC,6081,2018.0,4.0,4.0,3.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.825,NPCC,NYIS,NY,42.815086,-77.046128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62581,Tolland Solar NG LLC,3011,2014.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.089484,-73.061431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62582,Newfield Community Solar LLC,5216,2019.0,6.0,6.0,5.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8833333333333333,NPCC,NYIS,NY,42.39131,-76.564236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62582,Newfield Community Solar LLC,5465,2019.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,NYIS,NY,42.39131,-76.564236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62582,Newfield Community Solar LLC,5466,2019.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,NYIS,NY,42.39131,-76.564236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62582,Newfield Community Solar LLC,5467,2019.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,NYIS,NY,42.39131,-76.564236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62583,Tanglewood Circle Solar 1 LLC,5823,2018.0,5.0,5.0,4.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.86,NPCC,ISNE,MA,42.252046,-73.109957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62584,Quitman Solar,QUITM,2019.0,150.0,150.0,150.0,0.1,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.849005,-83.643279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62585,Beebe Substation Battery Storage,WAKFD,2019.0,3.0,3.0,3.0,0.1,MWH,Batteries,OP,BA,3.0,2019.0, , ,3.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.48791,-71.047813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62586,DG Florham Park Solar LLC,BASF,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.777783,-74.427242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62587,Mesquite Star,MESQ,2020.0,418.9,418.9,418.9,23,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.255978,-100.320309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62589,Montefiore Mount Vernon Hospital,CONP7,1976.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.902825,-73.868738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.999083409715857 -62589,Montefiore Mount Vernon Hospital,DETR4,1976.0,0.7,0.7,0.7,0.2,DFO,Petroleum Liquids,SB,IC,1.0,1976.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.902825,-73.868738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.000523834468307 -62590,Wolf Creek Generator,WOLF,2014.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,OP,IC,4.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.27433,-95.68403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.098214285714286 -62591,Ekola Flats,1,2020.0,250.9,250.9,250.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,41.932405,-106.35843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62592,Headwaters Wind Farm II LLC,HWII,2021.0,200.0,200.0,200.0,12,WND,Onshore Wind Turbine,OP,WT,6.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.051694,-85.206694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62594,Ruff Solar LLC,11625,2020.0,22.0,22.0,22.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.32062,-81.7634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62595,Wendell Solar Farm LLC,10424,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.734581,-78.354999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62596,Sabattus Solar LLC,11999,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.819,-78.135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62597,Rio De Oro Solar Energy Center,RDO,2019.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,34.692,-106.688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62598,Connell East LLC,LOREA,2013.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.666976,-74.407814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62600,Cookstown,COOKS,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLW,NC,35.436844,-77.973754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62601,Changeup,CHANG,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.74901,-79.78553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62602,Starr,STARR,2019.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLW,NC,35.015398,-78.350802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62603,Badger,BADGE,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLW,NC,34.83896,-77.228776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62604,Outer Cape Community Battery,OCESS,2022.0,25.0,25.0,25.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,38.0,10.0,25.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.060267,-70.19419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62606,Whitney Hill Wind Power LLC,WTHWP,2020.0,65.0,65.0,65.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,PJM,IL,39.952927,-89.310249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62607,Bloomfield Municipal Utilities Solar,PV,2019.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,40.75,-92.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62609,Commerce ESS,BA1,2019.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,6.0,2019.0, , ,10.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.43445,-98.61765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62610,Commerce Solar,PV1,2019.0,5.0,5.0,5.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.43445,-98.61765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62611,PFMG Solar Grossmont Helix LLC,HELIX,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.753281,-117.035241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62612,USAA Black Bear Energy,USBC1,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.313573,-74.4847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62613,CBP Solar,CBPB1,2018.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.266188,-73.946882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62614,Kinder Morgan Fordham,KMFO1,2018.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.542557,-74.236582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62615,ALDI DC 2,ADC2,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.865827,-72.573956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62616,CCG Marketing,CCGWC,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.859343,-74.302956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62617,Searcy Solar Hybrid,SEABT,2022.0,10.0,10.0,10.0,0.1,MWH,Batteries,OP,BA,1.0,2022.0, , ,30.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,MISO,AR,35.233,-91.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62617,Searcy Solar Hybrid,SEARC,2022.0,100.0,100.0,100.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,35.233,-91.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62618,Hidalgo Wind Farm II,WT,2020.0,50.4,50.4,50.4,1,WND,Onshore Wind Turbine,OP,WT,2.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.492862,-98.448267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62619,Rockland Bakery Inc.,CAT1,1996.0,0.3,0.3,0.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.190589,-74.065114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62619,Rockland Bakery Inc.,CAT2,1996.0,0.3,0.3,0.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.190589,-74.065114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62619,Rockland Bakery Inc.,CAT3,1996.0,0.3,0.3,0.3,0,NG,Natural Gas Internal Combustion Engine,SB,IC,1.0,1996.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.190589,-74.065114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62619,Rockland Bakery Inc.,CATE4,1996.0,0.7,0.7,0.7,0,DFO,Petroleum Liquids,SB,IC,1.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.190589,-74.065114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62620,Sage Draw Wind,SD,2021.0,338.4,338.4,338.4,0,WND,Onshore Wind Turbine,OP,WT,8.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.303497,-101.65722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62621,Achilles Solar,ACHIL,2019.0,5.0,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.9800000000000001,SERC,CPLE,NC,35.359674,-79.911423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62622,Overlook Medical Center,CHPS3,2012.0,2.0,2.0,2.0,0.3,DFO,Petroleum Liquids,OP,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.711684,-74.354231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7.98929464939512 -62623,Arborgate Solar,ARBOR,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLW,NC,35.717391,-79.11946,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62624,"White Cloud Wind Project, LLC",WTCWF,2020.0,236.5,236.5,236.5,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,AECI,MO,40.44,-95.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62625,West Water Street,G1,2018.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.8809,-71.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.860529986052999 -62625,West Water Street,G2,2018.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.8809,-71.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.860529986052999 -62625,West Water Street,G3,2018.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.8809,-71.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.860529986052999 -62625,West Water Street,G4,2018.0,2.5,2.5,2.5,1,DFO,Petroleum Liquids,OP,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,41.8809,-71.0927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.860529986052999 -62627,Wadesboro 4,WADE4,2019.0,2.2,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8636363636363635,0.8636363636363635,SERC,CPLE,NC,35.102174,-80.122015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62628,APG Old Bayside,10115,2018.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.498961,-76.146055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62629,APG New Chesapeake,10115,2018.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.493704,-76.146701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62630,Jumbo Hill Wind Project,WTGS1,2020.0,160.7,160.7,160.7,2.8,WND,Onshore Wind Turbine,OP,WT,3.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.386,-102.949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62631,Blue Heron Solar,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.701639,-81.129155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62632,Cattle Ranch,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.321884,-81.809077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62633,Twin Lakes,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.612188,-81.844528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62634,Babcock Preserve,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.857879,-81.759645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62636,NVSS-II,NVSS2,2017.0,15.0,15.0,14.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9666666666666667,WECC,NEVP,NV,36.275051,-115.972329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62637,Milford Solar Farm (NJ) LLC,MILFD,2019.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.614955,-75.156486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62638,McCullough Road Solar Farm,WASHG,2019.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.757615,-74.958162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62639,Manchester Community College East,10307,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.763257,-72.557144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62640,Manchester Community College North,10308,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.763592,-72.56329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62641,Morehead Generating Facility,M3516,2019.0,1.4,1.4,1.4,0.4,LFG,Landfill Gas,OP,IC,11.0,2019.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,SERC,PJM,KY,38.191,-83.544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.505783972125435 -62642,GE-Lubbock,GE-P2,2014.0,2.5,2.5,2.5,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2014.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.59145,-102.056875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62642,GE-Lubbock,GE-P3,2015.0,2.8,2.8,2.8,0.1,WND,Onshore Wind Turbine,OP,WT,2.0,2015.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.59145,-102.056875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62642,GE-Lubbock,GE-P4,2021.0,3.4,3.4,3.4,0.1,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,33.59145,-102.056875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,20794,2013.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,20799,2013.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OA,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,20971,2013.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,20974,2013.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,20975,2003.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2003.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,3365A,2009.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OA,PV,1.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,3365B,2009.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OA,PV,1.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,3384,2009.0,0.7,0.7,0.7, ,SUN,Solar Photovoltaic,OP,PV,2.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,3385,2008.0,0.6,0.6,0.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2008.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,4202,2009.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62643,AZ State University - Tempe Campus Solar,91001,2018.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AZPS,AZ,33.424279,-111.92822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62644,Minuteman Energy Storage,MMES,2019.0,5.0,5.0,5.0,0,MWH,Batteries,OP,BA,5.0,2019.0, , ,10.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.567614,-71.098131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62645,Northern Preserve Solar,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,30.2473,-82.226907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62646,Washburn Road Solar,WASHB,2019.0,1.9,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.777159,-70.965254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62647,MBS Textbook Exchange,MBS1,2008.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,11.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.95718,-92.3776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62647,MBS Textbook Exchange,MBS2,2008.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,11.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,MISO,MO,38.95718,-92.3776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62649,SFDK Solar,SFDK,2019.0,6.3,6.3,6.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.132245,-122.231965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62651,Haven Solar Project CSG,HAVEN,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.518,-94.122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62652,Happy Hollow CSG Hybrid,HHESS,2019.0,3.3,3.3,3.3,0,MWH,Batteries,OP,BA,10.0,2019.0, , ,6.6,3.3,3.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.606995,-72.045291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62652,Happy Hollow CSG Hybrid,HHPV,2019.0,5.0,5.0,5.0,0,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.606995,-72.045291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62653,Zephyr Wind Project - 2.0,T1,2020.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.093078,-83.637778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62653,Zephyr Wind Project - 2.0,T2,2020.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.093078,-83.637778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62653,Zephyr Wind Project - 2.0,T3,2020.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.093078,-83.637778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62654,Foundation Dole Fresh Vegetables,WTG1,2022.0,2.8,2.8,2.8,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.459294,-121.350083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62654,Foundation Dole Fresh Vegetables,WTG2,2022.0,2.8,2.8,2.8,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,36.459294,-121.350083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62655,HL Solar,HLS,2019.0,7.6,7.6,7.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,40.373,-120.262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62656,Hunter Solar LLC (UT),HUSOL,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,39.142217,-111.051111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62657,DWW Solar ll,DWWS,2019.0,36.9,36.9,36.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.541596,-72.475018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62658,Cuyahoga Falls 1,CF2-1,2020.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282051282051283 -62658,Cuyahoga Falls 1,CF2-2,2020.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282051282051283 -62658,Cuyahoga Falls 1,CF2-3,2020.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282051282051283 -62658,Cuyahoga Falls 1,P001,2018.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282132848595017 -62658,Cuyahoga Falls 1,P002,2018.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282132848595017 -62658,Cuyahoga Falls 1,P003,2018.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282132848595017 -62658,Cuyahoga Falls 1,P004,2018.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282132848595017 -62658,Cuyahoga Falls 1,P005,2018.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282132848595017 -62658,Cuyahoga Falls 1,P006,2018.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.141773,-81.474535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.282132848595017 -62659,"Pecan Grove Solar, LLC",1081,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.067661,-77.185206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62660,"1025 Traveller Solar, LLC",1025,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.427308,-79.126319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62661,"1047 Little Mountain Solar, LLC",1047,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.197067,-80.806725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62662,"Ennis Solar, LLC",22503,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.421964,-78.721683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62663,Gilcrest Solar,SO390,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.289366,-104.783613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62664,Quincy Solar,SO393,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.63838,-104.562645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62666,Sigurd Solar LLC,SGSOL,2021.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.850544,-112.005212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62667,Lafayette Horizon Solar CSG LLC,LFHSL,2019.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.981606,-105.063747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62668,Maiden Creek Solar Power Plant,PV1,2021.0,69.3,69.3,69.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.593,-81.167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62669,Gaston Solar Power Plant,PV1,2020.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.3224,-81.1343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62671,Equinix Caspian Dr. Fuel Cell,EQX1A,2017.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,12.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.415092,-122.05211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62671,Equinix Caspian Dr. Fuel Cell,EQX1B,2017.0,2.8,2.8,2.8,2.8,NG,Other Natural Gas,OP,FC,12.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.415092,-122.05211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62672,Nautilus Goat Island Solar LLC (CSG),GI,2019.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.941786,-71.662038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62673,Antelope Expansion 3A,ANX3A,2021.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.728902,-118.322051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62674,Antelope Expansion 3B,ANX3B,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.720162,-118.322532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62675,Skipjack Solar Center,SKIPJ,2022.0,175.0,175.0,175.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.437106,-77.158736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62676,Epic Verona,G101,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G102,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G103,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G104,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G105,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G202,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G203,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G204,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G205,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G206,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G207,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G208,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G209,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G210,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G211,2013.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G301,2009.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G302,2009.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,G303,2009.0,2.3,2.3,2.3,0,DFO,Petroleum Liquids,SB,IC,6.0,2009.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.856861232536213 -62676,Epic Verona,PV,2011.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.996838,-89.568745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62677,IKEA Canton Rooftop PV System,26A,2015.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.32345,-83.42888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62677,IKEA Canton Rooftop PV System,26B,2016.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.32345,-83.42888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62678,Crooked Run,299,2019.0,70.1,70.1,70.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.67704,-77.977497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62679,Palmetto Plains,1405,2019.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.340179,-80.697336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62680,Garfield Solar,GARFE,2019.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.888632,-74.122229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62680,Garfield Solar,GARFN,2019.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.888632,-74.122229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62680,Garfield Solar,GARFS,2019.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.888632,-74.122229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62680,Garfield Solar,GARMS,2019.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.888632,-74.122229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62681,CED Champaign Solar LLC,CSIL,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.138283,-88.291246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62682,Noland Wastewater Treatment Plant Hybrid,FAYE1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,AR,36.082301,-94.067149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62682,Noland Wastewater Treatment Plant Hybrid,FAYEB,2019.0,6.0,6.0,6.0,0.1,MWH,Batteries,OP,BA,7.0,2019.0, , ,13.1,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,AR,36.082301,-94.067149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62683,Westside Wastewater Treatment Plant Hybrid,FAYW1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,AR,36.04135,-94.140079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62683,Westside Wastewater Treatment Plant Hybrid,FAYWB,2019.0,6.0,6.0,6.0,0.1,MWH,Batteries,OP,BA,7.0,2019.0, , ,13.1,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,AR,36.04135,-94.140079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62686,"TPE Pennsylvania Solar 1, LLC",PABOE,2019.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.198529,-76.161594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62687,American Canyon Solar,RPNPA,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.160858,-122.214014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62687,American Canyon Solar,RPNPB,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.160858,-122.214014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62687,American Canyon Solar,RPNPC,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.160858,-122.214014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62688,Malech Solar Farm,MFARM,2017.0,3.1,3.1,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6451612903225806,WECC,CISO,CA,37.228736,-121.738616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62689,Hellyer Solar Farm,HFARM,2017.0,2.2,2.2,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6818181818181818,WECC,CISO,CA,37.286958,-121.81508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62690,Guadalupe Solar Farm,GFARM,2018.0,1.7,1.7,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6470588235294119,WECC,CISO,CA,37.269039,-121.861079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62691,Shiloh Hwy Solar,PGR05,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.27,-76.033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62692,Sandy Solar,PGR04,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.33,-76.058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62693,Chowan Jehu Solar,PGR03,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.283778,-76.602304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62695,CED Northampton Solar LLC Hybrid,NSES,2020.0,2.3,2.3,2.3,2.3,MWH,Batteries,OP,BA,12.0,2020.0, , ,4.9,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.3057,-72.71064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62695,CED Northampton Solar LLC Hybrid,NSMA,2019.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.3057,-72.71064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62696,FastSun 2 CSG,FS2,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.531686,-92.979196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62697,Mission College Blvd. Fuel Cell,NTL3A,2017.0,2.4,2.4,2.4,2.4,NG,Other Natural Gas,OP,FC,12.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.38633,-121.96238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62697,Mission College Blvd. Fuel Cell,NTL3B,2017.0,2.6,2.6,2.6,2.6,NG,Other Natural Gas,OP,FC,12.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.38633,-121.96238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62698,Kaiser East La Palma Ave. Fuel Cell,KR059,2017.0,2.2,2.2,2.2,1.5,NG,Other Natural Gas,OP,FC,9.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.85098,-117.84531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62699,Kaiser Deer Valley Rd. Fuel Cell,KSR24,2017.0,1.4,1.4,1.4,1.4,NG,Other Natural Gas,OP,FC,4.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.95169,-121.77182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62700,Kaiser Owens Dr. Fuel Cell,KSR23,2017.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.69923,-121.89419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62701,Kaiser Napa Valley Corporate Dr Fuel Cell,KS18A,2017.0,2.5,2.5,2.5,2.5,NG,Other Natural Gas,OP,FC,6.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,38.25477,-122.27305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62701,Kaiser Napa Valley Corporate Dr Fuel Cell,KS18B,2017.0,2.3,2.3,2.3,2.3,NG,Other Natural Gas,OP,FC,6.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,38.25477,-122.27305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62702,Equinix Great Oaks Blvd. Fuel Cell,EQ14A,2017.0,2.4,2.4,2.4,2.4,NG,Other Natural Gas,OP,FC,12.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.24097,-121.78259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62702,Equinix Great Oaks Blvd. Fuel Cell,EQ14B,2017.0,2.1,2.1,2.1,2.1,NG,Other Natural Gas,OP,FC,12.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.24097,-121.78259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62703,Equinix Lundy Ave. Fuel Cell,EQ13A,2017.0,1.8,1.8,1.8,1.8,NG,Other Natural Gas,OP,FC,9.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.38846,-121.88896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62703,Equinix Lundy Ave. Fuel Cell,EQ13B,2017.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,9.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.38846,-121.88896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62704,Equinix Douglas St. Fuel Cell,EQX09,2017.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,10.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.9212,-118.38453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62704,Equinix Douglas St. Fuel Cell,EQX95,2017.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.9212,-118.38453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62705,Equinix Maple Ave. Fuel Cell,EQX08,2017.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,9.0,2017.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.92542,-118.39463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62706,Helen Solar CSG,SC,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.789369,-94.060012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62707,Walcott Solar CSG,SC,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.235164,-93.275012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62708,Northfield Solar CSG,SC,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.417131,-93.153061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62709,Warsaw Solar CSG,SC,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.225457,-93.39953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62710,Nationals,SO435,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.874155,-77.006676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62711,Plum Creek Wind Project (NE),PLUM,2020.0,230.0,230.0,230.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.16159,-97.203789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62712,Burlington Coat Factory Solar,BCF,2018.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.09283,-74.807687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62713,DSM Nutritional Products Solar,DSM,2018.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.836806,-75.065465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62714,Eyak Service Center BESS,BESS1,2019.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,8.0,2019.0, , ,0.9,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,AK,60.54047,-145.74079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62715,Wildcat Creek Wind Farm LLC,WCCWF,2021.0,180.1,180.1,180.1,7.8,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.54915,-97.32958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62718,Mesa CSG 2 Massicotte,X0037,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.044814,-108.419672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62719,Mesa CSG 1 Murdock,X0038,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.108785,-108.64387,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62720,"Chester Woods Point Solar, LLC CSG",5540,2019.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,MD,38.94843,-76.300435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62721,Steel Sun 2: 2303-III-9 Hamburg Tpke,SS29,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.81849,-78.855377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62722,Steel Sun 2: 2303-III-4 Hamburg Tpke,SS24,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.811146,-78.854217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62723,Steel Sun 2: 2303-III-2 Hamburg Tpke,SS22,2019.0,2.0,2.0,2.0,2,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.809003,-78.85337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62724,Homer Street West,HSW,2019.0,1.6,1.6,1.6,1.6,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.098128,-78.442286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62725,Homer Street East,HSE,2019.0,1.6,1.6,1.6,1.6,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.099342,-78.44095,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62728,MHG Wallingford,X0041,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.476875,-72.982687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62730,Desper Solar,1,2021.0,88.2,88.2,88.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.015735,-78.043131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62731,Middleton Airport Solar,1,2020.0,5.6,5.6,5.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.11626,-89.53245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62732,"Solar Star Palo Alto I, LLC",SSPAI,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.411011,-122.148864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62733,East Hampton Energy Storage Center,BEH,2018.0,5.0,5.0,5.0,1,MWH,Batteries,OP,BA,8.0,2018.0, , ,40.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,40.961751,-72.209858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62734,Montauk Energy Storage Center,BME,2019.0,5.0,5.0,5.0,0.1,MWH,Batteries,OP,BA,2.0,2019.0, , ,40.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.03988,-71.964359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62735,Phoenix Solar South Farms LLC Solar Farm,M1358,2015.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.081738,-88.244498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62736,Harbec Energy,250KW,2001.0,0.3,0.3,0.3,0,WND,Onshore Wind Turbine,OS,WT,12.0,2001.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.22731,-77.364092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62736,Harbec Energy,850KW,2011.0,0.9,0.9,0.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2011.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,NYIS,NY,43.22731,-77.364092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62736,Harbec Energy,CPH,2015.0,0.5,0.5,0.5,0,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,NYIS,NY,43.22731,-77.364092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48.44561403508772 -62737,West Valley West,WVW,2022.0,5.0,5.0,5.0,0.5,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0,12,2057,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.442927,-78.632137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62738,West Valley East,WVE,2022.0,5.0,5.0,5.0,0.5,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0,12,2057,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.443632,-78.632127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62739,KDC Solar ASGM,ARDAH,2019.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.409744,-75.218545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62740,"MSC-Empire01, LLC",52784,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.67413,-93.11627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62741,Mount Joy Wire,CHP,2011.0,1.1,1.1,1.1,0.5,NG,Natural Gas Internal Combustion Engine,OA,IC,12.0,2011.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.10846,-76.476728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62744,Arcadia Solar,A1,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.243436,-91.458244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62745,Wheatridge Hybrid,BTRY,2022.0,30.0,30.0,30.0,30,MWH,Batteries,OP,BA,3.0,2022.0, , ,120.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,BPAT,OR,45.55975,-119.6338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62745,Wheatridge Hybrid,SOLAR,2022.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,45.55975,-119.6338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62745,Wheatridge Hybrid,WIND,2020.0,200.0,200.0,200.0,30,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.55975,-119.6338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62746,KDC Solar CSCP LLC,CSCP,2019.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.237803,-74.314421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62747,Matilda Hamilton Fee Hydroelectric Station,1,2021.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.677484,-83.948553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62747,Matilda Hamilton Fee Hydroelectric Station,2,2021.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.677484,-83.948553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62747,Matilda Hamilton Fee Hydroelectric Station,3,2021.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.677484,-83.948553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62747,Matilda Hamilton Fee Hydroelectric Station,4,2021.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.677484,-83.948553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62747,Matilda Hamilton Fee Hydroelectric Station,5,2021.0,0.5,0.5,0.5,0.1,WAT,Conventional Hydroelectric,OP,HY,9.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,SERC,PJM,KY,37.677484,-83.948553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62750,Little Manatee River Solar,GEN1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.679868,-82.410644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62752,LafargeHolcim - Paulding Wind Project,L1,2020.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.192377,-84.61256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62752,LafargeHolcim - Paulding Wind Project,L2,2020.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.192377,-84.61256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62752,LafargeHolcim - Paulding Wind Project,L3,2020.0,1.5,1.5,1.5,0.1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.192377,-84.61256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62753,Prospect Storage,BESS,2020.0,9.9,9.9,9.9,0.1,MWH,Batteries,OP,BA,1.0,2020.0, , ,10.0,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.149166,-95.651111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62754,San Diego International Airport BESS,BA,2021.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,6.0,2021.0, , ,4.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.7338,-117.1933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62755,Prospero Solar,PROSP,2020.0,300.0,300.0,300.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.287873,-102.840399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62756,RC Energy AA LLC Solar Facility,AA001,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.152721,-106.547222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62757,Bridgewater Complex Co-Generation Plant,CG1,2015.0,1.5,1.5,1.5,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,NPCC,ISNE,MA,41.931838,-70.958393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19.416911764705883 -62758,Meherrin Solar,MEHER,2022.0,59.6,59.6,59.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.59,-77.65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62759,Greenville CSG,GV,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.356,-74.622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62760,Hopkinton CSG,WT,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.203492,-71.53153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62761,Chester CSG,CH,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.339,-74.288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62762,NASA Johnson Space Center CHP,CTG-1,2018.0,5.6,5.3,5.7,2.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9464285714285715,1.0,TRE,ERCO,TX,29.562372,-95.089302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.032581290775349 -62762,NASA Johnson Space Center CHP,CTG-2,2018.0,5.6,5.3,5.7,2.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9464285714285715,1.0,TRE,ERCO,TX,29.562372,-95.089302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.032581290775349 -62763,Carver CSG,CR,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.905958,-70.810468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62764,Westtown CSG,WT,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,41.345,-74.561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62765,El Campo Wind,CAMPO,2020.0,242.8,242.8,242.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.732181,-99.726392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62766,Scottsburg Solar Park,SCCOT,2020.0,7.1,7.1,5.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8028169014084507,RFC,MISO,IN,38.661999,-85.785544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62767,Gas City Solar Park,SGASC,2020.0,2.5,2.5,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,MISO,IN,40.481168,-85.570279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62769,Columbia City Solar Park,SCOLU,2021.0,4.3,4.3,3.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.813953488372093,RFC,MISO,IN,41.175519,-85.505304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62770,Richmond Solar Park 3,SRIC3,2019.0,6.5,6.5,5.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IN,39.83901,-84.825585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62772,Coniglio Solar,BTCON,2021.0,123.6,123.6,123.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.404486,-96.082472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62773,"BT Cooke Solar, LLC",BTCOO,2020.0,59.0,59.0,59.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.5493,-97.1798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62774,Kellam Solar,BTKEL,2020.0,59.0,59.0,59.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.4744,-95.7156,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62775,Wildberry,WILDB,2018.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.058165,-89.368619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62776,Crawfordsville Solar Park 4,SCRA4,2020.0,2.3,2.3,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8260869565217391,RFC,MISO,IN,40.049684,-86.880819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62777,Ulster County Solar,ULSTE,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.961896,-73.981234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62778,Hecate Energy Blair Road LLC,HEJEA,2018.0,4.0,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,JEA,FL,30.286,-81.834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62779,Novel Martin Solar One LLC (McLeod) CSG,MART,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.90295,-94.02864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62780,"Rappahannock Solar, LLC",100,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.657039,-76.383228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62781,"10 Briggs Solar NG, LLC (East)",02818,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.63269,-71.49625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62784,Franklin Solar Site,FRANK,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.86832,-74.306523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62785,Malone Solar Site,MALON,2018.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.870858,-74.307248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62786,"Thanksgiving Fire Solar Farm, LLC",12087,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.701,-78.327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62788,Sugarhill Road - Solitude Solar CSG,X0040,2019.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.822572,-73.84853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62790,Tell City Solar Park,STEL2,2020.0,3.2,3.2,2.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.78125,RFC,MISO,IN,37.965852,-86.737329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62791,Richmond Solar Park 4,SRIC4,2020.0,7.1,7.1,5.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7887323943661971,RFC,PJM,IN,39.862889,-84.92966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62792,DG AMP Solar Piqua Manier,AMPPM,2019.0,12.6,12.6,12.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.13043,-84.25545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62793,Crawfordsville 5 Solar Park,SCRA5,2020.0,9.8,9.8,7.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7959183673469387,RFC,MISO,IN,40.017668,-86.85987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62794,Centerville Solar Park,SCENT,2020.0,1.1,1.1,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7272727272727273,RFC,PJM,IN,39.828501,-85.003765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62795,Ida Grove II,1,2019.0,201.0,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9950248756218906,0.9950248756218906,MRO,MISO,IA,42.326854,-95.458818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62798,Fern Solar LLC,FERN,2020.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.003272,-77.696443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62799,Winona Solar,WIN,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.124097,-91.900997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62800,Wabasha Solar,WAB,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.363109,-92.021668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62801,Vallecito,ORN34,2021.0,10.0,10.0,10.0,0.1,MWH,Batteries,OP,BA,2.0,2021.0, , ,10.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.407086,-119.511547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62804,Greasewood Solar,GREA1,2021.0,255.0,255.0,255.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.030996,-102.488209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62805,Bloomington Solar I,BLOOM,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,37.043828,-113.627523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62806,Shelter Creek Condominiums Solar,SCC01,2020.0,2.5,2.4,1.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.44000000000000006,WECC,CISO,CA,37.61909,-122.4289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62809,BMP Wind (TX),BMP,2021.0,293.3,293.3,293.3,23,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.28938,-99.291596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62810,"RIT Henrietta Solar 1, LLC",13500,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.076198,-77.66724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62812,Milford Solar 1,MS1,2020.0,99.0,99.0,99.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,38.490667,-113.018283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62813,Grasshopper Solar,GRHS,2020.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.85,-78.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62814,Sadler Solar,SADL,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.6867,-77.558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62815,Fairbanks Wind Park,GNWF1,2022.0,72.8,72.8,72.8,37,WND,Onshore Wind Turbine,OP,WT,1.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,45.683618,-86.645742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62820,"Stony Knoll Solar, LLC",GEN1,2022.0,22.6,22.6,22.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.288,-80.656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62821,"Speedway Solar NC, LLC",GEN1,2021.0,22.6,22.6,22.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.218,-80.536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62822,"Broad River Solar, LLC",GEN1,2021.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.188,-81.751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62824,"GSPP Devens, LLC",DEVEN,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.544219,-71.585965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62825,GSPP Terrawatt Westfield LLC CSG,WESTF,2019.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.177501,-72.727023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62826,"GSPP Raynham TMLP, LLC CSG",RAYN,2019.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.930445,-71.06043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62827,"Ajax Solar, LLC (MA)",AJAXS,2017.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.018945,-71.058569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62828,TWE Bowman Solar Project,BOW,2020.0,75.0,73.1,73.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9746666666666666,0.9746666666666666,SERC,SCEG,SC,33.316159,-80.68244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62829,GSPP Held LLC CSG,HELDM,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.52677,-94.284745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62830,GSPP Imholte CSG,IMHOL,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.557945,-94.16324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62831,Hickory Grove #1,25,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.186827,-76.845064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62832,Hickory Grove #2,309,2020.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.186,-76.845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62833,Hastings Community Solar Farm,PV,2019.0,1.5,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.20000000000000007,0.20000000000000007,MRO,SWPP,NE,40.602,-98.437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62834,Podunk Road CSG,871,2019.0,2.2,2.2,2.2,2,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.46806,-76.65289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62835,Acushnet Ball Plant 2,ESS-1,2019.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,6.0,2019.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.7197,-70.97138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62835,Acushnet Ball Plant 2,ESS-2,2019.0,0.5,0.5,0.5,0,MWH,Batteries,OP,BA,6.0,2019.0, , ,1.0,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.7197,-70.97138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62836,Maryneal Windpower,MNW,2021.0,182.4,182.4,182.4,0.1,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.199366,-100.491908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62837,Frontier Windpower II,FW2,2021.0,351.8,351.8,351.8,27,WND,Onshore Wind Turbine,OP,WT,2.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.82478,-97.029777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62839,98th Street Battery Storage Station,ESS98,2021.0,2.0,1.8,1.8,1,MWH,Batteries,OP,BA,6.0,2021.0, , ,12.0,1.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9,0.9,NPCC,NYIS,NY,40.679137,-73.840187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62840,"Mountain Breeze Wind, LLC",MTBRZ,2020.0,171.7,171.7,171.7,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSCO,CO,40.960618,-104.003174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62842,Nextsun Energy Littleton,1-003,2013.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.551461,-71.510175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62843,Garnet Solar (NY),PV1,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.723851,-74.062378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62845,ENGIE Long Draw Solar LLC,SP1,2020.0,225.0,225.0,225.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.741383,-101.621793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62847,Fennimore Solar,FEN6,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.971,-90.662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62848,New Lisbon Solar,NEW9,2019.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.883,-90.136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62849,Cumberland Solar,CUM4,2019.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.511,-92.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62853,Maverick Creek Wind,MVRCK,2022.0,491.6,491.6,491.6,1,WND,Onshore Wind Turbine,OP,WT,3.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.262546,-99.843961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62855,West Raymond Wind Farm LLC,WRAYM,2021.0,239.8,239.8,239.8,22,WND,Onshore Wind Turbine,OP,WT,10.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.376651,-97.993045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62856,Marengo Battery Storage LLC,MBSS,2018.0,20.0,20.0,20.0,15,MWH,Batteries,OA,BA,12.0,2018.0, , ,20.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,IL,42.252733,-88.639983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62857,RoxWind,WIND1,2021.0,15.3,15.3,15.3,0,WND,Onshore Wind Turbine,OP,WT,11.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.6148,-70.6176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62858,Cashton Solar,CAS3,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.737,-90.805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62859,Coventry Clean Energy Corporation,COV-1,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,7.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,VT,44.908716,-72.221446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.167435093543164 -62859,Coventry Clean Energy Corporation,COV-2,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,7.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,VT,44.908716,-72.221446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.167435093543164 -62859,Coventry Clean Energy Corporation,COV-3,2005.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,7.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,VT,44.908716,-72.221446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.167435093543164 -62859,Coventry Clean Energy Corporation,COV-4,2007.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,1.0,2007.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,VT,44.908716,-72.221446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.167435093543164 -62859,Coventry Clean Energy Corporation,COV-5,2009.0,1.6,1.5,1.5,1.5,LFG,Landfill Gas,OP,IC,6.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9375,0.9375,NPCC,ISNE,VT,44.908716,-72.221446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.167435093543164 -62860,Chambers Road Solar,263,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.187443,-76.894394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62861,Forest City Solar,FOR7,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,43.276,-93.629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62862,Nabb Battery Energy Storage System,ES1,2020.0,5.0,5.0,5.0,5,MWH,Batteries,OP,BA,12.0,2020.0, , ,5.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,MISO,IN,38.501908,-85.694574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62868,Elroy Solar,ELR5,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.732,-90.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62869,St. Charles Solar,STC10,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.976,-92.032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62870,Gardner - Otter River Road,79711,2019.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.603029,-72.039178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62871,Boiling Springs Wind Farm,BGSPS,2020.0,148.4,148.4,148.4,25,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.546545,-99.357603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62873,Carolina Poultry Power Farmville,7474,2019.0,0.8,0.8,0.8,0.2,AB,Other Waste Biomass,OP,ST,9.0,2019.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SEPA,NC,35.591719,-77.614507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.9736490235070745 -62873,Carolina Poultry Power Farmville,7475,2019.0,0.8,0.8,0.8,0.2,AB,Other Waste Biomass,OP,ST,9.0,2019.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SEPA,NC,35.591719,-77.614507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.9736490235070745 -62873,Carolina Poultry Power Farmville,7476,2019.0,0.1,0.1,0.1,0.1,AB,Other Waste Biomass,OP,ST,9.0,2019.0, , ,,,,,biomass,waste,Agricultural By-Products,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,SERC,SEPA,NC,35.591719,-77.614507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.9736490235070745 -62874,Acorn I Energy Storage LLC,ACOR1,2021.0,2.0,2.0,2.0,2,MWH,Batteries,OP,BA,4.0,2021.0, , ,6.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.196505,-118.931898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62875,Wildcat I Energy Storage LLC,WILD1,2021.0,3.0,3.0,3.0,3,MWH,Batteries,OP,BA,11.0,2021.0, , ,12.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.807988,-116.489835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62876,Amazon Maryland DCA1,DCA1,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.222576,-76.469011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62877,Amazon Denver DEN3,ADEN3,2019.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.885061,-104.982339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62878,McCleskey Cotton,MCCOT,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.825063,-84.385575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62879,Columbia Bryson,COBRY,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.429859,-82.196002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62880,Bibb Jones,BIBBJ,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.777747,-83.756164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62881,Muscogee Public Works,MUSPW,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.49375,-84.861326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62882,Oil Dri 2 Solar,OLDRY,2019.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.991,-84.066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62883,Telfair Thompson,TELTO,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.058559,-82.871786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62884,Richmond Hayes Solar,RICHA,2018.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.364,-82.022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62885,Troup RC50,TROUP,2019.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.895935,-84.849483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62886,Wilkinson DeFore,WILKD,2019.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.879593,-83.320986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62887,Freeman Avenue,FREAV,2019.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.182026,-84.14762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62889,Hecate Energy Johanna Facility,HEGJF,2021.0,10.0,10.0,10.0,10,MWH,Batteries,OP,BA,10.0,2021.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.714672,-117.853061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62889,Hecate Energy Johanna Facility,HJFII,2021.0,10.0,10.0,10.0,10,MWH,Batteries,OP,BA,10.0,2021.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.714672,-117.853061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62890,GSPP Boxborough Littleton (MA),BOXBR,2019.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.485559,-71.540855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62891,Rosewater Wind Farm,ROSEW,2020.0,102.0,102.0,102.0,1.3,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IN,40.770899,-86.875007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62893,Prairie Wolf Solar LLC,PWOLF,2021.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.544605,-87.97198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62897,Holiday Hill Community Wind,HHCW1,2019.0,5.0,5.0,5.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,MA,42.212535,-72.871262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62898,Town of Burrillville Solar CSG,X0042,2020.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.954239,-71.661196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62899,East Line Solar,EASTL,2020.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,32.84703,-111.565072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62900,Somerville Solar,PV,2019.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.22492,-89.35083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62901,Phoenix Contact - CCHP Plant,CCHP,2014.0,1.0,1.0,1.0,0.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2014.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,PA,40.229379,-76.75007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.505604719764012 -62902,Windsor Floating Solar,WUS15,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.53917,-122.81508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62903,NorthPark Solar,NPSP1,2016.0,6.1,6.1,6.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.257726,-74.441969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62903,NorthPark Solar,NPSP2,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.257726,-74.441969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62904,Milhurst Solar,NPSMH,2015.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.254975,-74.380834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62905,Day Four Solar LLC,DAY04,2016.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.053,-74.556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62906,Augusta Solar Farm,AUGSF,2016.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.099995,-74.731032,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62907,Hinesburg,VEC,2019.0,1.9,1.9,1.9,0.1,MWH,Batteries,OP,BA,9.0,2019.0, , ,1.9,1.9,1.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,VT,44.36115,-73.070764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62908,Anoka BESS,BA,2018.0,6.0,6.0,6.0,0,MWH,Batteries,OP,BA,12.0,2018.0, , ,12.0,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,MN,45.32,-93.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62909,"Raymond Wind Farm, LLC",ERAYM,2021.0,200.2,200.2,200.2,22,WND,Onshore Wind Turbine,OP,WT,6.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.364153,-97.780439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62910,MNCPPC Germantown Solar,X0008,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,MD,39.149037,-77.317948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62911,Kearsarge Gill,GILL,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.671105,-72.477491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62912,Solar Hagerstown,137,2020.0,10.0,7.5,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,1.0,RFC,PJM,MD,39.64913,-77.67837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62914,Nassau Solar Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,30.50391,-81.88411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62915,Magnolia Springs Solar Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.89857,-81.69333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62916,Trailside Solar Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.774987,-81.427853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62917,Rodeo Solar Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.32063,-81.81024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62918,Notre Dame Hydro,HYD1,2022.0,2.5,2.5,2.5,0.2,WAT,Conventional Hydroelectric,OP,HY,5.0,2022.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,RFC,PJM,IN,41.676,-86.2453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62919,Orange Blossom Solar Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.59686,-80.57071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62920,Burrstone Energy Center,CG-1,2009.0,1.1,1.1,1.1,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.09534,-75.278357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.84826887551817 -62920,Burrstone Energy Center,CG-2,2009.0,1.1,1.1,1.1,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.09534,-75.278357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.84826887551817 -62920,Burrstone Energy Center,CG-3,2009.0,1.1,1.1,1.1,0.7,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.09534,-75.278357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.84826887551817 -62920,Burrstone Energy Center,CG-4,2009.0,0.3,0.3,0.3,0.2,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2009.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,43.09534,-75.278357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.848269336347489 -62921,Palm Bay Solar,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.8421,-80.631554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62922,Lakeside Solar Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.21421,-80.74458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62923,Union Springs Solar Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,29.97397,-82.30099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62924,Pelican Solar Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.522,-80.54726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62925,Egret Solar Center,1,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,30.28251,-82.18378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62926,"Jackson Generation, LLC",01,2022.0,644.3,600.0,558.0,340,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9312432096849295,0.8660561850069843,RFC,PJM,IL,41.438536,-88.110626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62926,"Jackson Generation, LLC",02,2022.0,644.3,600.0,558.0,340,NG,Natural Gas Fired Combined Cycle,OP,CS,5.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Single Shaft,0.9312432096849295,0.8660561850069843,RFC,PJM,IL,41.438536,-88.110626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62931,City of Pratt Solar,PRATT,2019.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,37.710556,-98.720928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62932,Oberon IB,OBR1B,2020.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.692358,-102.69743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62933,Oberon IA,OBR1A,2020.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.703258,-102.701206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62935,"Orchard Windfarm 1, LLC",OCHW,2020.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.38,-119.3332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62936,Rattlesnake Flat,RAT,2020.0,144.0,144.0,144.0,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVA,WA,46.941015,-118.567136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62937,Athens BESS,BA,2018.0,6.0,6.0,6.0,0,MWH,Batteries,OP,BA,12.0,2018.0, , ,12.0,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,MN,45.45,-93.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62938,Glen Ullin Energy Center,39001,2019.0,106.7,106.7,106.7,1,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,ND,46.964077,-101.816495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62939,South Peak Wind,41001,2020.0,80.0,80.0,80.0,1,WND,Onshore Wind Turbine,OP,WT,4.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,NWMT,MT,47.329911,-110.614592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62940,Starratt Solar,PV,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,JEA,FL,30.494361,-81.600556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62941,DG AMP Rittman Rd,AMPRR,2020.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.000755,-81.75074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62942,DG AMP 1048 Wadsworth,A1048,2019.0,6.3,6.3,6.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.012786,-81.764344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62943,Deuel Harvest Wind Energy LLC,GEN1,2021.0,300.0,300.0,300.0,2.8,WND,Onshore Wind Turbine,OP,WT,2.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,SD,44.863583,-96.534631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62944,Timber Road IV,TRIV,2020.0,125.1,125.1,125.1,0.7,WND,Onshore Wind Turbine,OP,WT,1.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,OH,41.121,-84.751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62945,Fighting Jays Solar Project,FJSOL,2022.0,227.5,227.5,227.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.358425,-95.746388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62946,Dickinson Solar,DICK,2016.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.1976,-77.2197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62948,NASA Wallops Flight Facility Solar,CRPT5,2020.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.938056,-75.473611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62948,NASA Wallops Flight Facility Solar,CRPT6,2020.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.938056,-75.473611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62948,NASA Wallops Flight Facility Solar,CRPT7,2020.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.938056,-75.473611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62948,NASA Wallops Flight Facility Solar,TRCK1,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.938056,-75.473611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62950,Bluestone Solar,BLUE1,2021.0,49.9,49.9,40.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.811623246492986,SERC,PJM,VA,36.811533,-78.483909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62951,Hawtree Solar,HAWT1,2021.0,65.0,65.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7692307692307692,SERC,PJM,NC,36.533,-78.105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62952,Cheyenne Ridge Wind Farm,CRW01,2020.0,498.4,477.1,477.1,1,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.957263242375602,0.957263242375602,WECC,PSCO,CO,39.016944,-102.2113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62953,Griffin Solar,1080,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.474114,-97.141218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62955,Badger Hollow I,GEN1,2021.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.94556,-90.34942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62956,Thunderhead Wind Energy LLC,GEN1,2022.0,300.0,300.0,300.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.062002,-98.238961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62957,DG Iron Mountain,IRNMT,2020.0,5.4,5.4,5.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.52132,-74.347394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62958,DG Infineum,INFNM,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.640209,-74.234881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62959,Whitehorn Solar,WHIT1,2021.0,50.0,50.0,30.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6060000000000001,SERC,PJM,VA,36.931378,-79.358743,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62960,Kimberly-Clark Solar,KC,2019.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33,-85.034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62961,Novel Brooten Solar CSG,BROOT,2019.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.512612,-95.113544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62962,Novel Reber Solar CSG,REBER,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.61,-94.58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62963,Novel Historical Society Solar CSG,HIST,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.787705,-95.360491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62966,Novel Herber Solar CSG,HERB,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.106728,-91.887343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62967,Novel Herickhoff Solar CSG,HERIC,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.847225,-95.148447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62968,Syncarpha Tewksbury Hybrid CSG,SYTKB,2022.0,2.0,2.0,2.0,0.1,MWH,Batteries,OP,BA,2.0,2022.0, , ,4.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.593706,-71.177486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62968,Syncarpha Tewksbury Hybrid CSG,SYTKS,2022.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.593706,-71.177486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62969,Syncarpha Puddon I Hybrid CSG,SYP1B,2021.0,4.0,4.0,4.0,0.1,MWH,Batteries,OP,BA,3.0,2021.0, , ,8.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.139492,-71.633132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62969,Syncarpha Puddon I Hybrid CSG,SYP1S,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.139492,-71.633132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62970,Syncarpha Puddon II Hybrid CSG,SYP2B,2021.0,4.0,4.0,4.0,0.1,MWH,Batteries,OP,BA,3.0,2021.0, , ,8.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.133867,-71.631045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62970,Syncarpha Puddon II Hybrid CSG,SYP2S,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.133867,-71.631045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62971,Syncarpha Westminster Hybrid CSG,SYWES,2022.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.593028,-71.865824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62972,Syncarpha Leicester Hybrid CSG,SYLEB,2021.0,2.0,2.0,2.0,0.1,MWH,Batteries,OP,BA,6.0,2021.0, , ,4.2,2.0,2.0,NIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.254281,-71.887883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62972,Syncarpha Leicester Hybrid CSG,SYLES,2021.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.254281,-71.887883,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62973,Syncarpha Halifax Hybrid CSG,SYHAB,2020.0,1.6,1.6,1.6,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,3.2,1.6,1.6,NIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.983721,-70.856834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62973,Syncarpha Halifax Hybrid CSG,SYHAS,2020.0,1.7,1.7,1.7,0,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.983721,-70.856834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62974,Syncarpha Millbury Hybrid (CSG),SYMIS,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.175203,-71.793031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62975,Syncarpha Blandford Hybrid CSG,SYBLB,2020.0,3.9,3.9,3.9,0,MWH,Batteries,OP,BA,5.0,2020.0, , ,7.9,3.9,3.9,NIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.213074,-72.938863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62975,Syncarpha Blandford Hybrid CSG,SYBLS,2019.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.213074,-72.938863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62976,Syncarpha Northampton Hybrid CSG,SYNOB,2020.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,4.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.290526,-72.709436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62976,Syncarpha Northampton Hybrid CSG,SYNOS,2020.0,3.6,3.6,3.6,0,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.290526,-72.709436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62977,Syncarpha Northbridge I Hybrid(CSG),SYN1B,2022.0,4.0,4.0,4.0,0.1,MWH,Batteries,OP,BA,2.0,2022.0, , ,8.0,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.11239,-71.648261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62977,Syncarpha Northbridge I Hybrid(CSG),SYN1S,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.11239,-71.648261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62978,Syncarpha Northbridge II Hybrid CSG,SYN2B,2021.0,3.0,3.0,3.0,0.1,MWH,Batteries,OP,BA,4.0,2021.0, , ,6.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.115652,-71.644047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62978,Syncarpha Northbridge II Hybrid CSG,SYN2S,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.115652,-71.644047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62979,Novel DeCook Solar CSG,DECO,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.012841,-92.626988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62980,Turquoise Liberty Solar,PV,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.59,-119.52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62981,East Pulaski BESS,BESS,2018.0,2.0,2.0,2.0,0.2,MWH,Batteries,OP,BA,12.0,2018.0, , ,4.2,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.546613,-76.10403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62982,Novel Schmoll Farms Solar CSG,SCHM,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.97,-92.86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62983,Novel Pederson Solar CSG,PED,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.61,-94.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62984,Novel Jewison Solar CSG,JEWI,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.21,-93.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62985,Novel Byron Solar CSG,BYRN,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.01,-92.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62986,Novel Kanewischer Solar CSG,KANE,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.05,-93.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62987,Grossmont HS Solar Project,GHSP,2018.0,1.4,1.3,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9285714285714286,0.5714285714285715,WECC,CISO,CA,32.816542,-116.999589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62988,Wildflower Solar 1,CAWF1,2020.0,13.0,13.0,13.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.705,-121.477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62989,Whitetail Solar 1,PAWT1,2019.0,13.5,13.5,13.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.139673,-77.609986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62990,Whitetail Solar 2,PAWT2,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.904211,-77.814218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62991,Whitetail Solar 3,PAWT3,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.87817,-77.769144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62992,Goose Pond Solar,GPNOR,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0077,-72.7807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62992,Goose Pond Solar,GPSOU,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0077,-72.7807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62993,Johnson Corner Solar 1,KSJC1,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,37.547002,-101.799234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62994,Bluewater CDEC 1,NMBW1,2019.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.24102,-107.952296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62995,Grants CDEC 2,NMGR1,2019.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.14,-107.821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62996,ESA Four Oaks 2 NC LLC,PGR08,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.416104,-78.409231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62997,"Spring Hope Solar 3, LLC",PGR09,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.905578,-78.192464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62998,"25 Ashdown Road Solar, LLC",ASHDO,2019.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.8826,-73.879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62999,"Finchville Solar, LLC Hybrid CSG",BESS,2020.0,3.0,3.0,3.0,0,MWH,Batteries,OP,BA,10.0,2020.0, , ,4.4,1.9,1.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.4565,-74.5465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -62999,"Finchville Solar, LLC Hybrid CSG",FINCH,2020.0,5.0,5.0,5.0,0,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.4565,-74.5465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63000,"RT 52 Walden Solar 1, LLC Hybrid",BESS,2020.0,4.0,4.0,4.0,0,MWH,Batteries,OP,BA,1.0,2020.0, , ,8.8,3.9,3.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.5841,-74.2163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63000,"RT 52 Walden Solar 1, LLC Hybrid",WALDN,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.5841,-74.2163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63001,Whitegrass No. 1,OH1,2018.0,1.9,1.9,1.9,0.3,GEO,Geothermal,OP,BT,10.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,39.163279,-119.180472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63001,Whitegrass No. 1,OH2,2018.0,1.9,1.9,1.9,0.3,GEO,Geothermal,OP,BT,10.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,39.163279,-119.180472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63001,Whitegrass No. 1,OL1,2018.0,1.3,1.3,1.3,0.3,GEO,Geothermal,OP,BT,10.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,39.163279,-119.180472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63001,Whitegrass No. 1,OL2,2018.0,1.3,1.3,1.3,0.3,GEO,Geothermal,OP,BT,10.0,2018.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,39.163279,-119.180472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63004,Novel Bartel Solar CSG,BART,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.043671,-92.677538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63005,Novel Haley Solar CSG,HALY,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.09,-93.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63007,Novel MNDot Solar CSG,MNDT,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.94625,-92.810388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63008,Novel Winegar Partnership Solar CSG,WINE,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.08845,-93.554806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63009,Novel Peter Solar CSG,PETR,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.196124,-93.608721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63010,Novel Benedix Solar CSG,BNDX,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.111261,-92.746788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63011,"Cronin Road Solar 1, LLC CSG Hybrid",BESS,2020.0,1.5,1.5,1.5,0,MWH,Batteries,OP,BA,7.0,2020.0, , ,7.7,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.1763,-72.154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63011,"Cronin Road Solar 1, LLC CSG Hybrid",CRONI,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.1763,-72.154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63012,"Ransomville Solar 1, LLC",SWANN,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.1994,-78.949837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63013,"Johnstown Solar 1, LLC",STATE,2019.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.0724,-74.3228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63015,Plott Hound Solar,1088,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.138,-77.092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63016,Carolina Lily Solar,1096,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.956,-80.444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63017,Ray Wilson Solar,1090,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.933,-80.376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63019,Green Lake Solar,GRN1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,44.77666,-85.692272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63020,TCLP Solar Phase 1,TCLP1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,44.77666,-85.692272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63021,SCCCD - Clovis Community College,232,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.885463,-119.731899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63022,Fort Carson Battery Energy Storage System,1,2018.0,4.2,4.2,4.2,0.1,MWH,Batteries,OP,BA,12.0,2018.0, , ,8.5,4.2,4.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,WACM,CO,38.745474,-104.777675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63023,Jefferson Torresdale Hospital,COGEN,2016.0,1.1,1.1,1.1,0.6,NG,Natural Gas Internal Combustion Engine,SB,IC,5.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.071128,-74.983057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.546900713110258 -63024,"Hertford Solar Power, LLC",KEH,2022.0,10.0,10.0,10.0,0,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0,1,2061,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.268007,-77.028205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63025,Clear Creek Wind,V110,2020.0,22.0,22.0,22.0,2,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,AECI,MO,40.369799,-94.892014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63025,Clear Creek Wind,V120,2020.0,220.0,220.0,220.0,2,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,AECI,MO,40.369799,-94.892014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63027,Mars Solar,20,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,27.421553,-98.834962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63029,Hardin Solar Energy LLC,GEN1,2021.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.659506,-83.813708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63030,"Canadian Breaks, LLC",CBRKS,2019.0,210.1,210.1,210.1,0,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,35.200164,-102.315517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63031,Gloucester Solar,GLSO,2019.0,19.9,19.8,19.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9949748743718594,0.9949748743718594,SERC,PJM,VA,37.45,-76.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63033,FastSun 19 CSG,FS19,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.655202,-93.110769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63034,FastSun 18 CSG,FS18,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.865428,-91.327513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63035,FastSun 13 CSG,FS13,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.841655,-95.148043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63036,FastSun 14 CSG,FS14,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.178968,-93.865226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63037,FastSun 11 CSG,FS11,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.300868,-92.736238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63038,FastSun 10 CSG,FS10,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.291517,-92.719482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63039,FastSun 8 CSG,FS8,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.260517,-94.290757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63040,FastSun 9 CSG,FS9,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.295395,-92.695652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63041,Lane Ave Solar LLC,HANRA,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.2648,-72.0727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63042,FastSun 3 CSG,FS3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.617723,-94.486485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63043,FastSun 7 CSG,FS7,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.71922,-94.494115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63044,Ryan Road Solar LLC Hybrid(CSG),BESS,2021.0,4.3,4.3,4.3,0,MWH,Batteries,OP,BA,12.0,2021.0, , ,14.0,4.3,4.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.2637,-72.0639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63044,Ryan Road Solar LLC Hybrid(CSG),ORCHA,2021.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.2637,-72.0639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63045,FastSun 5 CSG,FS5,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.85946,-91.319564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63046,FastSun 1 CSG,FS1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.072314,-94.306657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63047,W. Orange Rd Solar LLC,HEYES,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.6026,-72.3418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63048,Wilbur Woods Solar LLC,DESMO,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.6113,-72.3452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63049,Prineville Solar Energy LLC,GEN1,2021.0,40.0,46.2,46.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.163296,-120.524077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63050,Millican Solar Energy LLC,GEN1,2021.0,70.0,71.4,71.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,44.154107,-120.53409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63051,Hollygrove CSG,32,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.26034,-76.7217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63052,Guildlerland CSG,106,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.727288,-74.000814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63053,Palo Alto Wind Farm,PAWF,2020.0,250.0,250.0,250.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.206691,-94.548094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63053,Palo Alto Wind Farm,PAWF2,2020.0,90.0,90.0,90.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.206691,-94.548094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63054,CalCity Solar 1,CALTR,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.141374,-117.965748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63055,Howland CSG,26,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.63481,-76.08921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63056,Gifford CSG,131,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.82395,-74.07086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63057,Czub CSG,114,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.91408,-73.59598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63058,Mereand CSG,199,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.96414,-75.98679,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63059,Aegis CSG,19,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.764688,-77.343879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63060,Pearl CSG,28,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.981335,-78.290418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63060,Pearl CSG,29,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.981335,-78.290418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63061,Clover Creek Solar Community Solar,CLVR,2021.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,39.840652,-111.887656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63062,Fort Valley State University Solar,1,2022.0,10.8,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.501558,-83.883386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63063,Duke Energy CHP at Clemson University,GT01,2019.0,13.4,12.5,15.5,12.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9328358208955223,1.0,SERC,DUK,SC,34.6779,-82.8231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.58186980639786 -63064,Asheville-Rock Hill Battery,ES1,2020.0,8.8,8.8,8.8,8.8,MWH,Batteries,OP,BA,8.0,2020.0, , ,8.8,8.8,8.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLW,NC,35.54012,-82.517383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63068,SCCCD - Fresno Community College,231,2018.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.76655,-119.79858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63069,Harmony Road Solar,1823,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.164,-88.4625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63070,Square Barn Solar,1820,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.164,-88.383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63071,Reed Road Solar,1822,2020.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.110925,-88.240254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63072,BTC2 Solar (CSG),18,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,MD,39.41805,-76.39772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63073,Mooseheart School Solar,1817,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.8233,-88.3378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63074,Reedley Community College Solar,234,2018.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.60563,-119.4577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63075,Upper Marlboro 1 CSG,20,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,MD,38.789216,-76.800911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63076,Gutenberg Solar,GUTN,2019.0,79.9,79.9,79.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.486428,-77.534825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63077,"Twittys Creek Solar, LLC",VATC,2020.0,13.8,13.8,13.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.018427,-78.581272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63078,Eagle Creek,EGCRK,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.214023,-119.39522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63079,Bethlehem Solar,157,2019.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.601145,-73.887416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63080,Harry Allen Solar Energy LLC,GEN1,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,36.43395,-114.9471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63081,San Miguel I Solar Energy Center,SMI,2019.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,35.63457,-105.1784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63082,San Miguel II Solar Energy Center,SMII,2019.0,10.0,10.0,8.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.82,WECC,PNM,NM,35.63471,-105.1732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63083,Caden Energix Pamplin LLC,ENX04,2020.0,15.7,15.7,15.7,15.7,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.32936,-78.76591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63084,Caden Energix Hickory LLC,ENX02,2020.0,20.0,20.0,20.0,20,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.624113,-76.194266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63084,Caden Energix Hickory LLC,ENX03,2020.0,12.0,12.0,12.0,12,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.624113,-76.194266,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63085,White CSG,15124,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,MD,39.205804,-76.480453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63086,Frog Hollow CSG,1731,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.739327,-74.496708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63087,Caden Energix Rives Road LLC,ENX01,2020.0,19.7,19.7,19.7,19.7,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.177825,-77.337645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63089,Gibbons CSG,15122,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,MD,38.115402,-75.214861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63090,Athens - Coopers Corner BESS,COOPR,2018.0,3.0,3.0,3.0,0,MWH,Batteries,OP,BA,12.0,2018.0, , ,6.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,MN,45.458119,-93.26763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63091,UC Santa Cruz Solar,18027,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.9911,-122.0532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63091,UC Santa Cruz Solar,246,2021.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.9911,-122.0532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63092,Riverview Solar,RIVER,2019.0,1.5,1.5,1.5,0.1,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,WACM,CO,40.66583,-103.132442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63094,Tajiguas Resource Recovery Project,SBAD1,2022.0,1.1,1.1,1.1,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2022.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.482175,-120.123485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.083905177791642 -63094,Tajiguas Resource Recovery Project,SBAD2,2022.0,1.1,1.1,1.1,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2022.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,34.482175,-120.123485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20.083905177791642 -63100,Prairie Hill Wind Project,WTG,2020.0,300.0,300.0,300.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.549868,-96.904072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63101,Las Lomas Wind Project,WTG,2020.0,201.6,201.6,201.6,4.2,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.69842,-99.05745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63102,Dakota Range III Wind Project,WTG,2021.0,153.6,153.6,153.6,4,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,45.267621,-97.103982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63103,Triple H Wind Project,WTG,2020.0,250.2,250.2,250.2,2.7,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,SD,44.40104,-99.603836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63104,King Plains Wind Project,WTG,2020.0,248.2,248.2,248.2,2.8,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.400148,-97.477464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63105,Two Creeks Solar,1,2020.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,WI,44.249598,-87.54534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63106,Dover CSG,21,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.680879,-73.576568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63107,Howell CSG,1725,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.265258,-74.312978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63108,Strauss CSG,30,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.891451,-76.993915,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63109,Discovery Solar Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,28.528933,-80.6789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63110,Sabal Palm Solar Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.782655,-80.352619,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63112,Ellsworth I CSG,22,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.899313,-73.709799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63114,Mohave County Wind Farm,MCWF,2020.0,350.0,350.0,350.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WALC,AZ,35.791142,-114.504504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63116,Dakota Community Solar One LLC CSG,52838,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.65779,-93.10852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63117,Douglas Todd Community Solar One LLC CSG,52834,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.843344,-95.15002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63118,Meeker Community Solar One LLC CSG,52824,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.07106,-94.30718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63119,McLeod Community Solar One LLC CSG,52832,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.7192,-94.49429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63120,Nicollet Community Solar One LLC,52828,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.26035,-94.29093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63121,Stearns Community Solar One LLC CSG,52825,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.61804,-94.48596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63122,Sherburne Community Solar One LLC CSG,52814,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.53199,-94.13578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63123,Syncarpha Taos,SYNTA,2020.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.371326,-105.660152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63124,Syncarpha El Rito,SYNEL,2019.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.331724,-106.190105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63125,Syncarpha Questa,SYNQU,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.810668,-105.588421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63127,Drew Solar LLC,DS,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.687195,-115.665593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63128,Iris Solar LLC,ISLLC,2022.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,LA,30.78184,-90.19536,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63129,Allis Medina Solar LLC CSG,ALLIS,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.2205,-78.3574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63130,Beals Medina Solar LLC CSG,BEALS,2020.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.2256,-78.3559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63131,West Street Solar 1 LLC,GRDNR,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.595,-72.0446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63132,Weaver Wind,WEAVR,2020.0,72.6,72.6,72.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.722519,-68.163611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63133,Roundhouse Wind Energy Project,82059,2020.0,124.0,124.0,124.0,2.8,WND,Onshore Wind Turbine,OP,WT,6.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,WY,41.095126,-105.107423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63133,Roundhouse Wind Energy Project,82060,2020.0,79.0,79.0,79.0,2.8,WND,Onshore Wind Turbine,OP,WT,6.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,WY,41.095126,-105.107423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63133,Roundhouse Wind Energy Project,82061,2020.0,23.0,23.0,23.0,2.8,WND,Onshore Wind Turbine,OP,WT,6.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,WY,41.095126,-105.107423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63136,Hopkins Hill CSG,64605,2020.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.61609,-71.566825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63136,Hopkins Hill CSG,HH1,2020.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.61609,-71.566825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63136,Hopkins Hill CSG,HH2,2020.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.61609,-71.566825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63137,Tippecanoe Solar Power Plant,PV1,2019.0,1.6,1.6,1.6,1.6,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,40.421142,-86.940157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63138,USS Haven Solar LLC CSG,USHAV,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.515706,-94.109836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63139,USS White Cloud LLC CSG,USSWC,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.52079,-94.13041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63140,USS Westeros Solar LLC CSG,USSWS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.681452,-93.768207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63141,USS Sunrise Solar LLC CSG,SNRSE,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.491496,-92.813822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63142,USS Milkweed Solar LLC CSG,MLKWD,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.43538,-94.64286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63143,USS Greenhouse Solar LLC CSG,GRHSE,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.238655,-92.67075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63144,USS Mayhew Solar LLC CSG,MAYHW,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.62512,-94.049866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63145,USS Cheyenne Solar LLC CSG,CHYNE,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.347008,-92.922343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63146,USS Midtown Solar LLC CSG,MDTWN,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.671603,-94.748979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63147,USS Monarch Solar LLC CSG,MNRCH,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.49896,-95.139788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63148,USS Turkey Solar LLC CSG,TURKY,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.139302,-94.739521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63149,Franklin Solar,FRANK,2020.0,8.8,8.8,8.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.72,-75.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63150,Pohatcong Solar Farm,POHAT,2020.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.67,-75.16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63151,USS Solar Sources LLC CSG,SOURC,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.231914,-92.885607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63152,USS Christoffer Solar LLC CSG,CHRST,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.985518,-95.766554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63153,USS Buckaroo Solar LLC CSG,BUCKR,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.97727,-96.500779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63154,USS Horne North Solar LLC CSG,HORNN,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,47.021803,-96.479959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63155,USS Horne South Solar LLC CSG,HORNS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,47.00414,-96.50004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63156,USS JJ Clay Solar LLC CSG,JJCLY,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,47.02945,-96.49989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63157,USS Verde Solar LLC CSG,VERDE,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.427985,-94.930618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63158,USS Cougar Solar LLC CSG,COUGR,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.454726,-94.926419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63159,USS Flower Solar LLC CSG,FLOWR,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.269143,-94.20905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63160,USS All In Solar LLC CSG,ALLIN,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.83688,-93.38967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63161,AES Tonawanda Solar LLC,TNWDA,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.9971,-78.9017,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63163,Tom Sifers Solar,SIFRS,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.959166,-105.846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63164,Whiskey Hill Solar,WHSKY,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.8125,-106.289722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63165,USS Reindeer Solar LLC CSG,RENDR,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.643806,-94.043216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63166,USS Bush Solar LLC CSG,BUSH,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.12347,-93.26689,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63167,USS Hancock Solar LLC CSG,HNCCK,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.7025,-93.7858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63168,USS Pheasant Solar LLC CSG,PHSNT,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.934706,-95.251327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63169,USS KVPV Solar LLC CSG,KVPV,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.983191,-96.500649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63170,USS Kass Solar LLC,KASS,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.22443,-95.68949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63171,USS Chariot Solar LLC,CHROT,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.78883,-95.09562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63173,Orange Street G1,1,2005.0,1.8,1.8,1.8,1.8,DFO,Petroleum Liquids,OP,IC,7.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,VA,37.33206,-79.51109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.590361445783133 -63174,Hartmann Project CSG,TC3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.493595,-94.113443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63175,E. Goenner Project CSG,TC3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.463956,-94.091014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63176,Prawer Project CSG,TC3,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.463678,-94.045078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63177,Schwinghamer Project CSG,TC3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.626942,-94.596082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63178,STAG St. Paul Project CSG,TC3,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.885633,-93.026432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63179,Linden 01 CSG,KANE1,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.591619,-93.845389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63180,"TPE Whitney Solar, LLC",TXWHT,2017.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.05,-97.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63181,Monroeville Solar,MNVL,2017.0,3.2,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9375,0.9375,RFC,PJM,OH,41.230142,-82.711785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63182,Linden 02 CSG,LIND2,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.591933,-93.846816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63183,Linden 03 CSG,LIND3,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.592132,-93.844971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63184,Rio Rancho Solar Energy Center,RIRA,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.10476,-106.48237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63185,Sayreville Solar Project,SAYRE,2019.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.438,-74.336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63186,Imeson Solar,IMESO,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,JEA,FL,30.456753,-81.714856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63186,Imeson Solar,IMESS,2019.0,5.0,5.0,5.0,5,MWH,Batteries,OP,BA,12.0,2019.0, , ,3.8,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,JEA,FL,30.456753,-81.714856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63187,"FL Solar 4, LLC",FL4,2019.0,42.0,42.0,42.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TAL,FL,30.2354,-84.2233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63189,Bio-Rad,BIORD,2021.0,2.5,2.4,1.1, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.44000000000000006,WECC,CISO,CA,38.022486,-122.273663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63191,Hopkinton Phase 2,HTP2,2020.0,2.5,2.5,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.76,NPCC,ISNE,RI,41.443293,-71.791133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63198,ACCP NJ 1,ACCP1,2020.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.92635,-74.675089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63200,"Bergenmand Solar Partners, LLC Mahwah",SA1,2012.0,0.5,0.5,0.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.19999999999999996,RFC,PJM,NJ,41.079073,-74.150011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63200,"Bergenmand Solar Partners, LLC Mahwah",SA2,2012.0,0.5,0.5,0.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.19999999999999996,RFC,PJM,NJ,41.079073,-74.150011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63203,VPPSA Project 10,12510,2010.0,23.6,19.0,23.8,14,DFO,Petroleum Liquids,OP,GT,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8050847457627118,1.0,NPCC,ISNE,VT,44.916666,-73.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.88716814159292 -63203,VPPSA Project 10,12511,2010.0,23.6,19.0,23.5,14,DFO,Petroleum Liquids,OP,GT,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,0.8050847457627118,0.9957627118644067,NPCC,ISNE,VT,44.916666,-73.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.88716814159292 -63204,CID Solar (CA),HLS,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.140764,-119.566896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63205,Skookumchuck Wind Facility,1,2020.0,136.0,136.8,136.8,3.5,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSEI,WA,46.85074,-122.664447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63206,Rafael Solar,RSPV1,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.859838,-123.007913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63207,Case Creek Solar,CCPV1,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.172,-122.912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63208,Kale Patch Solar,KPPV1,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.083,-122.904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63209,Aviator Wind,AVTOR,2021.0,525.0,525.0,525.0,0,WND,Onshore Wind Turbine,OP,WT,6.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.79261,-100.69729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63211,Samson Solar Energy,GEN1,2022.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.25102,-95.193426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63212,Battle Creek Solar,BC1,2018.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,42.9133,-73.2142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63213,Sheridan School Corporation Solar,418ES,2016.0,0.6,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.6666666666666667,0.6666666666666667,RFC,MISO,IN,40.140278,-86.215278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63213,Sheridan School Corporation Solar,418HS,2016.0,0.9,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4444444444444444,0.4444444444444444,RFC,MISO,IN,40.140278,-86.215278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63214,Middleton Solar Park,MDB02,2019.0,3.0,3.0,3.0,0.3,MWH,Batteries,OP,BA,12.0,2019.0, , ,6.6,3.0,2.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.581678,-70.998672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63214,Middleton Solar Park,MDL01,2018.0,5.0,5.0,3.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.76,NPCC,ISNE,MA,42.581678,-70.998672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63215,USS Dot Com Solar LLC CSG,DOTCM,2021.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.422314,-94.92664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63216,USS B&B Solar LLC CSG,BB,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.413,-95.009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63218,USS Water Town Solar LLC CSG,WTRTN,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.19777,-93.58484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63219,USS Water Fowl Solar LLC CSG,WTRFL,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.9066,-94.160439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63220,USS Water City Solar LLC CSG,WTRCY,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.21782,-93.58042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63221,USS Steamboat Solar LLC CSG,STMBT,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.41301,-94.9858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63222,Impact Solar 1,TXIM1,2020.0,198.5,198.5,198.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.467803,-95.370856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63223,Brightside,UNIT1,2022.0,50.7,50.7,50.7,0,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,28.430988,-97.889555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63224,NY 26 Carthage CSG,X0140,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.955471,-75.618066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63225,AGA TAG Solar IV LLC,PV1,2019.0,4.9,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9795918367346937,0.9795918367346937,SERC,CPLE,NC,34.27355,-78.06444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63229,Manheim New Jersey,NJSGR,2013.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.11359,-74.70629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63229,Manheim New Jersey,NJSRO,2009.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.11359,-74.70629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63230,Knaggs Brothers Farm,KNAGG,2018.0,3.9,3.9,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.1282051282051282,NPCC,NYIS,NY,42.73035,-73.9691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63231,Woodbury Solar,PV,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.881944,-92.9675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63232,Brookfield Wire Company,BROOK,2016.0,1.4,1.4,0.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.1428571428571428,NPCC,ISNE,MA,42.21694,-72.12208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63235,O'Neill Creek Solar,OCPV1,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.472,-123.129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63236,Kings Plaza Total Energy Plant (TEP),DG2,2007.0,3.2,3.2,3.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.610181,-73.920008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.422636610409537 -63236,Kings Plaza Total Energy Plant (TEP),DG3,2007.0,3.2,3.2,3.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.610181,-73.920008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.422636610409537 -63236,Kings Plaza Total Energy Plant (TEP),DG4,2007.0,3.2,3.2,3.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.610181,-73.920008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.422636610409537 -63236,Kings Plaza Total Energy Plant (TEP),DG5,2007.0,3.2,3.2,3.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2007.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.610181,-73.920008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.422636610409537 -63237,Old Court Rd Solar,OLDCT,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.34167,-76.8351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63239,Sherman Solar,SHRM,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.583,-71.902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63240,Jackson Solar (CT),JACK,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.583,-71.904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63241,Limelight Solar II LLC,SCLL,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.99389,-81.87819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63242,ATOOD Solar III LLC,SCAT,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.99647,-82.0421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63243,AGA TAG Solar III LLC,SCAG,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.99647,-82.0421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63244,Sydney Solar,SYDN,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.7683,-72.0783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63245,Dickinson Solar (CT),DCKN,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.7698,-72.0794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63246,New River Clean Energy,NEW2,2017.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,WV,37.81577,-81.16193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.2328955106841795 -63246,New River Clean Energy,NEWR1,2017.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,2.0,2017.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,WV,37.81577,-81.16193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.2328955106841795 -63247,Novel Debra Solar LLC CSG,DEBRA,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.09394,-92.74975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63249,Novel Wayne Solar LLC CSG,WAYNE,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.102341,-92.746477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63251,"Lone Tree Wind, LLC",LTW,2020.0,79.0,79.0,79.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IL,41.203214,-89.601872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63252,Cannon Garden Solar,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.24416,-93.26916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63253,Francis Scott Key Mall,FSK,2018.0,1.6,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.38588,-77.40947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63254,Altamonte Mall,ALT,2016.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.66633,-81.3781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63255,2W Permian Solar Project Hybrid,2WPBA,2021.0,40.0,40.0,40.0,0.1,MWH,Batteries,OP,BA,10.0,2021.0, , ,40.0,40.0,40.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.116388,-102.528333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63255,2W Permian Solar Project Hybrid,2WPSO,2021.0,420.0,420.0,420.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.116388,-102.528333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63256,Pembroke Lakes Mall,PLM,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.0106,-80.3046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63257,Short Hills Mall,SHM,2018.0,2.7,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.7397,-74.3642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63258,Aurora Wind Project,AURWP,2021.0,298.8,298.8,298.8,0,WND,Onshore Wind Turbine,OP,WT,1.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,ND,48.5,-103.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63259,Delta Energy Park,DEPC2,2022.0,58.0,48.3,58.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8327586206896551,1.0,RFC,MISO,MI,42.690644,-84.657783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.34698062796081 -63259,Delta Energy Park,DEPC3,2022.0,58.0,48.3,58.0,35,NG,Natural Gas Fired Combined Cycle,OP,CT,3.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8327586206896551,1.0,RFC,MISO,MI,42.690644,-84.657783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.246997268982295 -63259,Delta Energy Park,DEPS1,2022.0,58.0,46.3,57.1,35,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7982758620689655,0.9844827586206897,RFC,MISO,MI,42.690644,-84.657783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.66492351718734 -63259,Delta Energy Park,DEPST,2022.0,89.2,81.0,84.1,16,NG,Natural Gas Fired Combined Cycle,OP,CA,3.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9080717488789237,0.9428251121076232,RFC,MISO,MI,42.690644,-84.657783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63260,AC Power,ACP,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.049778,-74.935167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63262,Becton Canaan,PH1GR,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.01,-73.335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63262,Becton Canaan,PH1RF,2018.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.01,-73.335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63262,Becton Canaan,PH2RF,2019.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.01,-73.335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63263,Plainfield Solar 2,PLFD2,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.679,-71.905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63264,Partridge Hill Solar Hybrid,BATT,2020.0,1.3,1.3,1.3,0,MWH,Batteries,OP,BA,7.0,2020.0, , ,1.5,1.3,1.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.1189,-71.9371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63264,Partridge Hill Solar Hybrid,PART3,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.1189,-71.9371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63266,Penny Hill Solar,NCPHL,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.759,-77.513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63267,"Meeks Solar, LLC",NCMKS,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.815556,-77.291111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63269,Crowned Ridge Wind II Energy Center,CRW2,2020.0,200.6,200.6,200.6,1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,SD,45.0054,-96.929945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63270,"Strider Solar, LLC",NCSTR,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.6,-79.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63271,Huntley,1295,2020.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.335583,-80.634174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63272,"Woodsdale Farm, LLC",NCWOO,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.464,-78.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63273,Wagyu,1215,2020.0,120.0,120.0,120.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.242304,-95.658144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63276,Mtn. Solar 1,X0133,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.777621,-104.58591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63277,Mtn. Solar 2,X0133,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.766772,-104.59054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63278,CO LI CSG 1 - Kamerra,X0056,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.784879,-104.583391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63279,Barneveld Solar,PV1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.251388,-75.177222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63280,"AES Kekaha Solar, LLC Hybrid",BESS,2021.0,14.0,14.0,14.0,0,MWH,Batteries,OP,BA,4.0,2021.0, , ,70.0,8.0,8.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,22.0006,-159.7621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63280,"AES Kekaha Solar, LLC Hybrid",KEKAH,2019.0,14.0,14.0,14.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,22.0006,-159.7621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63285,Valero Wilmington Cogeneration Plant,79G1,2017.0,33.5,32.2,35.3,13,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9611940298507463,1.0,WECC,LDWP,CA,33.778655,-118.23853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.469329960931326 -63286,DG Amaze ACY1,ACY1,2019.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.822945,-75.216293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63287,Cerro Gordo Wind Farm,CGWF,2020.0,42.0,42.0,42.0,0,WND,Onshore Wind Turbine,OP,WT,8.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.061204,-93.453642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63288,Brass Mill Center,BMC,2017.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.5489,-73.0245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63289,White Marsh Mall,WMM,2015.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.37614,-76.46813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63290,Natick Mall,NM,2018.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.3009,-71.3843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63291,Grand Prix Solar,GPS,2014.0,1.6,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.21125,-73.72252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63292,100 Brook Hill Drive Solar,BHD,2015.0,2.0,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.75,0.75,NPCC,NYIS,NY,41.09305,-73.9828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63293,"Cottonwood Solar, LLC",NCCWD,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.50806,-77.61444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63294,Parking Lot Array,LOTPV,2011.0,1.4,1.3,0.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9285714285714286,0.5714285714285715,RFC,PJM,OH,39.141852,-84.51074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63295,Chicot Solar,CHICO,2020.0,100.0,100.0,100.0,0,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,33.479,-91.349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63296,"232 Long Branch 29 Solar I, LLC",NCLFT,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.23222,-81.559722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63297,Hobart & William Smith College Gates Rd.,GATES,2017.0,1.9,1.8,0.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9473684210526316,0.10526315789473684,NPCC,NYIS,NY,42.86228,-77.05058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63298,"Barrette Outdoor Living, Inc.",BARRE,2019.0,1.5,1.5,0.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.1333333333333333,RFC,PJM,NJ,39.4877,-74.60035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63299,"Harvest Beulaville, LLC",NCBVL,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.90389,-77.784167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63300,Athos Solar Project,IPAT1,2022.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.751283,-115.35499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63301,Garrett Solar,1888,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,OR,42.16,-120.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63302,South Windsor Fuel Cell,SWFC5,2020.0,5.0,5.0,5.0,0.4,NG,Other Natural Gas,OP,FC,3.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,ISNE,CT,41.815417,-72.614377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63303,Alticor Inc - Solar Project,AISP,2017.0,1.2,1.1,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9166666666666667,0.5833333333333333,WECC,CISO,CA,33.878585,-117.99608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63304,"Allium Community Solar Garden, LLC",ALIUM,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.399701,-94.723142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63305,"Aster Community Solar Garden, LLC",ASTER,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.008221,-95.229451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63307,"Westport Community Solar, LLC",WESTP,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.939037,-94.904383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63308,"Marigold Community Solar Garden, LLC",MGOLD,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.197311,-93.615267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63309,"Honeysuckle Solar, LLC",HONEY,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.907623,-94.027151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63311,"Lantana Solar, LLC",LANTA,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.646,-95.358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63312,"Hyacinth Solar, LLC",HYCIN,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.474147,-93.199277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63313,"Coral Bells Solar, LLC",CORAL,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.471,-92.891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63314,"Primrose Solar, LLC",PROSE,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.205398,-93.9792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63315,"Kerria Solar, LLC",KERIA,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.795609,-95.203195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63317,"Geranium Solar, LLC",GERNM,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.964569,-95.229505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63318,"Bellflower Solar, LLC",BELLF,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.507295,-95.12733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63319,"Iris Solar, LLC (MN)",IRIS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.253592,-94.209687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63320,Titan Solar Project,IPTTN,2021.0,260.0,260.0,260.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.70038,-104.458136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63321,"Bingham Solar, LLC",BINGH,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.012,-84.528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63322,"Temperance Solar, LLC",TEMPR,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,41.753,-83.524,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63323,Bluefin Origination 1,SIMBA,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.73169,-76.82843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63324,Camp Atterbury Microgrid Hybrid,ES1,2019.0,5.0,5.0,5.0,0,MWH,Batteries,OP,BA,11.0,2019.0, , ,5.0,5.0,5.0,FLB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,MISO,IN,39.3617,-86.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63324,Camp Atterbury Microgrid Hybrid,PV1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,39.3617,-86.025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63327,"Diamond Spring, LLC",46001,2020.0,303.5,303.5,303.5,1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.487369,-96.780459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63328,Juno Solar Project,IPJNO,2021.0,141.0,141.0,141.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.772889,-101.39102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63328,Juno Solar Project,JUNO1,2021.0,159.0,159.0,159.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.772889,-101.39102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63329,Aragorn Solar Project,IPAGN,2021.0,187.2,180.0,180.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9615384615384616,0.9615384615384616,TRE,ERCO,TX,31.719983,-104.442292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63330,"Duus Solar, LLC",ORDUS,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.35,-122.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63331,"Firwood Solar, LLC",ORFWD,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.35,-122.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63332,"Aulander Hwy 42 Solar, LLC",NCAUL,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.248563,-77.085241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63334,Campus Drive Solar,CAMPS,2020.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.056213,-74.880941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-1,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-2,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-3,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-4,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-5,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-6,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-7,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63335,HO Clarke Generating,CTG-8,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.64536,-95.45169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63336,"Sutton Solar 2, LLC CSG",6004,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.10252,-71.69795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63337,"Lansing Renewables, LLC",14320,2022.0,3.0,3.0,3.0, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,3.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,42.59251,-76.56563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63337,"Lansing Renewables, LLC",6004,2020.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,42.59251,-76.56563,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63338,"Granby Solar, LLC CSG",4787,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.22712,-72.5222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63338,"Granby Solar, LLC CSG",4788,2022.0,2.0,2.0,1.8, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,2.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,0.9,NPCC,ISNE,MA,42.22712,-72.5222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63339,"Hales Mills Solar, LLC",6609,2020.0,5.0,3.6,2.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.72,0.58,NPCC,NYIS,NY,43.01827,-74.32918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63340,"Owlville Creek Solar 2, LLC",20660,2022.0,3.0,3.0,3.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,12.8,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.078888,-75.77222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63340,"Owlville Creek Solar 2, LLC",6609,2020.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,43.078888,-75.77222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63341,"Owlville Creek Solar, LLC",20660,2022.0,3.0,3.0,3.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,12.8,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.08748,-75.77959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63341,"Owlville Creek Solar, LLC",6608,2020.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,43.08748,-75.77959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63344,Starvation,STAR,2019.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.50222,-119.14852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63345,"Scotch Bonnet Solar, LLC",PGR07,2020.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.53827,-77.908113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63346,"Cubera Solar, LLC",PGR06,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.330022,-78.610091,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63347,"AOC, Capitol Power Plant",CTG1,2018.0,7.5,7.5,7.5,7,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,DC,38.882704,-77.007443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.810110854413791 -63349,OE_AZ1,AZ1,2020.0,32.5,32.5,32.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,33.776667,-113.656111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63350,OE_GA3,GA3,2020.0,57.5,57.5,57.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.196185,-84.147539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63351,Bluebell Solar II,BBS2,2020.0,115.0,115.0,115.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.888,-100.825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63353,Allied Beverages Elizabeth,ABE,2018.0,3.2,3.2,3.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.665678,-74.175226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63354,Ticket Network South Windsor,TNSW,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.821518,-72.507383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63355,Chanel Piscataway Rooftop,CPR,2018.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.550342,-74.482969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63356,Colonial Pipeline Allentown Chesterfield,CPAC,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.152302,-74.657754,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63357,Colonial Pipeline Woodbury West Deptford,CPWWD,2018.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.817319,-75.196874,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63358,Corbin Russwin Phase 3 Berlin,CRP3B,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.642322,-72.740907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63361,Medline Ind. Phase 2 Tracy,MIP2T,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.734761,-121.508945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63363,Niagara Bottling Stockton,NBS,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.894817,-121.24891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63365,Soda Lake 3,SL3,2019.0,26.0,20.0,20.0,10,GEO,Geothermal,OP,BT,11.0,2019.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.7692307692307692,0.7692307692307692,WECC,NEVP,NV,39.5545,-118.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63366,435A Bergen Avenue,1,2019.0,1.4,1.4,1.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7857142857142858,RFC,PJM,NJ,40.751938,-74.131258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63367,Strandness Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.65727,-95.52985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63368,"GSPP Gilman, LLC",GILMA,2018.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.414773,-71.714483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63369,Riley Road LLC,RILE1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.469132,-74.078372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63369,Riley Road LLC,RILE2,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.469132,-74.078372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63370,GSSP Schneider LLC,SCHN1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.529535,-94.297452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63370,GSSP Schneider LLC,SCHN2,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.529535,-94.297452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63370,GSSP Schneider LLC,SCHN3,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.529535,-94.297452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63370,GSSP Schneider LLC,SCHN4,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.529535,-94.297452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63370,GSSP Schneider LLC,SCHN5,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.529535,-94.297452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63371,Hope Solar Farm LLC,BRUNS,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.726428,-73.602129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63372,Catlin Solar 1 LLC,CATLI,2019.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.285942,-76.953981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63373,Saratoga Solar LLC,SARAT,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.07377,-73.903954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63374,CP Middletown Solar I LLC,CPMI1,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.548826,-72.706877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63375,CP Middletown Solar II LLC,CPMI2,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.548826,-72.706877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63376,Phelan Pinon Hills CSD Solar,PPHS,2015.0,1.2,1.1,0.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9166666666666667,0.6666666666666667,WECC,CISO,CA,34.57654,-117.58281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63377,"ESA Hamlet NC , LLC",PGR10,2021.0,5.0,5.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,SERC,CPLE,NC,34.879581,-79.673277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63378,Wapello Solar LLC,WAPLO,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,41.153697,-91.177102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63379,Mtn. Solar 3 CSG,X0134,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.280904,-103.61911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63380,Goodhue Community Solar One LLC CSG,52829,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.29741,-92.64087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63381,"Railroad Solar Farm, LLC",NCRAL,2016.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.68056,-79.185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63383,"ATOOD Solar IV, LLC",NCATD,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.27532,-78.061015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63384,Bennington Wind,BENN,2021.0,93.0,93.0,93.0,0,WND,Onshore Wind Turbine,OP,WT,10.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.96038,-89.085363,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63385,Castaic Lake Phase II,CA135,2014.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.433332,-118.510837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63387,"Rancho Seco Solar II, LLC",RSS2,2021.0,160.0,160.0,160.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.346814,-121.119839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63388,Oxy Renewable Energy - Goldsmith,SOLAR,2020.0,16.8,16.8,11.8, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7023809523809523,TRE,ERCO,TX,32.0015,-102.6337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63389,"Jordan Creek Wind Farm, LLC",JCW,2020.0,398.6,398.6,398.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IN,40.381614,-87.399818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63390,Shelby Solar Array,SHBOH,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.896042,-82.672395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63391,City of Rio Rancho WWTP,CORR,2019.0,1.2,1.2,0.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6666666666666667,WECC,PNM,NM,35.179889,-106.806583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63392,DEC Phase II at Georgetown,DECII,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,38.664989,-75.399444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63393,"Cuming County Renewables, LLC",T-1,2019.0,2.5,2.5,2.5,2.5,WND,Onshore Wind Turbine,OP,WT,12.0,2019.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.019972,-96.861833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63394,Falls Creek Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.1757,-93.14274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63395,Star Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.65063,-95.53088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63396,Buffalo Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.00036,-93.49681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63397,Loon Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.08968,-93.55615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63398,Kearsarge Amesbury Hybrid,AMBAT,2019.0,1.6,1.6,1.6,0,MWH,Batteries,OP,BA,12.0,2019.0, , ,3.8,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.837376,-70.938673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63398,Kearsarge Amesbury Hybrid,AMES,2019.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.837376,-70.938673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63399,Galesburg Solar Array,GWA01,2020.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.9199,-90.9484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63400,Stearns Solar I,STE,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.650158,-94.557542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63401,Olinda Trail Solar,OLI,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.31593,-92.80411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63402,New Munich Solar,MUN,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.654086,-94.75565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63403,Clara City Solar,CCS,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.94664,-95.350237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63404,Thermo Fisher,1,2013.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.5737,-74.62947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63405,Pearl II,29,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.981336,-78.290419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63406,Vermillion River_MN_GRE DEA-GM,PV1,2019.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.599804,-93.136105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63407,Macedon,101,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.058633,-77.346042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63408,Whittier,300,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.150002,-77.861396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63409,Williamson,100,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.1401,-77.0908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63410,Bennett,304,2019.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.9352,-77.47107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63411,"Greenwich Solar 1, LLC CSG",RTE40,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.0783,-73.5331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63413,LTMUA,1,2012.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.00776,-74.93556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63414,IOS II-LAX9,IOSII,2020.0,4.0,3.7,3.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.925,0.825,WECC,CISO,CA,34.09,-117.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63415,"Middletown Solar 1, LLC Hybrid CSG",BATT,2020.0,1.6,1.6,1.6,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,6.6,1.6,1.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.3902,-74.5199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63415,"Middletown Solar 1, LLC Hybrid CSG",CENTR,2020.0,1.6,1.6,1.6,0,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.3902,-74.5199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63416,Sierra Pacific Industries (2042-RD),GEN1,2020.0,8.4,8.4,8.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,40.121389,-122.191944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63417,Goodhue Community Solar Three LLC CSG,52831,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.29725,-92.74543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63418,DGS Wasco State Prison,1122,2020.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.593903,-119.407215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63419,DGS Central California Womens Facility,1122,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.089701,-120.149966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63420,Fresno Bullard High School Hybrid,903,2020.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.818646,-119.810408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63420,Fresno Bullard High School Hybrid,BA903,2020.0,0.4,0.4,0.4,0,MWH,Batteries,OP,BA,3.0,2020.0, , ,0.4,0.4,0.4,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.818646,-119.810408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63421,Fresno Hoover High School Hybrid,291,2020.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.817816,-119.770709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63421,Fresno Hoover High School Hybrid,BA291,2020.0,0.2,0.2,0.2,0,MWH,Batteries,OP,BA,3.0,2020.0, , ,0.2,0.2,0.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.817816,-119.770709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63422,Fresno Sunnyside High School Hybrid,1122,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.734014,-119.717809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63422,Fresno Sunnyside High School Hybrid,BA112,2020.0,0.3,0.3,0.3,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,0.3,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.734014,-119.717809,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63423,BYU Central Heating Plant,GEN1,2019.0,16.5,14.0,15.0,5.8,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8484848484848485,0.9090909090909091,WECC,PACE,UT,40.24724,-111.6462,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.853091556621237 -63424,Straight Garden Solar,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.25271,-93.27304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63425,Leven Garden Solar,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.71693,-95.26357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63426,Zumbro Solar Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.04603,-92.75999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63427,Mud Garden Solar,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.54328,-94.2226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63428,"IGS CC, LLC",254,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.936172,-76.968186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63429,Erin Garden Solar,CSG,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.67524,-94.01007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63430,Chub Garden Solar,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.48595,-93.21279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63431,Cisco,32001,2008.0,8.4,8.4,8.4,1,WND,Onshore Wind Turbine,OP,WT,2.0,2008.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.6256,-95.3725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63432,Lincoln Heights I,32002,2006.0,5.2,5.2,5.2,1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.287778,-96.433333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63433,Lincoln Heights II,32003,2006.0,3.9,3.9,3.9,1,WND,Onshore Wind Turbine,OP,WT,5.0,2006.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.315537,-96.331677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63434,Maston Garden Solar,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.04334,-92.69045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63436,Corriedale Wind Energy,WTG,2020.0,52.5,52.5,52.5,2,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,WY,41.1133,-104.984011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63438,UB Fuel Cell,UBFC1,2015.0,1.4,1.4,1.4,0.2,NG,Other Natural Gas,OP,FC,4.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.165036,-73.19606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63439,Central CA Fuel Cell 1,CCFC1,2018.0,2.8,2.8,2.8,0.2,NG,Other Natural Gas,OP,FC,5.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.18347,-119.374348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63440,Sun Streams 2,GEN01,2021.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,AZ,33.320406,-112.816771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63442,Tickle Creek Solar,W9317,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.375,-122.265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63443,Thomas Creek Solar,W9318,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.131407,-122.619475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63444,1001 Ebenezer Church Solar,1001,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.283819,-80.843419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63445,1009 Yadkin Solar,1009,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.14749,-80.656114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63446,1073 Onslow Solar,1073,2021.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.773578,-77.185771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63447,1008 Matthews Solar,1008,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.21669,-80.552473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63448,1045 Tomlin Mill Solar,1045,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.916178,-80.835488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63449,Lang Solar Farm,PV1,2016.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.19587,-77.502759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63450,Chenango Solar,PV1,2019.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.198167,-75.927282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63451,"Monroe Solar Farm, LLC",MONR1,2020.0,13.1,13.1,13.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.312,-74.425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63452,Solvay Solar,SSP,2020.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,39.846549,-75.212019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63453,Malmedal Solar Garden,CGS,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.65736,-95.51856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63454,Wollan Garden Solar,CGS,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.637121,-95.530903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63455,RE-VFO LLC,INV1,2009.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.353675,-119.400823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63455,RE-VFO LLC,INV2,2009.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.353675,-119.400823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63456,St Louis Solar,W9319,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.11994,-122.9361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63457,Progress Drive Generation Station,PSG1,2016.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,OP,IC,7.0,2016.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.53,-82.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96875 -63457,Progress Drive Generation Station,PSG2,2019.0,1.8,1.8,1.8,0.2,DFO,Petroleum Liquids,OP,IC,6.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,40.53,-82.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.96875 -63458,Rush Springs Energy Storage (BA),RUSHE,2020.0,10.0,10.0,10.0,0,MWH,Batteries,OP,BA,3.0,2020.0, , ,20.0,10.0,10.0,FLB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,OK,34.695647,-97.829705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63459,Selective Insurance,9853,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.152222,-74.744444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63459,Selective Insurance,9854,2022.0,0.6,0.6,0.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.152222,-74.744444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63460,"Rock County Wind Fuel, LLC",RCWF,2020.0,5.0,5.0,5.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.641928,-96.262481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63461,Bonefish Solar,PGR15,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,33.720936,-80.190821,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63462,Pika Solar,PGR17,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.089244,-122.7705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63463,"Mohea Solar Energy Center, LLC",PGR14,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,35.08849,-81.62438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63464,Brush Creek Solar,PGR19,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.984217,-122.813127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63465,Minke Solar,PGR20,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.172332,-122.622665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63466,Drift Creek Solar,PGR18,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.970572,-122.803509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63467,Bighorn Solar,PGR16,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.965702,-122.954234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63468,Hurteau Solar Project Hybrid,BATT,2020.0,1.3,1.3,1.3,0,MWH,Batteries,OP,BA,3.0,2020.0, , ,1.5,1.3,1.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.0248,-71.5925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63468,Hurteau Solar Project Hybrid,HURTU,2020.0,2.0,2.0,2.0,0,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0248,-71.5925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63469,Alicea Solar Project Hybrid CSG,ALICA,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0686,-72.0062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63469,Alicea Solar Project Hybrid CSG,BATT,2020.0,1.5,1.5,1.5, ,MWH,Batteries,OP,BA,12.0,2020.0, , ,3.0,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.0686,-72.0062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63470,McDougle-Mitchell Solar Project Hybrid CSG,BATT,2020.0,2.9,2.9,2.9,0,MWH,Batteries,OP,BA,8.0,2020.0, , ,5.7,2.9,2.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.1649,-72.0014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63470,McDougle-Mitchell Solar Project Hybrid CSG,MCDMT,2020.0,4.5,4.5,4.5,0,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.1649,-72.0014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63472,Cycz Solar Project CSG Hybrid,BATT,2020.0,1.3,1.3,1.3,0,MWH,Batteries,OP,BA,6.0,2020.0, , ,2.5,1.3,1.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.218,-71.9761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63472,Cycz Solar Project CSG Hybrid,CYCZ,2020.0,2.0,2.0,2.0,0,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.218,-71.9761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63473,West A&B Solar Project Hybrid CSG,BATT,2020.0,1.8,1.8,1.8,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,3.5,1.8,1.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.0748,-72.0038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63473,West A&B Solar Project Hybrid CSG,WEST,2020.0,2.5,2.5,2.5,0,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0748,-72.0038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63474,Annese Solar Project Hybrid CSG,ANNES,2020.0,4.3,4.3,4.3,0,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0755,-72.0052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63474,Annese Solar Project Hybrid CSG,BATT,2020.0,3.5,3.5,3.5,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,6.7,3.5,3.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.0755,-72.0052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63475,Randall Solar Project Hybrid,BATT,2021.0,3.3,3.3,3.3,0,MWH,Batteries,OP,BA,7.0,2021.0, , ,6.0,3.2,3.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.3921,-71.6611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63475,Randall Solar Project Hybrid,RAND,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.3921,-71.6611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63476,Saint Solar,SAINT,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,32.866276,-111.502402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63477,Alcalde Solar Array,SOLAR,2020.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.091143,-106.040879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63478,Ross Hall Central Utility Plant,CT-1,2016.0,4.6,4.1,2.7,2.7,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8913043478260869,0.5869565217391306,RFC,PJM,DC,38.900216,-77.050788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.643546299564655 -63479,"Traverse Wind Project, LLC",GEN1,2022.0,999.0,999.0,999.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,35.727711,-97.793184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63480,Roberds Garden CSG,RPRG,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.29946,-93.239088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63481,Clear Garden CSG,RPCG,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.035361,-93.494894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63482,Point Wind,PW1,2021.0,64.5,64.5,64.5,0,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.080833,-118.361389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63483,ACM - Midtown Thermal,T60-1,2012.0,5.5,5.2,6.1,3.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,1.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9454545454545454,1.0,RFC,PJM,NJ,39.359831,-74.434228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.711757269279392 -63484,Gohman Community Solar (CSG),GOHMN,2020.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.435683,-94.044799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63485,ECP Uptown Campus,1,1997.0,5.6,4.3,5.6,1,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,1997.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7678571428571429,1.0,RFC,PJM,PA,40.43727,-79.98741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.667323963860605 -63486,D'Arrigo Brothers - Phase 4,DA04,2019.0,1.7,1.7,1.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7058823529411764,WECC,CISO,CA,36.616,-121.636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63486,D'Arrigo Brothers - Phase 4,DA04B,2019.0,0.5,0.5,0.5, ,MWH,Batteries,OP,BA,7.0,2019.0, , ,0.8,0.1,0.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.616,-121.636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63487,Wister Solar,WSOL,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.269426,-115.502954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63489,"Sundance Wind Project, LLC",GEN1,2021.0,199.0,199.0,199.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.5597,-98.7492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63490,CD4,OEC1,2022.0,44.4,29.6,44.4,5,GEO,Geothermal,OP,BT,7.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),0.6666666666666667,1.0,WECC,CISO,CA,37.646053,-118.915794,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63492,DCO Burlington,CTG-1,2012.0,3.5,2.7,3.8,2.4,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2012.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7714285714285715,1.0,RFC,PJM,NJ,40.108316,-74.826404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21.035213442886267 -63493,PSREC/SIAD Solar,SIAD,2018.0,2.5,2.4,1.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.64,WECC,CISO,CA,40.15006,-120.123352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63494,"Maverick Wind Project, LLC",GEN1,2021.0,288.0,288.0,288.0,0,WND,Onshore Wind Turbine,OP,WT,9.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,SWPP,OK,36.293919,-98.164671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63495,Durrance,1,2021.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.78,-81.98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63496,Frederick County - Landfill,PV1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.373263,-77.34985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63497,Calabro Airport North Solar Project,NORTH,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.8224,-72.875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63498,Calabro Airport South Solar Project,SOUTH,2019.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.811524,-72.857053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63499,Choctaw Nation Solar Farm,CVS1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,33.968856,-96.434578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63500,Chickasaw Nation Solar Farm,CVS1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,34.47741,-97.105237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63501,Montclair State University Cogen,CTG-1,2013.0,6.4,5.4,5.8,2.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2013.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.84375,0.9062499999999999,RFC,PJM,NJ,40.865207,-74.196651,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.34196840107466 -63501,Montclair State University Cogen,ENG-1,2018.0,2.7,2.7,2.7,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.865207,-74.196651,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,112.07386576677915 -63501,Montclair State University Cogen,ENG-2,2018.0,2.7,2.7,2.7,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.865207,-74.196651,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,112.07386576677915 -63502,Oso Grande Wind Farm,OGW24,2021.0,33.8,33.8,33.8,0,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,TEPC,NM,32.9323,-103.6664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63502,Oso Grande Wind Farm,OGW45,2021.0,216.0,216.0,216.0,0,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,TEPC,NM,32.9323,-103.6664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63503,Lakehurst Solar,LAKHS,2020.0,9.6,9.6,9.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.024,-74.312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63504,"Copper Mountain Solar 5, LLC",CM5-1,2021.0,252.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9920634920634921,0.9920634920634921,WECC,NEVP,NV,35.776286,-114.973676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63505,Cherry Blossom Solar LLC,CB,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,33.762185,-79.458012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63509,Lund Hill Solar,LHS1,2022.0,150.0,150.0,150.0,0,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,AVRN,WA,45.888,-120.355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63510,Walnut Unified School District Walnut HS Hybrid,PV1,2020.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.02188,-117.85051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63510,Walnut Unified School District Walnut HS Hybrid,ST1,2020.0,0.5,0.5,0.5,0,MWH,Batteries,OP,BA,2.0,2020.0, , ,0.5,0.1,0.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.02188,-117.85051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63511,Mohonasen Central School District,PV1,2019.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.767228,-73.956847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63512,Wor-Wic Community College - Offsite,PV1,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.413274,-75.690118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63514,Moonlight Packing - Phase 2,MLO2,2019.0,1.4,1.4,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7142857142857144,WECC,CISO,CA,36.585794,-119.469986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63516,California City,CACTY,2018.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.157,-117.981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63517,Santa Fe Solar Power Plant,PV1,2021.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,29.52147,-82.432767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63518,Twin Rivers Solar Power Plant,PV1,2021.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,30.466428,-82.968718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63519,CED Crane Solar,CRN1,2020.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.254361,-102.31165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63520,PA Solar Park II,PASP2,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.86159,-75.84656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63521,CED Mason City Wind,MCW1,2020.0,7.5,7.9,7.9,0,WND,Onshore Wind Turbine,OP,WT,5.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,43.140697,-93.098483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63522,Hickory Park Solar Hybrid,HPBAT,2022.0,40.0,40.0,40.0, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,80.0,42.0,42.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,SOCO,GA,31.269676,-84.176321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63522,Hickory Park Solar Hybrid,HPRK,2022.0,195.5,195.5,195.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.269676,-84.176321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63523,Spruce - WCMD - Rubble II,GEN1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.62143,-77.82543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63524,Spruce - WCMD - Rubble I,GEN1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.61849,-77.82332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63525,Spruce - WCMD - Creek,GEN1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.67185,-77.82329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63526,Spruce - WCMD - Resh I,GEN1,2016.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.68185,-77.80145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63527,Lafayette 2 - Internal Services Dept,GEN1,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.05,-118.18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63530,Jersey City DWP,10331,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.690025,-74.087431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63531,Pima Community College NW,10327,2019.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.343491,-111.02786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63532,Winona Community Solar One LLC,52837,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.858524,-91.321983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63533,Goodhue Community Solar Two LLC,52830,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.293907,-92.723598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63534,Houston/Winona Community Solar One LLC,52827,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.866327,-91.322351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63535,Solar BESS Hybrid,NG,2022.0,1.0,1.0,1.0,0.3,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,SERC,SOCO,GA,33.979348,-84.556128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63535,Solar BESS Hybrid,SOLAR,2020.0,1.5,1.1,1.1,1.1,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7333333333333334,0.7333333333333334,SERC,SOCO,GA,33.979348,-84.556128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63535,Solar BESS Hybrid,TEST,2020.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,10.0,2020.0, , ,4.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,SOCO,GA,33.979348,-84.556128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63536,Amazon DEN2 Solar Project,BLD3,2019.0,1.2,1.2,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.75,WECC,PSCO,CO,39.75,-104.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63537,Amazon BDL3 Solar Project,BLD3,2019.0,1.0,1.0,0.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7,NPCC,ISNE,CT,41.45,-72.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63538,Assembly Solar II LLC,AS2,2021.0,110.0,110.0,110.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.043718,-83.95998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63539,Montefiore Weiler (Einstein) Hospital,CT500,1986.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.880375,-73.879075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63539,Montefiore Weiler (Einstein) Hospital,CU450,1993.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1993.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.880375,-73.879075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63539,Montefiore Weiler (Einstein) Hospital,CU500,2006.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.880375,-73.879075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63540,Essex County Correctional Facility Cogen,EG1,2003.0,3.1,3.0,3.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.967741935483871,0.967741935483871,RFC,PJM,NJ,40.7205,-74.1263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.67938704158298 -63540,Essex County Correctional Facility Cogen,EG2,2003.0,3.1,3.0,3.0,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2003.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.967741935483871,0.967741935483871,RFC,PJM,NJ,40.7205,-74.1263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.67938704158298 -63542,Enter Solar,ENTER,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.141576,-93.7077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63543,Lange Solar,LNGE,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.028216,-92.63908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63544,Fordham University,DC350,2010.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.469509594882727 -63544,Fordham University,LC565,2010.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.471424509525162 -63544,Fordham University,LH275,2010.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.467879476975556 -63544,Fordham University,MC750,2018.0,0.8,0.8,0.8,0.8,DFO,Petroleum Liquids,SB,IC,12.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.469509594882727 -63544,Fordham University,TB1,2010.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.476109215017066 -63544,Fordham University,TB2,2010.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.476109215017066 -63544,Fordham University,WL500,1999.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.861278,-73.887419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.471424509525162 -63545,Chevron - Lost Hills Hybrid,GEN1,2020.0,30.0,30.0,30.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.62,-119.69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63546,St. Luke's Cornwall Hospital,GEN1,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.50365,-74.01454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63546,St. Luke's Cornwall Hospital,GEN2,2010.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.50365,-74.01454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63546,St. Luke's Cornwall Hospital,GEN3,2010.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.50365,-74.01454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63548,Lily Solar,1,2020.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.094931,-81.434842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63549,Water Strider Solar,WSS,2021.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.016375,-79.027061,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,AR-01,1998.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,CO-14,2000.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,FP-01,2000.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,HS-01,2000.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,MB-01,2012.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,MM-01,2000.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,PG-01,2012.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,3.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,SC-67,2006.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,SO-01,2000.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63550,Vassar Brothers Medical Center,WW-01,1998.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.693606,-73.934817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63552,Woodfields Solar,PGR21,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.188925,-82.134332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63553,Richmond University Medical Center,CT200,1986.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.63589,-74.10579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63553,Richmond University Medical Center,CU600,1978.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1978.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.63589,-74.10579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63553,Richmond University Medical Center,CU750,1986.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.63589,-74.10579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63554,Mohave Electric Cooperative at Joy Lane,PV2,2016.0,10.9,10.9,10.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WALC,AZ,34.9843,-114.5565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63555,"St. Joseph's Solar, LLC CSG",STJOE,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.143586,-71.972112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63556,"Boutillier Solar, LLC CSG",BOUTI,2018.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.219,-71.891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63557,"Blair Wire Village Solar, LLC CSG",BLAWV,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.259,-71.975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63558,"Barton Acres Solar, LLC CSG",BARAC,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.572,-72.164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63561,"Cherry Valley Solar, LLC CSG",CHERV,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.229961,-71.891545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63562,"ISM Solar Dighton 2, LLC CSG",DIGHT,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.816858,-71.168944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63563,"Incom Solar, LLC CSG",INCOM,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.107929,-72.017227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63564,"JH Solar, LLC CSG",JHSOL,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.243,-72.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63565,"Woodchuck Solar, LLC CSG",WOODC,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.258218,-71.975189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63566,HWY 158 PV,HW158,2020.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.423222,-77.073839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63569,"Dudley River 3 Solar, LLC CSG",DUD3,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.071255,-71.998219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63570,"Dudley River 2 Solar, LLC CSG",DUD2,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.07239,-71.997064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63571,"Dudley River Solar, LLC CSG",DUD1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.070934,-71.999663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63572,"Ledeaux Solar, LLC CSG",LEDEA,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.241,-72.104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63573,"Cohasse Solar, LLC CSG",COHAS,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.056,-72.045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63574,Atchison County Wind,GEN1,2021.0,299.0,275.5,288.9,0,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9214046822742474,0.9662207357859531,MRO,SWPP,MO,40.531283,-95.354881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63575,Thunderbird Generator (Tbird),TBRID,2019.0,1.0,1.0,1.0,0.3,DFO,Petroleum Liquids,OP,IC,5.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,KS,38.468931,-96.25358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.75 -63576,FastSun 4 CSG,FS4,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.190434,-92.959023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63577,FastSun 21 CSG,FS21,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.498092,-94.114719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63578,Sagamore Wind,SWF01,2020.0,522.0,522.0,522.0,1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NM,33.938421,-103.184611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63579,Britton Solar Energy Center,BSEC,2019.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.016,-106.098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63580,NYPH - Lawrence,CAT15,1981.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1981.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.94233,-73.83686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63580,NYPH - Lawrence,CM175,2010.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.94233,-73.83686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63580,NYPH - Lawrence,CU750,2015.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.94233,-73.83686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63580,NYPH - Lawrence,DD300,2010.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.94233,-73.83686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63580,NYPH - Lawrence,KL515,2010.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.94233,-73.83686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63581,Mount Sinai - Brooklyn,CM350,2010.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.61873,-73.94298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63581,Mount Sinai - Brooklyn,DD750,2010.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.61873,-73.94298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63581,Mount Sinai - Brooklyn,KP300,2010.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.61873,-73.94298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63582,Harmony Solar,HFS,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FMPP,FL,28.155322,-81.108333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63583,Taylor Creek Solar,TCS,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FMPP,FL,28.503469,-81.048333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63585,NY3 Battery,NY3,2020.0,3.0,3.0,3.0,0,MWH,Batteries,OP,BA,12.0,2020.0, , ,12.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.18512,-74.07467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63586,SR Kersey II,KERII,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.386223,-104.554038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63587,SR Skylark C,SKYC,2019.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.575118,-104.89577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63588,"Palombo Solar, LLC CSG",PALOA,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.025,-71.599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63589,"Palombo B Solar, LLC CSG",PALOB,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.028,-71.596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63590,Ponderosa Wind Energy Center,PONDE,2020.0,200.0,200.0,200.0,1,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,36.555532,-100.668949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63592,Nutmeg Solar,NUTMG,2020.0,19.6,19.6,19.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.974794,-72.510833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63593,"Brooten CSG1, LLC",SC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.498798,-95.162232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63594,"Buffalo Lake CSG1, LLC",SC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.732611,-94.623028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63595,"Lowry CSG2, LLC",SC,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.669611,-95.510528,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63596,"Paynesville CSG1, LLC",SC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.401833,-94.722778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63597,"Plato CSG1, LLC",SC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.790278,-94.082833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63598,"Sacred Heart CSG1, LLC",SC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.783167,-95.361083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63599,"Stewart CSG1, LLC",SC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.725639,-94.495083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63601,Isabella Wind Park,1,2021.0,383.5,383.5,383.5,10,WND,Onshore Wind Turbine,OP,WT,6.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.684092,-84.788455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63602,Montefiore-New Rochelle,EG250,1971.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1971.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.91261,-73.78781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63602,Montefiore-New Rochelle,EG300,2006.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.91261,-73.78781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63602,Montefiore-New Rochelle,EG600,1980.0,0.6,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1980.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.33333333333333337,0.33333333333333337,NPCC,NYIS,NY,40.91261,-73.78781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63603,Illumina Way SD,ILM01,2019.0,3.5,3.5,3.5,0.1,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,32.87302,-117.19968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63604,Extreme San Ignacio,EXN02,2019.0,1.0,1.0,1.0,0.1,NG,Other Natural Gas,OP,FC,5.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.237,-121.78532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63605,ATT North Watney,ATT35,2019.0,2.0,2.0,2.0,0.1,NG,Other Natural Gas,OP,FC,12.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,38.236257,-122.077759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63606,ATT Ventura Blvd,ATT27,2019.0,1.0,1.0,1.0,0.1,NG,Other Natural Gas,OP,FC,11.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,LDWP,CA,34.152191,-118.456078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63607,Extreme Via Del Oro,EXN01,2019.0,1.2,1.2,1.2,0.1,NG,Other Natural Gas,OP,FC,3.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.23811,-121.78532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63609,Allergan,ALRGN,2019.0,1.5,1.5,1.5,0,MWH,Batteries,OP,BA,7.0,2019.0, , ,9.0,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.67239,-117.85381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63610,Baker,BAKER,2019.0,1.2,1.2,1.2,0,MWH,Batteries,OP,BA,4.0,2019.0, , ,6.3,1.2,1.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.656528,-117.68412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63611,CSU Long Beach,CSULB,2017.0,2.5,2.5,2.5,0,MWH,Batteries,OP,BA,3.0,2017.0, , ,15.0,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.78383,-118.10796,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63612,DATS,DATS0,2017.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,4.0,2017.0, , ,6.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.70731,-117.89108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63613,Downey,DOWNY,2019.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,12.0,2019.0, , ,13.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.919368,-118.128919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63614,LAWRP,LAWRP,2019.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,4.0,2019.0, , ,5.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.63778,-117.71377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63615,Long Beach Convention Center,LBCON,2019.0,1.5,1.5,1.5,0,MWH,Batteries,OP,BA,4.0,2019.0, , ,8.6,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.765236,-118.189377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63616,OCSD,OCSD1,2019.0,4.9,4.9,4.9,0,MWH,Batteries,OP,BA,8.0,2019.0, , ,32.6,4.9,4.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.693129,-117.9409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63617,SOCCD,SOCCD,2019.0,1.3,1.3,1.3,0,MWH,Batteries,OP,BA,6.0,2019.0, , ,7.2,1.3,1.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.676445,-117.777312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63618,USS Solar Brick,USBRK,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.35009,-89.79322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63620,USS Goodrich Solar,USGCH,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.076,-88.06491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63621,USS Sycamore Solar (CSG),USSYC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.96455,-88.66696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63623,Lafayette 2 - MLK Jr. Hospital (MLK),GEN1,2020.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.92,-118.24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63624,"La Chalupa, LLC",LC,2021.0,198.5,198.5,198.5,0,WND,Onshore Wind Turbine,OP,WT,6.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.249888,-97.511842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63625,NYU Langone - Orthopedic,HJD#1,2010.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.73402,-73.98285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63625,NYU Langone - Orthopedic,HJD#2,2010.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.73402,-73.98285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63626,"IGS FE Trenton, LLC",229,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.18933,-74.65676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63627,"Scenic Hill Solar IV, LLC",252,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,AR,35.47056,-93.4464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63628,Tinker,5A,1971.0,41.0,33.0,33.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8048780487804879,0.8048780487804879,MRO,SWPP,OK,35.414719,-97.373445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63628,Tinker,5B,1971.0,41.0,31.0,31.0,26,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,1971.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7560975609756098,0.7560975609756098,MRO,SWPP,OK,35.414719,-97.373445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63629,"Hydra Community Solar Garden, LLC (CSG)",HYDRA,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.416723,-93.219857,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63630,Pleasanton - Amador Valley High School,AVHS,2019.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.662431,-121.874678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63632,Primient Loudon Plant,Y9111,2016.0,30.7,26.0,30.7,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8469055374592834,1.0,SERC,TVA,TN,35.735092,-84.319301,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479221363157134 -63632,Primient Loudon Plant,Y9121,2016.0,30.7,26.0,30.7,14,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8469055374592834,1.0,SERC,TVA,TN,35.735092,-84.319301,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.479221363157134 -63635,Crown,CROWN,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.648205,-80.719878,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63636,Fort Rock I,FR1,2020.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.320081,-121.003496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63637,One Patriot,TKG00,2019.0,2.0,2.0,2.0,0.1,NG,Other Natural Gas,OP,FC,12.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,MA,42.093394,-71.265305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63638,Tracy 210,CTC13,2019.0,2.6,2.6,2.6,0.1,NG,Other Natural Gas,OP,FC,3.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.72201,-121.53097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63639,Contrail Wind Farm,COWF,2020.0,112.4,110.0,110.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9786476868327402,0.9786476868327402,MRO,MISO,IA,40.667406,-94.831625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63640,Southern Hills Wind Farm,SHWF,2021.0,254.1,250.0,250.0,0.1,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9838646202282566,0.9838646202282566,MRO,MISO,IA,41.1113,-94.4667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63641,Diamond Trail Wind Farm,DTWF,2020.0,252.5,250.0,250.0,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9900990099009901,0.9900990099009901,MRO,MISO,IA,41.6744,-92.1642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63642,Dunn Road Solar,W9736,2021.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.431,-122.286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63643,North Central Bronx Hospital,EG1,2000.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.88043,-73.8812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63643,North Central Bronx Hospital,EG2,2000.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2000.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.88043,-73.8812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63644,Wyckoff Heights Medical Center,CT800,1994.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1994.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.70412,-73.91773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63644,Wyckoff Heights Medical Center,KT800,1986.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1986.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.70412,-73.91773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,7E600,2001.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,8E675,2001.0,0.7,0.7,0.7,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,9E600,2001.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,E10,2001.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,E16,2011.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,E27,2011.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,E28,2011.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,E29,2011.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63645,St.Joseph's Regional Medical Center,E30,2011.0,0.1,0.1,0.1,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,PJM,NJ,40.9026,-74.1656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CATA,2010.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CATB,2010.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CATC,1998.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CATD,1998.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1998.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CU1,2005.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CU2,2005.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CU2SH,1995.0,0.3,0.3,0.3,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1995.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CU3,2005.0,0.9,0.9,0.9,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2005.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,CU4,2001.0,0.2,0.2,0.2,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,DET,2012.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63646,Jacobi Medical Center,GEN1,2008.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.85652,-73.84737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63647,SDM000 Clarkson Fuel Cell,SDM00,2018.0,1.8,1.8,1.8,1.8,NG,Other Natural Gas,OP,FC,5.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.65511,-73.94415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63648,NHH003 Clarkson Fuel Cell,NHH03,2018.0,1.1,1.1,1.1,1.1,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.65653,-73.94278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63649,NHH004 Winthrop Fuel Cell,NHH04,2018.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.656847,-73.946662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63650,Flodquist Community Solar LLC CSG,TC3,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.489436,-92.857015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63651,North Kern State Prison Phase II,5812,2012.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.780407,-119.30875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63654,Sheriff Road,SHRFF,2020.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.911287,-76.894882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63655,Coyote Wind LLC,COY,2021.0,242.5,242.5,242.5,0.5,WND,Onshore Wind Turbine,OP,WT,1.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,32.84879,-100.866458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63656,CED Peoria Solar,PS1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.57629,-89.703554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63657,Siems Solar Project CSG,TC3,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.272392,-92.55696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63658,Schueler Community Solar,TC3,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.306139,-94.088307,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63659,Bowden Solar LLC,BOWDN,2019.0,2.0,2.0,1.7, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.85,NPCC,ISNE,MA,42.109156,-72.338133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63660,M72 West Solar,M72W,2019.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,44.776787,-85.701356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63661,SWM Fuel Cell,SWM-1,2021.0,2.8,2.8,2.8,1.1,NG,Other Natural Gas,OP,FC,12.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.79,-72.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63661,SWM Fuel Cell,SWM-2,2021.0,2.8,2.8,2.8,1.1,NG,Other Natural Gas,OP,FC,12.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.79,-72.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63661,SWM Fuel Cell,SWM-3,2021.0,2.8,2.8,2.8,1.1,NG,Other Natural Gas,OP,FC,12.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.79,-72.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63662,Montefiore Nyack Hospital,CAT,2001.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.09098,-73.91824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63662,Montefiore Nyack Hospital,DET,2001.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.09098,-73.91824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63663,Mt Hope Solar,W0053,2021.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.12795,-122.61382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63664,Williams Acres Solar,W0055,2021.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.137,-122.799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63665,River Valley Solar,W0054,2022.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.128,-122.828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63666,"Bitter Ridge Wind Farm, LLC",BIT,2020.0,130.0,130.0,130.0,130,WND,Onshore Wind Turbine,OP,WT,9.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,IN,40.360533,-85.113149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63667,Sanford Solar,SAS,2020.0,49.4,49.4,49.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,43.4569,-70.7803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63668,"University Solar, LLC",URI,2019.0,24.0,24.0,24.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.6133,-71.6593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63669,St. Mary's Hospital For Children,CHP,2020.0,0.3,0.3,0.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.77698,-73.77045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,80.90368116823852 -63669,St. Mary's Hospital For Children,CU1,2018.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.77698,-73.77045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -63669,St. Mary's Hospital For Children,CU2,2011.0,1.5,1.5,1.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2011.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.77698,-73.77045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.03907756080072 -63671,Harlem Hospital Center,CAT1,2008.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.81453,-73.9399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63671,Harlem Hospital Center,CAT2,2008.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.81453,-73.9399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63671,Harlem Hospital Center,CAT3,2008.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.81453,-73.9399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63671,Harlem Hospital Center,CAT4,2008.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.81453,-73.9399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63671,Harlem Hospital Center,CAT5,2008.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.81453,-73.9399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63672,Lakeville Solar,LV,2018.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.865224,-70.958257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63673,Norwalk Hospital Plant,EU-12,2015.0,3.0,2.5,2.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2015.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.8333333333333334,0.8333333333333334,NPCC,ISNE,CT,41.110861,-73.421968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.048038988164308 -63674,Dedeaux,DEDEA,2019.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.013113,-118.241894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63675,MSAP 13,TROYL,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.698335,-73.67174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63678,Paulson Community (CSG),PAUL,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.335686,-93.917023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63679,Laurel Village (CSG),LAUR,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.083808,-94.179684,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63680,Hertzberg Community (CSG),HERTZ,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.410876,-94.702055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63681,Oak Leaf Solar XXXIII LLC (Lantz),13,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.5357,-106.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63681,Oak Leaf Solar XXXIII LLC (Lantz),14,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.5357,-106.0753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63682,Brenda Luhman - CSG,BLCS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.291838,-92.72945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63683,Carlson Community (CSG),CRLSN,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.483155,-92.815184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63684,Hammer Community (CSG),HAMR,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.414071,-94.005708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63685,Luna Storage,LUNA,2022.0,100.0,100.0,100.0,0.1,MWH,Batteries,OP,BA,6.0,2022.0, , ,400.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.68325,-118.3053,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63686,Crescent Wind Park,GFWP,2021.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,2.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,41.935,-84.477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63687,Gratiot Farms Wind Project,CWP,2020.0,150.0,150.0,150.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.1695,-84.8653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-1,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-2,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-3,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-4,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-5,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-6,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-7,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-8,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG-9,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63688,Topaz Generating,CTG10,2021.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.426389,-94.976667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63689,Red Lake Falls Community Hybrid,RLFS,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,47.869258,-96.318964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63689,Red Lake Falls Community Hybrid,RLFW,2020.0,4.6,4.6,4.6,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,47.869258,-96.318964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63690,Oak Street Solar,PV1,2019.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.148611,-72.496944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63691,"Hunker Solar River, LLC",13502,2021.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.216382,-79.647108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63692,"PG Solar, LLC",13504,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.167164,-78.017811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63693,"Freight Line Solar, LLC",13503,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.96885,-77.76236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63694,"Butler Solar, LLC",13501,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.101804,-123.410102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63695,"Holly Swamp Solar, LLC",13502,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.662627,-79.132926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63696,Westmoreland County Solar Project,WEST,2021.0,19.9,19.9,19.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.007488,-76.744034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63697,Cranberry Solar,13440,2016.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.871955,-70.907792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63698,Galloway Landfill,GALLO,2020.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.172415,-74.023243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63699,AGT000 Stevens Creek Fuel Cell,AGT0A,2018.0,1.2,1.2,1.2,1.2,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.32489,-121.99894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63699,AGT000 Stevens Creek Fuel Cell,AGT0B,2018.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.32489,-121.99894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63700,AGT001 Centerville Fuel Cell,AGT01,2019.0,1.3,1.3,1.3,1.3,NG,Other Natural Gas,OP,FC,3.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,DE,39.75787,-75.62208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63701,CST001 McCarthy Fuel Cell,CST1A,2019.0,0.9,0.9,0.9,0.9,NG,Other Natural Gas,OP,FC,1.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.40553,-121.91676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63701,CST001 McCarthy Fuel Cell,CST1B,2019.0,0.3,0.3,0.3,0.3,NG,Other Natural Gas,OP,FC,1.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.40553,-121.91676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63702,EQX002 Secaucus Rd Fuel Cell,EQX02,2019.0,1.5,1.5,1.5,1.5,NG,Other Natural Gas,OP,FC,7.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,NJ,40.77536,-74.070335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63703,EQX003 Secaucus Rd Fuel Cell,EQX03,2018.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,NJ,40.77853,-74.07224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63704,EQX010 Great Oaks Fuel Cell,EQ10A,2019.0,1.2,1.2,1.2,1.2,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.24212,-121.78308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63704,EQX010 Great Oaks Fuel Cell,EQ10B,2019.0,1.2,1.2,1.2,1.2,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.24212,-121.78308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63705,EQX011 Duane Fuel Cell,EQ11A,2018.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,11.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.37816,-121.95495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63705,EQX011 Duane Fuel Cell,EQ11B,2018.0,1.4,1.4,1.4,1.4,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.37816,-121.95495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63705,EQX011 Duane Fuel Cell,EQ11C,2018.0,1.8,1.8,1.8,1.8,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.37816,-121.95495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63706,EQX012 Harz Fuel Cell,EQX12,2018.0,2.5,2.5,2.5,2.5,NG,Other Natural Gas,OP,FC,7.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,NJ,40.77782,-74.07591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63708,EQX015 Great Oaks Fuel Cell,EQ15A,2018.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,1.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.24187,-121.7816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63708,EQX015 Great Oaks Fuel Cell,EQ15B,2018.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,1.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.24187,-121.7816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63709,Autumn Hills Generating Facility,1,2009.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,7.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.783,-85.92195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.348036448673495 -63709,Autumn Hills Generating Facility,2,2009.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,7.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.783,-85.92195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.348036448673495 -63709,Autumn Hills Generating Facility,3,2009.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,7.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.783,-85.92195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.348036448673495 -63710,Golden Hill Wind,GH1,2022.0,201.3,201.3,201.3,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,AVRN,OR,45.562715,-120.708464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63711,JSR000 N Mathilda Fuel Cell,JSR00,2019.0,1.1,1.1,1.1,1.1,NG,Other Natural Gas,OP,FC,6.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.4124,-122.024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63712,KSR028 Merced Fuel Cell,KSR28,2018.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,4.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.70649,-122.16471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63713,IIV000 Mt Bethel Fuel Cell,IIV0A,2019.0,1.3,1.3,1.3,1.3,NG,Other Natural Gas,OP,FC,1.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,NJ,40.63251,-74.50348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63713,IIV000 Mt Bethel Fuel Cell,IIV0B,2019.0,1.3,1.3,1.3,1.3,NG,Other Natural Gas,OP,FC,1.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,NJ,40.63251,-74.50348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63714,GEN005 Antibody Fuel Cell,GEN05,2019.0,2.5,2.5,2.5,2.5,NG,Other Natural Gas,OP,FC,4.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.21086,-117.299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63715,SCU000 El Camino Real Fuel Cell,SCU00,2018.0,1.5,1.5,1.5,1.5,NG,Other Natural Gas,OP,FC,12.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.34994,-121.94064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63716,KSR053 Cantara Fuel Cell,KSR53,2018.0,1.6,1.6,1.6,1.6,NG,Other Natural Gas,OP,FC,5.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.7902,-118.29431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63717,TLR000 Hansen Fuel Cell,TLR0A,2018.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.65676,-121.62428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63717,TLR000 Hansen Fuel Cell,TLR0B,2019.0,1.5,1.5,1.5,1.5,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.65676,-121.62428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63717,TLR000 Hansen Fuel Cell,TLR0C,2019.0,0.5,0.5,0.5,0.5,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.65676,-121.62428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63718,ISM Solar Cranston CSG,CR,2020.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.735147,-71.46304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63719,Elora Solar,ELO,2022.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.06,-86.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63720,Augusta Solar,PGR23,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.124,-82.13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63721,Cool Springs Solar (Hybrid),COOLS,2021.0,213.0,213.0,213.0,0.1,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.747916,-84.680492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63721,Cool Springs Solar (Hybrid),CSBAT,2021.0,40.0,40.0,40.0,0.1,MWH,Batteries,OP,BA,12.0,2021.0, , ,80.0,40.0,40.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,SOCO,GA,30.747916,-84.680492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63722,Rawhide Prairie Solar Hybrid,BA1,2021.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,3.0,2021.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PSCO,CO,40.857978,-105.015561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63722,Rawhide Prairie Solar Hybrid,PV1,2021.0,22.0,22.0,22.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.857978,-105.015561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63724,Hayfield Solar I LLC CSG,HAYF1,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.894113,-92.867187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63725,Hayfield Solar III LLC CSG,HAYF3,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.919214,-92.861257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63726,Pipestone City Solar LLC CSG,PSCTY,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.015972,-96.317514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SL3EC,2022.0,67.5,67.5,67.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLATE,2021.0,50.5,50.5,50.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLB3C,2022.0,33.8,33.8,33.8, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,135.0,33.8,33.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLBES,2022.0,50.0,50.0,50.0, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,200.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLBPW,2022.0,10.0,10.0,10.0, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLBSV,2022.0,46.5,46.5,46.5, ,MWH,Batteries,OP,BA,2.0,2022.0, , ,186.0,46.5,46.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLPWR,2022.0,26.0,26.0,26.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLSTN,2022.0,63.0,63.0,63.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63727,Slate Hybrid,SLSVC,2022.0,93.0,93.0,93.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.226955,-119.8948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63728,Taos Mesa Energy Facility Hybrid,BESS,2022.0,12.0,12.0,12.0,0.1,MWH,Batteries,OP,BA,11.0,2022.0, , ,25.0,12.0,12.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,PNM,NM,36.44,-105.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63728,Taos Mesa Energy Facility Hybrid,TMEF1,2022.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.44,-105.62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63729,CES Marbletown Solar,MT1,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.885716,-74.102718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63732,"ESA Buies Creek, LLC",11630,2020.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.41424,-78.71433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63733,"Eros Solar, LLC",11631,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.16513,-78.08025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63734,"Ventura Solar, LLC",11632,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.878809,-81.177116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63735,Silverstrand Grid Energy Storage System,SLV01,2021.0,11.0,11.0,11.0,11,MWH,Batteries,OP,BA,4.0,2021.0,4,2041,44.0,11.0,11.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.20774,-119.079813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63737,Chisholm Grid Energy Storage System,CHS01,2021.0,100.0,100.0,100.0,0,MWH,Batteries,OP,BA,10.0,2021.0, , ,125.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.904444,-97.386111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63738,Helena Wind,HEL,2022.0,268.2,268.2,268.2,0,WND,Onshore Wind Turbine,OP,WT,6.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,28.621959,-97.937625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63739,Las Majadas Wind Farm,LMAJ,2021.0,272.6,272.6,272.6,0.2,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,26.364843,-97.545341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63741,USS Bluff Country Solar CSG,USBCS,2020.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.111881,-91.843552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63742,USS Viceroy Solar LLC CSG,USVIC,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.49776,-95.16451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63743,USS Solar Way LLC CSG,SOLWY,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.82563,-93.43378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63744,USS Hubers Solar LLC CSG,HUBER,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.45692,-93.12447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63745,"Greensville County Solar Project, LLC",GVSO,2020.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.64,-77.57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63746,"TWE Myrtle Solar Farm, LLC",MYSO,2020.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.79,-76.67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63747,Fogarty CSG,GRA,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.508729,-74.349999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63748,Mount Hope West,MHW,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.466974,-74.509417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63749,Mount Hope East,MHE,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.467654,-74.509646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63750,Bluestone,BLU,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.987467,-74.030193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63751,Underhill,UND,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.716281,-73.884263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63752,Grabinski,GRA,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.578731,-74.17967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63753,"Platteville Solar CSG, LLC",218,2020.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.22833,-104.77471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63754,Gulf Power Blue Indigo Energy,SBI01,2020.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,FL,30.877262,-85.40065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63755,Milner Butte LFGE,E2,2018.0,1.3,1.3,1.3,0.5,LFG,Landfill Gas,OP,IC,10.0,2018.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,IPCO,ID,42.466911,-114.004567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.593813193419686 -63755,Milner Butte LFGE,E3,2018.0,1.3,1.3,1.3,0.5,LFG,Landfill Gas,OP,IC,10.0,2018.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,IPCO,ID,42.466911,-114.004567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.593813193419686 -63756,Omtanke Solar,DGSC1,2020.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,33.133705,-80.253716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63758,Kroger La Habra,KROLH,2020.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.922141,-117.939096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63759,Ballenger Road Solar A,BALGR,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,35.04354,-82.112843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63760,White Horse Solar A,WHRSA,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.786327,-82.398437,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63761,Soscol Ferry Solar,SSCLC,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.237422,-122.275184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63761,Soscol Ferry Solar,SSCLD,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.237422,-122.275184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63762,Silveira Ranch Road Solar,SILVA,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.153474,-122.56565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63762,Silveira Ranch Road Solar,SILVB,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.153474,-122.56565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63762,Silveira Ranch Road Solar,SILVC,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.153474,-122.56565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63763,CES Agawam Tuckahoe Solar Hybrid,ATES,2021.0,2.6,2.6,2.6,2.6,MWH,Batteries,OP,BA,12.0,2021.0, , ,5.2,2.6,2.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.059,-72.691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63763,CES Agawam Tuckahoe Solar Hybrid,ATPV,2021.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.059,-72.691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63764,Elm Branch Solar 1,TXEB1,2021.0,134.7,134.7,134.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.23256,-96.706121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63768,Elk Hill Solar 2,PAEH2,2020.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.799589,-77.811561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63769,Briar Creek Solar 1,TXBC1,2021.0,127.0,127.0,127.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.067483,-96.585136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63770,Bighorn Solar 1,COBH1,2021.0,240.0,240.0,240.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.207518,-104.596708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63772,Adirondack Solar,1394,2018.0,1.1,1.1,0.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6363636363636362,NPCC,NYIS,NY,44.893641,-73.841731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63773,Elk Hill Solar 1,PAEH1,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,39.849241,-77.929148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63774,Mount Kisco Landfill Solar & Storage CSG,KISCB,2020.0,0.7,0.5,0.5, ,MWH,Batteries,OP,BA,12.0,2020.0,12,2035,2.1,0.5,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.7142857142857144,0.7142857142857144,RFC,NYIS,NY,41.195478,-73.73606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63774,Mount Kisco Landfill Solar & Storage CSG,KRS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,NYIS,NY,41.195478,-73.73606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63775,Tech Square Microgrid,BESS1,2020.0,0.2,0.2,0.2,0,MWH,Batteries,OP,BA,10.0,2020.0, , ,0.4,0.2,0.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,SOCO,GA,33.7756,-84.3899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63775,Tech Square Microgrid,DG1,2020.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7756,-84.3899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.666666666666666 -63775,Tech Square Microgrid,FC1,2020.0,0.2,0.2,0.2,0.1,NG,Other Natural Gas,OP,FC,10.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,SERC,SOCO,GA,33.7756,-84.3899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6.80727923627685 -63775,Tech Square Microgrid,NGE1,2020.0,0.2,0.2,0.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7756,-84.3899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.666666666666667 -63775,Tech Square Microgrid,NGE2,2020.0,0.2,0.2,0.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,SOCO,GA,33.7756,-84.3899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.666666666666667 -63777,Pinson Solar Farm,1310,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.72,-82.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63778,"Suntex Solar, LLC",3,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.56149,-119.68621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63779,"Rock Garden Solar, LLC",4,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.39691,-120.93038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63780,NY- CSG- Johnstown 2,JOHN2,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.04232,-74.37876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63781,NY- CSG- Livingston 4,LIV4,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.9199,-77.7642,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63786,Ben Moreell Solar Farm,BMSF,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.28,-74.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63790,Illinois PV Fulton 1 CSG,FULT,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.698522,-89.967943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63791,Sobania Community Solar LLC,SOB01,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.42,-94.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63792,Svihel Community Solar LLC CSG,SVH01,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.678,-93.919,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63793,Studenski Community Solar LLC CSG,STU01,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.63,-94.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63794,Stevens Community Solar LLC,ST001,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.662,-93.94,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63795,"Alkali Solar, LLC",2,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.31942,-121.0035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63796,"West Hines Solar I, LLC",1,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.50259,-119.14713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63800,NY - CSG - Ellsworth II,23,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.899691,-73.707473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63801,St. Joseph Solar,1,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IN,41.7311,-86.1083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63803,"Bronco Plains Wind, LLC",WBOPL,2020.0,300.0,299.0,299.0,1,WND,Onshore Wind Turbine,OP,WT,9.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9966666666666667,0.9966666666666667,WECC,PSCO,CO,39.088845,-103.025074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63804,Partridgeville Hybrid CSG,PAR,2020.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.571449,-72.257389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63804,Partridgeville Hybrid CSG,PBESS,2020.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,1.0,2020.0, , ,3.9,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.571449,-72.257389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63805,Williamsville Hybrid CSG,WBESS,2021.0,3.3,3.3,3.3,3.3,MWH,Batteries,OP,BA,9.0,2021.0, , ,6.7,3.3,3.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.469505,-72.069781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63805,Williamsville Hybrid CSG,WIL,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.469505,-72.069781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63807,"Sugar Solar, LLC",PGR29,2021.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.1607,-80.6574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63810,"Centerfield Cooper Solar, LLC",PGR24,2020.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,34.708762,-80.118838,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63811,"Lick Creek Solar, LLC",PGR27,2022.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.283056,-80.128265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63812,"Highest Power Solar, LLC",PGR31,2022.0,48.7,48.7,48.7, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.12,-78.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63813,"Gunsight Solar, LLC",PGR26,2022.0,75.0,75.0,75.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SC,SC,33.761136,-81.066705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63814,SR Odom,ODOM,2020.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.06987,-83.596183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63816,"RJC CSG, LLC",RJC01,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.125,-93.277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63817,"Hinterland CSG, LLC",HIN01,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.416,-94.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63819,"Betcher CSG 1, LLC",BET01,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.392,-92.595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63820,"Huneke CSG 1, LLC",HUN01,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.297,-92.736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63821,"Huneke CSG 2, LLC",HUN02,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.263,-92.669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63823,CED Beecher Sun Solar,BS1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.327123,-87.61052,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63824,CED Hilltop Solar,HS1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.339141,-89.198015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63825,Lineage Logistics Solar,LLCHI,2019.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.455,-87.752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63826,POET Biorefining - Jewell,1,2019.0,5.0,0.9,0.9,0.5,NG,Natural Gas Steam Turbine,OP,ST,3.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.18000000000000005,0.18000000000000005,MRO,MISO,IA,42.3284,-93.6623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57.75673707210488 -63829,"POET Biorefining - Marion, LLC",1,2017.0,3.9,3.9,3.9,0.5,NG,Natural Gas Steam Turbine,OP,ST,8.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,40.622,-83.157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65.85507544178947 -63829,"POET Biorefining - Marion, LLC",2,2017.0,3.9,3.9,3.9,0.5,NG,Natural Gas Steam Turbine,OP,ST,8.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,40.622,-83.157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,79.66121014132518 -63830,Conagra Foods at St. Elmo,CFS,2021.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.0106,-88.8443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63831,"POET Biorefining Caro, LLC",1,2018.0,3.8,3.8,3.8,0.5,OTH,All Other,OP,ST,6.0,2018.0, , ,,,,,other,other,Other,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,MI,43.472885,-83.411763,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36.1951417402692 -63832,"POET Biorefining-Hanlontown, LLC",1,2019.0,4.0,4.0,4.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,1.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,43.29236,-93.392798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,83.0939633290319 -63833,Bluebird Solar SC LLC,BB,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.599083,-82.739217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63834,Gateway Energy Storage System,GTWAY,2020.0,250.0,250.0,250.0,0,MWH,Batteries,OP,BA,7.0,2020.0, , ,250.0,250.0,250.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.570556,-116.910556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63835,"Pilot Mountain Solar, LLC",PV1,2020.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.27066,-80.37635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63836,"Benson Solar, LLC",PV1,2020.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.3962,-78.56223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63837,"Lane II Solar, LLC",PV1,2020.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.39977,-78.05327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63839,Midlands,1113,2020.0,72.1,72.1,72.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.648979,-80.942818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63842,"Trent River Solar, LLC",PGR25,2021.0,78.7,78.7,78.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.9915,-77.2514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63843,"Johanna Energy Center, LLC",SASP1,2021.0,20.0,20.0,20.0,1,MWH,Batteries,OP,BA,6.0,2021.0, , ,20.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.715016,-117.853984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63844,Fort Calhoun Community Solar,FTCAL,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,41.456612,-96.004766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63852,"POET Biorefining - North Manchester, LLC",K745,2017.0,3.9,3.9,3.9,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,MISO,IN,40.941967,-85.803585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64.70844103449174 -63853,POET Biorefining - Chancellor,1,2018.0,5.4,5.4,5.4,0.5,WDS,Wood/Wood Waste Biomass,OP,ST,8.0,2018.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,SD,43.3705,-96.9598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41.09974074657426 -63854,Medusa NY 1,8175C,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.466286,-74.099533,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63855,Walden NY 1,8175E,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.552749,-74.145471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63856,Westtown NY 2,8175D,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.345455,-74.52377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63857,Middletown NY 1,8175B,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.40888,-74.509799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63858,Westerlo NY 1,8175A,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.43822,-74.015894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63859,"Golden Field Solar III, LLC",RCTR,2020.0,192.0,192.0,192.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.847,-118.395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63860,Encino Solar Energy Center,ESEC,2020.0,55.0,55.0,55.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.354,-106.858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63861,Logansport Solar,INLP,2021.0,16.0,16.0,16.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,40.760083,-86.388288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63869,IBM Solar,DGIBM,2019.0,8.1,8.1,8.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.038266,-105.244892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63883,Samson Solar Energy III LLC,GEN1,2022.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.426498,-95.357449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63887,East Brookfield Main Street Solar LLC CSG,EBMSS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.2323,-72.0294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63888,"ESIL-PFCHICAGO 3, LLC",PF3CH,2020.0,1.4,1.4,1.4,0,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IL,41.849,-87.669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63889,"ESIL-PFCHICAGO 2, LLC",PF2CH,2020.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IL,41.817,-87.735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63891,Saticoy,SATCY,2021.0,100.0,100.0,100.0,0,MWH,Batteries,OP,BA,4.0,2021.0, , ,400.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.256691000000004,-119.15726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63892,Lily Solar Hybrid,LILY,2021.0,146.7,146.7,146.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.533273,-96.428985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63892,Lily Solar Hybrid,LILYB,2021.0,50.0,50.0,50.0,0,MWH,Batteries,OP,BA,9.0,2021.0, , ,76.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.533273,-96.428985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63893,"GD Hopkinton Main I, LLC",MAIN1,2020.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.438293,-71.781092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63893,"GD Hopkinton Main I, LLC",MAIN2,2020.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.438293,-71.781092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63893,"GD Hopkinton Main I, LLC",MAIN3,2020.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.438293,-71.781092,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63894,Milo PV - BD Solar 1 LLC,MILPV,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,45.267,-68.991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63895,Augusta PV - BD Solar Augusta LLC,AUGPV,2021.0,7.2,7.2,7.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.328,-69.731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63896,Fairfield PV - BD Solar Fairfield LLC,FAIPV,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.634,-69.597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63897,Oxford PV - BD Solar Oxford LLC,OXFPV,2021.0,9.2,9.2,9.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.151,-70.476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63899,Cornillie 2 Community (CSG),CORN,2021.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.45942,-92.89476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63903,Pinesburg Solar LLC,PINE1,2020.0,4.3,4.3,4.3,0,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.625172,-77.860901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63904,Timonium Fairgrounds,FAIR1,2020.0,1.9,1.9,1.9,0,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.447,-76.63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63905,Azure Sky Solar,ASKYB,2022.0,77.6,77.6,77.6, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,77.6,77.6,77.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.998948,-99.5985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63905,Azure Sky Solar,ASKYS,2021.0,225.0,225.0,225.0,0,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.998948,-99.5985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63906,"Turquoise Nevada, LLC",142,2020.0,60.0,60.0,60.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.57395,-119.5242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63908,SulusSolar17,SS17,2020.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.34891,-122.433515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63910,Bluegrass Solar,BGS,2022.0,79.6,79.6,79.6,1,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.178761,-75.960905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63913,Dodge Flat,DODGB,2022.0,50.0,50.0,50.0,0,MWH,Batteries,OP,BA,3.0,2022.0, , ,200.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,NEVP,NV,40.713024,-119.467217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63913,Dodge Flat,DODGE,2022.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,40.713024,-119.467217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63914,Cedar Springs I,82633,2020.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,43.019714,-105.472139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63915,Cedar Springs II,82634,2020.0,200.0,198.8,198.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9940000000000001,0.9940000000000001,WECC,PACE,WY,42.969007,-105.365616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63916,Cedar Springs III,82635,2020.0,133.0,133.0,133.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACE,WY,43.076692,-105.584352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63917,DC Water Solar,8030A,2021.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.819244,-77.018944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63918,POET Biorefining - Hudson,1,2019.0,3.6,3.6,3.6,0.5,NG,Natural Gas Steam Turbine,OP,ST,5.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,SD,43.096898,-96.476983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65.52832219005 -63919,POET Biorefining LLC - Corning,1,2018.0,5.0,5.0,5.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,40.966198,-94.795751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57.50373459194428 -63920,POET Biorefining - Fostoria,1,2017.0,3.5,3.5,3.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.1718,-83.3777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70.79638820968268 -63921,POET Biorefining - Shelbyville,1,2020.0,6.1,5.5,6.1,0.5,NG,Natural Gas Steam Turbine,OP,ST,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.9016393442622952,1.0,RFC,MISO,IN,39.56,-85.822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45.07422411965967 -63922,POET Biorefining - Portland,G-745,2017.0,3.5,3.5,3.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,3.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,40.414455,-85.025545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66.8907822849948 -63923,POET Biorefining - Gowrie,1,2018.0,5.0,5.0,5.0,0.5,NG,Natural Gas Steam Turbine,OP,ST,11.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,MISO,IA,42.319817,-94.287353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54.973029392431215 -63924,"POET Biorefining- Alexandria, LLC",1,2008.0,3.6,3.6,3.6,0.5,NG,Natural Gas Steam Turbine,OP,ST,4.0,2008.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,IN,40.294347,-85.654444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,93.9167417202021 -63925,Riley,RILEY,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.5559,-119.6852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63926,Fort Rock IV,FRIV,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,OR,43.38988,-120.956087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63927,"POET Biorefining - Leipsic, LLC",1,2017.0,3.5,3.5,3.5,0.5,NG,Natural Gas Steam Turbine,OP,ST,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,RFC,PJM,OH,41.12055,-83.97062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63928,Vacaville Hospital,6701,2019.0,1.5,1.4,0.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.4666666666666667,WECC,CISO,CA,38.38867,-121.93864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63929,Troy Solar,TROY1,2021.0,50.4,50.4,50.4,2.5,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IN,38.015372,-86.791594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63930,Cal Flats BESS,CF60,2021.0,60.0,60.0,60.0,0,MWH,Batteries,OP,BA,11.0,2021.0, , ,242.0,60.0,60.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,35.866665,-120.329439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63932,Titan Solar 1 (CA),TITN1,2020.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.125786,-115.911059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63934,Severson Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.00057,-93.49594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63935,Marion Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.25009,-93.27397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63936,Silver Lake Garden,CGS,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.00789,-93.49541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63937,Lyman Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.47637,-93.15309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63938,Nicollet Garden,CGS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.25364,-94.27067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63939,Union Garden,CGS,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.46936,-93.13565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63940,Central 40,CEN40,2021.0,40.0,40.0,40.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.246,-121.104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63941,Oasis Alta,OA1,2021.0,14.4,14.4,14.4,0,WND,Onshore Wind Turbine,OP,WT,4.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,35.059166,-118.291944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63942,Sunpin Blandford,SUNBI,2020.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.17337,-73.0247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63943,Coso Battery Storage,61730,2022.0,60.0,60.0,60.0, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,240.0,60.0,60.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.006945,-117.810636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63944,"Blackhorse Farm Solar, LLC CSG",BHF,2020.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.7186,-71.2342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63945,Clinton Solar 4 LLC CSG,CLIN,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,38.59587,-89.2751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63946,"Vermilion Solar 1, LLC CSG",VERM,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.12437,-87.6292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63947,DGS Valley State Prison,579,2021.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.10117,-120.153072,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63948,CED Spring Creek Solar,CS1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,IL,41.108211,-87.726108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63949,Cortland,CORT2,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,41.92219,-88.68876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63950,Erving CSG,ERVIN,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.603717,-72.47116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63951,Lena,LENA,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,42.35681,-89.88398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63952,Ridge Farm,RIDGE,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IL,39.88821,-87.68593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63953,Easthampton CSG,EASTP,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.24781,-72.679837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63954,Mendota,MENDS,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,41.54863,-89.15986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63956,"Palmer Creek Solar, LLC",223,2020.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.18484,-123.10175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63957,"Day Hill Solar, LLC",221,2020.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.26866,-122.32942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63958,"SSD Marion 3, LLC",1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.985,-122.938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63959,"SSD Marion 5, LLC",1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.11601,-122.793791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63960,"SSD Marion 6, LLC",1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.254,-122.806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63961,"SSD Clackamas 1, LLC",1,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.42,-122.333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63962,"SSD Clackamas 4, LLC",1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.102,-122.662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63963,"SSD Clackamas 7, LLC",1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.182,-122.591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63964,"SSD Marion 1, LLC",1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.139507,-122.904499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63965,"Danville Farm, LLC",1,2020.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.591,-79.302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63966,FastSun12 CSG,FS12,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.220125,-93.456969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63967,Charter Durabar at Woodstock,CDB1,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.2899,-88.40712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63967,Charter Durabar at Woodstock,CDB2,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.2899,-88.40712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63968,The GSI Group LLC at Assumption,GSI,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.51303,-89.037337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63969,SulusSolar35,SS35,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.140551,-122.649655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63970,7185 13th Pl. NW,10020,2019.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.977175,-77.031405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63971,CCUA Solar,CCUA,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.415336,-75.235661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63973,Cardinal Solar LLC,CARD,2020.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.199824,-79.38585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63974,"Hayes Solar, LLC",HAYES,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.388216,-80.737407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63975,"Harrison Solar, LLC",HARS,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.984262,-78.524535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63976,Bay Tree,959,2021.0,70.1,70.1,70.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.70414,-78.393358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63977,Central Generating,1,2018.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,9.0,2018.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.33349,-85.506011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.52975549108993 -63977,Central Generating,2,2018.0,0.8,0.8,0.8,0.5,LFG,Landfill Gas,OP,IC,9.0,2018.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.33349,-85.506011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.52975549108993 -63977,Central Generating,3,2020.0,1.6,1.6,1.6,1.2,LFG,Landfill Gas,OP,IC,8.0,2020.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,43.33349,-85.506011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.52975549108993 -63978,Duette Solar Power Plant,PV1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,27.585836,-82.061964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63979,315 Vinson Road,VINSN,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.629398,-78.385888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63981,Red Cloud Wind LLC,1,2021.0,350.0,350.0,350.0,70,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.274062,-105.42291,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63982,Charlie Creek Solar Power Plant,PV1,2022.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,27.639778,-81.654367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63986,Rialto - High School,10136,2017.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.090318,-117.355604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63987,Novel Martens Solar LLC(CSG),MRTNS,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.442361,-94.38725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63988,Blooming Grove Wind Energy Center,GEN1,2020.0,250.0,250.0,250.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,PJM,IL,40.661079,-88.395079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63989,Peterman II,PETE,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.070396,-87.78887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63990,Kish CSG,KISH,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.215163,-88.920643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63991,Nostrand,NOS,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.207388,-87.837817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63992,Vulcan,VUL,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.10341,-87.97498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63993,FTF-PackingShed,FTF02,2013.0,1.0,1.0,0.7,0,SUN,Solar Photovoltaic,OP,PV,6.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7,WECC,CISO,CA,36.546901,-119.430179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63994,Firebaugh-CCS-PV-1,MWF01,2015.0,1.0,1.0,0.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6,WECC,CISO,CA,36.734667,-120.612773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63995,Trenton,ES1,2021.0,11.0,11.0,11.0,11,MWH,Batteries,OP,BA,12.0,2021.0, , ,10.1,11.0,11.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPC,FL,29.613561,-82.806892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63996,Cape San Blas,ES1,2022.0,5.5,5.5,5.5, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,14.3,5.5,5.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPC,FL,29.732141,-85.391431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63997,Pine Hill,PHS01,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.821004,-71.562498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63998,Jennings Energy Storage Facility,ES1,2022.0,5.5,5.5,5.5, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,5.5,5.5,5.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPC,FL,30.603831,-83.098058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -63999,Micanopy Energy Storage Facility,ES1,2022.0,8.3,8.3,8.3, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,11.7,8.3,8.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPC,FL,29.5112,-82.274833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64000,Amaterasu LLC,BESS,2021.0,3.2,3.2,3.2,0,MWH,Batteries,OP,BA,6.0,2021.0, , ,6.0,3.2,3.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.519282,-71.6734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64000,Amaterasu LLC,DRC,2021.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.519282,-71.6734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64001,"Camellia Solar, LLC",CAMEL,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.642745,-95.353265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64002,"Buttercup Solar, LLC",11629,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.82354,-77.97275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64003,Iron Star Wind Project,WTG1,2021.0,297.6,297.6,297.6,4,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.64875,-99.98094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64004,Interfaith Medical Center,EGB17,2012.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,8.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.67855,-73.93742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64006,SulusSolar33,SS33,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.08,-123.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64007,SulusSolar28,SS28,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.1,-123.52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64008,MilfordSolar OR,MS,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.57,-123.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64009,BristolSolar,BS,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.15,-122.79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64010,"Energix Hollyfield, LLC",ENX06,2021.0,13.0,13.0,13.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.671,-77.17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64011,Bainbridge Solar,6359,2019.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,SOCO,GA,30.967159,-84.625537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64012,"Energix Nokesville, LLC",ENX07,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.672,-77.593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64013,Somonauk Road Solar 1,6344,2021.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IL,41.758266,-88.656288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64014,28 Livermore Hill Road Solar,7405,2020.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.55151,-71.951107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64015,"Energix Buckingham, LLC",ENX05,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.5064,-78.381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64016,Edwardsville Solar II,6777,2021.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,MISO,IL,38.814542,-89.997299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64017,Brick Church Solar,7405,2019.0,4.0,4.0,3.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,42.755594,-73.580034,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64018,Route 76 Boone Solar 1,7724,2020.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IL,42.41894,-88.846141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64019,Altavista Solar,ATLA,2021.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,37.148199,-79.347497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64020,West Riverside Energy Center,CTG3,2020.0,232.9,226.1,234.9,115,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.9708029197080291,1.0,MRO,MISO,WI,42.582051,-89.041214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.354009406964554 -64020,West Riverside Energy Center,CTG4,2020.0,232.9,224.8,232.7,115,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.965221124946329,0.9991412623443537,MRO,MISO,WI,42.582051,-89.041214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.453422817169722 -64020,West Riverside Energy Center,PV1,2021.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.582051,-89.041214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64020,West Riverside Energy Center,STG2,2020.0,257.4,255.1,258.3,75,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2020.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.9910644910644911,1.0,MRO,MISO,WI,42.582051,-89.041214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64021,Alden Solar CSG LLC,225,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.45633,-104.58107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64022,SulusSolar22,SS22,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.97,-122.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64023,"10 Finderne Avenue Solar, LLC",246,2017.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.55812,-74.57594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64024,"Monte Vista Solar 2 CSG, LLC",262,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.57176,-106.09988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64025,"101 Carnegie Center Solar, LLC",297,2020.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.32312,-74.64512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64026,"ANSON Solar Center, LLC",SF1,2021.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.811041,-99.91749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64027,SB Water Reclamation Fuel Cell,MB19,2021.0,1.4,1.4,1.4,1,OBG,Other Waste Biomass,OP,FC,6.0,2021.0, , ,,,,,biomass,biomass,Other Biomass Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.075594,-117.287339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64028,San Diego - EMDF at San Diego,EMDF,2021.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,32.590258,-116.91949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64029,Bauer Solar CSG,TC3,2021.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.273478,-94.231949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64030,Kenmare - Sullivan Community College,GEN1,2015.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.772796,-74.666717,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64031,"Fremont CO 1, LLC",228,2020.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.46446,-105.21246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64033,GreenparkSolar,GS,2020.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.879414,-122.937451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64034,SulusSolar25,SS25,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.27,-122.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64035,Powatan Road Solar,POWTN,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.602063,-78.372088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64040,Apple Canyon Lake Solar,1,2020.0,1.2,1.2,1.2,0.1,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IL,42.436665,-90.179581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64041,Wappinger 9D Solar,4683,2019.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,41.56544,-73.937972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64042,Montague Road Solar,3958,2019.0,3.6,3.6,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8055555555555556,NPCC,ISNE,MA,42.421721,-72.536863,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64043,Olney Solar II CSG,6778,2021.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,SERC,MISO,IL,38.721601,-88.126791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64044,Off Airport Road - West,7141,2019.0,4.0,4.0,3.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,41.785648,-74.229036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64045,Fitchburg Renewables,4648,2020.0,4.0,4.0,3.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.604396,-71.795705,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64046,6140 Route 209 - North,7140,2019.0,4.0,4.0,3.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,NYIS,NY,41.787555,-74.288885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64047,Caddo Wind,46002,2022.0,303.2,303.2,303.2,1,WND,Onshore Wind Turbine,OP,WT,1.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.985072,-98.383823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64048,SulusSolar29,SS29,2020.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.46,-122.29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64049,San Diego - NCRC at Vista,NCRC,2021.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.190283,-117.255584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64051,"Orchard Windfarm 2, LLC",OCHW2,2020.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.38,-119.3332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64052,"Orchard Windfarm 3, LLC",OCHW3,2020.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.38,-119.3332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64053,"Orchard Windfarm 4, LLC",OCHW4,2020.0,10.0,10.0,10.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.38,-119.33322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64054,Clines Corners Wind Farm LLC,1,2021.0,325.0,325.0,325.0,70,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.35655,-105.43676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64055,Wonderful Orchards - New Columbia,WOC,2020.0,5.0,5.0,4.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8400000000000001,WECC,CISO,CA,36.8249,-120.317876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64056,T Luhman CSG,TLU01,2021.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.282,-92.682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64057,Wheatridge 1,WND,2020.0,100.0,100.0,100.0,0.4,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,BPAT,OR,45.55975,-119.6338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64058,2662 Freeport Solar 1 CSG,FREE,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,42.339696,-89.632719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64059,Whiteside Solar 1 CSG,WSIDE,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,41.85691,-90.15885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64060,SELCO Community Solar,SELCO,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.26564,-71.68807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64061,"Hecate Energy West Newberry, LLC",HEWNB,2021.0,3.3,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.249814,-81.648947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64062,Palmyra PV - BD Solar Palmyra LLC,PALPV,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.84,-69.31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64065,Duran Mesa LLC,1,2021.0,105.0,105.0,105.0,70,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.390679,-105.492126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64066,Tecolote Wind LLC,1,2021.0,272.0,272.0,272.0,70,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PNM,NM,34.36,-105.44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64068,BD Solar Hancock LLC,HANPV,2022.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.535671,-68.354732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64069,Winslow PV - BD Solar 2 LLC,WINPV,2022.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.56,-69.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64070,BD Solar Ellsworth LLC,ELLPV,2022.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.534547,-68.378789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64072,Camp Ripley Solar,CR1,2016.0,10.9,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9908256880733946,0.9908256880733946,MRO,MISO,MN,46.091,-94.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64074,Cimarron Bend III,3,2021.0,198.8,198.8,198.8,0,WND,Onshore Wind Turbine,OP,WT,1.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.414,-99.997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64076,"Route 66 Energy Center, LLC",RTE66,2022.0,49.5,49.5,49.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,35.098417,-107.614552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64078,Pittsfield Solar LLC,PSLLC,2017.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.814009,-69.449561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64079,CatanSolar,CS,2020.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,28.871642,-97.696944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64080,Dane County Airport Solar,1,2020.0,10.8,10.8,10.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.160591,-89.329495,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64081,Sunflower County,SUNFL,2022.0,100.0,100.0,100.0,1,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MS,33.757767,-90.536465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64084,Blanchard Road 1 Community Solar,BR1CS,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64084,Blanchard Road 1 Community Solar,BR1S,2019.0,5.0,5.0,5.0, ,MWH,Batteries,OP,BA,12.0,2019.0, , ,15.0,3.8,3.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64085,North Providence,CPRI2,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.869826,-71.476493,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64087,Blanchard Road 2 Community Solar,BR2CS,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64087,Blanchard Road 2 Community Solar,BR2S,2019.0,5.0,5.0,5.0, ,MWH,Batteries,OP,BA,12.0,2019.0, , ,15.0,3.8,3.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64090,NYS Rte 12 Community Solar,NR12S,2019.0,5.0,5.0,5.0, ,MWH,Batteries,OP,BA,12.0,2019.0, , ,15.0,3.8,3.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64090,NYS Rte 12 Community Solar,NYR12,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64091,Moore Road Community Solar,MROCS,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.213,-78.903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64092,Great Lakes Seaway Community Solar,GLSCS,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64092,Great Lakes Seaway Community Solar,GLSS,2019.0,5.0,5.0,5.0, ,MWH,Batteries,OP,BA,12.0,2019.0, , ,15.0,3.8,3.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,44.25479,-76.01178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64093,Montross Solar,MOSO,2018.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.077,-76.786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64096,Samuel Mickle School,248,2017.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.78736,-75.24615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64097,Electric City Solar,232,2020.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MI,41.75,-85.45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64098,Tesla Reno GigaFactory,1,2019.0,0.4,0.4,0.4,0.1,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.539511,-119.439158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64098,Tesla Reno GigaFactory,2,2019.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.539511,-119.439158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64098,Tesla Reno GigaFactory,5,2021.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.539511,-119.439158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64098,Tesla Reno GigaFactory,RA,2022.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.539511,-119.439158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64098,Tesla Reno GigaFactory,RB,2022.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.539511,-119.439158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64098,Tesla Reno GigaFactory,RC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,39.539511,-119.439158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64099,Tweite Community Solar LLC,TWEIT,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.025148,-92.674494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64100,"Morgan Solar 4, LLC CSG",MORG,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.61409,-90.22076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64101,"Mid-River PA, LLC (ABE4)",259,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.73998,-75.27774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64102,GE 19th Hole,GE19H,2018.0,7.7,7.7,7.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.985644,-74.313086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64103,Desert Harvest II LLC,DH002,2020.0,70.0,70.0,70.0,2,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.8,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64103,Desert Harvest II LLC,DH003,2021.0,35.0,35.0,35.0,1,MWH,Batteries,OP,BA,1.0,2021.0, , ,140.0,35.0,35.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.8,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64104,"Maverick Solar 4, LLC",MAV02,2020.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.7,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64105,"Maverick Solar 6, LLC",MAV03,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.7,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64105,"Maverick Solar 6, LLC",MAV04,2022.0,50.0,50.0,50.0, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,200.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.7,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64106,"Maverick Solar 7, LLC",MAV05,2021.0,132.0,132.0,132.0,132,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.7,-115.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64107,Canton,CPMA1,2012.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.145126,-71.130918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64108,Gold Meadow Farms,CPRI7,2019.0,16.2,16.2,16.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.734903,-71.528175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64109,Ravenbrook,CPMA2,2013.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.919675,-70.819421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64110,Hudson,CPMA6,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.404047,-71.541362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64111,A Street 2,CPRI5,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.797544,-71.545929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64112,Berkley,CPMA3,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.841454,-71.018328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64113,Kilvert,CPRI1,2018.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.727505,-71.449611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64114,A Street 1,CPRI4,2018.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.797953,-71.546775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64115,Carver,CPMA4,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.915338,-70.801648,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64116,Plainfield Pike,CPRI6,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.793111,-71.553484,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64117,Meadowlark Solar,MLS01,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.551944,-79.023055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64118,Nash 97 Solar 2,N97S2,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.8503,-78.2162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64119,Nickelson Solar 2,NS2,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.7457,-77.988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64120,Chicopee,CPMA5,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.181057,-72.510712,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64121,Siler City Solar 2,SCS2,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.688107,-79.465408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64122,"Marlow Solar, LLC CSG",MARL,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,38.315279,-88.756379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64123,James W. Broderick Hydropower Plant,GEN35,2019.0,3.5,3.3,3.3,1,WAT,Conventional Hydroelectric,OP,HY,5.0,2019.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.9428571428571428,0.9428571428571428,WECC,PACE,CO,38.27,-104.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64123,James W. Broderick Hydropower Plant,GEN40,2019.0,4.0,3.8,3.8,1.5,WAT,Conventional Hydroelectric,OP,HY,5.0,2019.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.95,0.95,WECC,PACE,CO,38.27,-104.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64124,IGS Stockton DG CSG,BREW,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,42.348183,-90.011235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64124,IGS Stockton DG CSG,BREW2,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,42.348183,-90.011235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64125,Podunque Road CSG,TWNSD,2021.0,5.0,5.0,5.0,5,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.415067,-78.23753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64126,County Road 16,ORNGE,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.3771,-76.9022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64127,Townsend Road(CSG),PODNQ,2021.0,3.7,3.7,3.7,3.7,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.350101,-76.938014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64128,Ware Palmer Road Solar LLC CSG,WPRB,2021.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,6.0,2021.0, , ,4.5,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.247172,-72.274926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64128,Ware Palmer Road Solar LLC CSG,WPRS,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.247172,-72.274926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64129,East Brookfield Adams Road Solar LLC CSG,EBARB,2021.0,3.1,2.8,2.8, ,MWH,Batteries,OP,BA,6.0,2021.0, , ,6.3,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9032258064516128,0.9032258064516128,NPCC,ISNE,MA,42.196032,-72.03084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64129,East Brookfield Adams Road Solar LLC CSG,EBARS,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.196032,-72.03084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64130,"REG Juhl Glenville Wind, LLC",RJGW,2020.0,2.5,2.5,2.5,0.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.582,-93.305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64135,Grassfield Solar,GFSO,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.65,-76.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64137,Kenmare - Mansfield Branch Street,GEN1,2017.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.015873,-71.20313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64138,Irish Creek Wind,ICW1,2021.0,300.6,300.6,300.6,30,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.699456,-96.425143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64139,"Haystack Wind Project, LLC",4444,2022.0,298.0,298.0,298.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,42.26303,-97.19566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64140,"BWC Stony Brook, LLC Hybrid",BESS,2021.0,0.7,0.7,0.7,0,MWH,Batteries,OP,BA,7.0,2021.0, , ,1.4,0.7,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.6375,-71.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64140,"BWC Stony Brook, LLC Hybrid",BSBPV,2021.0,1.6,1.6,1.6,0,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.6375,-71.4036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64141,Still Water Power,4,2020.0,1.0,1.0,1.0,0.1,OBG,Other Waste Biomass,OP,IC,5.0,2020.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,36.398796,-119.524252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.570498915401302 -64142,LabCorp Engine,LCG,2019.0,3.2,3.2,3.2,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,NJ,40.570448,-74.63951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.590759075907592 -64143,Bloom-Altice Fuel Cell,BLA,2020.0,2.0,2.0,2.0,1,NG,Other Natural Gas,OP,FC,10.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.76119,-73.49435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64144,"Harts Mill Solar, LLC",HMS01,2020.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.9,-77.64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64145,Bay Trail Solar Power Plant,PV1,2022.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,28.99999,-82.672244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64146,Sandy Creek Solar Power Plant,PV1,2022.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,30.103137,-85.410393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64147,ZPD-PT Solar Project 2017-038 Hybrid LLC,DRAES,2021.0,3.5,3.5,3.5,0,MWH,Batteries,OP,BA,4.0,2021.0, , ,6.7,3.5,3.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.516,-71.6734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64147,ZPD-PT Solar Project 2017-038 Hybrid LLC,DRAPV,2021.0,5.0,5.0,5.0,0,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.516,-71.6734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64148,Fish Springs,FISH,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,NEVP,NV,40.074741,-119.974166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64148,Fish Springs,FISHB,2022.0,25.0,25.0,25.0,0,MWH,Batteries,OP,BA,3.0,2022.0, , ,100.0,25.0,25.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,NEVP,NV,40.074741,-119.974166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64149,"Western Trail Wind, LLC",WTW,2022.0,366.6,366.6,366.6,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.85245,-99.06509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64150,Lancaster Solar GA,LANCR,2021.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.766506,-84.797206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64151,SR Perry,PERRY,2021.0,68.0,68.0,68.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.39597,-83.762901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64152,SR Rattlesnake,SNAKE,2020.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.105427,-104.413144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64153,Novel Novak Solar LLC CSG,NOVAK,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.659361,-93.93175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64154,Novel Shelly Solar LLC (CSG),SHLLY,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.613956,-95.642669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64157,Clyde Peaking Engine,CPG,2020.0,10.0,10.0,10.0,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.293294,-82.965261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.180038793863517 -64158,Mechanicsville Solar,MECH,2020.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.665975,-77.207725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64159,"Morgan Solar 2, LLC CSG",MRG2,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.606529,-90.227099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64162,Newton Rumford Landfill,7759A,2017.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.356341,-71.244586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64165,Priddy Wind Project,WTG1,2022.0,302.4,302.4,302.4,4,WND,Onshore Wind Turbine,OP,WT,1.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.5481,-98.49491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64169,Albemarle Beach Solar,BEACH,2020.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,35.928188,-76.620452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64170,"BWC Muddy Brook, LLC Hybrid",MBES,2021.0,0.9,0.9,0.9,0,MWH,Batteries,OP,BA,9.0,2021.0, , ,1.8,0.9,0.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.0966,-71.5054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64170,"BWC Muddy Brook, LLC Hybrid",MBPV,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.0966,-71.5054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64172,"Rockhaven Wind Project, LLC",RHWWT,2021.0,140.0,140.0,140.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.475095,-97.361366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64173,Lotus,1305,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.13621,-79.53957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64174,Big Boy,1303,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.07767,-79.633767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64175,Beth,1302,2014.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.975586,-79.618368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64176,Charlie,1304,2014.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.97485,-79.60948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64177,CED Manchester Wind,MANW,2022.0,7.9,7.9,7.9,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.469289,-91.473933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64178,CED Centerville Wind,CENTW,2021.0,7.9,7.9,7.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,40.70991,-92.84835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64179,IA - City of Ames - Airport Road,17000,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.003,-93.617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64180,MD - CS - Potomac Edison Co - GA29 TPE,19002,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.59535,-79.387898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64182,"BWC Lake Lashaway, LLC Hybrid",DRAES,2021.0,3.7,3.7,3.7,0,MWH,Batteries,OP,BA,5.0,2021.0, , ,9.0,3.7,3.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.24,-72.0555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64182,"BWC Lake Lashaway, LLC Hybrid",DRAPV,2021.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.24,-72.0555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64183,Independence Wind Farm,IWE,2021.0,55.4,54.0,54.0,1.9,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9747292418772563,0.9747292418772563,MRO,MISO,IA,42.431604,-91.568638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64184,ZPD-PT Solar Project 2017-044 LLC CSG,DRAPV,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.2782,-72.0071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64185,ZPD-PT Solar Project 2017-023 LLC Hybrid CSG,DRAES,2021.0,1.9,1.9,1.9,0,MWH,Batteries,OP,BA,1.0,2021.0, , ,3.5,1.9,1.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.07,-72.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64185,ZPD-PT Solar Project 2017-023 LLC Hybrid CSG,DRAPV,2021.0,2.8,2.8,2.8,0,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.07,-72.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64186,Graphite Solar I,394,2022.0,80.0,80.0,80.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,39.54844,-110.71209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64187,ZPD-PT Solar Project 2017-021 LLC Hybrid CSG,DRAES,2021.0,0.7,1.0,1.0,0,MWH,Batteries,OP,BA,1.0,2021.0, , ,2.5,0.7,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.1,-72.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64187,ZPD-PT Solar Project 2017-021 LLC Hybrid CSG,DRAPV,2021.0,1.0,1.0,1.0,0,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.1,-72.47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64190,Waipio Peninsula,82803,2015.0,11.0,10.2,10.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9272727272727272,0.9272727272727272,non-conus,non-conus,HI,21.363514,-157.985594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64191,SR Lumpkin,LUMP,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.025,-84.7325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64192,Bo Biggs Solar,BB08,2018.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.58125,-78.94951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64193,Moore Solar,MR01,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.38427,-79.48112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64194,510 Carnegie Center,313,2019.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.3147,-74.65551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64195,701 Carnegie Center,313,2019.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.32358,-74.64994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64196,Assembly Solar III,AS3,2022.0,79.0,79.0,79.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.022705,-83.942728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64198,"Horn Rapids Solar, Storage and Training",HRBE,2020.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,12.0,2020.0, , ,4.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,BPAT,WA,46.3529,-119.3222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64198,"Horn Rapids Solar, Storage and Training",HRPV,2020.0,3.2,3.2,2.3,0,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7187499999999999,WECC,BPAT,WA,46.3529,-119.3222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64200,Jack's Solar Garden,JSG,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.122552,-105.130321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64201,"McDonough Solar 1, LLC CSG",MC1B,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.555424,-90.851133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64201,"McDonough Solar 1, LLC CSG",MCDH,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.555424,-90.851133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64204,Elara Solar,ELARA,2021.0,132.4,130.0,130.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9818731117824773,0.9818731117824773,TRE,ERCO,TX,28.883196,-99.178605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64207,Crane Battery Energy Storage System,ES1,2020.0,5.0,5.0,5.0,5,MWH,Batteries,OP,BA,12.0,2020.0, , ,5.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,MISO,IN,38.813511,-86.886417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64211,Baxley,BAXLY,2020.0,25.0,25.0,25.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.877717,-82.333892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64213,Auburn Solar Project,AUB,2022.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.13,-71.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64213,Auburn Solar Project,BEAUB,2022.0,3.8,3.8,3.8, ,MWH,Batteries,OP,BA,5.0,2022.0, , ,9.4,3.7,3.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.13,-71.87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64217,Blair Solar,BLAIR,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.02956,-72.50324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64218,Madison Solar,MADIS,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.0305,-72.503952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64219,Few Solar,FEW,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.03107,-72.50438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64220,Wonderful Orchards - Westside,WOC,2021.0,5.0,5.0,4.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8400000000000001,WECC,CISO,CA,35.73277,-119.74523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64221,Wonderful Orchards - Belridge,WOC,2020.0,5.0,5.0,4.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8400000000000001,WECC,CISO,CA,35.50012,-119.74935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64222,Burt County Solar Hybrid,1,2021.0,0.7,0.7,0.7,0.1,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,41.863778,-96.232167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64222,Burt County Solar Hybrid,2,2021.0,0.7,0.7,0.7,0.1,MWH,Batteries,OP,BA,6.0,2021.0, , ,3.0,0.7,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,NE,41.863778,-96.232167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64223,Dodge County Solar Hybrid,1,2021.0,0.7,0.7,0.7,0.1,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,41.612,-96.752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64223,Dodge County Solar Hybrid,2,2021.0,0.7,0.7,0.7,0.1,MWH,Batteries,OP,BA,6.0,2021.0, , ,3.0,0.7,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,NE,41.612,-96.752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64224,"Dressor Plains Solar, LLC",DPS,2021.0,99.0,99.0,99.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IL,39.186321,-89.03123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64225,Prosperity Solar Farm CSG,PROS1,2021.0,2.3,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9565217391304349,0.9565217391304349,SERC,SWPP,MO,37.127139,-94.433694,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64226,Curry Solar,CURRY,2015.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.038819,-82.140318,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64227,"Alexis Solar, LLC",12001,2019.0,10.0,9.5,7.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.95,0.73,TRE,ERCO,TX,26.88913,-98.233324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64228,Blue Goose Solar CSG,BLGS,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,41.769376,-89.843327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64229,Iroquois Solar 1B LLC CSG,IROQ,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.774047,-87.754371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64230,Indiana Crossroads Wind Farm LLC,GEN01,2021.0,302.4,302.4,302.4,20,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,IN,40.6631,-86.8695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64231,Hadley 3 Solar (North),3093,2019.0,3.9,3.9,3.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7948717948717949,NPCC,ISNE,MA,42.35885,-72.542595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64232,Hadley 3 Solar (South),6554,2019.0,2.0,2.0,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.355782,-72.542595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64237,"Solar Lee, LLC",002,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.184704,-78.08459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64238,"Acme Solar, LLC",018,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.324366,-78.996148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64241,Maryland Bioenergy Center (Jessup),CHP1,2022.0,1.1,1.1,1.1,1.1,NG,Natural Gas Fired Combustion Turbine,OP,GT,9.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,MD,39.1578,-76.78042,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.725806451612904 -64242,St. Cloud Hydro,GEN#1,1988.0,4.3,4.3,4.3,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.547592,-94.148577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64242,St. Cloud Hydro,GEN#2,1988.0,4.3,4.3,4.3,0.2,WAT,Conventional Hydroelectric,OP,HY,6.0,1988.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,MRO,MISO,MN,45.547592,-94.148577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64243,Sullivan B Community Solar LLC,SULL,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.469681,-90.641075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64244,Anderson 3,SAND3,2021.0,8.7,8.7,7.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8045977011494254,RFC,PJM,IN,40.081698,-85.642033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64245,Anderson 5,SAND5,2021.0,3.0,3.0,2.4, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,PJM,IN,40.085942,-85.632184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64246,Peru 2,PERU2,2021.0,9.5,9.5,7.6, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,MISO,IN,40.758183,-86.105014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64247,Richmond 5,RICH5,2021.0,9.0,9.0,7.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,PJM,IN,39.805613,-84.874547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64248,Anderson 4,SAND4,2021.0,7.8,7.8,6.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7948717948717949,RFC,PJM,IN,40.082667,-85.636079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64249,Anderson 6,SAND6,2022.0,6.8,6.8,5.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7941176470588236,RFC,PJM,IN,40.085081,-85.746714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64250,Peru 3,PERU3,2022.0,2.9,2.9,2.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7931034482758621,RFC,MISO,IN,40.755338,-86.105722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64251,Pickford Solar,PICK1,2021.0,6.9,6.9,6.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,46.189254,-84.345452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64254,Kent School Road Solar 1,KENT,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,42.312841,-89.903444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64257,Schulte 2 Community Solar,SCHU,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,41.032235,-89.405223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64261,Forrest City- Prison Site,361,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,34.97953,-90.80602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64262,Forrest City- Eldridge Road,453,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,35.03789,-90.80707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64263,Hot Springs 2020,364,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,AR,34.421,-93.19485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64264,Las Virgenes,298,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.1265,-118.70404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64265,Rock Creek 2 CSG,263,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,37.39955,-105.90341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64266,Alamosa Solar South CSG,264,2021.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,37.4512,-105.85916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64267,Valencia 2,265,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.0218,-115.52641,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64268,Lawrence Brook,280,2020.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.51701,-72.62542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64269,Kankakee Solar 4 LLC,KANK,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,41.119258,-87.826519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64270,"ESCA-LL-COLTON, LLC",COLT1,2021.0,2.6,2.6,2.6,0,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0,12,2045,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.03925,-117.36056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64271,"1051 Lucky Solar, LLC",018,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.148986,-80.819654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64273,"Sweet Tea Solar, LLC",018,2021.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.160889,-77.133295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64275,Bulloch Neville Farms,BNF,2020.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.384398,-81.67292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64276,Franklin Milliken,FM,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.442071,-83.099118,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64277,Greene Durham,GD,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.631459,-83.093491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64278,Lowndes IDA,LIDA,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.835452,-83.227515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64279,Lowndes Tycor Farms,LTF,2020.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.688193,-83.167146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64280,Meriwether Jackson,MJ,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.877496,-84.644367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64281,Murray Treadwell Farms,MTF,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.769747,-84.813284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64282,Putnam Erickson,PE,2020.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.317653,-83.39233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64283,Terrell Riles Stovall,TRS,2020.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.785503,-84.448411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64284,Troup RC50 II,TRC50,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.898784,-84.896165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64285,Ware Avra I,WA1,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.196314,-82.322357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64286,Ware Avra II,WA2,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.196314,-82.322357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64288,Renewable Energy Center at BJH,RECBJ,2019.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,38.636459,-90.258198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64290,"SE Athos II, LLC",IPAT2,2021.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.751283,-115.35499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64291,Lincoln Medical and Mental Health Center,A1,2007.0,2.0,2.0,2.0,2,DFO,Petroleum Liquids,OP,IC,1.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.816971,-73.92411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64291,Lincoln Medical and Mental Health Center,A2,1970.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.816971,-73.92411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64291,Lincoln Medical and Mental Health Center,A3,1970.0,1.0,1.0,1.0,1,DFO,Petroleum Liquids,OP,IC,1.0,1970.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,40.816971,-73.92411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64291,Lincoln Medical and Mental Health Center,B1,1970.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,6.0,1970.0, , ,1.0,1.0,1.0,PBB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,40.816971,-73.92411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64291,Lincoln Medical and Mental Health Center,B2,1970.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,6.0,1970.0, , ,1.0,1.0,1.0,PBB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,40.816971,-73.92411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64291,Lincoln Medical and Mental Health Center,B3,1998.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,1.0,1998.0, , ,1.0,1.0,1.0,PBB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,40.816971,-73.92411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64293,Alvin,ALVIN,2020.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,10.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.433245,-95.249367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64294,Odessa,ODSA,2020.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,10.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.871315,-102.398409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64295,Angleton,ANGLE,2020.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,11.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.167065,-95.440647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64296,Brazoria,BRAZ,2020.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,11.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.062635,-95.577587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64297,Heights,H8S,2020.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,12.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.389595,-94.949867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64298,Magnolia TX,MANGO,2020.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,12.0,2020.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.488335,-95.133947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64299,Roger Williams - Melville at Portsmouth,MEL,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.579508,-71.273083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64300,Fort Drum Energy Center,FORTD,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.607892,-80.75812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64301,Willow Solar Energy Center,WILLO,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.448142,-82.080693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64302,Lafayette 2 - McHenry Franks 1,GEN1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.251568,-88.596711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64303,Lafayette 2 - McHenry Franks 2,GEN1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.214828,-88.491906,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64304,Lafayette 2 - Kankakee Yonke,GEN1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.097265,-87.869294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64305,TCI France,TCL1,2019.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,LA,29.984166,-90.028888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64306,TCI Alvar,TCI2,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,LA,29.992222,-90.028611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64307,New Orleans Solar Station,NOSS,2019.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,LA,30.015,-89.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64308,"Dissigno Healdsburg FPV, LLC",HLDBG,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.584405,-122.866189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64309,Soldier Creek Wind,SCWKS,2020.0,300.0,300.0,300.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.6572,-96.0294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64310,Corning Riverview (CSG),CORN,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.001066,-78.91407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64311,"Sun Farm VIII, LLC",SFS08,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.06,-77.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64312,Bat Cave,BC,2021.0,100.0,100.0,100.0,0.2,MWH,Batteries,OP,BA,10.0,2021.0, , ,110.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.737745,-99.231778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64314,Dickinson,DIKN,2021.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,6.0,2021.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.461255,-95.056987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64315,Loop 463,LOOP,2021.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,8.0,2021.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,28.816475,-97.074867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64316,Lopeno,LOPE,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,26.687614,-99.109418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64317,North Fork TX,NF,2021.0,100.0,100.0,100.0,0.2,MWH,Batteries,OP,BA,10.0,2021.0, , ,110.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.748955,-97.875708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64318,Pueblo BA,PBL1,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,28.678935,-100.463708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64318,Pueblo BA,PBL2,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,28.678935,-100.463708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64319,Ranchtown,RANCH,2021.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,10.0,2021.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.617885,-98.735948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64321,Sweeny,SWNY,2021.0,9.9,9.9,9.9,0.2,MWH,Batteries,OP,BA,4.0,2021.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.055615,-95.687237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64322,Zapata,ZPT1,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,26.932675,-99.233708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64322,Zapata,ZPT2,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,26.932675,-99.233708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64323,Coachella Hills Wind,CHW,2021.0,61.2,61.2,61.2,0,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,33.9077,-116.5797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64325,Prospero Solar II,PROSP,2021.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.275814,-102.844806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64326,Summit Winds,DYER,2021.0,47.5,46.2,46.2,1,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9726315789473685,0.9726315789473685,WECC,CISO,CA,37.761151,-121.69067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64326,Summit Winds,FRICK,2021.0,10.0,10.0,10.0,10,WND,Onshore Wind Turbine,OP,WT,7.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,CISO,CA,37.761151,-121.69067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64327,EDF Ph1 Toms River,GEN1,2021.0,21.3,21.3,21.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.984,-74.238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64328,"AES Griggs Solar, LLC",GRIG,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.19128,-87.666461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64329,"IGS East Central, LLC",EAST,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.471715,-88.043725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64330,SV CSG Lily Lake 2 LLC,LILY,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.954902,-88.478372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64331,Cedarville Road,LENA,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.37195,-89.80797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64332,Two Dot Wind Broadview East LLC,CHL2,2018.0,1.8,1.6,1.6,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2018.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.888888888888889,0.888888888888889,WECC,NWMT,MT,46.10265,-108.806609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64333,"WED Coventry Seven, LLC",WED7,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.697563,-71.722267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64334,"GD Glocester White Oak I, LLC",GDWH,2020.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.861544,-71.596239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64335,Quitman II Solar,QUIT2,2021.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.86205,-83.65165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64336,"Little Blue Wind Project, LLC",WFW,2021.0,250.7,250.7,250.7,25,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.284421,-98.407586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64337,Farmington Solar,FNS,2021.0,77.0,77.0,77.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.654659,-70.100835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64343,6685 Santa Barbara Ct,SBAR,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.189589,-76.743011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64350,Orbit Bloom Fuel Cell,OBFC,2020.0,6.0,6.0,6.0,6,NG,Other Natural Gas,OP,FC,8.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.819031,-72.965736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64351,Amazon JFK8 Solar Project,JFK8,2021.0,4.9,4.9,3.0, ,SUN,Solar Photovoltaic,OA,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6122448979591837,NPCC,NYIS,NY,40.618892,-74.187521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64352,Mtn Solar 6 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.613557,-103.233735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64353,NSE Camber Solar PS11 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.613557,-103.233735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64355,"NSE Camber BH CSG 2, LLC",SC,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,38.209158,-103.747306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64356,NSE Camber Solar PS13 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.619084,-103.158886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64357,NSE Camber Solar PS6 LLC CSG,SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.260736,-104.824172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64358,NSE Camber Solar PS5 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.250222,-104.839513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64359,Pivot Solar 12 LLC(CSG),SC,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.613557,-103.233735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64360,"American Goldfinch SCS ACY2 NJ, LLC",30001,2020.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.08556,-74.84089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64362,"SCS American Bottoms 009885 Sauget, LLC",30004,2020.0,1.8,1.8,1.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6111111111111112,MRO,MISO,IL,38.591745,-90.183286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64363,"ESA Boston Solar, LLC",30008,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.486008,-78.921771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64364,"SCS Beltway 011754 Rock Falls, LLC",30005,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,41.767012,-89.670331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64365,"Western Meadowlark Solar SCS NE 1, LLC",30003,2020.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,41.889,-103.649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64366,"Trojan Solar, LLC",30007,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.312472,-78.20425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64367,"Zuma Solar, LLC",30006,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.510939,-79.437885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64370,Plainfield Solar 1,PLFD1,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.68,-71.901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64371,Cortlandville I Solar CSG,CORT1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.606794,-76.154486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64372,Sangerfield Solar CSG,SNGFD,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.924419,-75.42005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64373,Clay Solar CSG,CLAY1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.194525,-76.21195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64374,Norwich Solar and Energy Storage CSG,NRWCB,2021.0,5.0,5.0,5.0,0.1,MWH,Batteries,OP,BA,9.0,2021.0, , ,15.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,42.552861,-75.529572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64374,Norwich Solar and Energy Storage CSG,NRWCH,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.552861,-75.529572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64375,Decorah Battery,BESS1,2021.0,2.5,2.5,2.5,0.1,MWH,Batteries,OP,BA,6.0,2021.0, , ,2.9,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,IA,43.324,-91.793,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64376,Tranquillity ID,TRANQ,2018.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.648026,-120.24594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64377,Milligan 1 Wind Farm,SG275,2020.0,99.0,99.0,99.0,2,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.478624,-97.220567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64377,Milligan 1 Wind Farm,SG4.5,2021.0,135.0,135.0,135.0,2,WND,Onshore Wind Turbine,OP,WT,3.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.478624,-97.220567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64377,Milligan 1 Wind Farm,V110,2020.0,66.0,66.0,66.0,1.1,WND,Onshore Wind Turbine,OP,WT,12.0,2020.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.478624,-97.220567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64378,Signature Breads Chelsea,EG1,2019.0,1.5,1.5,1.5,0.2,DFO,Petroleum Liquids,OP,IC,5.0,2019.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.393622,-71.046617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18.0 -64379,Ridgecrest,467,2021.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.84683,-76.97592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64380,Cascades,464,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.55879,-74.45646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64381,"Glacier Sands Wind Power, LLC",GS001,2021.0,185.0,185.0,185.0,2,WND,Onshore Wind Turbine,OP,WT,11.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IL,40.261377,-89.700876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64382,IXYS - Beverly,EG1,1997.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1997.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.579489,-70.910778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.22225 -64382,IXYS - Beverly,NG1,2019.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.579489,-70.910778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.221341332761947 -64382,IXYS - Beverly,NG2,2019.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.579489,-70.910778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.221341332761947 -64382,IXYS - Beverly,NG3,2019.0,0.7,0.7,0.7,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.579489,-70.910778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.221341332761947 -64383,Braes Bayou Plant,CTG-1,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,8.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-2,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-3,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-4,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-5,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-6,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-7,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64383,Braes Bayou Plant,CTG-8,2022.0,60.5,44.5,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7355371900826446,0.8231404958677686,TRE,ERCO,TX,29.480277,-95.620277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64384,Amazon TUS2,ATUS2,2022.0,2.6,2.6,2.6,2.6,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.129416,-110.838888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64385,Gliden (Op Zone),304,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.30161,-76.60357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64386,Gilcrest V CSG,GLCRV,2021.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.317966,-104.770747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64387,Quinebaug Solar,QBS,2021.0,49.4,49.4,49.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.749867,-71.932481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64388,TruStile Doors - Denver,TRUCO,2021.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.825708,-104.97312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64389,Niagara Bottling - Seguin,NIAGS,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.589139,-97.977198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64391,Firestone Walker Brewery - Phase 1,FWBP1,2020.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.595877,-120.694306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64392,Branch Solar Farm,CVS1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,AR,35.306183,-93.925758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64395,ZPD-PT Solar Project 2017-006 LLC Hybrid,DRAES,2021.0,2.5,4.0,4.0,0,MWH,Batteries,OP,BA,7.0,2021.0, , ,5.0,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.23,-72.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64395,ZPD-PT Solar Project 2017-006 LLC Hybrid,DRAPV,2021.0,4.0,4.0,4.0,0,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.23,-72.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64396,EMWD - Perris Valley RWRF,EMSJN,2021.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.75998,-117.18766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64397,EMWD - San Jacinto RWRF NEM,EMSJN,2021.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.798547,-117.016588,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64398,EMWD - Sun City RWRF,EMSUN,2021.0,1.6,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9375,0.9375,WECC,CISO,CA,33.696146,-117.218621,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64399,EMWD - San Jacinto RES BCT,EMRES,2022.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.802869,-117.023567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64400,BYU - Hawaii,BYESS,2021.0,1.9,1.9,1.9,1.9,MWH,Batteries,OP,BA,11.0,2021.0, , ,1.9,1.9,1.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,non-conus,non-conus,HI,21.640774,-157.925056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64400,BYU - Hawaii,BYUHI,2021.0,3.1,3.1,3.1,3.1,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,non-conus,non-conus,HI,21.640774,-157.925056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64401,CSU San Jose State University,CSUSJ,2021.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.334,-121.884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64402,El Dorado County,ELDCO,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.698145,-120.828256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64403,California State Univ at Channel Islands,CSUCI,2021.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.162058,-119.043375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64404,Mesa Carport PV,CPTPV,2020.0,3.6,3.6,2.7, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.75,WECC,SRP,AZ,33.347,-111.602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64404,Mesa Carport PV,GFTPV,2020.0,1.0,1.0,0.2, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.19999999999999996,WECC,SRP,AZ,33.347,-111.602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64406,EMWD - Moreno Valley RWRF,EMMOR,2021.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.868252,-117.214055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64407,Flat Ridge 3,FRW3,2021.0,128.0,128.0,128.0,2,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.446969,-98.400225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64408,Georges River Energy,WEG,2018.0,10.0,8.5,8.5,1.5,WDS,Wood/Wood Waste Biomass,OP,ST,12.0,2018.0, , ,,,,,biomass,waste,Wood/Wood Waste Solids,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",0.85,0.85,NPCC,ISNE,ME,44.3331,-69.2019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22.978524135589385 -64409,Anderson (SC),ANDER,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.493707,-82.676137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64410,Briarwood,BRIAR,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.08475,-82.10133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64411,Delanco,DELAN,2021.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.04936,-74.9353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64412,Gold Mine,GMINE,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.0726,-82.2263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64413,Schull CSG,SCHUL,2021.0,1.0,0.4,0.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.4,0.19999999999999996,MRO,MISO,MN,43.91635,-93.930384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64414,Pontiac,PONTC,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,40.91806,-88.625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64415,Rockford CSG,ROCKF,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.16572,-89.03686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64416,Sandoval,SANDL,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,38.589905,-89.149348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64417,Wilbraham,WILBR,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.10391,-72.38129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64418,Big Bear,BB000,2020.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.015287,-118.192851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64419,Elm Street,ELM,2020.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.791718,-71.141817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64420,Scribner Diesel Generation Facility,1,2020.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.668419,-96.669132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.961538461538462 -64420,Scribner Diesel Generation Facility,2,2020.0,2.0,2.0,2.0,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,SWPP,NE,41.668419,-96.669132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.961538461538462 -64421,Sunvestment Energy Group NY 63 LLC,DEWIT,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.0447,-76.0419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64422,GSPP Onyx New Brunswick LLC,NBOE1,2019.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.48071,-74.48185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64422,GSPP Onyx New Brunswick LLC,NBOE2,2019.0,0.4,0.4,0.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.48071,-74.48185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64422,GSPP Onyx New Brunswick LLC,NBOE3,2019.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.48071,-74.48185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64422,GSPP Onyx New Brunswick LLC,NBOE4,2019.0,0.1,0.1,0.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.48071,-74.48185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64423,TX7 Flat Top,TX7,2020.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,5.0,2020.0, , ,16.5,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.19791,-103.36067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64424,TX8 Worsham,TX8,2020.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,2.0,2020.0, , ,17.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.35658,-103.33645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64425,TX2 Port Lavaca,TX2,2020.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,3.0,2020.0, , ,11.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,28.58673,-96.68376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64426,Wilmot Energy Center LLC,WIL,2021.0,130.0,100.0,100.0,100,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.7692307692307692,WECC,TEPC,AZ,32.043502,-110.892676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64426,Wilmot Energy Center LLC,WILBA,2021.0,30.0,30.0,30.0,0,MWH,Batteries,OP,BA,4.0,2021.0, , ,60.0,30.0,30.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,TEPC,AZ,32.043502,-110.892676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64431,Point Beach Solar,PBS,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.28337,-87.555326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64432,Breckenridge Solar,BBA,2020.0,2.2,2.2,2.2,0,MWH,Batteries,OP,BA,11.0,2020.0, , ,4.7,2.2,2.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.17406,-72.315802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64432,Breckenridge Solar,BKS,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.17406,-72.315802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64433,Black Rock Wind,BRW,2022.0,115.0,115.0,115.0,0.7,WND,Onshore Wind Turbine,OP,WT,2.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,PJM,WV,39.366803,-79.108263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64434,Rounseville Solar,ROU,2020.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.738381,-70.828527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64435,Town of Ware - Canadian Tree(CSG),TOW,2021.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.263482,-72.295532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64436,Wilmarth Solar,WIL,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.025049,-71.353545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64436,Wilmarth Solar,WILB,2020.0,2.3,2.3,2.3,0,MWH,Batteries,OP,BA,2.0,2020.0, , ,4.6,2.3,2.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.025049,-71.353545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64437,Dresser Hill CSG,DRH,2021.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.081793,-72.006519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64438,Vallecitos Water District,VALLE,2021.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.212535,-117.177029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64439,"Pine Road Solar, LLC CSG",PINE,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.674386,-88.664448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,EGEN3,2017.0,1.2,1.2,1.2,0.1,DFO,Petroleum Liquids,SB,IC,3.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,ENG1A,2022.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,6.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,ENGN2,2010.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,ENGN4,1996.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,10.0,1996.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,ENGN5,2015.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,SB,IC,10.0,2015.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,ENGN6,2021.0,1.0,1.0,1.0,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64440,White Plains Hospital Medical Center,ENGN7,2022.0,1.8,1.8,1.8,0.1,DFO,Petroleum Liquids,SB,IC,11.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,NYIS,NY,41.032,-73.75296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64441,Valencia 3,266,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.88567,-115.53765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64442,Mt Pleasant Community Center,MPES,2022.0,0.7,0.7,0.7,0.7,MWH,Batteries,OP,BA,11.0,2022.0, , ,3.0,0.5,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.09999,-73.77155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64442,Mt Pleasant Community Center,MPPV,2022.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.09999,-73.77155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64443,Golden Solar,GOLD,2021.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.43415,-71.97124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64444,City of Paris Solar,PARIS,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,AR,35.301,-93.734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64445,"County of Dutchess, NY (Airport)",PV1,2020.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.631398,-73.876845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64446,Arlington Microgrid,AMGB,2021.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,10.0,2021.0, , ,1.4,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,BPAT,WA,48.15614,-122.1502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64446,Arlington Microgrid,AMGPV,2019.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BPAT,WA,48.15614,-122.1502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64447,Brazoria West,GEN1,2022.0,200.0,200.0,200.0,0.1,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.191,-95.663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64450,"Grissom Solar, LLC",GSF01,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.23891,-77.897552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64450,"Grissom Solar, LLC",GSF02,2021.0,10.0,10.0,10.0,5,MWH,Batteries,OP,BA,5.0,2021.0, , ,10.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,PJM,NC,36.23891,-77.897552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64451,Rosemond Solar Community Solar,1583,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.71133,-74.54163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64453,Volney II,VOLES,2021.0,3.0,3.0,3.0,0.1,MWH,Batteries,OP,BA,2.0,2021.0, , ,12.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.341,-76.354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64453,Volney II,VOLNE,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.341,-76.354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64454,"Merrimack Solar Farm, LLC",PV1,2019.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NH,42.811381,-71.501167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64456,"13 Mile Solar, LLC",FAC13,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.326656,-85.048584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64457,"Captain Solar, LLC",FACCA,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.100538,-83.781622,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64458,"Coldwater Solar, LLC",FAACW,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.093344,-83.777071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64459,"Geddes 1 Solar, LLC",FACG1,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.433775,-84.118662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64460,"Jack Francis Solar, LLC",FACJF,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.149282,-83.679171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64461,"May Shannon Solar, LLC",FACMS,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.151133,-83.690891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64462,"Stoneheart Solar, LLC",FACSH,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.50677,-83.996589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64463,"Workman Road Solar Farm, LLC",FACWR,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,44.273592,-85.212021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64464,"Clendenin A Community Solar, LLC CSG",CLEN,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,37.829241,-89.011483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64465,"Kern A Community Solar, LLC CSG",KERN,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,37.897506,-88.952399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64466,Lukuc B Community Solar LLC CSG,LUKC,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,37.836165,-89.042423,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64467,"CSG Mt. Morris 2, LLC",MTMO,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.065653,-89.433136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64468,"Tower Road Solar, LLC CSG",BOIG,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.805224,-88.925188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64470,"Interchange Solar, LLC",FACIC,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.099899,-83.771004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64471,Byron Highway Solar,BYHWY,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.847114,-121.617308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64472,Berry Road Solar,BERRY,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.639249,-82.328691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64473,Norman Solar,NORMN,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,35.226913,-97.360353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64476,"Swansboro Solar, LLC",1102,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.810913,-77.21041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64477,"Suncaster, LLC",1,2021.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.504069,-77.969554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64478,"1034 Catherine Lake Solar, LLC",1034,2021.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.78471,-77.498759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64479,Novel Handeland Solar LLC (CSG),HNDLD,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.782077,-95.785811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64480,Rice Two Solar CSG,TC3,2021.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.22012,-93.45757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64481,Arlington Energy Center II,AEC1,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.69088,-114.774944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64481,Arlington Energy Center II,AEC2B,2022.0,132.0,132.0,132.0,0,MWH,Batteries,OP,BA,8.0,2022.0, , ,528.0,132.0,132.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.69088,-114.774944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64482,Novel Stavem Solar LLC CSG,STAVM,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.66683,-95.40195,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64483,Novel Sunnyfield Farms Solar LLC CSG,SNYFD,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.245884,-92.546208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64486,Novel David Solar LLC CSG,DAVID,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.000397,-93.501616,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64487,Novel Huneke Solar LLC CSG,HNKE,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.267319,-92.664872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64488,Novel Denzer Solar LLC CSG,DNZR,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.101108,-91.762882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64496,"Hendershot Solar, LLC",FACHE,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,41.982616,-83.888515,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64497,"Hazel Solar, LLC",FACHA,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.402157,-85.4535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64498,"Geddes 2 Solar, LLC",FACG2,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.428036,-84.119325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64499,"Bullhead Solar, LLC",FACBH,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,41.96019,-84.67383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64500,"Angola Solar, LLC",FACAN,2021.0,2.0,2.0,2.0,0,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,41.834826,-85.007397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64502,7448 Candlewood Road,1,2020.0,1.5,1.5,1.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,PJM,MD,39.16,-76.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64503,Palmer Community Solar LLC CSG,PALM,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.491444,-92.793667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64504,Medin 2 Community Solar LLC CSG,MED2,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.479972,-92.776389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64505,Flathead Landfill to Gas Energy Facility,LFGE1,2009.0,1.6,1.6,1.6,0.8,LFG,Landfill Gas,OP,IC,6.0,2009.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,WECC,BPAT,MT,48.313067,-114.342137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.80181797778027 -64506,Cokato CSG,COK,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.087225,-94.215608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64508,Hall Solar Energy Storage,BAT1,2022.0,2.5,2.5,2.5,0,MWH,Batteries,OP,BA,1.0,2022.0, , ,5.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLE,NC,34.799,-77.947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64508,Hall Solar Energy Storage,SOL1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.799,-77.947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64514,Ludie Brown Solar Energy Storage,BAT1,2022.0,2.5,2.5,2.5,0,MWH,Batteries,OP,BA,1.0,2022.0, , ,2.5,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLE,NC,34.831,-77.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64514,Ludie Brown Solar Energy Storage,SOL1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.831,-77.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64515,Stamford Health,1,2001.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.9285 -64515,Stamford Health,13,2007.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2007.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.9286 -64515,Stamford Health,14,1984.0,0.4,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.9285 -64515,Stamford Health,15,2014.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.92856 -64515,Stamford Health,16,2014.0,2.5,2.5,2.5,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.92856 -64515,Stamford Health,4,2001.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.928625 -64515,Stamford Health,5,2001.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.928625 -64515,Stamford Health,7,1984.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,OP,IC,1.0,1984.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,CT,41.055636,-73.55198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.9286 -64516,Lowe Solar Energy Storage,BAT1,2022.0,2.5,2.5,2.5,0,MWH,Batteries,OP,BA,1.0,2022.0, , ,5.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLE,NC,35.718429,-79.909481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64516,Lowe Solar Energy Storage,SOL1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.718429,-79.909481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64517,Department of Justice,DOJ,2020.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.548056,-121.44855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64518,CA Institute for Women,CIW,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.949722,-117.636427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64519,Centinela State Prison,CENSP,2019.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,32.825833,-115.782916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64520,Spencer Meadow Solar Energy Storage,BAT1,2022.0,2.5,2.5,2.5,0,MWH,Batteries,OP,BA,1.0,2022.0, , ,5.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLE,NC,35.718429,-79.909481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64520,Spencer Meadow Solar Energy Storage,SOL1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.718429,-79.909481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64521,Calipatria State Prison,CALSP,2019.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IID,CA,33.163055,-115.484805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64522,Old Cedar Solar Energy Storage,BAT1,2021.0,1.3,1.3,1.3,0,MWH,Batteries,OP,BA,8.0,2021.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLE,NC,35.713,-79.788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64522,Old Cedar Solar Energy Storage,SOL1,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.713,-79.788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64523,Atascadero State Hospital,ATASC,2020.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.463333,-120.634011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64524,SoCore Clovis 1,79100,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,NM,34.423035,-103.254078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64525,Troupsburg,TB1,2020.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.0121,-77.3751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64526,Raboth - Marion Drive,RABTH,2021.0,3.5,3.5,3.5,3.5,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.96951,-70.72541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64527,Flatwood Farm,16507,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.588,-79.0323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64528,Gambit Energy Storage - Angleton Storage,1,2021.0,100.0,100.0,100.0,0,MWH,Batteries,OP,BA,6.0,2021.0, , ,200.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.16801,-95.445062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64533,Fort Green Solar Power Plant,PV1,2022.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPC,FL,27.641125,-81.941581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64535,Camden Solar LLC,KOV4A,2021.0,20.0,20.0,20.0,1,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0,11,2056,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.30786,-76.144486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64538,Corazon Energy LLC,KOV4A,2021.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,27.634677,-99.258329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64542,Coxsackie Solar,1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.33337,-73.8475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64546,Wynwood Energy Storage,1,2019.0,10.0,10.0,10.0,0.7,MWH,Batteries,OP,BA,12.0,2019.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,FPL,FL,25.798978,-80.197098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64549,"Smithfield Solar Farm, LLC",PV1,2020.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.92237,-71.520368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64552,Downtown Generation Plant,1,2020.0,2.5,2.5,2.5,0.8,DFO,Petroleum Liquids,OP,IC,7.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.30399,-94.46049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.714285714285714 -64552,Downtown Generation Plant,2,2020.0,2.5,2.5,2.5,0.8,DFO,Petroleum Liquids,OP,IC,7.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,MRO,MISO,IA,41.30399,-94.46049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.714285714285714 -64553,Riverstart Solar Park LLC,GEN01,2021.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IN,40.046244,-85.045087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64554,Bright Field Solar LLC(CSG),BF,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.46,-77.73832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64555,Bright Oak Solar LLC(CSG),BO,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.033,-78.24481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64556,Bright Hill Solar LLC(CSG),BH,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.46723,-77.70378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64557,River Valley LLC (NY) (CSG),RV,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.06724,-78.47783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64559,Wallingford Solar,WS,2021.0,16.1,16.1,16.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.44175,-72.83737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64560,Tioga Solar South(CSG),TSS,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.14134,-76.28797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64561,Tioga Solar North(CSG),TSN,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.14134,-76.28797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64562,Washingtonville(CSG),WAS,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.424,-74.167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64563,Novel Stein Solar LLC CSG,STEIN,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.389128,-92.676058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64564,Arlington Energy Center III,AEC3,2022.0,131.0,131.0,131.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.69088,-114.774944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64564,Arlington Energy Center III,AEC3B,2022.0,110.0,110.0,110.0,0,MWH,Batteries,OP,BA,8.0,2022.0, , ,440.0,110.0,110.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.69088,-114.774944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64565,Apalachicola,GPAPA,2019.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.33632,-82.06055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64566,"Central Line Solar, LLC",CNTRL,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,32.834322,-111.56803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64568,"Letts Creek Solar, LLC",LETTS,2022.0,15.0,15.0,15.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.274575,-84.135276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64569,Arnold Cochran,GPACO,2020.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.399366,-83.343779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64570,Columbia Substation,GPCOL,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.567718,-82.299071,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64571,Coody Cochran,GPCOD,2019.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.367009,-83.374275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64572,Dudley,1,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.054345,-71.978849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64573,Joe Jenny,1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.10357,-71.81539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64574,Westport Community Solar Garden,1,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.68994,-71.093832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64575,Mendon,1,2017.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.09749,-71.50187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64577,Minisink CSG,MIN,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.353476,-74.515411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64578,Slate Hill(CSG),SLT,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.363,-74.503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64579,Broadway 2 - UC Riverside,GEN1,2014.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.97034,-117.33101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64580,Broadway 2 - Tucson Phase II,GEN,2013.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2013.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.24817,-111.2611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64581,"Pullman Solar, LLC",PULMN,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.471622,-86.096859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64582,Shawnee - GA,GPSHA,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.107648,-81.980751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64583,Westberry Jesup,GPWJE,2020.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.602803,-81.932581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64584,Fountain Folkston,GPFTF,2019.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.916375,-81.960231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64585,Harris Shiloh,GPHAR,2020.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.797582,-84.69659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64586,Polk Cedartown,GPPOL,2019.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.019643,-85.280881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64587,Dover,1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.22737,-71.24891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64588,Adirondack A+B Community Solar Garden,1,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.679012,-71.111058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64589,Westport B Community Solar Garden,1,2018.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.70463,-71.08973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64590,O'Brien Solar Fields,OBSFN,2021.0,8.3,8.3,8.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.997665,-89.458945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64590,O'Brien Solar Fields,OBSFS,2021.0,8.3,8.3,8.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.997665,-89.458945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64590,O'Brien Solar Fields,OBSFW,2021.0,5.5,5.5,5.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,42.997665,-89.458945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64591,"El Algodon Alto Wind Farm, LLC",EEA,2022.0,200.2,194.0,194.0,0.1,WND,Onshore Wind Turbine,OP,WT,5.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9690309690309691,0.9690309690309691,TRE,ERCO,TX,27.992706,-97.743983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64592,3 MW LLC,GEN1,2013.0,1.0,1.0,1.0,0.1,OG,Other Gases,OP,IC,7.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.9,-107.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.482173061643133 -64592,3 MW LLC,GEN2,2013.0,1.0,1.0,1.0,0.1,OG,Other Gases,OP,IC,7.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.9,-107.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.482173061643133 -64592,3 MW LLC,GEN3,2013.0,1.0,1.0,1.0,0.1,OG,Other Gases,OP,IC,7.0,2013.0, , ,,,,,other,gas,Other Gas,Internal Combustion Engine,1.0,1.0,WECC,WACM,CO,38.9,-107.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.482173061643133 -64593,Bellisario Solar 1,B1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.449783,-76.121116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64594,Bellisario Solar 2,B1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.451944,-76.121116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64595,Bellisario Solar 3,B1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.452956,-76.13176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64600,Prologis L.P,PLDPL,2018.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.725044,-121.529783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64601,County of San Diego COC Hybrid,ESS,2020.0,0.4,0.5,0.5,0.4,MWH,Batteries,OP,BA,7.0,2020.0, , ,1.0,0.4,0.4,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.833645,-117.131123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64601,County of San Diego COC Hybrid,PV,2020.0,1.7,1.7,1.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6470588235294119,WECC,CISO,CA,32.833645,-117.131123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64602,"Kirby Road Solar, LLC",KBR,2021.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.77897,-76.923695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64603,"TPE King Solar Holdings1, LLC (CSG)",KING1,2022.0,12.7,12.7,12.7, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.979212,-71.581309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64604,MNCPPC Randall Farm,X0009,2020.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,MD,38.831624,-76.803146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64606,Burns Solar One LLC,64606,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.47653,-76.85446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64607,MC6 Hydro Facility,GEN1,2021.0,2.3,2.3,2.3,0.1,WAT,Conventional Hydroelectric,OP,HY,4.0,2021.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,WECC,IPCO,ID,43.485529,-116.355047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64608,"Hostetter Solar One, LLC",64608,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.66448,-77.70058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64610,Amazon MDW6 Solar Project,MDW6,2020.0,1.9,1.9,1.6, ,SUN,Solar Photovoltaic,OA,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8421052631578948,RFC,PJM,IL,41.6721,-88.11549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64611,SEPV Sierra,1,2020.0,8.3,8.3,8.3,0,MWH,Batteries,OP,BA,4.0,2020.0, , ,3.4,6.0,6.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.733011,-118.138525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64611,SEPV Sierra,2,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.733011,-118.138525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64612,Kearny North Energy Storage,KNES,2022.0,10.0,10.0,10.0,10,MWH,Batteries,OP,BA,2.0,2022.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.83347,-117.13443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64614,Kearny South Energy Storage,KSES,2022.0,10.0,10.0,10.0,10,MWH,Batteries,OP,BA,2.0,2022.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.832886,-117.132292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64617,Kearsarge William Way,BWBAT,2021.0,2.6,2.6,2.6,2.6,MWH,Batteries,OP,BA,12.0,2021.0, , ,9.5,2.6,2.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.081919,-71.492448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64617,Kearsarge William Way,BWW,2021.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.081919,-71.492448,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64618,Kearsarge Haverhill,HABAT,2021.0,2.0,2.0,2.0,2,MWH,Batteries,OP,BA,3.0,2021.0, , ,9.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.75288,-71.046965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64618,Kearsarge Haverhill,HAV,2021.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.75288,-71.046965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64620,Kearsarge Montague BD(CSG),MBBAT,2021.0,1.3,1.3,1.3,1.3,MWH,Batteries,OP,BA,11.0,2021.0, , ,5.1,1.3,1.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.585933,-72.558011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64620,Kearsarge Montague BD(CSG),MBD,2021.0,2.5,2.5,2.5,2.5,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.585933,-72.558011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64622,Diamond H Dairy Power,GEN1,2021.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,10.0,2021.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.01618,-120.37279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.048717948717949 -64622,Diamond H Dairy Power,GEN2,2021.0,1.0,1.0,1.0,0.5,OBG,Other Waste Biomass,OP,IC,10.0,2021.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,1.0,1.0,WECC,CISO,CA,37.01618,-120.37279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.048717948717949 -64623,Freeborn Wind Farm,FBW01,2021.0,218.0,200.0,200.0,1,WND,Onshore Wind Turbine,OP,WT,5.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9174311926605505,0.9174311926605505,MRO,MISO,MN,43.513056,-93.188617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64624,Hudson - High Desert Hybrid,BESS1,2021.0,50.0,50.0,50.0,0,MWH,Batteries,OP,BA,12.0,2021.0, , ,50.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.6365,-117.3724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64624,Hudson - High Desert Hybrid,GEN1,2021.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.6365,-117.3724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64627,Blodgett Solar CSG,BLD,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.678889,-71.445111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64627,Blodgett Solar CSG,BLO,2021.0,5.0,5.0,5.0,5,MWH,Batteries,OP,BA,8.0,2021.0, , ,4.9,2.2,2.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.678889,-71.445111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64628,Slidematic at Rockford,SLIDE,2022.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.206076,-89.074384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64629,JM Huber at Quincy,JMH,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.859083,-91.399685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64630,"Rabbitbrush Solar, LLC",GEN01,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.83,-118.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64630,"Rabbitbrush Solar, LLC",RBBAT,2022.0,20.0,20.0,20.0, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,50.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.83,-118.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64631,Jamison Solar (FL),1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.806645,-81.955676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64637,Big River Solar,BRS,2022.0,149.0,149.0,149.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IL,38.050141,-88.295525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64638,"Borderlands Wind, LLC",WBB,2021.0,100.0,100.0,100.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,TEPC,NM,34.159842,-108.894458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64639,TG East,ESCA,2022.0,336.0,336.0,336.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.746323,-99.665516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64640,Hot Springs Energy Storage & Microgrid,ES1,2022.0,4.4,4.4,4.4, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,4.4,4.4,4.4,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,CPLW,NC,35.89071,-82.82513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64640,Hot Springs Energy Storage & Microgrid,PV1,2022.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLW,NC,35.89071,-82.82513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64641,Big Bend II Solar,2,2022.0,45.8,45.8,45.8, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.781988,-82.390452,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64642,P52ES 1755 Henryton Rd Phase 1 LLC CSG,HCSG,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.32015,-76.92965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64643,P52ES 1755 Henryton Rd Phase 2 LLC,HVNM,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.32015,-76.92965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64644,White Marsh Solar,WM,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.4167,-76.403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64645,Mason Solar One LLC,MAS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.69196,-75.91848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64646,Pittman Solar One LLC,PITT,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.68753,-78.108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64647,"Bulldog Solar One, LLC",QAB,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.9152,-76.6972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64648,Pivot Solar 4 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.228419,-104.777024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64649,Pivot Solar 1 LLC (CSG),SC,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.414671,-108.090731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64650,Pivot Solar 14 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.266898,-103.657514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64651,Pivot Solar 2 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.266898,-103.657514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64652,Pivot Solar 15 LLC (CSG),SC,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.266856,-103.65937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64653,Pivot Solar 7 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.523107,-107.815344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64654,Pivot Solar 3 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.414671,-108.090731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64655,Pivot Solar 8 LLC (CSG),SC,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,40.241166,-104.771384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64657,Magnolia Solar,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.917716,-82.048697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64661,Heartland Divide II,HDII,2022.0,200.0,200.0,200.0,0,WND,Onshore Wind Turbine,OP,WT,3.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,41.720323,-94.928422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64662,"Sac County Wind, LLC",SAC,2021.0,80.0,80.0,80.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.421154,-94.995083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64663,WLWPCF Cogeneration Facility,EG075,2020.0,1.2,1.1,1.1,0.5,OBG,Other Waste Biomass,OP,IC,6.0,2020.0, , ,,,,,biomass,biomass,Other Biomass Gas,Internal Combustion Engine,0.9166666666666667,0.9166666666666667,WECC,PGE,OR,45.00812,-123.05286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.111145320197044 -64664,"Clark Road Solar 1, LLC",10604,2020.0,5.0,5.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,NPCC,ISNE,MA,42.59613,-72.020244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64664,"Clark Road Solar 1, LLC",10605,2021.0,3.3,3.3,3.1, ,MWH,Batteries,OP,BA,11.0,2021.0, , ,3.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,0.9393939393939394,NPCC,ISNE,MA,42.59613,-72.020244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64665,Great Prairie Wind,GR01,2022.0,1027.0,1027.0,1027.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,TX,36.3075,-101.53222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64673,Acton,ACT,2021.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,43.543731,-70.912751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64674,Van Buren,VAN,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.984045,-78.527499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64675,Naples,NAP,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,43.970601,-70.576964,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64676,Lake Herman,359,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.0971,-122.1417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64677,Ryland Road Solar,RYLND,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.27585,-76.64867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64678,Windsor Hwy 17 Solar,WDH17,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,NC,36.021253,-76.872438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64679,"Hamlin Solar 1, LLC",HS1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.30141,-77.94429,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64680,"Clifton Park Solar 1, LLC",CP1,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.839013,-73.834722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64681,"Clifton Park Solar 2, LLC",CP2,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.84037,-73.83546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64682,Adams,ADA,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.695185,-82.528284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64686,Orangeville Storage,65002,2022.0,24.7,20.0,20.0, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,20.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.8097165991902835,0.8097165991902835,NPCC,NYIS,NY,42.738686,-78.239731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64687,Van der Hoek Solar Array/ Dairy,VDH,2017.0,2.4,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.504015,-120.098148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64688,Plymouth Wind,65003,2022.0,202.7,200.0,200.0,0.1,WND,Onshore Wind Turbine,OP,WT,1.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9866798223976321,0.9866798223976321,MRO,MISO,IA,42.842969,-95.941257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64689,MD - PR97 (CSG),90029,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,MD,38.934666,-76.714819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64690,Todd Solar,65004,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.613328,-75.835207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64692,Fredonia Solar LLC,533,2021.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,42.453047,-79.3408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64693,Dos Palos,299,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.981755,-120.625358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64696,"Dunstable Solar 1, LLC",DUBLN,2021.0,4.5,4.5,4.5,4.1,MWH,Batteries,OP,BA,4.0,2021.0, , ,20.2,4.5,4.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.6656,-71.5168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64696,"Dunstable Solar 1, LLC",DUNST,2021.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.6656,-71.5168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64697,Swan Garden,CGS,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.7204,-95.2653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64698,"Blue Prairie Solar, LLC",508,2021.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.285255,-90.9158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64700,"El Dorado Solar, LLC",390,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.637,-121.059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64701,LeConte Energy Storage,LCES,2022.0,125.0,125.0,125.0,0,MWH,Batteries,OP,BA,9.0,2022.0, , ,250.0,125.0,125.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,32.677208,-115.670203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64702,"Stanly Solar, LLC",PGR32,2022.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.289722,-80.235556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64705,Fairhaven MA 2,FHAF,2021.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.666,-70.87831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64708,Connexus Solar Baldwin 1BDN,C1BDN,2021.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,MN,45.546415,-93.593675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64710,White Mesa Wind,WM001,2021.0,500.6,500.6,500.6,50,WND,Onshore Wind Turbine,OP,WT,10.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,30.91,-101.263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64712,Sanborn BESS 1,ESSB1,2021.0,100.0,100.0,100.0,0.5,MWH,Batteries,OP,BA,9.0,2021.0, , ,200.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,35.027264,-118.139236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64713,Sanborn BESS 2,ESSB2,2021.0,100.0,100.0,100.0,0.5,MWH,Batteries,OP,BA,11.0,2021.0, , ,400.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,35.027264,-118.140078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64714,Rice Lake Solar Array,RLK01,2021.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.526558,-91.756931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64715,Dusenberry,DSNBR,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,42.7677,-73.6247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64716,Knapp East (CSG),KNPPE,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.0134,-78.4601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64717,Main Rd Community Solar,MAINR,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,42.9976,-78.5047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64718,Redman North Community Solar,RDMNN,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.2752,-77.966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64719,Glenmere Lake,BESS,2021.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,6.0,2021.0, , ,7.5,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,NY,41.3698,-74.366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64719,Glenmere Lake,GLNMR,2021.0,2.0,2.0,2.0,0,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,41.3698,-74.366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64720,Knapp West(CSG),KNPPW,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.0148,-78.4609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64721,Rowe (CSG),RWEAV,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,42.0687,-78.3752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64722,Redman South Community Solar,RDMNS,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.2743,-77.965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64723,Alton Road Solar,50835,2019.0,13.9,13.9,11.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7913669064748201,NPCC,ISNE,RI,41.407547,-71.748328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64724,Townline Community Solar,TWNLN,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.0421,-78.1337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64725,Williams Rd,WLMRD,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,NY,43.204,-78.943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64726,West Haydenville PJ Community Solar,BESS,2022.0,3.6,3.6,3.6, ,MWH,Batteries,OP,BA,9.0,2022.0, , ,8.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.3831,-72.7111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64726,West Haydenville PJ Community Solar,WHAYD,2022.0,5.0,5.0,5.0,0,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.3831,-72.7111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64727,Brookwood Drive Community Solar,BESS,2022.0,3.0,3.0,3.0, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,8.0,3.0,3.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.59,-71.0942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64727,Brookwood Drive Community Solar,BRKWD,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.59,-71.0942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64730,IL17021 Brush Creek I CSG,BCK17,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,IL,42.452243,-89.638813,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64731,Maple(CSG),M2,2021.0,2.3,2.3,2.3,2.3,MWH,Batteries,OP,BA,11.0,2021.0, , ,4.8,2.2,2.2,OTH,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.062793,-71.264331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64731,Maple(CSG),MAPLE,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.062793,-71.264331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64732,Segunda II (CSG),SEGU2,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.117733,-88.863709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64733,Woodlawn II (CSG),WOOD2,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.392408,-87.594818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64734,Dodds (CSG),DOODS,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.379459,-89.842957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64735,Olmstead II CSG,OLMS2,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.371669,-89.796287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64736,Wolfcastle,WOLFC,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.9506,-88.8308,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64738,Holliday Creek Solar,HCS,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.56867,-94.10277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64741,Morgan Solar 1 CSG,MORG1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.82245,-90.55519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64742,Morgan Solar 1b CSG,MOR1B,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.82215,-90.55457,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64743,Tierra Buena Energy Storage,TB1,2022.0,2.5,2.5,2.5,0.1,MWH,Batteries,OP,BA,6.0,2022.0, , ,2.5,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,39.17133,-121.66209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64743,Tierra Buena Energy Storage,TB2,2022.0,2.5,2.5,2.5,0.1,MWH,Batteries,OP,BA,6.0,2022.0, , ,2.5,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,39.17133,-121.66209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64746,Goldman Sachs Carports Solar,GSCS,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.76573,-73.75055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64747,Fuel Cell 3245 Yates Avenue,C3245,2022.0,5.0,5.0,5.0,0.1,NG,Other Natural Gas,OP,FC,8.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.87317,-73.85519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64748,Fuel Cell 18A Sneden Avenue,CR18A,2020.0,3.6,3.5,3.5,0.1,NG,Other Natural Gas,OP,FC,12.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9722222222222222,0.9722222222222222,NPCC,NYIS,NY,40.540377,-74.17676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64749,Fuel Cell 18B Sneden Avenue,CR18B,2020.0,4.2,4.0,4.0,0.1,NG,Other Natural Gas,OP,FC,12.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,0.9523809523809523,0.9523809523809523,NPCC,NYIS,NY,40.540457,-74.176559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64750,Glass Sands Wind Facility,1,2021.0,117.0,118.3,118.3,2.2,WND,Onshore Wind Turbine,OP,WT,11.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,OK,34.514165,-96.915909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64751,Amazon PSP1,267,2021.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.92624,-116.99442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64753,FDX010.0 FedEx Fuel Cell,FDX10,2018.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.5948,-72.71316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64755,Arbor Hill Solar,AHS,2022.0,25.0,24.0,24.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96,0.96,MRO,MISO,IA,41.4669,-94.26271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64757,Blue Springs,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,FL,30.782897,-85.078686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64760,Ocean State BTM,MESS,2022.0,3.0,3.0,3.0, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,10.0,3.0,0.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,RI,41.938,-71.685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64763,Rumford ESS,RUM,2021.0,4.9,4.9,4.9,4.9,MWH,Batteries,OP,BA,6.0,2021.0, , ,10.0,4.9,4.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,ME,44.532169,-70.518959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64764,Madison BTM,MBTM,2020.0,1.5,1.5,1.5,1.5,MWH,Batteries,OP,BA,1.0,2020.0, , ,3.1,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,ME,44.804,-69.841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64765,Madison ESS,MESS,2019.0,4.9,4.9,4.9,4.9,MWH,Batteries,OP,BA,6.0,2019.0, , ,10.0,4.9,4.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,ME,44.793,-69.876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64766,Redwood Coast Airport Microgrid,RCAM1,2021.0,2.2,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8181818181818181,0.8181818181818181,WECC,CISO,CA,40.967222,-124.104444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64766,Redwood Coast Airport Microgrid,RCAM2,2021.0,2.2,1.8,1.8,0,MWH,Batteries,OP,BA,12.0,2021.0, , ,8.8,1.5,1.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.8181818181818181,0.8181818181818181,WECC,CISO,CA,40.967222,-124.104444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64769,WAL194,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.776274,-94.974458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.308768421052632 -64769,WAL194,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.776274,-94.974458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.308768421052632 -64769,WAL194,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.776274,-94.974458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.308768421052632 -64770,WAL202,GEN1,2020.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,OP,IC,6.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.100353,-96.800708,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.631578947368421 -64771,WAL266,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.922049,-97.081986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.992332016725934 -64771,WAL266,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.922049,-97.081986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.992332016725934 -64771,WAL266,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.922049,-97.081986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.992332016725934 -64772,WAL284,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.576159,-97.130048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.437109919964756 -64772,WAL284,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.576159,-97.130048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.437109919964756 -64772,WAL284,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.576159,-97.130048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.437109919964756 -64773,WAL407,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.089722,-97.729279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.132579545454545 -64773,WAL407,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.089722,-97.729279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.132579545454545 -64773,WAL407,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.089722,-97.729279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.132579545454545 -64774,WAL414,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.857046,-98.499006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.727189050062215 -64774,WAL414,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.857046,-98.499006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.727189050062215 -64774,WAL414,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.857046,-98.499006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.727189050062215 -64775,WAL447,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.395822,-100.901074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.332119588242703 -64775,WAL447,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.395822,-100.901074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.332119588242703 -64775,WAL447,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.395822,-100.901074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.332119588242703 -64776,WAL452,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.243944,-98.245055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.440753303047742 -64776,WAL452,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.243944,-98.245055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.440753303047742 -64776,WAL452,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.243944,-98.245055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.440753303047742 -64777,WAL456,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,25.976057,-97.519445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.974485541487352 -64777,WAL456,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,25.976057,-97.519445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.974485541487352 -64777,WAL456,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,25.976057,-97.519445,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.974485541487352 -64778,WAL461,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.702031,-100.482722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.702702702702704 -64778,WAL461,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.702031,-100.482722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.702702702702704 -64778,WAL461,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.702031,-100.482722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.702702702702704 -64779,IGS Frankfort 2 CSG,FRAN2,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,IL,41.49563,-87.7876,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64780,Hermsdorf Solar,1,2022.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.0596,-89.2609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64781,Kearsarge Westerly,WES,2020.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.385761,-71.732202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64782,Kearsarge Fogland,TIV,2020.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.555955,-71.188221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64783,Kearsarge East Providence,EPRO,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.833746,-71.369746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64784,Long John CSG,LJOHN,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.69398,-88.65309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64785,Woodlawn CSG,WOOD,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.392408,-87.594633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64786,Hurricane Creek CSG,HRCRK,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,37.789506,-89.058709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64787,Viking Solar CSG,VIKNG,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,39.405457,-89.995709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64788,Freehold(CSG),FRHOL,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.370433,-74.038047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64789,Moraine CSG,MORAI,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.379212,-88.843405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64790,OER Checkerspot,CHECK,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.783572,-76.574153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64791,WAL462,GEN1,2019.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.421764,-95.230784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.47008547008547 -64792,WAL504,GEN1,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.26514,-94.832945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.1665 -64792,WAL504,GEN2,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.26514,-94.832945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.1665 -64792,WAL504,GEN3,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.26514,-94.832945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.1665 -64793,WAL522,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.894458,-95.06497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.248359081658975 -64793,WAL522,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.894458,-95.06497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.248359081658975 -64793,WAL522,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.894458,-95.06497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.248359081658975 -64794,WAL529,GEN1,2019.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.372305,-95.000453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.89795918367347 -64795,WAL536,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.48078,-99.698015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.210996917956711 -64795,WAL536,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.48078,-99.698015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.210996917956711 -64795,WAL536,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.48078,-99.698015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.210996917956711 -64796,WAL537,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.8957,-102.332512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64796,WAL537,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.8957,-102.332512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64796,WAL537,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.8957,-102.332512,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64797,WAL546,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.558105,-95.761271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.876712328767123 -64797,WAL546,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.558105,-95.761271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.876712328767123 -64797,WAL546,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.558105,-95.761271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.876712328767123 -64798,WAL565,GEN1,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.101054,-96.403764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.544917275413624 -64798,WAL565,GEN2,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.101054,-96.403764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.544917275413624 -64798,WAL565,GEN3,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.101054,-96.403764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.544917275413624 -64799,WAL602,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.12423,-95.45769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.986535353535352 -64799,WAL602,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.12423,-95.45769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.986535353535352 -64799,WAL602,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.12423,-95.45769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.986535353535352 -64800,WAL744,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.995621,-95.176468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.136982843791241 -64800,WAL744,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.995621,-95.176468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.136982843791241 -64800,WAL744,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.995621,-95.176468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.136982843791241 -64801,WAL752,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.64662,-95.161425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.19047142857143 -64801,WAL752,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.64662,-95.161425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.19047142857143 -64801,WAL752,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.64662,-95.161425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.19047142857143 -64802,WAL768,GEN1,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.789117,-95.722232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.383056949178506 -64802,WAL768,GEN2,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.789117,-95.722232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.383056949178506 -64802,WAL768,GEN3,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.789117,-95.722232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.383056949178506 -64803,WAL772,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.721093,-95.646224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.095712871287127 -64803,WAL772,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.721093,-95.646224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.095712871287127 -64803,WAL772,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.721093,-95.646224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.095712871287127 -64804,WAL791,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.769271,-98.043187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.053330354578241 -64804,WAL791,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.769271,-98.043187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.053330354578241 -64804,WAL791,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.769271,-98.043187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.053330354578241 -64805,WAL849,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.064779,-95.429453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.469234483679738 -64805,WAL849,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.064779,-95.429453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.469234483679738 -64805,WAL849,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.064779,-95.429453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.469234483679738 -64806,WAL872,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.573168,-95.283899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.345675925925926 -64806,WAL872,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.573168,-95.283899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.345675925925926 -64806,WAL872,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.573168,-95.283899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.345675925925926 -64807,WAL896,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.673532,-97.036234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.405360150698176 -64807,WAL896,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.673532,-97.036234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.405360150698176 -64807,WAL896,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.673532,-97.036234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.405360150698176 -64808,WAL897,GEN1,2021.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.896466,-102.907161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.32 -64809,WAL940,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.755036,-97.433843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.137817307692309 -64809,WAL940,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.755036,-97.433843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.137817307692309 -64809,WAL940,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.755036,-97.433843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.137817307692309 -64810,WAL947,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.673162,-96.612131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169793984479648 -64810,WAL947,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.673162,-96.612131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169793984479648 -64810,WAL947,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.673162,-96.612131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169793984479648 -64812,WAL972,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.811848,-97.424739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.359 -64812,WAL972,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.811848,-97.424739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.359 -64812,WAL972,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.811848,-97.424739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.359 -64813,WAL1040,GEN1,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.877618,-95.651482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.53567465389119 -64813,WAL1040,GEN2,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.877618,-95.651482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.53567465389119 -64813,WAL1040,GEN3,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.877618,-95.651482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.53567465389119 -64814,WAL1062,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.551973,-95.159125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.340375865118952 -64814,WAL1062,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.551973,-95.159125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.340375865118952 -64814,WAL1062,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.551973,-95.159125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.340375865118952 -64815,WAL1103,GEN1,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.998163,-95.486202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.279130081300814 -64815,WAL1103,GEN2,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.998163,-95.486202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.279130081300814 -64815,WAL1103,GEN3,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.998163,-95.486202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.279130081300814 -64816,WAL1232,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.080808,-97.457755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.222225806451611 -64816,WAL1232,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.080808,-97.457755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.222225806451611 -64816,WAL1232,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.080808,-97.457755,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.222225806451611 -64817,"Energix Leatherwood, LLC",ENX10,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,VA,36.687071,-79.709472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64818,Connexus Solar Stanford 1STF,C1STF,2021.0,7.3,7.3,7.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.41715,-93.38854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64820,"Broadway Road Solar, LLC",OS,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.457056,-79.094164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64821,FELPS 1 - Calaveras,FLPS1,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.220361,-98.250865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64822,"Wyse Fork Solar Farm, LLC",OS,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.21377,-77.503222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64823,FELPS 2 - Calaveras,FLPS2,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.220942,-98.251671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64824,FELPS 3 - Floresville South,FLPS3,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.129219,-98.106298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64825,FELPS 4 - Floresville South,FLPS4,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.128666,-98.107043,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64826,FELPS 5- Floresville South,FLPS5,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.128151,-98.107343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64827,FELPS 6- Floresville West,FLPS6,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.13398,-98.193353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64828,FELPS 7- Floresville West,FLPS7,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.133613,-98.192753,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64829,WAL1272,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.691018,-100.91789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.048730304116392 -64829,WAL1272,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.691018,-100.91789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.048730304116392 -64829,WAL1272,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.691018,-100.91789,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.048730304116392 -64830,"Brightwood Solar, LLC",OS,2021.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.384949,-122.084421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64831,Oak Leaf Solar XVIII LLC,DIA7,2021.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SWPP,CO,39.892563,-104.668494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64836,Catalina Express,CATAL,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.749947,-118.278469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64837,Marina South,MARIN,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.717993,-118.275617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64838,"SR Clay, LLC",CLAY,2022.0,106.0,106.0,106.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.544831,-84.900566,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64840,"SR Cedar Springs, LLC",SRCS,2022.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.2453,-85.086975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64841,"SR DeSoto I, LLC",SOTOI,2022.0,165.0,165.0,165.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.886486,-84.021586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64842,"SR Turkey Creek, LLC",SRTC,2022.0,50.0,50.0,50.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,KY,37.592994,-84.567965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64843,"SR Washington I, LLC",SRWA1,2021.0,9.0,9.0,9.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,36.347384,-82.598402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64846,Prairie,PR000,2021.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.239244,-118.583575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64854,Primient,GTG01,2021.0,30.9,28.6,34.2,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9255663430420713,1.0,RFC,MISO,IN,40.376319,-86.843695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64854,Primient,GTG02,2021.0,30.9,28.6,34.2,0.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.9255663430420713,1.0,RFC,MISO,IN,40.376319,-86.843695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64856,Calhoun Solar,65009,2022.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.338532,-85.049019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64860,Billings Road,286,2021.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.52344,-72.36986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64861,Deer Creek 2,392,2021.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.628,-120.984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64862,Strobus,515,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,WI,44.4332,-90.85707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64863,ER Salvage Yard,284,2021.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.54628,-72.61194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64866,USS Wildcat Solar LLC,USSWC,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.394128,-92.606278,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64868,Keeversville Solar CSG,KEEV,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,IL,41.25559,-88.21848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64869,Helen CSG 1 LLC,HLCSG,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.7893,-94.05075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64870,USS Quail Solar LLC,USSQL,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.260208,-93.791733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64871,USS Danube Solar LLC,USSDA,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.795592,-95.103019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64872,"Panorama Wind, LLC",PANWD,2022.0,145.0,145.0,145.0,2,WND,Onshore Wind Turbine,OP,WT,6.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,WACM,CO,40.952057,-103.907562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64873,Pittsburgh Airport Gas Plant,GEN1,2021.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.495,-80.233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.391054877151685 -64873,Pittsburgh Airport Gas Plant,GEN2,2021.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.495,-80.233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.391054877151685 -64873,Pittsburgh Airport Gas Plant,GEN3,2021.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.495,-80.233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.391054877151685 -64873,Pittsburgh Airport Gas Plant,GEN4,2021.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.495,-80.233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.391054877151685 -64873,Pittsburgh Airport Gas Plant,GEN5,2021.0,4.4,4.4,4.4,2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.495,-80.233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.391054877151685 -64874,PG Solar 1,SGEN1,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,40.481959,-80.253073,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64875,276 Federal Rd(CSG),276FB,2021.0,3.3,3.3,3.3,3.3,MWH,Batteries,OP,BA,11.0,2021.0, , ,6.9,3.3,3.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.805144,-70.725244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64875,276 Federal Rd(CSG),276FP,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.805144,-70.725244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64876,0 Hammond St CSG,0HAMP,2021.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.808547,-70.726675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64876,0 Hammond St CSG,OHAMB,2021.0,5.0,5.0,5.0,5,MWH,Batteries,OP,BA,10.0,2021.0, , ,4.9,2.2,2.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.808547,-70.726675,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64877,Edwards Sanborn E3,BESS,2021.0,11.0,11.0,11.0, ,MWH,Batteries,OP,BA,12.0,2021.0, , ,31.5,13.2,13.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.946324,-118.126489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64877,Edwards Sanborn E3,PV,2021.0,27.1,27.1,27.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.946324,-118.126489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64878,Edwards Sanborn E1A,BESS,2022.0,144.0,144.0,144.0, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,272.0,130.0,130.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.961922,-118.124208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64878,Edwards Sanborn E1A,PV,2022.0,149.3,149.3,149.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.961922,-118.124208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64879,Edwards Sanborn E2,BESS,2022.0,120.0,120.0,120.0, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,250.0,122.8,122.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.941507,-118.129025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64879,Edwards Sanborn E2,PV,2021.0,137.8,137.8,137.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.941507,-118.129025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64880,Venture 1 - 1A CSG,75020,2021.0,1.5,1.5,1.5,1.5,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.752297,-104.667388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64881,NMSU Solar and Storage,NMSUB,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,5.0,2022.0, , ,4.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,EPE,NM,32.286048,-106.744529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64881,NMSU Solar and Storage,NMSUF,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,EPE,NM,32.286048,-106.744529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64883,WAL1455,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.764483,-97.169261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.937801628561314 -64883,WAL1455,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.764483,-97.169261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.937801628561314 -64883,WAL1455,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.764483,-97.169261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.937801628561314 -64884,WAL1801,GEN1,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.668729,-97.131834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64884,WAL1801,GEN2,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.668729,-97.131834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64884,WAL1801,GEN3,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.668729,-97.131834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64885,WAL2257,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.853797,-95.509083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.285748794152713 -64885,WAL2257,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.853797,-95.509083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.285748794152713 -64885,WAL2257,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.853797,-95.509083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.285748794152713 -64886,WAL2439,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.817549,-94.900456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.803087389419726 -64886,WAL2439,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.817549,-94.900456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.803087389419726 -64886,WAL2439,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.817549,-94.900456,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.803087389419726 -64887,WAL2667,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.793829,-96.689543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.95 -64887,WAL2667,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.793829,-96.689543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.95 -64887,WAL2667,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.793829,-96.689543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.95 -64888,WAL2724,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.693424,-95.210408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.546939636482954 -64888,WAL2724,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.693424,-95.210408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.546939636482954 -64888,WAL2724,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.693424,-95.210408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.546939636482954 -64889,WAL2883,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.097094,-96.798596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.224064896259584 -64889,WAL2883,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.097094,-96.798596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.224064896259584 -64889,WAL2883,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.097094,-96.798596,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.224064896259584 -64890,WAL2980,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.89517,-97.286531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.906383402971008 -64890,WAL2980,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.89517,-97.286531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.906383402971008 -64890,WAL2980,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.89517,-97.286531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.906383402971008 -64891,WAL2993,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.613582,-95.644645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.113549450549453 -64891,WAL2993,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.613582,-95.644645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.113549450549453 -64891,WAL2993,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.613582,-95.644645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.113549450549453 -64892,"TPE Erath Solar, LLC",ERATH,2021.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,32.26246,-98.207541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64893,WAL3224,GEN1,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.842209,-96.598028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.918695844183533 -64893,WAL3224,GEN2,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.842209,-96.598028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.918695844183533 -64893,WAL3224,GEN3,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.842209,-96.598028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.918695844183533 -64895,WAL3226,GEN1,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.783981,-95.804075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.101448352472529 -64895,WAL3226,GEN2,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.783981,-95.804075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.101448352472529 -64895,WAL3226,GEN3,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.783981,-95.804075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.101448352472529 -64896,WAL3284,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.66674,-97.209254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.353510144440278 -64896,WAL3284,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.66674,-97.209254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.353510144440278 -64896,WAL3284,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.66674,-97.209254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.353510144440278 -64897,WAL3285,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.59732,-96.946914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.072243758301934 -64897,WAL3285,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.59732,-96.946914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.072243758301934 -64897,WAL3285,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.59732,-96.946914,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.072243758301934 -64898,WAL3297,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.920574,-95.602626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.21822134602947 -64898,WAL3297,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.920574,-95.602626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.21822134602947 -64898,WAL3297,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.920574,-95.602626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.21822134602947 -64899,WAL3298,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.535168,-95.018815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.893671887965482 -64899,WAL3298,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.535168,-95.018815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.893671887965482 -64899,WAL3298,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.535168,-95.018815,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.893671887965482 -64900,WAL3302,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.679366,-95.5614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.880733944954128 -64900,WAL3302,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.679366,-95.5614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.880733944954128 -64900,WAL3302,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.679366,-95.5614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.880733944954128 -64901,WAL3320,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.260742,-98.315859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.305921488004378 -64901,WAL3320,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.260742,-98.315859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.305921488004378 -64901,WAL3320,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.260742,-98.315859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.305921488004378 -64902,WAL3390,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.190279,-95.589487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.896436893203884 -64902,WAL3390,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.190279,-95.589487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.896436893203884 -64902,WAL3390,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.190279,-95.589487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.896436893203884 -64903,"Cuba 2.5ac, LLC",SOLAR,2022.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.017438,-106.945963,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64905,Mt. Morris Solar CSG,MTMIL,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,42.063506,-89.496181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64906,Hazel,512,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.78177,-91.94974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64907,Fountain,511,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.74609,-92.12943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64909,Luciana,TSC,2022.0,55.8,55.8,55.8,0,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0,4,2057,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.823716,-119.062255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64910,Brighter Future Solar,BFSNC,2022.0,11.0,11.0,11.0,11,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0,1,2052,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.816094,-81.371656,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64915,Flower Valley I,FLRV1,2021.0,9.9,9.9,9.9,0,MWH,Batteries,OP,BA,5.0,2021.0,8,2032,19.8,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.197283,-103.361769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64916,Swoose I,SWOO1,2021.0,9.9,9.9,9.9,0,MWH,Batteries,OP,BA,7.0,2021.0, , ,19.8,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.45115,-103.096242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64917,Triple Butte I,TRBT1,2021.0,7.5,7.5,7.5,0,MWH,Batteries,OP,BA,7.0,2021.0, , ,15.0,7.5,7.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.75956,-103.06786,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64918,"NorthropGrummanSolar(Rolling Meadows,IL)",NGCIL,2020.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,42.09972,-88.031041,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64919,FedEx Chicago Solar Facility,FDXIL,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,41.753932,-87.789421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64920,"GE-Hitachi Solar - Morris, IL",GEHIL,2020.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,41.381481,-88.272411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64921,Santa Ana Storage 2,SAP2,2022.0,20.0,20.0,20.0,1,MWH,Batteries,OP,BA,6.0,2022.0, , ,80.0,20.0,20.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.715016,-117.853984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64922,WAL3406,GEN1,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.959048,-96.81664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.880648808391076 -64922,WAL3406,GEN2,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.959048,-96.81664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.880648808391076 -64922,WAL3406,GEN3,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.959048,-96.81664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.880648808391076 -64923,WAL3425,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.630428,-95.237434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.134430570929066 -64923,WAL3425,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.630428,-95.237434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.134430570929066 -64923,WAL3425,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.630428,-95.237434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16.134430570929066 -64924,WAL3432,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.592923,-96.879836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.30260917508554 -64924,WAL3432,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.592923,-96.879836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.30260917508554 -64924,WAL3432,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.592923,-96.879836,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.30260917508554 -64925,WAL3500,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.80599,-95.1652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.949271739130436 -64925,WAL3500,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.80599,-95.1652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.949271739130436 -64925,WAL3500,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.80599,-95.1652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.949271739130436 -64926,WAL3510,GEN1,2019.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.545976,-95.235941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.82636655948553 -64928,Edwards Sanborn S3,BESS,2022.0,33.0,33.0,33.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,70.0,35.1,35.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,35.01644,-118.1225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64928,Edwards Sanborn S3,PV,2022.0,37.7,37.7,37.7, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.01644,-118.1225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64929,Edwards Sanborn S1,BESS,2022.0,40.0,40.0,40.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,83.5,42.1,42.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,35.02769,-118.13284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64929,Edwards Sanborn S1,PV,2022.0,44.6,44.6,44.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.02769,-118.13284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64930,Stockton (MN),514,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.04105,-91.7669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64931,Capital Hill Solar LLC,531,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.685295,-73.824937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64932,Rushford Village,513,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.8066,-91.791594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64933,WAL3518,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.612565,-99.471825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.153598039215685 -64933,WAL3518,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.612565,-99.471825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.153598039215685 -64933,WAL3518,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.612565,-99.471825,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.153598039215685 -64934,WAL3572,GEN1,2019.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.557643,-95.382896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.827027027027027 -64935,WAL3584,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.72355,-95.46539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.556967867593439 -64935,WAL3584,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.72355,-95.46539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.556967867593439 -64935,WAL3584,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.72355,-95.46539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.556967867593439 -64936,WAL3631,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.576636,-97.338514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.339622641509434 -64936,WAL3631,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.576636,-97.338514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.339622641509434 -64936,WAL3631,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.576636,-97.338514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.339622641509434 -64937,WAL3773,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.765261,-97.483775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.20190435374023 -64937,WAL3773,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.765261,-97.483775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.20190435374023 -64937,WAL3773,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.765261,-97.483775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.20190435374023 -64938,WAL3777,GEN1,2020.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.179721,-96.883994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.533742331288343 -64939,WAL3827,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.690142,-95.774624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.471548780487804 -64939,WAL3827,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.690142,-95.774624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.471548780487804 -64939,WAL3827,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.690142,-95.774624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.471548780487804 -64940,WAL3886,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.267703,-98.204552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.236644270283223 -64940,WAL3886,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.267703,-98.204552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.236644270283223 -64940,WAL3886,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.267703,-98.204552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.236644270283223 -64942,WAL4298,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.936325,-95.25261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.495228571428573 -64942,WAL4298,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.936325,-95.25261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.495228571428573 -64942,WAL4298,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.936325,-95.25261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.495228571428573 -64943,WAL4509,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.677829,-97.467729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.086909408329738 -64943,WAL4509,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.677829,-97.467729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.086909408329738 -64943,WAL4509,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.677829,-97.467729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.086909408329738 -64944,WAL4512,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.818196,-95.767961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.133116486096505 -64944,WAL4512,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.818196,-95.767961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.133116486096505 -64944,WAL4512,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.818196,-95.767961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.133116486096505 -64945,WAL4526,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.829831,-95.377269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.520392117501421 -64945,WAL4526,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.829831,-95.377269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.520392117501421 -64945,WAL4526,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.829831,-95.377269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.520392117501421 -64946,WAL4538,GEN1,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.803665,-95.72045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.290751902255433 -64946,WAL4538,GEN2,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.803665,-95.72045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.290751902255433 -64946,WAL4538,GEN3,2019.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.803665,-95.72045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.290751902255433 -64947,WAL5045,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.014278,-95.594987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.247104697700921 -64947,WAL5045,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.014278,-95.594987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.247104697700921 -64947,WAL5045,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.014278,-95.594987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.247104697700921 -64948,WAL5080,GEN1,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.847939,-97.18405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.888512383998844 -64948,WAL5080,GEN2,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.847939,-97.18405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.888512383998844 -64948,WAL5080,GEN3,2022.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.847939,-97.18405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.888512383998844 -64949,WAL5091,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.975997,-95.697345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.13266793206651 -64949,WAL5091,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.975997,-95.697345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.13266793206651 -64949,WAL5091,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.975997,-95.697345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.13266793206651 -64950,WAL5116,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.664286,-95.098302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.906292347421441 -64950,WAL5116,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.664286,-95.098302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.906292347421441 -64950,WAL5116,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.664286,-95.098302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13.906292347421441 -64951,WAL5165,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.191785,-98.128306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.202353185991868 -64951,WAL5165,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.191785,-98.128306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.202353185991868 -64951,WAL5165,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.191785,-98.128306,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.202353185991868 -64952,WAL5211,GEN1,2020.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,OP,IC,1.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.156306,-96.682687,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.551569506726457 -64953,WAL5287,GE N3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.077307,-95.51277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.55863888888889 -64953,WAL5287,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.077307,-95.51277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.55863888888889 -64953,WAL5287,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.077307,-95.51277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.55863888888889 -64954,WAL5311,GEN1,2020.0,1.3,1.3,1.3,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,33.216844,-96.735704,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.54655870445344 -64955,WAL5312,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.774643,-97.291803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.32151400214096 -64955,WAL5312,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.774643,-97.291803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.32151400214096 -64955,WAL5312,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.774643,-97.291803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.32151400214096 -64956,WAL5316,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.882111,-97.387586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.17333 -64956,WAL5316,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.882111,-97.387586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.17333 -64956,WAL5316,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.882111,-97.387586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.17333 -64957,WAL5388,GEN1,2020.0,1.3,1.3,1.3,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.470152,-95.089643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.821678321678322 -64958,WAL5479,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.453115,-97.606035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64958,WAL5479,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.453115,-97.606035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64958,WAL5479,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.453115,-97.606035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64959,WAL5480,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.53366,-97.612014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335339221585945 -64959,WAL5480,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.53366,-97.612014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335339221585945 -64959,WAL5480,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.53366,-97.612014,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335339221585945 -64960,WAL5612,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.716069,-95.313027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.958607609059467 -64960,WAL5612,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.716069,-95.313027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.958607609059467 -64960,WAL5612,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.716069,-95.313027,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.958607609059467 -64961,WAL5713,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.610637,-99.462215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.209741573033707 -64961,WAL5713,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.610637,-99.462215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.209741573033707 -64961,WAL5713,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.610637,-99.462215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.209741573033707 -64962,WAL5764,GEN1,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.967341,-97.411976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.251941860465115 -64962,WAL5764,GEN2,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.967341,-97.411976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.251941860465115 -64962,WAL5764,GEN3,2021.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.967341,-97.411976,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.251941860465115 -64963,WAL6929,GEN1,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.11497,-97.414441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.223050904179665 -64963,WAL6929,GEN2,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.11497,-97.414441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.223050904179665 -64963,WAL6929,GEN3,2020.0,0.4,0.4,0.4,0.1,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.11497,-97.414441,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.223050904179665 -64964,Rock Island Road Solar Community Solar,ROCKI,2022.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.369913,-75.456999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64965,Bullis Road Solar (CSG),BULLS,2022.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.836293,-78.572791,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64967,SV Gardner 1 (Lutz) CSG,LUTZ,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,IL,41.19504,-88.30134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64969,Barron Solar Array,BAR01,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.396196,-91.827567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64970,59 Federal Rd(CSG),59FBA,2021.0,5.0,5.0,5.0,5,MWH,Batteries,OP,BA,11.0,2021.0, , ,20.5,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.828475,-70.721206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64970,59 Federal Rd(CSG),59FPV,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.828475,-70.721206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64971,Pretzel CSG,PRETZ,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.307119,-89.598098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64972,Prophet CSG,PROPH,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.721815,-89.804732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64973,Gala (CSG),GALA,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,42.356266,-89.836971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64975,Park St,628,2014.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2014.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.596913,-72.970431,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64976,Spooner Solar Array,SPN01,2019.0,2.0,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.919047,-91.862475,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64977,"Torrington Solar One, LLC",TORS1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.83019,-73.07802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64978,"Bristol Solar One, LLC",BRIS1,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.69097,-72.97855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64979,"Watertown Solar One, LLC",WTRS1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.61968,-73.14844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64980,UMass Boston,010G,2006.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,SB,IC,1.0,2006.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.063056379821958 -64980,UMass Boston,020G,1972.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64980,UMass Boston,030G,2014.0,0.5,0.5,0.5,0,DFO,Petroleum Liquids,SB,IC,1.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.063877142221232 -64980,UMass Boston,050G,2001.0,0.8,0.8,0.8,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64980,UMass Boston,060G,2012.0,1.6,1.6,1.6,0.2,DFO,Petroleum Liquids,SB,IC,1.0,2012.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.06433887459136 -64980,UMass Boston,080D1,1972.0,0.3,0.3,0.3,0,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.063056379821958 -64980,UMass Boston,080D2,1972.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.063877142221232 -64980,UMass Boston,080G,1972.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64980,UMass Boston,090G,1972.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64980,UMass Boston,110G,1972.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64980,UMass Boston,120G,1972.0,0.2,0.2,0.2,0,DFO,Petroleum Liquids,SB,IC,1.0,1972.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64980,UMass Boston,160G,2001.0,0.1,0.1,0.1,0,DFO,Petroleum Liquids,SB,IC,1.0,2001.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.058954393770856 -64980,UMass Boston,200G,1999.0,0.1,0.1,0.1,0,DFO,Petroleum Liquids,SB,IC,1.0,1999.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.058954393770856 -64980,UMass Boston,BATT1,2021.0,0.5,0.5,0.5,0.1,MWH,Batteries,OP,BA,1.0,2021.0, , ,2.1,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64980,UMass Boston,RHG,2017.0,0.5,0.5,0.5,0.1,DFO,Petroleum Liquids,SB,IC,1.0,2017.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.063877142221232 -64980,UMass Boston,SOL1,2021.0,0.2,0.2,0.2, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64980,UMass Boston,SOL2,2021.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64980,UMass Boston,WG,2018.0,0.4,0.4,0.4,0,DFO,Petroleum Liquids,SB,IC,1.0,2018.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.312977,-71.036368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.065108514190317 -64982,West Plains Solar I,WPS1,2022.0,8.0,8.0,8.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SWPP,MO,36.785338,-91.867401,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64983,North Wales Diesel,GEN1,2010.0,1.8,1.5,1.5,0.8,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333333,0.8333333333333333,RFC,PJM,PA,40.203333,-75.316396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64983,North Wales Diesel,GEN2,2010.0,1.8,1.5,1.5,0.8,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333333,0.8333333333333333,RFC,PJM,PA,40.203333,-75.316396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64983,North Wales Diesel,GEN3,2010.0,1.8,1.5,1.5,0.8,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333333,0.8333333333333333,RFC,PJM,PA,40.203333,-75.316396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64983,North Wales Diesel,GEN4,2010.0,1.8,1.5,1.5,0.8,DFO,Petroleum Liquids,SB,IC,5.0,2010.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333333,0.8333333333333333,RFC,PJM,PA,40.203333,-75.316396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64984,Waterloo Solar (IA),WATS,2022.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.54389,-92.35535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64985,Johnson County Hills Solar,JCHS,2022.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,41.57232,-91.54302,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64986,Franklin County Solar,FCS,2022.0,7.0,7.0,7.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.72084,-93.20609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64987,USS Foley Solar LLC,USSFS,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.68047,-93.924797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64988,USS Prokosch Solar LLC ,USPKS,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.772867,-94.910519,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64989,USS Rosebud Solar LLC,USRBS,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.472694,-94.920894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64990,Medin CSG,MED1,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.488101,-92.78473,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64991,Johnson CSG 1,JOHN,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.485222,-92.815639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64992,Cornillie Solar CSG,CORN1,2021.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.459283,-92.89781,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64993,"BigBeau Solar, LLC",BB1BA,2022.0,40.0,40.0,40.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,160.0,40.0,40.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.907041,-118.344077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64993,"BigBeau Solar, LLC",BB1PV,2022.0,128.0,128.0,128.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.907041,-118.344077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -64994,Sacramento Point West Medical Offices,6115,2020.0,1.3,1.2,0.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.923076923076923,0.6153846153846154,WECC,BANC,CA,38.596314,-121.428022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65002,SSI West Riverside Landfill LLC,WERL,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,33.980601,-117.375494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65003,MN CSG 2019-16 LLC,WOLFE,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.214681,-93.960063,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65005,Albertsons at Melrose Park,PV1,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.916874,-87.856212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65009,Bear Creek,PV1,2022.0,50.0,50.0,37.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.74,MRO,MISO,WI,43.198512,-90.232824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65010,North Rock,PV1,2022.0,50.0,50.0,36.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.73,MRO,MISO,WI,42.810873,-89.101535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65011,Wood County,PV1,2022.0,150.0,150.0,110.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7373333333333333,MRO,MISO,WI,44.27361,-89.8335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65013,Marengo Solar,MARIL,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,PJM,IL,42.25974,-88.63587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65015,ASD Wallum MA Solar LLC(CSG),WAL1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.011623,-71.760489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65015,ASD Wallum MA Solar LLC(CSG),WAL1B,2022.0,3.8,3.8,3.8, ,MWH,Batteries,OP,BA,1.0,2022.0, , ,12.8,3.8,3.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.011623,-71.760489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65016,Gardy's Mill Solar,GMS,2020.0,14.0,14.0,14.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,38.006741,-76.606956,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65022,Briel Solar Farm,BMS,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.52364,-77.26358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65026,HEB00292,H2921,2016.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.982463,-95.958458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.146768906443656 -65026,HEB00292,H2922,2016.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.982463,-95.958458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.146768906443656 -65026,HEB00292,H2923,2016.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2016.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.982463,-95.958458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.146768906443656 -65029,Bissell Solar and Battery Generator,BISBP,2021.0,0.3,0.3,0.3, ,MWH,Batteries,OP,BA,10.0,2021.0, , ,0.5,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,MISO,MI,43.007,-85.724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65029,Bissell Solar and Battery Generator,BISSP,2021.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.007,-85.724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65032,Sun Mountain Solar 1,COSM1,2022.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.180331,-104.518529,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65033,Kings River Syphon,UNIT1,1990.0,0.3,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,WECC,CISO,CA,36.764491,-119.441856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65033,Kings River Syphon,UNIT2,1990.0,0.3,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,WECC,CISO,CA,36.764491,-119.441856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65033,Kings River Syphon,UNIT3,1990.0,0.3,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.6666666666666667,0.6666666666666667,WECC,CISO,CA,36.764491,-119.441856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65033,Kings River Syphon,UNIT4,1990.0,0.4,0.2,0.2,0,WAT,Conventional Hydroelectric,OP,HY,9.0,1990.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,0.5,0.5,WECC,CISO,CA,36.764491,-119.441856,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65036,Cotton Creek Solar Energy Center,1,2021.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,FL,30.841873,-87.343975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65037,Sawgrass Solar Energy Center,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.381386,-81.053721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65038,Ghost Orchid Solar Energy Center,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.417212,-81.03531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65039,Sundew,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.264113,-80.546851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65040,Immokalee,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,26.474576,-81.433471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65041,Elder Branch,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.5966,-82.25272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65042,Grove,1,2022.0,74.5,74.5,74.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,FPL,FL,27.580883,-80.652711,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65048,Hubbard Wind,HW001,2021.0,300.0,300.0,300.0,30,WND,Onshore Wind Turbine,OP,WT,11.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.77471,-96.828196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65053,Blythe Mesa Solar II,BMSES,2022.0,112.0,112.0,112.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,448.0,112.0,112.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.640813,-114.680261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65053,Blythe Mesa Solar II,IPBMS,2022.0,223.6,223.6,223.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.640813,-114.680261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65054,71 Charlotte Furnace Rd Hybrid(CSG),71CBA,2021.0,1.0,1.0,1.0,1,MWH,Batteries,OP,BA,12.0,2021.0, , ,5.4,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.797106,-70.741597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65054,71 Charlotte Furnace Rd Hybrid(CSG),71CPV,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.797106,-70.741597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65055,77 Farm to Market Rd Hybrid(CSG),77FBA,2021.0,2.2,2.2,2.2,2.2,MWH,Batteries,OP,BA,12.0,2021.0, , ,4.8,2.2,2.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.79455,-70.723394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65055,77 Farm to Market Rd Hybrid(CSG),77FPV,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.79455,-70.723394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65056,160 Tihonet Rd Hybrid(CSG),160BA,2021.0,3.3,3.3,3.3,3.3,MWH,Batteries,OP,BA,12.0,2021.0, , ,6.9,3.3,3.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.793414,-70.712667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65056,160 Tihonet Rd Hybrid(CSG),160PV,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.793414,-70.712667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65057,299 Farm to Market Rd Hybrid(CSG),299BA,2021.0,2.3,2.3,2.3,2.3,MWH,Batteries,OP,BA,12.0,2021.0, , ,4.9,2.2,2.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.795092,-70.727036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65057,299 Farm to Market Rd Hybrid(CSG),299PV,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.795092,-70.727036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65059,"Niyol Wind, LLC",WNIYO,2021.0,205.6,205.0,205.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9970817120622568,0.9970817120622568,WECC,WACM,CO,40.613364,-102.9526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65068,Walkerton,WALK,2022.0,1.1,1.1,0.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7272727272727273,RFC,MISO,IN,41.455468,-86.487356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65069,Linton,LINT,2022.0,5.4,5.4,4.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7962962962962963,RFC,MISO,IN,39.04355,-87.136191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65071,Buffalo NY GigaFactory,PV1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.859297,-78.8418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65072,Fremont CA AutoFactory,RF67,2022.0,0.3,0.3,0.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.49254,-121.94458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65075,Everson Garden,CGS,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.08963,-93.5531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65083,Halifax Solar,PV1,2015.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.99527,-70.84382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65084,Pitkin County Solar,PTKN,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,39.247705,-106.876811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65085,580 River Solar,PV1,2018.0,3.1,3.1,3.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.680766,-72.076103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65086,Bremen,BREM,2022.0,6.8,6.8,5.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7941176470588236,RFC,MISO,IN,41.46303,-86.163527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65087,Shamrock Solar LLC,554,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.17659,-90.84654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65088,Stromland Solar,510,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,44.19955,-91.80897,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65089,Foothill Sanitary Landfill - Solar Array,05452,2021.0,3.6,3.5,2.4, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9722222222222222,0.6666666666666666,WECC,PACW,CA,38.042352,-120.933761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65091,IGS KSBD,293,2022.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.10535,-117.23477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65092,115 G Fisher,634,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.877476,-70.83984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65093,154 D Fisher,633,2015.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2015.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.87476,-70.83984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65094,Jackson Legler Solar 1 LLC,314,2021.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.06451,-74.35037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65095,Mt Arlington Solar 1 LLC,196,2021.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.93207,-74.62377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65098,South Sioux City Energy Storage,SSCES,2020.0,1.5,1.5,1.5,0.5,MWH,Batteries,OP,BA,12.0,2020.0, , ,3.0,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,SWPP,NE,42.433124,-96.407199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65103,Jicarilla Solar 2,JICS2,2022.0,50.0,50.0,50.0,50,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PNM,NM,36.141053,-107.171233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65110,Ridgeback,RID,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.86546,-79.57982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65111,Thunderhead,THU,2021.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.75101,-79.78992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65112,River Road,RIV,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.74111,-69.762861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65114,196 Tremont St(CSG),196BA,2021.0,1.5,1.5,1.5,1.5,MWH,Batteries,OP,BA,11.0,2021.0, , ,8.0,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.842933,-70.730697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65114,196 Tremont St(CSG),196PV,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.842933,-70.730697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65122,NY8 - Branscomb Solar,GEN1,2021.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.962972,-73.586739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65124,NY8 - Regan Solar,GEN1,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.95474,-74.313115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65125,NY8 - Puckett Solar,GEN1,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.252664,-75.834078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65127,AES Belleville Solar LLC,BELL,2021.0,9.9,9.9,9.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,38.4872,-90.0135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65129,Jayhawk Wind Energy Center,65010,2022.0,197.4,197.4,197.4,0,WND,Onshore Wind Turbine,OP,WT,1.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,37.704461,-95.029817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65130,City of Bowie,PV1,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.904641,-76.688773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65131,Fremont - Kato Rd,PV1,2016.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.479188,-121.932263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65131,Fremont - Kato Rd,PV2,2017.0,0.9,0.9,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.479188,-121.932263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65132,University of the Pacific,BA1,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,5.0,2022.0, , ,2.2,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.980054,-121.312418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65132,University of the Pacific,PV1,2022.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.980054,-121.312418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65133,Benning Road,BENRD,2021.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.89829,-76.95561,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65135,"ER Bone Hill Solar, LLC",288,2022.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.1257,-72.65681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65140,Crimson,SWSH1,2022.0,200.0,200.0,200.0, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,800.0,175.0,175.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.57345,-114.814541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65140,Crimson,SWSH2,2022.0,150.0,150.0,150.0, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,600.0,133.0,131.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.57345,-114.814541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65143,Big Turtle Wind Farm 2,BTWF2,2016.0,29.4,29.4,29.4,0.4,WND,Onshore Wind Turbine,OP,WT,10.0,2016.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,RFC,MISO,MI,43.919558,-82.794428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65152,Clinton Solar,CLINT,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.5825,-71.9018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65153,UMass PV Lot 49,U49PV,2022.0,0.8,0.9,0.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.625,NPCC,ISNE,MA,42.393012,-72.52023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65154,UMass PV Lot 22,U22ES,2022.0,2.0,2.0,1.2,2,MWH,Batteries,OP,BA,9.0,2022.0, , ,4.3,1.1,0.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,0.6,NPCC,ISNE,MA,42.393012,-72.52023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65154,UMass PV Lot 22,U22PV,2022.0,2.1,2.1,1.2, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.5714285714285714,NPCC,ISNE,MA,42.393012,-72.52023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65162,Lacy Creek Wind Energy Center,LCW1,2022.0,301.3,301.3,301.3,0,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.729906,-101.29894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65163,Orioles Community Solar,ORIOL,2022.0,5.6,5.6,5.6, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.426,-73.817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65166,"ER Center Road Solar, LLC",287,2022.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,44.50819,-72.34633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65167,Hudson County Solar,470,2022.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.72762,-74.10803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65168,Five H Farms Solar Array,FHF,2021.0,1.0,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.120446,-120.292797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65169,Van der Kooi Dairy Solary Array,VDK,2021.0,1.0,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.29169,-120.022439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65174,Cranberry Highway Solar LLC,BA1,2021.0,2.0,2.0,2.0,0,MWH,Batteries,OP,BA,3.0,2021.0, , ,4.5,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.787462,-70.745223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65174,Cranberry Highway Solar LLC,PV1,2021.0,2.2,2.2,2.2,0,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.787462,-70.745223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65175,"ENGIE 2019 ProjectCo-MA1, LLC",PV1,2021.0,4.5,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.041614,-72.653224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65176,"WW-DC Solar 1, LLC",654,2022.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.82568,-77.00205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65177,Donaghy-Stockton,DSPV1,2021.0,1.1,1.1,0.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6363636363636362,WECC,CISO,CA,37.909523,-121.194893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65178,Mtn. Solar 4 (CSG),MTNS4,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.727586,-105.113057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65182,CSP Los Angeles,CSLPA,2022.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.694314,-118.227759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65183,Norton LLC,671,2020.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.98309,-71.21461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65184,Holliston LLC,674,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.21179,-71.41335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65185,Broadway 3 - Tucson Phase I,GEN1,2011.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2011.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.24817,-111.26111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65186,Broadway 3 - UC Merced 1,GEN1,2009.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2009.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.36448,-120.43108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65187,Broadway 3 - UCSB Lot 38,GEN1,2016.0,1.8,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5555555555555556,0.5555555555555556,WECC,CISO,CA,34.41974,-119.85637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65188,Broadway 4 - Target Shafter,GEN1,2018.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.46331,-119.18912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65189,West Village Solar - Array 1Community Solar,WVSA1,2022.0,1.2,1.0,0.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8333333333333334,0.5833333333333333,WECC,CISO,CA,38.542791,-121.77752,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65190,West Village Solar - Array 2 Community Solar,WVSA2,2022.0,1.3,1.0,0.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7692307692307692,0.6923076923076923,WECC,CISO,CA,38.542747,-121.77659,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65191,University of San Diego,USD00,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,12.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,32.771701,-117.191589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65192,AT&T San Diego,ATT41,2015.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,32.904775,-117.1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65193,CalTech - Pasadena (PPA),CLT05,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.139368,-118.121488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65194,AT&T Middletown,ATT39,2015.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,7.0,2015.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,PJM,NJ,40.397872,-74.134837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65196,SCC - San Jose,SCC02,2014.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2014.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.35106,-121.90551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65197,Medtronic - New Haven 2,MDC04,2020.0,2.2,2.2,2.2,2.2,NG,Other Natural Gas,OP,FC,10.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.339715,-72.865033,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65198,Medtronic - New Haven,MDC02,2020.0,2.3,2.3,2.3,2.3,NG,Other Natural Gas,OP,FC,10.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.33788,-72.870281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65199,Keysight - Santa Rosa,KST00,2018.0,4.5,4.5,4.5,4.5,NG,Other Natural Gas,OP,FC,9.0,2018.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,38.481931,-122.711104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65200,DirecTV - Los Angeles,DTV02,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,10.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.983377,-118.42517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65201,Certain Solar - Staten Island,CTS0A,2020.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,9.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.540416,-74.176847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65201,Certain Solar - Staten Island,CTS0B,2020.0,1.5,1.5,1.5,1.5,NG,Other Natural Gas,OP,FC,9.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.540416,-74.176847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65201,Certain Solar - Staten Island,CTS0C,2020.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,9.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.540416,-74.176847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65201,Certain Solar - Staten Island,CTS0D,2020.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,9.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,40.540416,-74.176847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65202,CalTech - Pasadena,CLT05,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.138719,-118.12833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65203,Beckton Dickenson - San Jose,BDB01,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,7.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.39789,-121.88594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65204,AT&T - Redwood City,ATT95,2013.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.480769,-122.200408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65205,AT&T - Gardena,ATT26,2013.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,6.0,2013.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.874969,-118.289798,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65206,AT&T - Hawthorne,ATT58,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,10.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.92429,-118.320597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65208,AT&T - Hayward,ATA17,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,11.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.659879,-122.09685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65209,Equinix - Billerica,EQX53,2021.0,1.9,1.9,1.9,1.9,NG,Other Natural Gas,OP,FC,9.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,MA,42.551001,-71.21496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65210,Enloe Medical - Chico,ENL00,2021.0,1.7,1.7,1.7,1.7,NG,Other Natural Gas,OP,FC,6.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,39.742597,-121.849688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65211,Comcast - Universal City,CMC04,2021.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,9.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.137717,-118.36082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65212,Altice - Hicksville,ATC04,2021.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,8.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,NYIS,NY,40.759984,-73.504192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65213,Altice - Parsippany,ATC03,2021.0,2.0,2.0,2.0,2,NG,Other Natural Gas,OP,FC,7.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,PJM,NJ,40.845086,-74.428245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65216,Woburn,673,2020.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.5113,-71.13911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65217,South Goshen Community Solar,BESS,2021.0,4.5,4.5,4.5, ,MWH,Batteries,OP,BA,9.0,2021.0, , ,17.0,4.5,4.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.3927,-74.3478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65217,South Goshen Community Solar,SGOSH,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.3927,-74.3478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65222,County Road 17 (CSG),AFTON,2022.0,3.3,3.3,3.3,3.3,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.27842,-75.5415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65227,"Ameresco Danville Solar, LLC",401,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.10351,-87.64977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65228,Red Prairie Solar,RP21,2021.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.087389,-123.417361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65229,OK Produce Fresno Carport,OKPVC,2019.0,2.0,2.0,1.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.65,WECC,CISO,CA,36.723488,-119.774411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65230,Truman Solar,TMS,2021.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,38.956,-92.243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65232,Chambers 3 - Lewis County,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.78013,-75.49986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65233,Chambers 3 - Erie County Alden,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.93284,-78.55716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65235,Venture 2 - 1B,75024,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.752244,-104.66509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65236,Venture 3 - 1C,75021,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.750499,-104.66733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65237,Venture 4 - 1D,75023,2021.0,1.5,1.5,1.5,1.5,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,39.752334,-104.66733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65238,Chambers 4 - Eastvale LGB3,GEN1,2019.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.99848,-117.55289,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65242,Charlemont A,CMS,2021.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.642,-72.896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65242,Charlemont A,CMSB,2021.0,2.5,2.5,2.5,0,MWH,Batteries,OP,BA,9.0,2021.0, , ,3.8,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.642,-72.896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65251,Chambers 4 - Redland LGB4,GEN1,2019.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.08041,-117.20138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65252,Chambers 4 - Riverside LGB6 ,GEN1,2018.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.88102,-117.30036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65253,Chambers 4 - Rialto LGB8,GEN1,2018.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.12937,-117.40554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65254,Chambers 4 - Sacramento SMF1,GEN1,2018.0,2.7,2.7,2.7, ,SUN,Solar Photovoltaic,OP,PV,9.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,BANC,CA,38.68251,-121.57434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65255,Chambers 4 - Eastvale DCA2,GEN1,2018.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.99347,-117.55391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65256,Chambers 4 - San Bernardino SNA7,GEN1,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.07752,-117.27257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65257,Lineage MS,LMS01,2021.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MS,32.254379,-90.15538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65258,Wapakoneta-Pratt,WKP01,2021.0,13.5,13.5,13.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,40.544,-84.187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65259,Byrd Ranch Storage,P1,2022.0,50.0,50.0,50.0, ,MWH,Batteries,OP,BA,11.0,2022.0, , ,50.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.056,-95.686,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65261,HEB00020,H0201,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.992502,-95.744444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.534975308641977 -65261,HEB00020,H0202,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.992502,-95.744444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.534975308641977 -65261,HEB00020,H0203,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,2.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.992502,-95.744444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.534975308641977 -65262,HEB00028,H0281,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.466105,-95.09527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15107990006463 -65262,HEB00028,H0282,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.466105,-95.09527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15107990006463 -65262,HEB00028,H0283,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.466105,-95.09527,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.15107990006463 -65263,HEB00038,H0381,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.202647,-98.164666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39092334239345 -65263,HEB00038,H0382,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.202647,-98.164666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39092334239345 -65263,HEB00038,H0383,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,26.202647,-98.164666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.39092334239345 -65264,HEB00054,H0541,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.601653,-95.250237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.87104088037272 -65264,HEB00054,H0542,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.601653,-95.250237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.87104088037272 -65264,HEB00054,H0543,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.601653,-95.250237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.87104088037272 -65265,HEB00057,H0571,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.665051,-97.28064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.14333 -65265,HEB00057,H0572,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.665051,-97.28064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.14333 -65265,HEB00057,H0573,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.665051,-97.28064,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.14333 -65266,HEB00070,H0701,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.433318,-99.758324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11557081433507 -65266,HEB00070,H0702,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.433318,-99.758324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11557081433507 -65266,HEB00070,H0703,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,32.433318,-99.758324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11557081433507 -65267,HEB00099,H0991,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.995329,-95.576602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.120638095238094 -65267,HEB00099,H0992,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.995329,-95.576602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.120638095238094 -65267,HEB00099,H0993,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.995329,-95.576602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.120638095238094 -65268,HEB00109,H1091,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.786159,-95.539403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.319404256142763 -65268,HEB00109,H1092,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.786159,-95.539403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.319404256142763 -65268,HEB00109,H1093,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.786159,-95.539403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.319404256142763 -65269,HEB00110,H1101,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.53658,-95.53628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.344053376213505 -65269,HEB00110,H1102,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.53658,-95.53628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.344053376213505 -65269,HEB00110,H1103,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.53658,-95.53628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.344053376213505 -65271,Noble Solar,NBSLR,2022.0,275.0,275.0,275.0,0,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,33.261505,-97.238057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65271,Noble Solar,NBSTG,2022.0,125.0,125.0,125.0,0,MWH,Batteries,OP,BA,10.0,2022.0, , ,125.0,125.0,125.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,33.261505,-97.238057,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65274,HEB00182,H1821,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.07212,-97.370901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.148590361445784 -65274,HEB00182,H1822,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.07212,-97.370901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.148590361445784 -65274,HEB00182,H1823,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,31.07212,-97.370901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.148590361445784 -65276,USS Peach Solar LLC,USSPS,2022.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.17107,-93.90887,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65277,Wonderful Huller & Shellling,WHS01,2021.0,1.5,1.5,0.7, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.4666666666666667,WECC,CISO,CA,35.57609,-119.78885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65278,Wonderful Lost Hills,WLH01,2021.0,17.1,16.7,13.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9766081871345028,0.7602339181286549,WECC,CISO,CA,35.66934,-119.87658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65279,Fairhaven E,FHS,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.642,-72.896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65280,601 Doremus CDG,1,2021.0,1.5,1.5,1.1, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7333333333333334,RFC,PJM,NJ,40.731966,-74.120486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65281,Bomber CSG,BOMB,2021.0,6.0,6.0,6.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.59902,-76.8526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65285,Chalk Point Steam,GT1,1967.0,16.0,18.0,20.0,5,DFO,Petroleum Liquids,OP,GT,4.0,1967.0, , ,,,,,oil,oil,Distillate Fuel Oil,Combustion (Gas) Turbine,1.0,1.0,RFC,PJM,MD,38.5444,-76.6861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.764016736401674 -65287,Barrow Solar,BARRO,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,42.03263,-72.50491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65289,5601 Westside CDG,1,2021.0,1.5,1.5,1.1, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7333333333333334,RFC,PJM,NJ,40.77957,-74.04182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65294,Indian River Hydro,1,1909.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.18656,-72.85025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65294,Indian River Hydro,2,1909.0,0.7,0.7,0.7,0.1,WAT,Conventional Hydroelectric,OP,HY,12.0,1909.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,ISNE,MA,42.18656,-72.85025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65295,Bob Glanzer Generating Station,HG1,2022.0,11.5,9.2,9.2,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,SD,44.369507,-98.17223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55203468743721 -65295,Bob Glanzer Generating Station,HG2,2022.0,11.5,9.2,9.2,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,SD,44.369507,-98.17223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55203468743721 -65295,Bob Glanzer Generating Station,HG3,2022.0,11.5,9.2,9.2,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,SD,44.369507,-98.17223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55203468743721 -65295,Bob Glanzer Generating Station,HG4,2022.0,11.5,9.2,9.2,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,SD,44.369507,-98.17223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55203468743721 -65295,Bob Glanzer Generating Station,HG5,2022.0,11.5,9.2,9.2,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,SD,44.369507,-98.17223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55203468743721 -65295,Bob Glanzer Generating Station,HG6,2022.0,11.5,9.2,9.2,4.8,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.7999999999999999,0.7999999999999999,MRO,SWPP,SD,44.369507,-98.17223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55203468743721 -65297,DOCCS Midstate,81722,2021.0,3.8,3.8,3.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.164033,-75.304087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65298,DOCCS Eastern,81724,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.738928,-74.368626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65299,DOCCS Wende,81721,2021.0,5.0,5.0,5.0,5,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.929982,-78.55481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65300,DOCCS Greenhaven,81723,2021.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.578415,-73.72058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65303,Sun Valley Solar Project,SUNS,2022.0,250.0,250.0,250.0,0,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.86976,-97.01498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65304,ENGIE Solidago Solar Project - Hybrid,SOLAR,2022.0,50.0,50.0,50.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.395187,-75.7535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65306,Limestone Wind Project,LIMEW,2022.0,299.2,299.2,299.2,1,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.85346,-96.624458,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65307,Sunnybrook Solar Project - Hybrid,SUNS,2022.0,51.0,51.0,51.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.798717,-78.83961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65314,Caden Energix Wytheville LLC,ENX19,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.964279,-81.049858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65319,Maplewood Solar,MAPL,2022.0,120.0,120.0,120.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.89,-79.32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65321,Rochambeau Solar,RBSO,2021.0,19.9,19.9,19.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.35,-76.76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65322,Fort Powhatan Solar,FTPW,2022.0,150.0,150.0,150.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,37.26,-77.08,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65323,Bedford Solar,BEDF,2021.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,VA,36.7,-76.1647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65324,Hollins Ferry CSG,HOLL,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.225752,-76.68808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65329,Mount Laurel Solar,LAURL,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.975579,-74.888716,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65330,"8500 Balboa PV, LLC",BALB1,2022.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.22379,-118.49974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65330,"8500 Balboa PV, LLC",VSPRC,2022.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.22379,-118.49974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65331,"20333 Normandie PV, LLC",NORMA,2021.0,2.6,2.6,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.923076923076923,WECC,LDWP,CA,33.84614,-118.30019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65333,Shakes Solar,785,2022.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,28.44208,-99.75582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65335,Appaloosa Run Wind,WAPPA,2022.0,171.8,171.8,171.8,0,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,31.157269,-101.831603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65339,MD - CS - Potomac Edison Co - GA25 TPE (Community Solar),19002,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.608072,-79.32824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65340,MD - CS - BGE - PR24 TPE,19003,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.927431,-76.699164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65346,Macbeth Solar,MCB20,2022.0,20.0,20.0,20.0,0,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,43.437,-86.353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65347,Lyons Road,LYON1,2022.0,20.0,20.0,20.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,42.965793,-84.142858,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65349,"Mulligan Solar, LLC",MLGAN,2022.0,70.0,70.0,70.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.09393,-89.4204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65350,Ford County Wind Farm LLC,FORDC,2022.0,121.3,121.3,121.3,1,WND,Onshore Wind Turbine,OP,WT,3.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,SERC,MISO,IL,40.556285,-88.349491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65351,General Dynamics,GD,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,33.602,-92.541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65352,MacKinnon Solar,MACKN,2021.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.5786,-72.9573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65353,McHenry Solar,MCHEN,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.77,-72.0802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65357,OER Monarch CSG,OERMN,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.799594,-76.789482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65358,OER Patuxent CSG,PATUX,2022.0,2.8,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7142857142857144,0.7142857142857144,RFC,PJM,MD,38.838642,-76.683089,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65359,Shepherds Mill CSG,SHEPM,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.562305,-77.161771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65360,AT&T - San Diego Trade Street,ATA02,2016.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2016.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,32.88758,-117.16682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65361,CalTech - Pasadena Wilson Ave,CLT30,2019.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,12.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.13818,-118.12841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65364,Danell Bros Inc,12585,2021.0,2.6,2.6,2.6,0,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.267574,-119.631577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65367,POET Bioprocessing- Mitchell,1,2021.0,3.9,3.9,3.9,0.5,NG,Natural Gas Steam Turbine,OP,ST,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,"Steam Turbine, including nuclear, geothermal and solar steam (does NOT include combined cycle)",1.0,1.0,MRO,SWPP,SD,43.80237,-98.10182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68.1800451321728 -65368,Linden Hawk Rise Solar CSG,LINDN,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,PJM,NJ,40.60395,-74.24549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65370,BWC Maces Pond LLC,RCKPT,2021.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.17362,-69.12333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65372,Mark One Power Station,CTG-1,2022.0,60.5,44.6,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.737190082644628,0.8231404958677686,TRE,ERCO,TX,29.227109,-95.430756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65372,Mark One Power Station,CTG-2,2022.0,60.5,44.6,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.737190082644628,0.8231404958677686,TRE,ERCO,TX,29.227109,-95.430756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65372,Mark One Power Station,CTG-3,2022.0,60.5,44.6,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.737190082644628,0.8231404958677686,TRE,ERCO,TX,29.227109,-95.430756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65372,Mark One Power Station,CTG-4,2022.0,60.5,44.6,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.737190082644628,0.8231404958677686,TRE,ERCO,TX,29.227109,-95.430756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65372,Mark One Power Station,CTG-5,2022.0,60.5,44.6,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.737190082644628,0.8231404958677686,TRE,ERCO,TX,29.227109,-95.430756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65372,Mark One Power Station,CTG-6,2022.0,60.5,44.6,49.8,22.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.737190082644628,0.8231404958677686,TRE,ERCO,TX,29.227109,-95.430756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65376,SR Snipesville II,SNIP2,2021.0,107.0,107.0,107.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,31.708821,-82.715724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65378,OYA Robinson Road,NY002,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.26323,-75.99105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65379,OYA State Route 122,NY001,2021.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.922,-74.265,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65380,Solomon Generating Facility,3,2022.0,14.9,14.9,14.9,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PACE,UT,37.030051,-113.563394,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.864725396240324 -65381,Allie L.L.C.,PAPE,2022.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.78879,-95.201537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65382,Lincoln WWTF Hybrid,ESS,2022.0,1.0,1.0,1.0,0,MWH,Batteries,OP,BA,3.0,2022.0, , ,2.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,38.859,-121.346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65382,Lincoln WWTF Hybrid,PV,2021.0,3.0,2.8,2.3, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.7666666666666666,WECC,CISO,CA,38.859,-121.346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65383,Bodega Avenue Solar LLC,003-A,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.26147,-122.7373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65383,Bodega Avenue Solar LLC,003-B,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,38.26147,-122.7373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65384,Rancho Cordova Medical Offices,7101,2021.0,1.1,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9090909090909091,0.7272727272727273,WECC,BANC,CA,38.576571,-121.291035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65385,Airport Road Solar (CSG),AIRPT,2022.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,NYIS,NY,41.42827,-74.39665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65387,Holland Solar Farm,HOLND,2022.0,6.7,6.7,6.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.619,-75.155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65389,Midway Green Solar,MIDGS,2020.0,12.8,12.8,12.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.421,-81.393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65390,"Ledyard Windpower, LLC",LDYRD,2022.0,207.0,200.0,200.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.966183574879227,0.966183574879227,MRO,MISO,IA,43.430082,-94.106954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65391,Beloit Solar LLC,BS1,2022.0,2.0,2.0,2.0,0,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,39.450445,-98.104751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65393,Neal Energy Center Solar,NECS,2022.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,IA,42.33304,-96.34822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65399,Mill Pond Hydro,U1,1994.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1994.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.252975,-73.897951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65399,Mill Pond Hydro,U2,1994.0,0.5,0.5,0.5,0.5,WAT,Conventional Hydroelectric,OP,HY,7.0,1994.0,6,2027,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,1.0,NPCC,NYIS,NY,42.252975,-73.897951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65400,Purdue CHP,PUCHP,2022.0,13.3,13.5,17.2,9,NG,Natural Gas Fired Combustion Turbine,OP,GT,3.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,1.0,1.0,RFC,MISO,IN,40.417023,-86.915334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.287891849132379 -65405,"Flint Hills Resources Pine Bend, LLC",CTG,2019.0,60.5,39.6,42.0,21,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.6545454545454545,0.6942148760330579,MRO,MISO,MN,44.45483,-93.02119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.829192960111028 -65405,"Flint Hills Resources Pine Bend, LLC",STG,2019.0,12.9,10.3,7.9,3,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2019.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.7984496124031009,0.6124031007751938,MRO,MISO,MN,44.45483,-93.02119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.747708399025667 -65406,LGE-KU Solar Share Facility Simpsonville,SSP,2019.0,2.1,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8095238095238095,0.8095238095238095,SERC,LGEE,KY,38.216484,-85.391432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65408,Gilead Oceanside Solar Project,GOSSB,2021.0,0.7,0.7,0.7,0.3,MWH,Batteries,OP,BA,12.0,2021.0, , ,3.0,0.7,0.7,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.213138,-117.304166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65408,Gilead Oceanside Solar Project,GOSSP,2021.0,1.5,1.4,0.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9333333333333332,0.6000000000000001,WECC,CISO,CA,33.213138,-117.304166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65409,Gilead Foster City Solar Project,GFCS1,2021.0,0.9,0.9,0.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.11111111111111105,WECC,CISO,CA,37.568597,-122.27797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65409,Gilead Foster City Solar Project,GFCS2,2021.0,0.2,0.1,, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.5,,WECC,CISO,CA,37.568597,-122.27797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65409,Gilead Foster City Solar Project,GFCSB,2021.0,0.5,0.5,0.5,0.1,MWH,Batteries,OP,BA,4.0,2021.0, , ,0.9,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.568597,-122.27797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65411,"Airport 009239 SCS Lexington, LLC",20215,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,40.785402,-99.768018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65412,"Northern Cardinal Solar SCS IL 1, LLC",20213,2021.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.07,-88.243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65413,"SCS West Fairchild 011958 Danville, LLC",20217,2021.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.140564,-87.650494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65414,"SCS Plainfield 011755 Naperville, LLC",20212,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,IL,41.69963,-88.16644,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65415,"SCS Galena 012589 Peoria, LLC",20218,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.765278,-89.56913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65416,"Monroe 009452 SCS Cozad, LLC",20214,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,NE,40.872664,-99.978579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65417,"SCS COUNTY 012631 Champaign, LLC",20216,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,40.318985,-89.177373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65418,"SCS Randolph 012175 Somerset, LLC",20211,2021.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.54009,-74.558799,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65434,OYA Wayside Drive,NY003,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,44.017,-75.922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65435,OYA Pulaski,NY004,2022.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,NYIS,NY,43.583,-76.18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65436,OYA Main Street,NY006,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,NYIS,NY,42.875,-77.877,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65441,USS Itasca Clean Energy Solar LLC,ITCBT,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,3.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,MN,47.21051,-93.51823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65441,USS Itasca Clean Energy Solar LLC,USSTC,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,47.21051,-93.51823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65444,USS Verbena Solar LLC,USSVS,2022.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.725917,-94.494232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65447,CA-Ventura Co CCD-Oxnard College Canopy,19032,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.165905,-119.156765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65448,SolarClub 10 LLC,SC 10,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.273,-93.83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65449,SolarClub 15 LLC,SC 15,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,45.43,-94.026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65450,NY - PANYNJ - LaGuardia - Rooftop,18002,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.772982,-73.874722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65451,SolarClub 20 LLC,SC 20,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.368,-92.028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65452,SolarClub 23 LLC,SC 23,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,43.866,-91.323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65453,SolarClub 28 LLC,SC 28,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.543,-94.226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65455,SolarClub 35 LLC,SC 35,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.101,-94.077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65459,OYA Church Road,NY005,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.19133,-76.38954,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65460,Hartland Solar,HART1,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.85045,-69.45384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65461,Unity Solar,UNITY,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.598,-69.357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65464,"Laredo Detention Facility - Solar 2, 3",LDF2,2021.0,3.1,3.0,2.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.967741935483871,0.7419354838709676,WECC,CISO,CA,35.510942,-119.109941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65464,"Laredo Detention Facility - Solar 2, 3",LDF3,2021.0,2.1,2.1,1.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8095238095238095,WECC,CISO,CA,35.510942,-119.109941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65465,Cinnaminson Landfill Solar,CINN,2019.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.01583,-74.98355,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65466,Kinsley II Landfill Solar System,KINS2,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.79271,-75.11138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65467,Pennsauken Brownfield Solar,PENN,2019.0,12.0,12.0,12.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.96307,-75.07949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65468,Highland Park Borough Solar,HIGH,2019.0,0.5,0.5,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.4966,-74.41746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65468,Highland Park Borough Solar,HPBA,2019.0,0.6,0.6,0.6,0.5,MWH,Batteries,OP,BA,11.0,2019.0, , ,2.1,0.5,0.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,NJ,40.4966,-74.41746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65469,Sealed Air Madera Solar Project,SAMBA,2022.0,0.8,0.8,0.8, ,MWH,Batteries,OP,BA,5.0,2022.0, , ,3.1,0.8,0.8,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,36.945582,-120.056016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65469,Sealed Air Madera Solar Project,SAMSP,2022.0,3.0,3.0,2.3, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7666666666666666,WECC,CISO,CA,36.945582,-120.056016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65470,Cummins Whitakers PV Arrays,CWPVA,2022.0,3.3,2.9,2.7,3.3,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8787878787878788,0.8181818181818183,SERC,PJM,NC,36.089369,-77.726806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65472,Chukar Battery Energy Storage System,CHUK1,2021.0,10.0,10.0,10.0,1,MWH,Batteries,OP,BA,7.0,2021.0, , ,40.0,10.0,10.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,NEVP,NV,39.55636,-119.43665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65473,"GD Johnson Scituate I, LLC",GDJSI,2021.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.807129,-71.505379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65474,"GDIM 1, LLC",GDIM1,2021.0,9.6,9.6,9.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.966678,-71.525993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65475,"GDIM 2, LLC",GDIM2,2021.0,9.6,9.6,9.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.967314,-71.519606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65476,"GDIM 3, LLC",GDIM3,2021.0,9.6,9.6,9.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.963066,-71.516929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65477,"GDIM 4, LLC",GDIM4,2021.0,9.6,9.6,9.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.963066,-71.516929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65478,"Green Providence Wind I, LLC",GPWI,2021.0,1.5,1.5,1.5,1.5,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.789486,-71.384771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65479,"Green Providence Wind II, LLC",GPWII,2021.0,3.0,3.0,3.0,3,WND,Onshore Wind Turbine,OP,WT,12.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,RI,41.786045,-71.385542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65481,Wilkinson DeFore,WD,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.8813,-83.3029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65484,Western Plains Wind,WPW1,2021.0,2.7,2.7,2.7,1.3,WND,Onshore Wind Turbine,OP,WT,10.0,2021.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,KS,39.122,-100.733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65485,Graniterock Quarry,GRWQ,2022.0,4.4,4.4,4.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9318181818181817,WECC,CISO,CA,36.878164,-121.6028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65487,"Washington Avenue Solar, LLC",WASH,2020.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.821552,-73.949911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65494,Herrema Dairy,HER1,2022.0,1.5,0.8,0.8,0.3,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.5333333333333334,0.5333333333333334,RFC,MISO,IN,41.086356,-87.256801,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.289315726290516 -65497,Garden 1 Solar Park,GRDS1,2016.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,45.796239,-86.534614,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65498,Garden 2 Solar Park,GRDS2,2022.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,MI,45.797967,-86.534425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65499,Danville BESS 1,90909,2022.0,10.5,10.5,10.5,10,MWH,Batteries,OP,BA,11.0,2022.0, , ,24.6,10.0,10.0,OTH,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,SERC,PJM,VA,36.578864,-79.384088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65502,Beaker,BEAKR,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.597904,-77.609438,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65503,Belafonte,BELAF,2018.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.161492,-78.090148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65505,Gilead,GILEA,2019.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.198537,-80.013247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65506,Gladstone Farm,GLADS,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.213491,-79.557136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65508,Mendota Rich Dev CSG,MEND,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,PJM,IL,41.541339,-89.14808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65510,Sierra Pacific Chinese Camp,GEN 1,2022.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.883393,-120.454433,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65512,"Kansas Ethanol, LLC",KSET,2020.0,13.5,11.9,13.5,10.5,NG,Natural Gas Fired Combustion Turbine,OP,GT,6.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.8814814814814815,1.0,MRO,SWPP,KS,38.286173,-98.192128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.999807577930937 -65515,Dodge Renewables 1,11049,2022.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,MRO,MISO,MN,44.01862,-92.86606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65516,Dodge Renewables 2,11083,2022.0,1.0,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8,0.8,MRO,MISO,MN,44.02037,-92.86973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65517,Abel Road Bioenergy,BMORC,2022.0,4.0,3.0,3.0,0.5,AB,Other Waste Biomass,OP,OT,7.0,2022.0, , ,,,,,biomass,waste,Agricultural By-Products,Other,0.75,0.75,WECC,CISO,CA,39.145608,-122.118591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27.816738660907127 -65520,Vasquez V CSG,VASQV,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.231806,-104.79894,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65521,"Longbow Solar, LLC",LBSOL,2022.0,78.1,78.1,78.1, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.289809,-95.298609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65528,CA - Fresno County - Juvenile Hall,17031,2022.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.661113,-119.725975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65530,Portage Industrial Battery,BESS1,2022.0,5.0,5.0,5.0,0.1,MWH,Batteries,OP,BA,8.0,2022.0, , ,10.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,WI,43.552111,-89.487731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65532,Baldwin,BALD,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,43.79322,-70.75685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65533,Augusta,AUGU,2022.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.36124,-69.79636,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65534,Monmouth,MON,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.192188,-70.021685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65535,Bakke,BAK1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65535,Bakke,BAK9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.295946,-102.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.482784957076957 -65536,Citrus City,CC1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65536,Citrus City,CC9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.320997,-98.351744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.48371867159468 -65537,Clara,CLA1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65537,Clara,CLA9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.845265,-95.553945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.4925316575615 -65538,Cutten,CUT1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65538,Cutten,CUT9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.956811,-95.527643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.478333333333333 -65539,E. Porte Ct.,EPC1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65539,E. Porte Ct.,EPC9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.19208,-97.664239,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.501050955414014 -65540,Frankel,FRA1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65540,Frankel,FRA9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.381434,-102.78282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.51931218313908 -65541,GCWA,IPS1,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS2,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS3,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS4,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS5,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS6,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS7,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,IPS8,2013.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,MUN1,2014.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,MUN2,2014.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,MUN3,2014.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65541,GCWA,MUN4,2014.0,0.6,0.6,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2014.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.380114,-94.953418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.161177644710579 -65542,Goldsmith,GS1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65542,Goldsmith,GS9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.975269,-102.63501,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.490465914317047 -65543,Mckeever,MK1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65543,Mckeever,MK9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.508402,-95.479339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.29233889004861 -65544,N. Mary Francis,NMF1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65544,N. Mary Francis,NMF9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.921616,-102.431039,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.292939393939394 -65547,Wedge,WEDGE,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.416191,-77.919201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65548,Truman (NC),TRUMN,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.713283,-78.326891,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65549,Trent River Farm,TRENT,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.059582,-77.186594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65550,Tinker (NC),TINKR,2018.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.688268,-79.136921,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65551,Sneads Grove,SNEAD,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.79217,-79.465814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65552,Henry Farm,HENRY,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.859618,-79.577907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65553,Kalish Farm Solar,KALIS,2018.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.308176,-79.720544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65554,Kendall Farm,KENDL,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.850341,-79.555024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65555,Peake Road,PEAKE,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.271819,-78.653997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65556,Seagrove,SEAGR,2019.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.532427,-79.787634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65559,Nolan,NOLAN,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.238649,-73.361617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65560,Truck Stop,TRUCK,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.341063,-73.396681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65563,Robin NJ,136,2022.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.19247,-74.56597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65564,Calibrant Bakersfield LLC,BAKER,2022.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.442085,-119.093214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65566,Bradford Solar,BRADF,2017.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.751153,-71.094447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65567,Smith Solar Farm,SMITH,2019.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.775083,-79.558408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65568,Google Moffett Park Solar Project,GMSP1,2021.0,0.9,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.405313,-122.017498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65568,Google Moffett Park Solar Project,GMSP2,2021.0,0.7,0.7,0.5, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7142857142857144,WECC,CISO,CA,37.405313,-122.017498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65568,Google Moffett Park Solar Project,GMSPB,2021.0,0.6,0.6,0.6,0.6,MWH,Batteries,OP,BA,3.0,2021.0, , ,1.1,0.6,0.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.405313,-122.017498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65569,Gilead Sciences La Verne Rooftop Solar,GSRBA,2021.0,1.1,1.1,1.1, ,MWH,Batteries,OP,BA,7.0,2021.0, , ,2.1,1.1,1.1,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.09623,-117.781867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65569,Gilead Sciences La Verne Rooftop Solar,GSRSP,2021.0,1.7,1.6,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9411764705882354,0.8235294117647058,WECC,CISO,CA,34.09623,-117.781867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65570,West Valley Mission CCD Solar Project,WVMBA,2022.0,0.9,0.9,0.9,0.9,MWH,Batteries,OP,BA,9.0,2022.0, , ,2.1,0.9,0.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.264377,-122.006021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65570,West Valley Mission CCD Solar Project,WVMSP,2022.0,2.7,2.5,0.9,2.7,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9259259259259258,0.33333333333333326,WECC,CISO,CA,37.264377,-122.006021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65571,Verizon Hidden Ridge Solar Project,VH600,2022.0,1.0,0.9,0.6,1,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9,0.6,TRE,ERCO,TX,32.87662,-96.95372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65571,Verizon Hidden Ridge Solar Project,VH700,2022.0,1.1,1.0,0.7,1.1,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9090909090909091,0.6363636363636362,TRE,ERCO,TX,32.87662,-96.95372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65571,Verizon Hidden Ridge Solar Project,VH750,2022.0,0.8,0.8,0.6,0.8,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.75,TRE,ERCO,TX,32.87662,-96.95372,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65573,Ridge Rd,RR1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65573,Ridge Rd,RR9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.16815,-98.09831,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.3 -65574,Santa Rosa,SR1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65574,Santa Rosa,SR9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,10.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.23055,-97.82349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.296520504647363 -65575,Southwick,SW1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65575,Southwick,SW9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,11.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.59576,-95.36578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.300401234567902 -65576,Stonegate,STG1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65576,Stonegate,STG9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,29.785353,-95.875497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.294538175579069 -65577,Clearwater Wind I,CW1,2022.0,365.5,365.5,365.5,0,WND,Onshore Wind Turbine,OP,WT,11.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PSEI,MT,46.81771,-106.378853,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65578,Tumbleweed,TWD1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65578,Tumbleweed,TWD9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,7.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,32.35123,-102.5577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.293451140399801 -65579,Vaquero,VQ1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65579,Vaquero,VQ9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.168074,-97.654049,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.290966359435108 -65580,Villa Cavasos,VC1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65580,Villa Cavasos,VC9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,8.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,26.02131,-97.596284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.287842769611945 -65581,Westover,WSI1,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI10,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI11,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI12,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI13,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI14,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI15,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI2,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI3,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI4,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI5,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI6,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI7,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI8,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65581,Westover,WSI9,2013.0,0.6,0.5,0.6,0.1,DFO,Petroleum Liquids,OP,IC,9.0,2013.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,0.8333333333333334,1.0,TRE,ERCO,TX,31.8362,-102.4461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.310499856950178 -65583,"Richlands Solar, LLC",RICH1,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.784644,-77.637943,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65584,"Cruise Solar, LLC",CRUI1,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.69193,-77.543559,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65585,Whatley Renewables,2684,2020.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,ISNE,MA,42.444614,-72.609629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65586,Wachusett Solar,2910,2019.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,RFC,ISNE,MA,42.48392,-71.71081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65587,RT32 Westerlo Solar 1,7105,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,NPCC,NYIS,NY,42.44623,-74.01607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65595,Hormel CSG Solar,HORCS,2022.0,1.0,1.0,1.0,0.2,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.953,-95.697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65597,"CEC, LLC Westtown B",CLWB,2018.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.345272,-74.561334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65609,Gilcrest Sun CSG,GLCRS,2021.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,40.293752,-104.806202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65610,MO32 (CSG),MO32,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.119391,-76.959758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65611,MO33 CSG,MO33,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.187812,-77.119864,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65612,Snowden River CSG,SNOWD,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.175364,-76.837373,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65613,JB-Tobin 2,JBTB2,2021.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.68963,-73.80517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65614,Orange Coast College PH2 Solar Project,OCCBA,2022.0,2.1,2.1,2.1, ,MWH,Batteries,OP,BA,5.0,2022.0, , ,4.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.672565,-117.91246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65614,Orange Coast College PH2 Solar Project,OCCSP,2022.0,3.1,3.0,2.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.967741935483871,0.8709677419354839,WECC,CISO,CA,33.672565,-117.91246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65617,BBARWA,P3998,2021.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.267795,-116.815428,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65618,Gunnison Solar,524,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,39.16743,-111.80102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65619,ER Sand Hill,289,2022.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,VT,43.60689,-73.18995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65620,100 Lower,100LR,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.294,-74.539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65621,456 Lower,456LR,2020.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.311,-74.522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65622,Absegami,ABSGI,2021.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.48,-74.516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65623,Cedar Creek,CDRCK,2021.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.551,-74.627,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65624,Union Springs 40,US40,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.85,-76.65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65625,Union Springs 963,US963,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.85,-76.65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65626,North Eagle Village Solar,NEV,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.05,-75.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65627,Green Lakes Solar,GL,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.05,-75.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65628,Judd Road Solar,JR,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.15,-75.35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65631,"Pisgah Ridge Solar, LLC",PSGAH,2022.0,250.0,250.0,250.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,31.896737,-96.467327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65632,MN CSG 2019-38 DE LLC,REGEN,2022.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.316403,-93.894242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65636,Dartmouth Farms Solar,2132,2017.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,RFC,ISNE,MA,41.6628,-71.00347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65636,Dartmouth Farms Solar,5138,2020.0,2.3,2.3,2.1, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9130434782608696,RFC,ISNE,MA,41.6628,-71.00347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65637,Foster Solar,2481,2016.0,1.2,1.2,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2016.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8333333333333334,RFC,ISNE,RI,41.84242,-71.71459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65638,SR Greenville I,SRGN1,2022.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,36.294811,-82.698881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65639,SR Greenville II,SRGN2,2022.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,36.1905,-82.740047,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65640,SR Bolivar,SRBOL,2022.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.256656,-89.020275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65641,SR Paris,SRPAR,2022.0,6.8,6.8,6.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,36.445894,-88.327688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65642,SR Jackson II,SRJA2,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TVA,TN,35.607757,-88.917046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65643,Castleton,CASTN,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.523,-73.703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65647,Croton Solar,CROT,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,NYIS,NY,41.280404,-73.867575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65650,Brockelman Road Solar 2,15446,2021.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,ISNE,MA,42.48392,-71.71081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65650,Brockelman Road Solar 2,15447,2021.0,2.0,2.0,1.8, ,MWH,Batteries,OP,BA,9.0,2021.0, , ,1.7,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,0.9,RFC,ISNE,MA,42.48392,-71.71081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65652,Niagara Bottling - Rialto,NBRIA,2021.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.126094,-117.418451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65653,TES Rowtier,NBRIA,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.541925,-71.8567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65658,DRPA Lindenwold Station Solar Project,DLSSP,2021.0,6.0,6.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.7999999999999999,RFC,PJM,NJ,39.831654,-74.999234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65659,ENGIE 2020 ProjectCo-WI1 LLC,PV1,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.735027,-88.473775,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65661,Nebula Solar,NEB1,2022.0,135.0,135.0,135.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,26.090103,-97.798453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65662,Vancourt Solar Interconnections,VAN1,2022.0,45.0,45.0,45.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,26.090103,-97.798453,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65667,East Windsor Solar One,EWS1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.89,-72.518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65668,Southington Solar One,EWS1,2022.0,4.7,4.7,4.7, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.89,-72.518,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65669,Faunce Corner Community Solar,FCBA,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,3.9,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.672831,-70.989503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65669,Faunce Corner Community Solar,FCPV,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.672831,-70.989503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65670,Ventura,VTRBA,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,5.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,41.668886,-70.991383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65670,Ventura,VTRPV,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.668886,-70.991383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65671,Cattail (CSG),CATTL,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,MISO,IL,41.822595,-90.131166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65674,Edwards Sanborn E1B,PV,2022.0,154.4,154.4,154.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.964033,-118.094144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65675,Edwards Sanborn E4,PV,2022.0,148.9,148.9,148.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.943575,-118.087989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65676,Edwards Sanborn E5,PV,2022.0,68.0,68.0,68.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.965275,-118.0773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65677,Edwards Sanborn S4,PV,2022.0,41.2,41.2,41.2, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.012467,-118.119264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65679,Calverton Solar Energy Center,11933,2022.0,22.9,22.9,22.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,40.91367,-72.750359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65680,City of Sheboygan Solar,PV1,2022.0,0.9,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.709143,-87.755384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65681,Kohler Solar,PV1,2022.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,43.747,-87.765727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65684,Laurel Oaks Solar,1,2022.0,61.2,61.2,61.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.926882,-82.067668,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65687,Riverside Solar,1,2022.0,55.2,55.2,55.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.676065,-82.456163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65688,Kearsarge Ludlow LLC,LUD,2020.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.20128,-72.49416,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65690,Kearsarge Acushnet,ACUSH,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.715626,-70.903498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65691,KSU Trumbull,TRUMB,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.27874,-80.83665,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65694,TX11 Republic Road Storage,TX11,2022.0,50.0,50.0,50.0, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,50.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.881424,-96.62542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65695,TX12 Silicon Hill Storage,TX12,2022.0,100.0,100.0,100.0, ,MWH,Batteries,OP,BA,10.0,2022.0, , ,100.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,30.41217,-97.57405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65696,TX13 Endurance Park Storage,TX13,2022.0,50.0,50.0,50.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,50.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,32.85583,-100.991681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65701,TX23 Roughneck Storage,TX23,2022.0,50.0,50.0,50.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,50.0,50.0,50.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,29.15923,-95.6626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65706,POM Juice Solar,PJS,2021.0,1.5,1.5,1.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8666666666666667,WECC,CISO,CA,36.392479,-119.351133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65707,POM Beverage Solar,PBS,2021.0,1.8,1.7,1.6, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9444444444444444,0.888888888888889,WECC,CISO,CA,36.39026,-119.35792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65713,Rock Aetna Power Partners,32005,2022.0,20.0,20.0,20.0,2.3,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,44.022721,-96.052322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65716,Long Plain Solar,3779,2019.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,ISNE,MA,42.4457,-72.59714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65717,Settlers Solar,4452,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,NPCC,ISNE,MA,42.60734,-71.76125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65719,Griffin Road Solar 2,4809,2020.0,1.4,1.4,1.2, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8571428571428572,NPCC,ISNE,MA,42.14611,-71.99873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65720,Woodland Avenue Solar 1,5571,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,RFC,ISNE,MA,41.8884,-71.31839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65721,RT405 Westerlo Solar 2,7104,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,NPCC,ISNE,NY,42.44506,-74.01609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65722,Webster Solar,2538,2017.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,ISNE,MA,42.0281,-71.85031,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65723,LR Wheatfield Solar 1,15557,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,NPCC,ISNE,NY,43.12163,-78.91409,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65724,Pendleton Solar 1,15889,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,NPCC,ISNE,NY,43.09723,-78.75382,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65725,Kossuth County Wind,KCW,2022.0,70.0,70.0,70.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,IA,42.986667,-94.133611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65726,Montgomery County Community Solar Center,MCCSC,2022.0,5.7,5.7,5.7, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,38.890697,-91.423219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65727,Statesboro Solar LLC,GAST,2022.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,32.468039,-81.803722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65728,BE Solar LLC,GABE,2022.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.91,-84.548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65730,Rockmart,GARO,2022.0,2.6,2.6,2.6, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.014833,-85.022235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65731,Rockford CS 1,29197,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,42.17606,-89.08479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65732,Rockford CS 2,29198,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,42.17606,-89.08479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65737,Schumann Wind Farm,SCH,2022.0,8.0,8.0,8.0,0,WND,Onshore Wind Turbine,OP,WT,11.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,WECC,PACW,OR,45.90676,-118.4973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65740,"Canal Energy S23, LLC",21536,2021.0,4.1,4.1,4.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.1761,-119.5604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65745,Carnes Creek Solar (CSG),CAC22,2022.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.075205,-122.92771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65746,Cosper Creek Solar (CSG),CC22,2022.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.058,-123.499,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65747,Fruitland Creek Solar (CSG),FC22,2022.0,1.8,1.8,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,44.93013,-122.9375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65748,Kaiser Creek Solar (CSG),KC22,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.143,-122.609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65750,Sandy River Solar (CSG),SR22,2022.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.431055,-122.29516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65751,Sesqui-C Solar (CSG),SC22,2022.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.32543,-123.1769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65752,East Fishkill CSG,EFK,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.571,-73.829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65753,ELP Greenport CSG,GRPRT,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.237,-73.782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65754,ELP Kinderhook CSG,KDRHK,2020.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.464,-73.691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65755,ELP Myer CSG,MYER,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.041,-73.978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65756,Rockdale,RKDAL,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.628867,-77.874899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65757,ELP Saugerties CSG,SGRTS,2020.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,2.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.04,-74.074,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65759,Putnam Erikson 2,PE2,2021.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.276821,-83.29845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65761,Buffalo Ridge Wind,3161,2022.0,106.0,101.9,101.9,0,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",0.9613207547169812,0.9613207547169812,MRO,MISO,MN,44.423056,-96.297222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65763,Young Wind,WYOUN,2022.0,500.0,500.0,500.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.119213,-98.852577,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65764,Walleye Wind,WWLLC,2022.0,110.0,110.0,110.0,0,WND,Onshore Wind Turbine,OP,WT,12.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,MISO,MN,43.638056,-96.390556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65766,Dover Dairy,13856,2022.0,1.1,1.1,1.1,0,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.415526,-119.553653,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65767,Gustavus,1,2008.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.419497,-135.70737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.915343152566535 -65767,Gustavus,2,2008.0,0.4,0.4,0.4,0.1,DFO,Petroleum Liquids,OP,IC,12.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.419497,-135.70737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.915343152566535 -65767,Gustavus,3,2008.0,0.1,0.1,0.1,0,DFO,Petroleum Liquids,OP,IC,12.0,2008.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.419497,-135.70737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.915454603703466 -65767,Gustavus,4,2021.0,0.5,0.5,0.5,0.2,DFO,Petroleum Liquids,OP,IC,3.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,non-conus,non-conus,AK,58.419497,-135.70737,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.915365442651101 -65768,Centech Gas Generator,G1,2019.0,2.5,2.5,2.5,1.2,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,NPCC,ISNE,MA,42.255386,-71.690509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.654901960784313 -65770,Ventura Solar,SOLAR,2021.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.39919,-118.901987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65771,Big Bend Agrivoltaics,1,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.782731,-82.4008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65772,Big Bend Floating Solar I,1,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,TEC,FL,27.78822,-82.39541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65773,Star Peak Geothermal Plant,3500,2022.0,3.5,3.5,3.5,0.5,GEO,Geothermal,OP,BT,8.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,40.532133,-118.272015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65773,Star Peak Geothermal Plant,5100A,2022.0,5.1,5.1,5.1,0.5,GEO,Geothermal,OP,BT,8.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,40.532133,-118.272015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65773,Star Peak Geothermal Plant,5100B,2022.0,5.1,5.1,5.1,0.5,GEO,Geothermal,OP,BT,8.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,40.532133,-118.272015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65773,Star Peak Geothermal Plant,5200,2022.0,5.2,5.2,5.2,0.5,GEO,Geothermal,OP,BT,8.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,40.532133,-118.272015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65773,Star Peak Geothermal Plant,STEAM,2022.0,3.0,3.0,3.0,0.3,GEO,Geothermal,OP,BT,8.0,2022.0, , ,,,,,geothermal,geothermal,Geothermal,Turbines Used in a Binary Cycle (including those used for geothermal applications),1.0,1.0,WECC,NEVP,NV,40.532133,-118.272015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65774,Alden Road Harvard Solar 1,18031,2020.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,42.40028,-88.4988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65775,Cream Street Solar,5324,2020.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,ISNE,NY,41.75596,-73.87539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65776,Little Falls Solar,5939,2020.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,ISNE,NY,43.05899,-74.88603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65777,Little Falls Solar 1,5779,2020.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,ISNE,NY,43.05414,-74.85455,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65778,"Jackpot Solar, LLC",JKPT,2022.0,120.0,120.0,120.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,IPCO,ID,42.189,-114.6218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65779,"Hickson Solar, LLC",HICK,2022.0,2.8,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.7142857142857144,0.7142857142857144,SERC,CPLE,SC,34.69382,-79.82006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65780,"Ogburn Solar, LLC",OGBRN,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.66565,-80.39065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65781,"Bishopville Solar II, LLC",BSHP2,2022.0,10.0,10.0,10.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,SC,34.2081,-80.22832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65783,Wonderful Nursery,WN01,2021.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.617738,-119.392378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65784,Burlington Solar 1,BS1,2022.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.72795,-72.93262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65785,1639 RT 29 Solar 1,19822,2020.0,4.0,4.0,3.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.95,NPCC,ISNE,NY,43.04296,-74.24935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65786,1639 RT 29 Solar 2,19823,2020.0,2.5,2.5,2.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9199999999999999,NPCC,ISNE,NY,43.04296,-74.24935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65791,Blue Hen Solar,BHEN1,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DE,39.18568,-75.68538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65794,"20701 Plummer PV, LLC",VSPRC,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,LDWP,CA,34.243444,-118.58517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65804,Corvias - Fort Riley II,13191,2022.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,39.08557,-96.81503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65809,Caterina,CATER,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,28.34705,-99.673703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65810,Cedarville (TX),CDRVL,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.514106,-103.452361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65811,Coyote Springs (TX),CYTSP,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.39471,-103.630336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65813,Faulkner,FAULK,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.262381,-103.794852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65815,NY - Mines Press,MPBS,2022.0,1.0,1.0,1.0, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,2.1,0.6,0.6,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.27803,-73.86612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65815,NY - Mines Press,MPRES,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.27803,-73.86612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65817,"Clear Solar I, LLC",CLEA1,2020.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.308314,-81.841826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65818,"Limelight Solar I, LLC",LIME1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.94861,-81.987777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65819,"233 Randolph 74 Solar I, LLC",CAPE1,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.311944,-81.590555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65831,Lonestar,LNSTR,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.594864,-103.249847,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65833,Rattlesnake (TX),RTLSK,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,6.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.568978,-103.226631,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65834,Saddleback,SDLBK,2022.0,9.9,9.9,9.9, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.332883,-103.498425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65836,Toyah Power Station,TOYAH,2021.0,10.4,9.9,9.9, ,MWH,Batteries,OP,BA,10.0,2021.0, , ,9.9,9.9,9.9,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.9519230769230769,0.9519230769230769,TRE,ERCO,TX,31.113909,-103.66551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65838,Hoef's Road Storage,HOEFS,2021.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,5.0,2021.0, , ,2.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.031247,-103.46256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65857,Sunlight Storage,SUNS1,2022.0,230.0,230.0,230.0,1,MWH,Batteries,OP,BA,9.0,2022.0, , ,920.0,230.0,230.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.803,-115.402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65858,Dynamic Corinth (CSG),GEN1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,45.011548,-69.0267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65859,Dynamic Madison,GEN1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.791662,-69.7374,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65898,Gaylord Rockies CHP,T0041,2022.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.82,-104.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.012775188815684 -65898,Gaylord Rockies CHP,T0042,2022.0,2.0,2.0,2.0,1,NG,Natural Gas Internal Combustion Engine,OP,IC,5.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,WECC,PSCO,CO,39.82,-104.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.012775188815684 -65942,Grand Casino Hinckley Solar,GRAND,2022.0,3.0,3.0,3.0,0,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.006605,-92.907732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65945,Brookville Smart Bus Depot Microgrid,BESS,2022.0,1.5,1.5,1.5,0,MWH,Batteries,OP,BA,11.0,2022.0, , ,4.3,1.5,1.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,MD,38.99903,-77.058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65945,Brookville Smart Bus Depot Microgrid,PV,2022.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.99903,-77.058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65946,Hecate Energy Upshur Rural LLC,SOLAR,2022.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,SWPP,TX,32.843248,-94.731924,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65954,Kearsarge West Shore Solar LLC,PORT,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.6202,-71.26842,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65965,"Java Solar, LLC",JAVA,2022.0,13.5,13.5,13.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.233522,-119.81634,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65968,Hodag Solar,HODAG,2022.0,7.5,7.5,7.5, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,WI,45.61246,-89.44366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65969,Kankakee 2,KKS2,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,IL,41.176011,-87.879523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65972,Raptor Ridge,RRS,2022.0,12.5,12.5,12.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,TEPC,AZ,32.146944,-110.878056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65974,Timmerman (CSG),TIMM,2022.0,1.0,1.0,1.0,1,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.234621,-95.881345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65978,Dania Beach 7,7GT1,2022.0,492.2,434.1,432.2, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8819585534335637,0.8780983340105648,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.825808108044086 -65978,Dania Beach 7,7GT2,2022.0,492.2,434.1,432.2, ,NG,Natural Gas Fired Combined Cycle,OP,CT,5.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Combustion Turbine Part,0.8819585534335637,0.8780983340105648,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.269311591332622 -65978,Dania Beach 7,ST7,2022.0,463.3,377.8,369.6, ,NG,Natural Gas Fired Combined Cycle,OP,CA,5.0,2022.0, , ,,,,,CCGT,gas,Natural Gas,Combined Cycle Steam Part,0.8154543492337578,0.79775523418951,SERC,FPL,FL,26.0686,-80.1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65982,KDC Solar TC Little Patuxent WWTP LLC,TCLP,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.299137,-76.959953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65983,KDC Solar TC George Howard LLC,TCGH,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.300067,-76.957131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65984,KDC Solar TC Blandair Park LLC,TCBP,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.300615,-76.960961,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -65996,Harmony Solar,HARM,2022.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.98,-69.54635,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66003,MP CSG 1 LLC,MPCSG,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.619837,-92.388888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66005,"Limelight Solar III, LLC",LIME3,2020.0,3.6,3.6,3.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,SC,34.956394,-81.979834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66007,Flower Valley II,BA,2022.0,101.0,101.0,101.0,0,MWH,Batteries,OP,BA,4.0,2022.0, , ,200.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.197285,-103.361771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66008,Swoose II,BA,2022.0,101.0,101.0,101.0,0,MWH,Batteries,OP,BA,8.0,2022.0, , ,200.0,100.0,100.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.45115,-103.361771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66009,Crossett Power Management LLC,BA,2022.0,203.0,203.0,203.0,0,MWH,Batteries,OP,BA,6.0,2022.0, , ,400.0,200.0,200.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,TRE,ERCO,TX,31.191687,-102.317227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66016,Skalbeck Solar,SKAL,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,44.787094,-95.368805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66018,Norton Powerhouse 2,GEN3,2022.0,4.6,3.3,4.6,0.2,NG,Natural Gas Fired Combustion Turbine,OP,GT,11.0,2022.0, , ,,,,,OCGT,gas,Natural Gas,Combustion (Gas) Turbine,0.7173913043478262,1.0,NPCC,ISNE,MA,42.299,-71.804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.080373567284562 -66020,DRPA Woodcrest Station Solar Project,WSSP,2022.0,4.4,4.2,3.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9545454545454545,0.7045454545454546,RFC,PJM,NJ,39.907271,-75.046925,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66021,DRPA Ashland Station Solar Project,ASSA1,2022.0,2.7,2.5,2.3, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9259259259259258,0.8518518518518517,RFC,PJM,NJ,39.85853,-75.010346,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66022,Amazon MDW7 Solar Project,AMDW7,2022.0,1.9,1.9,0.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.26315789473684215,RFC,MISO,IL,41.424123,-87.772832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66028,DRPA Ferry Ave Station Solar Project,DFASP,2021.0,3.2,3.1,2.3, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.96875,0.7187499999999999,RFC,PJM,NJ,39.921831,-75.092539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66031,IL Sidney Project1,15332,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,40.0274,-88.04693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66032,Clay FC,14052,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,38.75066,-88.50682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66033,IL West Hallock Project1,15333,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,40.92402,-89.63196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66034,Sugar Hill Solar 1,19826,2020.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,NPCC,ISNE,NY,42.83259,-73.84255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66036,3104 Batavia Solar,20205,2021.0,3.0,3.0,2.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9333333333333332,NPCC,ISNE,NY,42.9994,-78.27517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66037,3232 Batavia Solar,20206,2021.0,4.0,4.0,3.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.95,NPCC,ISNE,NY,43.00024,-78.26818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66046,Brazoria County Solar Project (Danciger),BRZ01,2022.0,200.0,200.0,200.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.1779,-95.7612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66048,"Middleton Biogas Solar, LLC",MBS,2022.0,1.9,1.9,1.7, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8947368421052632,MRO,MISO,WI,43.1233,-89.5466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66048,"Middleton Biogas Solar, LLC",MBS-B,2022.0,0.3,0.3,0.3, ,MWH,Batteries,OP,BA,5.0,2022.0, , ,0.4,0.3,0.3,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,MRO,MISO,WI,43.1233,-89.5466,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66049,Salvation Army Solar,SARMY,2022.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.95526,-75.10218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66050,Lancaster Area Battery,LAB,2022.0,127.0,127.0,127.0, ,MWH,Batteries,OP,BA,9.0,2022.0, , ,508.0,127.0,127.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,34.6864,-118.3045,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66053,"Generate Colchester Fuel Cells, LLC",GCFC,2021.0,10.0,10.0,10.0,10,NG,Other Natural Gas,OP,FC,10.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.59413,-72.33131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66061,Angelica Solar Site 1,A1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.30639,-78.070392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66062,Angelica Solar Site 2,A2,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.304408,-78.076676,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66063,Angelica Solar Site 3,A3,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.301546,-78.074922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66064,Angelica Solar Site 4,A4,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.303015,-78.070922,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66065,West Valley Solar,WVS1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.449,-78.652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66065,West Valley Solar,WVS2,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.449,-78.652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66068,Maple City,704,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,AECI,IA,43.279547,-92.791272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66074,Marlborough Solar,4942,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,ISNE,NY,41.66398,-73.97007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66075,Blacksmith Road Solar 1,18120,2021.0,5.0,5.0,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.96,RFC,ISNE,MA,41.60169,-70.605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66075,Blacksmith Road Solar 1,18121,2021.0,2.0,2.0,1.8, ,MWH,Batteries,OP,BA,12.0,2021.0, , ,3.3,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,0.9,RFC,ISNE,MA,41.60169,-70.605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66076,Electric Avenue Lunenburg Solar 1,20409,2021.0,1.0,1.0,0.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8,RFC,ISNE,MA,42.58617,-71.75287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66076,Electric Avenue Lunenburg Solar 1,20410,2022.0,1.0,1.0,0.8, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,1.0,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,0.8,RFC,ISNE,MA,42.58617,-71.75287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66077,Harbor Road Solar 1,27582,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,RFC,ISNE,MA,42.58967,-73.13016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66078,Solar Star Urbana Landfill East,18952,2021.0,1.9,1.9,1.7, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8947368421052632,SERC,MISO,IL,40.12078,-88.17688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66079,Solar Star Urbana Landfill Central,20824,2021.0,1.9,1.9,1.7, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.8947368421052632,SERC,MISO,IL,40.12065,-88.17846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66081,Lenox Renewables,8211,2021.0,3.3,3.3,3.1, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9393939393939394,NPCC,ISNE,NY,43.11064,-75.77579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66082,OE IL Solar 3,14850,2022.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,NPCC,MISO,IL,42.02005,-89.36263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66083,French Road Solar II,7063,2022.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,42.06052,-88.5451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66085,Rockford Solar,16682,2021.0,2.0,2.0,1.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9,SERC,MISO,IL,42.28525,-89.09937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66086,Milo CSG,29045,2022.0,4.5,4.5,4.3, ,SUN,Solar Photovoltaic,OP,PV,2.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9555555555555555,NPCC,ISNE,ME,45.24368,-69.01552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66087,Livermore Falls CSG,28911,2022.0,3.3,3.3,3.1, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.9393939393939394,NPCC,ISNE,ME,44.48002,-70.16987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66088,Putah Creek Solar Farm North,PCEF,2022.0,3.0,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9666666666666667,0.9666666666666667,WECC,CISO,CA,38.524531,-121.99531,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66095,"Cortez Solar 1, LLC",712,2022.0,2.2,2.2,2.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,WACM,CO,37.361706,-108.524683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66100,Water Street Solar,WATER,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.2424,-69.7543,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66125,"West Line Solar, LLC",WESTL,2022.0,100.0,100.0,100.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,SRP,AZ,32.7559,-111.5548,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66140,PNA Rossford Solar Array,PNA01,2022.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,OH,41.614879,-83.557244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66142,Kaiser - Harbor City,KSR48,2019.0,2.1,2.1,2.1,2.1,NG,Other Natural Gas,OP,FC,12.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,33.788034,-118.295496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66143,San Diego Community College,SDC01,2020.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,3.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,32.805901,-117.167738,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66145,Life Technologies - Fremont,TMF06,2020.0,1.3,1.3,1.3,1.3,NG,Other Natural Gas,OP,FC,12.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,37.487027,-121.93942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66146,Kaiser - LA,KSR40,2020.0,4.5,4.5,4.5,4.5,NG,Other Natural Gas,OP,FC,6.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.099359,-118.29571,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66148,Kaiser - Woodland Hills,KSR55,2019.0,3.1,3.1,3.1,3.1,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.173105,-118.590273,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66150,Equinix - Elmsford,EQX36,2020.0,1.7,1.7,1.7,1.7,NG,Other Natural Gas,OP,FC,9.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,NYIS,NY,41.071199,-73.819205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66151,CoreSite - Somerville,CST00,2020.0,3.6,3.6,3.6,3.6,NG,Other Natural Gas,OP,FC,9.0,2020.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,MA,42.376613,-71.080516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66152,Connecticut College,CNC00,2019.0,1.2,1.2,1.2,1.2,NG,Other Natural Gas,OP,FC,9.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,NPCC,ISNE,CT,41.38151,-72.103214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66159,Cape Girardeau Renewable Energy Center,RECBJ,2021.0,1.2,1.2,1.2,1.2,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,MO,37.319686,-89.525967,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66176,Landau Solar,10891,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.90066,-74.027773,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66177,Drinkwater Solar,10896,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.014985,-74.683403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66178,"South 49th 013445 SCS Norfolk, LLC",9122,2022.0,8.5,8.5,8.5, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,WACM,NE,42.0312,-97.48271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66178,"South 49th 013445 SCS Norfolk, LLC",9123,2022.0,2.1,1.0,1.0, ,MWH,Batteries,OP,BA,12.0,2022.0, , ,2.1,1.0,1.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",0.47619047619047616,0.47619047619047616,MRO,WACM,NE,42.0312,-97.48271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66180,Huxley Solar,HUXBA,2022.0,5.0,5.0,5.0,0,MWH,Batteries,OP,BA,12.0,2022.0, , ,3.5,3.5,3.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.197564,-72.48015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66180,Huxley Solar,HUXPV,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.197564,-72.48015,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66181,"Beacon Solar, LLC",BEABA,2022.0,5.0,5.0,5.0,0,MWH,Batteries,OP,BA,11.0,2022.0, , ,7.8,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.284,-72.677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66181,"Beacon Solar, LLC",BEAPV,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.284,-72.677,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66182,Town of Amherst Solar,AMHBA,2022.0,2.5,2.5,2.5, ,MWH,Batteries,OP,BA,8.0,2022.0, , ,2.0,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.356,-72.479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66182,Town of Amherst Solar,AMHPV,2022.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.356,-72.479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66187,McCarthy Solar,10992,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.401253,-74.179076,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66188,POM Plant 1,POMP1,2021.0,2.4,2.2,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9166666666666667,0.5416666666666667,WECC,CISO,CA,36.657094,-119.585697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66189,POM Plant 2,POMP2,2021.0,1.6,1.3,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.8125,0.6875,WECC,CISO,CA,36.656664,-119.592219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66190,Inst and Envir Dir Marine Logistics Base,001,2005.0,1.9,1.8,1.9,0.7,LFG,Landfill Gas,OP,IC,10.0,2005.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,0.9473684210526316,1.0,SERC,SOCO,GA,31.549425,-84.048594,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66195,"SPPW1, LLC",T-1,2022.0,2.8,2.8,2.8,2.8,WND,Onshore Wind Turbine,OP,WT,7.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.313772,-98.960279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66195,"SPPW1, LLC",T-2,2022.0,2.8,2.8,2.8,2.8,WND,Onshore Wind Turbine,OP,WT,7.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,MRO,SWPP,NE,40.313772,-98.960279,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66199,"Cairo Solar Farm, LLC",CAIRO,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,30.911286,-84.22888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66200,"Cedar Creek Solar, LLC",CEDAR,2017.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,34.02783,-83.75747,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66201,Niagara Bottling - Bloomfield,NBBRM,2022.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.860396,-72.722889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66202,"Old Plank Road Solar Farm, LLC",OLDPL,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,JEA,FL,30.3185,-81.888284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66205,"Turnipseed Solar, LLC",TURNI,2017.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SOCO,GA,33.69915,-84.678913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66206,Mohawk View Solar,MOVSO,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.9412,-74.372177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66207,Van Epps Solar,VEPSO,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.93404,-74.3782,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66209,Bantam Solar,10986,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.070426,-74.730767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66210,Bogart Solar,10887,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.209593,-73.995085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66211,Brickchurch Solar,10889,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.201698,-76.968078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66212,Canoga Solar,10965,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.85206,-76.8001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66213,Costanza Solar,10907,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.460556,-74.069444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66214,County Route 84 Solar,10967,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.027157,-77.582546,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66215,Cafferty Hill Solar,10996,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.081843,-76.112885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66217,Donati Solar,10968,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.944796,-76.790886,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66218,Dubois Solar (Hybrid),10892,2020.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.598889,-74.285833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66218,Dubois Solar (Hybrid),BAT,2020.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,12.0,2020.0, , ,4.4,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.598889,-74.285833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66220,Finney Solar,10999,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.979546,-74.275082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66221,Henrietta Solar,10972,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.021133,-77.7068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66222,Landau II Solar (Hybrid),10895,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.900186,-74.024392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66222,Landau II Solar (Hybrid),BAT,2021.0,4.0,4.0,4.0, ,MWH,Batteries,OP,BA,12.0,2021.0, , ,8.8,4.0,4.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.900186,-74.024392,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66223,Lockenhurst Pond Solar,11000,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.33695,-74.55504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66224,New Beginnings Solar,10890,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.892424,-74.093599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66225,NY70 Solar,10970,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.552187,-77.967989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66226,Reid Solar,10991,2021.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.205594,-75.382968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66227,Reisender Solar,10886,2019.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.743505,-74.514615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66228,Salt Point Solar (Hybrid),10888,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.741126,-73.882065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66228,Salt Point Solar (Hybrid),BAT,2021.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,1.0,2021.0, , ,4.4,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.741126,-73.882065,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66229,Sangolqui Solar,10975,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.947327,-76.785599,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66230,State Route 14A Solar,10997,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.740808,-77.072419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66231,State Highway 17B Solar,10988,2021.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,3.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.682259,-74.876541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66232,Svenski Solar (Hybrid),10894,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.535043,-74.322869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66232,Svenski Solar (Hybrid),BAT,2022.0,2.0,2.0,2.0, ,MWH,Batteries,OP,BA,4.0,2022.0, , ,4.4,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,41.535043,-74.322869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66233,West Creek Solar,10995,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.192559,-76.259349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66234,Wheatland 2A Solar,10971,2021.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.017211,-77.798702,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66235,Wheatland 2B Solar,10961,2021.0,4.5,4.5,4.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.015501,-77.798643,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66236,Wildflower Way Solar,10982,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.358381,-77.304225,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66242,Lake Elsinore Canopies - Lakeside HS,LSHS,2022.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,33.668,-117.383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66243,Lewiston Junction Road Solar,LWSJN,2022.0,4.9,4.9,4.9, ,SUN,Solar Photovoltaic,OP,PV,1.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.050556,-70.307056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66244,Webb Road Solar,WEBRD,2022.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.528235,-69.69731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66245,Merrill Road Solar,MRLRD,2022.0,4.6,4.6,4.6, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.15792,-70.197138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66246,Lisbon Street Solar,LSBST,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.061033,-70.153695,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66247,"Ash Mesa Solar, LLC",21536,2022.0,7.8,7.8,7.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PSCO,CO,38.663372,-107.996652,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66248,Butterfield Solar Farm,BSS1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,OK,33.96895,-96.434611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66283,Silver Maple,SIMA1,2022.0,20.0,20.0,20.0,0.1,WND,Onshore Wind Turbine,OP,WT,10.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,NPCC,ISNE,ME,44.7821,-68.5201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66310,Cutlass Solar 1 LLC,CT1PV,2022.0,110.9,110.9,110.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,TRE,ERCO,TX,29.409669,-95.73405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66311,Venice Park,10,2014.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.985176,-83.976384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66311,Venice Park,7,2014.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,5.0,2014.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.985176,-83.976384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66311,Venice Park,8,2012.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,9.0,2012.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.985176,-83.976384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66311,Venice Park,9,2021.0,1.6,1.6,1.6,1,LFG,Landfill Gas,OP,IC,10.0,2021.0, , ,,,,,biomass,biomass,Landfill Gas,Internal Combustion Engine,1.0,1.0,RFC,MISO,MI,42.985176,-83.976384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66317,Brimfield,BRIM1,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.117417,-72.223472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66318,WEB Brookfield,BROK1,2021.0,3.4,3.4,3.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.191583,-72.109389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66321,"King Creek Wind Farm 1, LLC",KC1,2022.0,184.0,184.0,184.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.268,-99.468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66323,"King Creek Wind Farm 2, LLC",KC2,2022.0,209.0,209.0,209.0,0,WND,Onshore Wind Turbine,OP,WT,4.0,2022.0, , ,,,,,onwind,wind,Wind,"Wind Turbine, Onshore",1.0,1.0,TRE,ERCO,TX,33.182551,-99.389904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66331,Wonderful Firebaugh,WFB01,2022.0,5.4,5.4,5.4, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.835981,-120.3205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66332,Wonderful Kings,WFK01,2022.0,3.5,3.2,1.6, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9142857142857144,0.4571428571428572,WECC,CISO,CA,35.769028,-119.868469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66339,Brainerd Airport,BRN01,2022.0,5.8,5.8,5.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.39096,-94.14054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66368,NSE Astoria - Skyward,SKYW,2021.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PGE,OR,45.418564,-122.277905,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66371,Edison Farm,EDISN,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.51703,-79.709226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66372,Overhill Solar,OVERH,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,34.98247,-78.319062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66373,Polk Farm,POLK,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.922572,-79.654447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66374,Selwyn Farm,SELW,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.974485,-79.991608,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66375,Shieldwall Solar,SHIEL,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,36.455422,-77.885106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66376,Summit Solar,SUMMT,2022.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.22732,-78.03749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66380,"SCS Penfield One 010750 Penfield, LLC",83022,2022.0,5.0,4.9,2.8, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9800000000000001,0.5599999999999999,NPCC,NYIS,NY,43.134,-77.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66381,"SCS Harpswell 012903 Brunswick, LLC",11822,2022.0,4.9,4.9,3.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6122448979591837,NPCC,ISNE,ME,43.897,-69.947,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66392,Jax LNG,1110,2018.0,2.5,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,JEA,FL,30.394298,-81.557214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.467628031013877 -66392,Jax LNG,1120,2018.0,2.5,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,JEA,FL,30.394298,-81.557214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.467628031013877 -66392,Jax LNG,1130,2018.0,2.5,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,JEA,FL,30.394298,-81.557214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.467628031013877 -66392,Jax LNG,1140,2018.0,2.5,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,JEA,FL,30.394298,-81.557214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.467628031013877 -66393,Towanda Facility,P103,2021.0,1.6,1.5,1.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,PA,41.814444,-76.2875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.61107325383305 -66393,Towanda Facility,P104,2021.0,1.6,1.5,1.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,PA,41.814444,-76.2875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.61107325383305 -66393,Towanda Facility,P105,2021.0,1.6,1.5,1.5,1.5,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9375,0.9375,RFC,PJM,PA,41.814444,-76.2875,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.61107325383305 -66406,"AJMS, LLC",AJMS,2015.0,1.2,1.2,0.1,0.3,WAT,Conventional Hydroelectric,OP,HY,10.0,2015.0, , ,,,,,hydro,hydro,Water,Hydroelectric Turbine,1.0,0.08333333333333337,WECC,IPCO,ID,42.962333,-114.517194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66413,Spanish Fork Community Solar,10112,2021.0,4.0,4.0,4.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACE,UT,40.127951,-111.63336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66417,Manheim New England,GRND,2012.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2012.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,41.878118,-71.163542,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66422,Westside Solar,NORTH,2022.0,3.5,3.4,2.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9714285714285714,0.7714285714285715,MRO,MISO,MN,44.053575,-92.548489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66422,Westside Solar,SOUTH,2022.0,6.5,6.4,5.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.9846153846153847,0.8153846153846154,MRO,MISO,MN,44.053575,-92.548489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66427,"Emerald Marshfields, LLC",EMAR1,2022.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.099331,-70.714586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66428,"Emerald Kemble, LLC",EK350,2022.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.768436,-74.498739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66428,"Emerald Kemble, LLC",EK360,2022.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.768436,-74.498739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66429,"Emerald Gardens PKI, LLC",EPKI1,2021.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.271832,-73.122255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66429,"Emerald Gardens PKI, LLC",EPKI2,2021.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,10.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,CT,41.271832,-73.122255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66434,Monroeville RTO BTM,PB1,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,4.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.244288,-82.708949,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9.224137931034482 -66437,Niles RTO BTM,PB1,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.168019,-80.752918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.175324675324676 -66437,Niles RTO BTM,PB2,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.168019,-80.752918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.175324675324676 -66437,Niles RTO BTM,PB3,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.168019,-80.752918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.175324675324676 -66437,Niles RTO BTM,PB4,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.168019,-80.752918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.175324675324676 -66438,Perkasie PA BTM,PB1,2022.0,2.2,2.2,2.2,2.2,DFO,Petroleum Liquids,OP,IC,4.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.379054,-75.30352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.0 -66438,Perkasie PA BTM,PB2,2022.0,2.2,2.2,2.2,2.2,DFO,Petroleum Liquids,OP,IC,4.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.379054,-75.30352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.0 -66442,LSE Musca Solar,ORANG,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.30895,-77.0403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66444,Woodville RTO BTM,PB1,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,10.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.4587,-83.369009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.03448275862069 -66445,Blakely (PA) RTO BTM,PB 2,2022.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,12.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.475957,-75.600602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.725806451612904 -66445,Blakely (PA) RTO BTM,PB1,2022.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,12.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,41.475957,-75.600602,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.725806451612904 -66446,Ephrata PA BTM,PB1,2021.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,11.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.188351,-76.171216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.294117647058824 -66446,Ephrata PA BTM,PB2,2021.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,11.0,2021.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.188351,-76.171216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.294117647058824 -66448,Girard (PA) RTO BTM,PB1,2022.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,3.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,42.003322,-80.320237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.083333333333334 -66454,Hatfield PA BTM,PB1,2022.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,12.0,2022.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,PA,40.275214,-75.289218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.55 -66455,Yale New Haven - New London,YNH01,2022.0,1.8,1.8,1.8,1.8,NG,Other Natural Gas,OP,FC,9.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,ISNE,CT,41.336413,-72.105611,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66456,Anheuser Busch - Fairfield,ANB00,2022.0,2.6,2.6,2.6,2.6,NG,Other Natural Gas,OP,FC,12.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,38.235224,-122.092666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66457,Apple Staten Island - Industrial Loop,APP18,2022.0,5.0,5.0,5.0,5,NG,Other Natural Gas,OP,FC,6.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,NYIS,NY,40.552176,-74.232565,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66458,Redlands Community Hospital,RCH00,2021.0,1.1,1.1,1.1,1.1,NG,Other Natural Gas,OP,FC,6.0,2021.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,34.03625,-117.206211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66459,Taylor Farms - Schilling Place,TLR01,2019.0,1.0,1.0,1.0,1,NG,Other Natural Gas,OP,FC,7.0,2019.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,WECC,CISO,CA,36.65388,-121.62369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66460,Apple Staten Island - Winant Place,APP21,2022.0,5.0,5.0,5.0,5,NG,Other Natural Gas,OP,FC,8.0,2022.0, , ,,,,,other,gas,Natural Gas,Fuel Cell,1.0,1.0,RFC,NYIS,NY,40.536563,-74.240941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66464,Wadsworth HBS RTO BTM,PB1,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.03539,-81.74896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.332142857142857 -66464,Wadsworth HBS RTO BTM,PB2,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.03539,-81.74896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.332142857142857 -66464,Wadsworth HBS RTO BTM,PB3,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.03539,-81.74896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.332142857142857 -66464,Wadsworth HBS RTO BTM,PB4,2020.0,2.7,2.7,2.7,2.7,DFO,Petroleum Liquids,OP,IC,2.0,2020.0, , ,,,,,oil,oil,Distillate Fuel Oil,Internal Combustion Engine,1.0,1.0,RFC,PJM,OH,41.03539,-81.74896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8.332142857142857 -66465,"Spring Hope Solar 2, LLC",68900,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.90708,-78.19376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66466,"Blue Skies Solar, LLC",43580,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,PACW,CA,34.98809,-118.908812,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66468,Clovis High School,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.817101,-119.681918,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66469,Clovis East High School,PV1,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.799669,-119.640598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66470,Clovis North High School,PV1,2017.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2017.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.890115,-119.736674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66472,San Manuel Central Plant Cogens,CGEN1,2021.0,2.7,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,WECC,CISO,CA,34.151193,-117.23025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66472,San Manuel Central Plant Cogens,CGEN2,2021.0,2.7,2.5,2.5,1.3,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,0.9259259259259258,0.9259259259259258,WECC,CISO,CA,34.151193,-117.23025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66473,LSE Pavo Solar,WALTO,2022.0,2.3,2.3,2.3, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.157714,-75.045106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66474,MA Blackstone,18170,2022.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.026499,-71.528503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66474,MA Blackstone,B8170,2022.0,3.0,3.0,3.0, ,MWH,Batteries,OP,BA,7.0,2022.0, , ,6.4,2.0,2.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,ISNE,MA,42.026499,-71.528503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66481,Union Vale,UVALE,2021.0,1.7,1.7,1.7, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.661,-73.742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66482,Ghent (NY),GHENT,2021.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.277433,-73.709201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66483,Stanford,SNFRD,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.865,-73.703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66485,Gloucester,GLSTR,2019.0,2.4,2.4,2.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.886,-75.109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66486,Ramapo,RAMPO,2019.0,4.2,4.2,4.2, ,SUN,Solar Photovoltaic,OP,PV,7.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,41.081,-74.174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66487,Moyer Solar,MOYER,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.419826,-79.907098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66489,Genesee - CCR Solar,10951,2022.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.31085,-77.78582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66492,Henry Miller RD,HMRD1,2018.0,1.5,1.5,1.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,0.6666666666666667,WECC,CISO,CA,37.0543,-120.63523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66499,Federalsburg Energy Storage 1 LLC,FDBA1,2021.0,1.2,1.2,1.2, ,MWH,Batteries,OP,BA,11.0,2021.0, , ,2.4,1.2,1.2,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,RFC,PJM,MD,38.64022,-75.711068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66499,Federalsburg Energy Storage 1 LLC,FDPV1,2021.0,0.8,0.8,0.8, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,38.64022,-75.711068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66500,Valley Center 85,VC85,2021.0,85.0,85.0,85.0,1,MWH,Batteries,OP,BA,12.0,2021.0, , ,212.0,85.0,85.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.227236,-117.017744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66501,Cicero Energy Storage 1 LLC,CCBA1,2022.0,5.0,5.0,5.0, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,20.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.147448,-76.086772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66501,Cicero Energy Storage 1 LLC,CCPV1,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.147448,-76.086772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66502,Valley Center 54,VC54,2021.0,54.0,54.0,54.0,1,MWH,Batteries,OP,BA,11.0,2021.0, , ,216.0,54.0,54.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,33.227236,-117.017744,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66503,Cicero Energy Storage 2 LLC,CCBA2,2022.0,5.0,5.0,5.0, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,20.0,5.0,5.0,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.151269,-76.08879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66503,Cicero Energy Storage 2 LLC,CCPV2,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.151269,-76.08879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66536,CPG - Duke 5300A Holabird,5003A,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.270749,-76.550534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66537,CPG - Duke 5300B Holabird,5003B,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.270749,-76.551326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66538,CPG - Duke 5900 Holabird,5900,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.273131,-76.545994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66539,CPG - Duke 6000 Holabird,6000,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.273278,-76.544434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66549,HEB00063,H0631,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.55952,-95.39038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.387179487179488 -66549,HEB00063,H0632,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.55952,-95.39038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.387179487179488 -66549,HEB00063,H0633,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.55952,-95.39038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.387179487179488 -66549,HEB00063,H0634,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,6.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.55952,-95.39038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.387179487179488 -66550,HEB00069,H0691,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.694932,-97.262513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.174683544303797 -66550,HEB00069,H0692,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.694932,-97.262513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.174683544303797 -66550,HEB00069,H0693,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.694932,-97.262513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.174683544303797 -66550,HEB00069,H0694,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.694932,-97.262513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.174683544303797 -66561,BUC00040,B0401,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.787919,-95.799137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.618357487922705 -66561,BUC00040,B0402,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.787919,-95.799137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.618357487922705 -66561,BUC00040,B0403,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.787919,-95.799137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.618357487922705 -66561,BUC00040,B0404,2017.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,7.0,2017.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.787919,-95.799137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.618357487922705 -66562,HEB00591,H5911,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.518818,-97.65854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.2720207253886 -66562,HEB00591,H5912,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.518818,-97.65854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.2720207253886 -66562,HEB00591,H5913,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.518818,-97.65854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.2720207253886 -66562,HEB00591,H5914,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.518818,-97.65854,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.2720207253886 -66563,HEB00092,H0921,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.851871,-96.996805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169491525423728 -66563,HEB00092,H0922,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.851871,-96.996805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169491525423728 -66563,HEB00092,H0923,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.851871,-96.996805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169491525423728 -66563,HEB00092,H0924,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,1.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.851871,-96.996805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.169491525423728 -66564,HEB00095,H0951,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.607476,-99.473866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11864406779661 -66564,HEB00095,H0952,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.607476,-99.473866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11864406779661 -66564,HEB00095,H0953,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.607476,-99.473866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11864406779661 -66564,HEB00095,H0954,2018.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2018.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.607476,-99.473866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.11864406779661 -66565,HEBCCBakery,HCCB1,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB2,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB3,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB4,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB5,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB6,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB7,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66565,HEBCCBakery,HCCB8,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,27.786287,-97.46234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.561946902654867 -66566,HEBSnackPlant,HSNP1,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.844469,-95.540618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.734527687296417 -66566,HEBSnackPlant,HSNP2,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.844469,-95.540618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.734527687296417 -66566,HEBSnackPlant,HSNP3,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.844469,-95.540618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.734527687296417 -66566,HEBSnackPlant,HSNP4,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.844469,-95.540618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.734527687296417 -66567,HEBHoustonDistributionCenter,HDC10,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC11,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC12,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC13,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC14,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC15,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC16,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC17,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC18,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC19,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC20,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC21,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC22,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC23,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC24,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC25,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC26,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC27,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC28,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC29,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC30,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC31,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HDC32,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC1,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC2,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC3,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC4,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC5,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC6,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC7,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC8,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66567,HEBHoustonDistributionCenter,HHDC9,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.8397,-95.53685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.891340101522843 -66582,North Kingstown Solar LLC,07948,2022.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,9.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.543781,-71.447334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66583,Phillips Route 82 Solar LLC,05658,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.65,-73.75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66584,White Rock Road LLC,07367,2022.0,6.5,6.5,6.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,RI,41.400949,-71.839504,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66585,French King Solar LLC,07152,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,MA,42.5945,-72.4895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66586,DOCCS Greene,06945,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,10.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.35,-73.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66587,Americus,SOL,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,38.551473,-96.150916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66588,Ashley-Chicot Solar,SOL,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,33.250828,-91.922427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66589,Berryville School District Solar,SOL,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,2.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,36.37342,-93.58618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66590,C&L,SOL,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,34.075486,-91.828323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66591,Cheney Solar,SOL,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,37.623563,-97.71672,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66592,ERDC,ERDC1,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC2,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC3,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC4,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC5,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC6,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC7,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66592,ERDC,ERDC8,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,10.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,SERC,MISO,MS,32.3103,-90.859867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12.5 -66593,HEB00048,H0481,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.106498,-94.170414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.148240868134936 -66593,HEB00048,H0482,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.106498,-94.170414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.148240868134936 -66593,HEB00048,H0483,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.106498,-94.170414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.148240868134936 -66594,HEB00594,H5941,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.178935,-95.538096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451684649363278 -66594,HEB00594,H5942,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.178935,-95.538096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451684649363278 -66594,HEB00594,H5943,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,9.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,30.178935,-95.538096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11.451684649363278 -66595,FTBLID2,FLD10,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD11,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD12,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD13,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD14,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD15,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD16,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD17,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD18,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD19,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD20,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD21,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD22,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD23,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD24,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD25,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD26,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD27,2021.0,0.4,0.4,0.4, ,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLD28,2021.0,0.4,0.4,0.4, ,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID1,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID2,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID3,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID4,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID5,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID6,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID7,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID8,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66595,FTBLID2,FLID9,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,12.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.575316,-95.636882,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.485909079080901 -66596,Praxair,PRAX1,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.004862,-95.388434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.502986773490509 -66596,Praxair,PRAX2,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.004862,-95.388434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.502986773490509 -66596,Praxair,PRAX3,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,8.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.004862,-95.388434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.502986773490509 -66597,RavenChem,RAVC1,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC2,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC3,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC4,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC5,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC6,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC7,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66597,RavenChem,RAVC8,2021.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2021.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.820648,-94.913987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17.372600926538716 -66602,Beckwith Solar,BCKWT,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.151927,-78.89158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66607,Clay County Electrical Cooperative,SOL,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,36.419308,-90.64251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66608,Craighead Electric Solar One,SOL,2018.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,8.0,2018.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,35.922262,-90.567226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66609,DeGraff Butler Electric,SOL,2021.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,5.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,KS,37.985224,-96.860851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66610,Farmers Electric Cooperative,SOL,2019.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2019.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,MISO,AR,35.629554,-91.230511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66612,HEB_CPS00085,H0851,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.433657,-98.703454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335839598997493 -66612,HEB_CPS00085,H0852,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.433657,-98.703454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335839598997493 -66612,HEB_CPS00085,H0853,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.433657,-98.703454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335839598997493 -66612,HEB_CPS00085,H0854,2019.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,11.0,2019.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.433657,-98.703454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.335839598997493 -66613,HEB_CPSSADC,SAD10,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SAD11,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SAD12,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SAD13,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SAD14,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SAD15,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SAD16,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC1,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC2,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC3,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC4,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC5,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC6,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC7,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC8,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66613,HEB_CPSSADC,SADC9,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,3.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,29.417338,-98.360879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.35445223126868 -66614,OTHERCitizensHospital,CTZH1,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66614,OTHERCitizensHospital,CTZH2,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66614,OTHERCitizensHospital,CTZH3,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66614,OTHERCitizensHospital,CTZH4,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66614,OTHERCitizensHospital,CTZH5,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66614,OTHERCitizensHospital,CTZH6,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66614,OTHERCitizensHospital,CTZH7,2020.0,0.4,0.4,0.4,0,NG,Natural Gas Internal Combustion Engine,OP,IC,4.0,2020.0, , ,,,,,OCGT,gas,Natural Gas,Internal Combustion Engine,1.0,1.0,TRE,ERCO,TX,28.812804,-96.977765,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14.16755958782238 -66622,9150 Hermosa Solar GM,VSPRC,2022.0,1.3,1.3,1.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,34.0878,-117.5872,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66698,Oxon Run CREF,OCREF,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,DC,38.821772,-77.003539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66700,Banner Solar,BANNR,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.413724,-78.555424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66709,Beulah Solar,BEULA,2022.0,74.9,74.9,74.9, ,SUN,Solar Photovoltaic,OP,PV,5.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,SCEG,SC,33.945207,-81.571162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66710,Brick City Solar,BRICT,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,34.726402,-77.983449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66711,Clovelly Solar,CLOVY,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.416929,-78.773252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66712,Coogee Solar,COOGE,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.150766,-76.823601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66718,ESA Albemarle NC Solar,ESAAB,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.39606,-80.123649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66719,Millers Chapel Solar,MILCH,2021.0,4.8,4.8,4.8, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.360306,-77.898055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66720,Oakwood Solar,OAKWD,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.299225,-78.077183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66721,Overman Solar,OVRMN,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.299225,-78.077183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66722,Saw Solar,SAW,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.556436,-80.651804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66723,Sawtell Solar,SAWTL,2021.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,35.380139,-82.375953,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66724,Southwick Solar,SOUWK,2020.0,3.0,3.0,3.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,DUK,NC,36.009321,-79.367698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66725,Whiskey Solar,WHISK,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,CPLE,NC,35.273434,-79.736312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66729,(3K) 59 Hetcheltown Rd,P3101,2020.0,1.4,1.4,1.4, ,SUN,Solar Photovoltaic,OP,PV,11.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.87657,-73.91048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66730,Jordan Energy-DFA Middlebury Center Plan,P4318,2021.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,PA,41.838,-77.2759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66731,Lightstar Renewables - Project 1001,P4450,2021.0,3.9,3.9,3.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.7754,-73.8758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66732,Lightstar Renewables - Project 1002,P4451,2021.0,2.1,2.1,2.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.807744,-73.903508,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66733,Lost Hills Oilfield,P4721,2021.0,1.9,1.9,1.9, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,35.65,-119.85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66734,Marathon Solar Farm LLC South,P4739,2020.0,4.4,4.4,4.4, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.0832,-75.7351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66736,Oak Leaf - CSG Portfolio (OL 36),P4159,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,CO,39.6517,-104.5315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66737,Oak Leaf - CSG Portfolio (OL 37),P4161,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,CO,39.7854,-104.5913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66738,Oak Leaf - CSG Portfolio (OL 38),P4581,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,CO,39.7854,-104.5913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66739,Oak Leaf - CSG Portfolio (OL 39),P4162,2021.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,6.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,CO,39.65528,-104.52848,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66740,Oak Leaf - CSG Portfolio (OL 44),P4347,2020.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,SWPP,CO,39.78308,-104.58385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66742,Laskin Solar,LAK,2022.0,5.6,5.6,5.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,47.52262,-92.178348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66743,Jean Duluth Solar,DUL,2022.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,MRO,MISO,MN,46.87377,-92.051994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66749,Herrington Solar,HERR1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,9.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.873378,-73.622029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66762,SCH County - (1B) 10 Alice Wagner Way Ni,P3599,2020.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,10.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.83447,-73.89808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66763,SCH County - (1E) 398 Anthony St Schenec,P3600,2020.0,1.0,1.0,1.0, ,SUN,Solar Photovoltaic,OP,PV,3.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.841167,-73.916454,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66764,SCH - (2A) 156 Barhydt Rd Glenville,3954,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.85,-74.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66764,SCH - (2A) 156 Barhydt Rd Glenville,3954B,2021.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,7.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.85,-74.05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66765,SCH County - (2B) 4982 Rynex Corners Rd,3595,2020.0,2.5,2.5,2.5, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.884182,-74.080778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66765,SCH County - (2B) 4982 Rynex Corners Rd,3595B,2020.0,2.5,2.5,2.5, ,MWH,Batteries,OP,BA,12.0,2020.0, , ,10.0,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,42.884182,-74.080778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66766,SCH County - (2D) 98 Cheltingham Ave Sch,P3608,2020.0,2.8,2.8,2.8, ,SUN,Solar Photovoltaic,OP,PV,6.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.791847,-73.95683,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66767,Source Power Company - Richland,4725,2021.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,11.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.511296,-76.119554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66767,Source Power Company - Richland,4725B,2021.0,2.5,2.5,2.5, ,MWH,Batteries,OP,BA,11.0,2021.0, , ,9.5,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,NPCC,NYIS,NY,43.511296,-76.119554,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66769,Source Power Company - Silver Creek,P4468,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.517279,-79.221323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66770,THD Baltimore DC - 5830 Project Tiger,P3685,2021.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,1.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,MD,39.22355,-76.48349,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66771,Marathon Solar Farm II LLC North,P4471,2020.0,2.9,2.9,2.9, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,43.0832,-75.7351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66776,Brookdale CC BTM at Lincroft,PV1,2022.0,3.7,3.7,3.7, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.326056,-74.130941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66777,Geneseo Solar,GEN1,2021.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,12.0,2021.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.821,-77.72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66797,Agriculture Capital - Legacy Packing,P4376,2022.0,1.6,1.6,1.6, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,36.49466,-119.46698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66799,Bishop Ranch - BR 1-Y,4087,2022.0,1.1,1.1,1.1, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,WECC,CISO,CA,37.76217,-121.9579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66799,Bishop Ranch - BR 1-Y,4087B,2022.0,0.7,0.7,0.7, ,MWH,Batteries,OP,BA,3.0,2022.0, , ,,2.5,2.5,LIB,battery,other,Energy Storage,"Energy Storage, Battery ",1.0,1.0,WECC,CISO,CA,37.76217,-121.9579,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66815,Dynamic Energy NJ - Ferrero,P5875,2022.0,1.5,1.5,1.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,40.550482,-74.54496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66822,Carthage A,NECA,2022.0,5.0,5.0,5.0, ,SUN,Solar Photovoltaic,OP,PV,4.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,NYIS,NY,43.997512,-75.662935,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66823,Carthage B,NECB,2022.0,3.3,3.3,3.3, ,SUN,Solar Photovoltaic,OP,PV,3.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,SERC,NYIS,NY,43.990287,-75.661256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66835,Lightstar Renewables - Project 1004,P4453,2022.0,3.5,3.5,3.5, ,SUN,Solar Photovoltaic,OP,PV,11.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,42.09927,-73.95526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66846,Jogee Road Solar,JOGEE,2022.0,2.0,2.0,2.0, ,SUN,Solar Photovoltaic,OP,PV,7.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,NYIS,NY,41.399969,-74.502206,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66863,Blackjack Solar,BJK01,2020.0,4.0,3.9,3.1, ,SUN,Solar Photovoltaic,OP,PV,12.0,2020.0, , ,,,,,solar,solar,Solar,Photovoltaic,0.975,0.775,WECC,CISO,CA,36.181538,-121.026685,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66906,Hammonton-High School Solar,HHSPV,2022.0,1.2,1.2,1.2, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,RFC,PJM,NJ,39.657218,-74.808955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -66907,Barefoot Solar,BARE1,2022.0,4.3,4.3,4.3, ,SUN,Solar Photovoltaic,OP,PV,12.0,2022.0, , ,,,,,solar,solar,Solar,Photovoltaic,1.0,1.0,NPCC,ISNE,ME,44.595751,-69.605026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/workflow/repo_data/western_land_availability_onwind.png b/workflow/repo_data/western_land_availability_onwind.png deleted file mode 100644 index f417c0e0..00000000 Binary files a/workflow/repo_data/western_land_availability_onwind.png and /dev/null differ diff --git a/workflow/repo_data/western_land_availability_solar.png b/workflow/repo_data/western_land_availability_solar.png deleted file mode 100644 index 16f07812..00000000 Binary files a/workflow/repo_data/western_land_availability_solar.png and /dev/null differ diff --git a/workflow/repo_data/western_osw_availability.png b/workflow/repo_data/western_osw_availability.png deleted file mode 100644 index e0f0ddfe..00000000 Binary files a/workflow/repo_data/western_osw_availability.png and /dev/null differ diff --git a/workflow/rules/build_electricity.smk b/workflow/rules/build_electricity.smk index 2fa985da..e20e12a9 100644 --- a/workflow/rules/build_electricity.smk +++ b/workflow/rules/build_electricity.smk @@ -5,14 +5,14 @@ from itertools import chain rule build_shapes: params: - source_offshore_shapes=config["offshore_shape"], - offwind_params=config["renewable"]["offwind"], + source_offshore_shapes=config_provider("offshore_shape"), + offwind_params=config_provider("renewable", "offwind"), input: zone=DATA + "breakthrough_network/base_grid/zone.csv", - nerc_shapes="repo_data/NERC_Regions/NERC_Regions_Subregions.shp", - reeds_shapes="repo_data/Reeds_Shapes/rb_and_ba_areas.shp", - onshore_shapes="repo_data/BA_shapes_new/Modified_BE_BA_Shapes.shp", - offshore_shapes_ca_osw="repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp", + nerc_shapes="repo_data/geospatial/NERC_Regions/NERC_Regions_Subregions.shp", + reeds_shapes="repo_data/geospatial/Reeds_Shapes/rb_and_ba_areas.shp", + onshore_shapes="repo_data/geospatial/BA_shapes_new/Modified_BE_BA_Shapes.shp", + offshore_shapes_ca_osw="repo_data/geospatial/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp", offshore_shapes_eez=DATA + "eez/conus_eez.shp", county_shapes=DATA + "counties/cb_2020_us_county_500k.shp", output: @@ -33,8 +33,8 @@ rule build_shapes: rule build_base_network: params: - build_offshore_network=config["offshore_network"], - model_topology=config["model_topology"]["include"], + build_offshore_network=config_provider("offshore_network"), + model_topology=config_provider("model_topology", "include"), input: buses=DATA + "breakthrough_network/base_grid/bus.csv", lines=DATA + "breakthrough_network/base_grid/branch.csv", @@ -67,7 +67,7 @@ rule build_bus_regions: topological_boundaries=config_provider( "model_topology", "topological_boundaries" ), - focus_weights=config["focus_weights"], + focus_weights=config_provider("focus_weights"), input: country_shapes=RESOURCES + "{interconnect}/Geospatial/country_shapes.geojson", county_shapes=RESOURCES + "{interconnect}/Geospatial/county_shapes.geojson", @@ -140,33 +140,10 @@ if config["enable"].get("build_cutout", False): "../scripts/build_cutout.py" -rule build_hydro_profile: - params: - hydro=config_provider("renewable", "hydro"), - snapshots=config_provider("snapshots"), - input: - reeds_shapes=RESOURCES + "{interconnect}/Geospatial/reeds_shapes.geojson", - cutout=lambda w: f"cutouts/" - + CDIR - + "{interconnect}_" - + config_provider("renewable", "hydro", "cutout")(w) - + ".nc", - output: - profile=RESOURCES + "{interconnect}/profile_hydro.nc", - log: - LOGS + "{interconnect}/build_hydro_profile.log", - resources: - mem_mb=5000, - conda: - "../envs/environment.yaml" - script: - "../scripts/build_hydro_profile.py" - - rule build_renewable_profiles: params: - renewable=config["renewable"], - snapshots=config["snapshots"], + renewable=config_provider("renewable"), + snapshots=config_provider("snapshots"), input: corine=ancient( DATA @@ -184,9 +161,9 @@ rule build_renewable_profiles: ), country_shapes=RESOURCES + "{interconnect}/Geospatial/country_shapes.geojson", offshore_shapes=RESOURCES + "{interconnect}/Geospatial/offshore_shapes.geojson", - cec_onwind="repo_data/CEC_Wind_BaseScreen_epsg3310.tif", - cec_solar="repo_data/CEC_Solar_BaseScreen_epsg3310.tif", - boem_osw="repo_data/boem_osw_planning_areas.tif", + cec_onwind="repo_data/geospatial/CEC_GIS/CEC_Wind_BaseScreen_epsg3310.tif", + cec_solar="repo_data/geospatial/CEC_GIS/CEC_Solar_BaseScreen_epsg3310.tif", + boem_osw="repo_data/geospatial/boem_osw_planning_areas.tif", regions=lambda w: ( RESOURCES + "{interconnect}/Geospatial/regions_onshore.geojson" if w.technology in ("onwind", "solar") @@ -211,7 +188,11 @@ rule build_renewable_profiles: threads: ATLITE_NPROCESSES retries: 3 resources: - mem_mb=ATLITE_NPROCESSES * 5000, + mem_mb=lambda wildcards, input, attempt: ( + ATLITE_NPROCESSES * input.size // 3500000 + ) + * attempt + * 1.5, wildcard_constraints: technology="(?!hydro|EGS).*", # Any technology other than hydro script: @@ -321,10 +302,20 @@ def demand_scaling_data(wildcards): "efs_speed" ].capitalize() return DATA + f"nrel_efs/EFSLoadProfile_{efs_case}_{efs_speed}.csv" - elif profile == "eia": - return DATA + "pudl/pudl.sqlite" elif profile == "ferc": return DATA + "pudl/pudl.sqlite" + elif profile == "eia": + if end_use == "power": + return DATA + "pudl/pudl.sqlite" + elif config["api"].get("cache", True): + aeo_scenario = config["electricity"]["demand"].get("eia", "reference") + if end_use == "transport": + # non-road transport will get this as well, but doesnt really matter + return DATA + f"eia/demand/{aeo_scenario}/transport.csv" + else: + return DATA + f"eia/demand/{aeo_scenario}/energy.csv" + else: + return "" # use eia api else: return "" @@ -350,7 +341,7 @@ rule build_electrical_demand: BENCHMARKS + "{interconnect}/{end_use}_build_demand" threads: 2 resources: - mem_mb=interconnect_mem, + mem_mb=lambda wildcards, input, attempt: (input.size // 70000) * attempt * 2, script: "../scripts/build_demand.py" @@ -359,10 +350,11 @@ rule build_sector_demand: wildcard_constraints: end_use="residential|commercial|industry", params: - planning_horizons=config["scenario"]["planning_horizons"], + planning_horizons=config_provider("scenario", "planning_horizons"), profile_year=pd.to_datetime(config["snapshots"]["start"]).year, - eia_api=config["api"]["eia"], - snapshots=config["snapshots"], + eia_api=config_provider("api", "eia"), + snapshots=config_provider("snapshots"), + cache_eia=config_provider("api", "cache"), input: network=RESOURCES + "{interconnect}/elec_base_network.nc", demand_files=demand_raw_data, @@ -381,8 +373,8 @@ rule build_sector_demand: benchmark: BENCHMARKS + "{interconnect}/demand/{end_use}_build_demand" threads: 2 - resources: - mem_mb=interconnect_mem, + # resources: + # mem_mb=lambda wildcards, input, attempt: (input.size // 70000) * attempt * 2, script: "../scripts/build_demand.py" @@ -391,10 +383,11 @@ rule build_transport_road_demand: wildcard_constraints: end_use="transport", params: - planning_horizons=config["scenario"]["planning_horizons"], + planning_horizons=config_provider("scenario", "planning_horizons"), profile_year=pd.to_datetime(config["snapshots"]["start"]).year, - eia_api=config["api"]["eia"], - snapshots=config["snapshots"], + eia_api=config_provider("api", "eia"), + snapshots=config_provider("snapshots"), + cache_eia=config_provider("api", "cache"), input: network=RESOURCES + "{interconnect}/elec_base_network.nc", demand_files=demand_raw_data, @@ -418,7 +411,7 @@ rule build_transport_road_demand: BENCHMARKS + "{interconnect}/demand/{end_use}_build_demand" threads: 2 resources: - mem_mb=interconnect_mem, + mem_mb=lambda wildcards, input, attempt: (input.size // 70000) * attempt * 2, script: "../scripts/build_demand.py" @@ -428,9 +421,10 @@ rule build_transport_other_demand: end_use="transport", vehicle="boat-shipping|air|rail-shipping|rail-passenger", params: - planning_horizons=config["scenario"]["planning_horizons"], - eia_api=config["api"]["eia"], - snapshots=config["snapshots"], + planning_horizons=config_provider("scenario", "planning_horizons"), + eia_api=config_provider("api", "eia"), + snapshots=config_provider("snapshots"), + cache_eia=config_provider("api", "cache"), input: network=RESOURCES + "{interconnect}/elec_base_network.nc", demand_files=demand_raw_data, @@ -443,7 +437,7 @@ rule build_transport_other_demand: BENCHMARKS + "{interconnect}/demand/{end_use}_{vehicle}_build_demand" threads: 2 resources: - mem_mb=interconnect_mem, + mem_mb=lambda wildcards, input, attempt: (input.size // 70000) * attempt * 2, script: "../scripts/build_demand.py" @@ -504,8 +498,8 @@ def demand_to_add(wildcards): rule add_demand: params: sectors=config["scenario"]["sector"], - planning_horizons=config["scenario"]["planning_horizons"], - snapshots=config["snapshots"], + planning_horizons=config_provider("scenario", "planning_horizons"), + snapshots=config_provider("snapshots"), input: network=RESOURCES + "{interconnect}/elec_base_network.nc", demand=demand_to_add, @@ -516,7 +510,7 @@ rule add_demand: benchmark: BENCHMARKS + "{interconnect}/add_demand" resources: - mem_mb=interconnect_mem, + mem_mb=lambda wildcards, input, attempt: (input.size // 70000) * attempt * 2, script: "../scripts/add_demand.py" @@ -565,11 +559,28 @@ def dynamic_fuel_price_files(wildcards): return {} +rule build_powerplants: + input: + pudl=DATA + "pudl/pudl.sqlite", + wecc_ads="repo_data/WECC_ADS_public", + eia_ads_generator_mapping="repo_data/WECC_ADS_public/eia_ads_generator_mapping_updated.csv", + fuel_costs="repo_data/plants/fuelCost22.csv", + cems="repo_data/plants/cems_heat_rates.xlsx", + epa_crosswalk="repo_data/plants/epa_eia_crosswalk.csv", + output: + powerplants=RESOURCES + "powerplants.csv", + log: + "logs/build_powerplants.log", + resources: + mem_mb=30000, + script: + "../scripts/build_powerplants.py" + + rule add_electricity: params: length_factor=config["lines"]["length_factor"], renewable=config["renewable"], - max_hours=config["electricity"]["max_hours"], renewable_carriers=config["electricity"]["renewable_carriers"], extendable_carriers=config["electricity"]["extendable_carriers"], conventional_carriers=config["electricity"]["conventional_carriers"], @@ -604,7 +615,6 @@ rule add_electricity: + "{interconnect}/Geospatial/regions_offshore.geojson", reeds_shapes=RESOURCES + "{interconnect}/Geospatial/reeds_shapes.geojson", powerplants=RESOURCES + "powerplants.csv", - plants_eia="repo_data/plants/plants_merged.csv", plants_breakthrough=DATA + "breakthrough_network/base_grid/plant.csv", hydro_breakthrough=DATA + "breakthrough_network/base_grid/hydro.csv", bus2sub=RESOURCES + "{interconnect}/bus2sub.csv", @@ -627,7 +637,7 @@ rule add_electricity: BENCHMARKS + "{interconnect}/add_electricity" threads: 1 resources: - mem_mb=interconnect_mem_a, + mem_mb=lambda wildcards, input, attempt: (input.size // 400000) * attempt * 2, script: "../scripts/add_electricity.py" @@ -659,7 +669,7 @@ rule simplify_network: "logs/simplify_network/{interconnect}/elec_s{simpl}.log", threads: 1 resources: - mem_mb=interconnect_mem_s, + mem_mb=lambda wildcards, input, attempt: (input.size // 100000) * attempt * 1.5, script: "../scripts/simplify_network.py" @@ -672,7 +682,6 @@ rule cluster_network: aggregation_strategies=config_provider("clustering", "aggregation_strategies"), custom_busmap=config_provider("enable", "custom_busmap", default=False), focus_weights=config_provider("focus_weights", default=False), - max_hours=config_provider("electricity", "max_hours"), length_factor=config_provider("lines", "length_factor"), costs=config_provider("costs"), planning_horizons=config_provider("scenario", "planning_horizons"), @@ -713,7 +722,7 @@ rule cluster_network: "benchmarks/cluster_network/{interconnect}/elec_s{simpl}_c{clusters}" threads: 1 resources: - mem_mb=interconnect_mem_c, + mem_mb=lambda wildcards, input, attempt: (input.size // 100000) * attempt * 2, script: "../scripts/cluster_network.py" @@ -737,13 +746,14 @@ rule add_extra_components: + "{interconnect}/Geospatial/regions_onshore_s{simpl}_{clusters}.geojson", params: retirement=config["electricity"].get("retirement", "technical"), + demand_response=config["electricity"].get("demand_response", {}), output: RESOURCES + "{interconnect}/elec_s{simpl}_c{clusters}_ec.nc", log: "logs/add_extra_components/{interconnect}/elec_s{simpl}_c{clusters}_ec.log", threads: 1 resources: - mem_mb=interconnect_mem_prepare, + mem_mb=lambda wildcards, input, attempt: (input.size // 100000) * attempt * 2, group: "prepare" script: @@ -762,7 +772,6 @@ rule prepare_network: gaslimit=config_provider("electricity", "gaslimit"), gaslimit_enable=config_provider("electricity", "gaslimit_enable", default=False), transmission_network=config_provider("model_topology", "transmission_network"), - max_hours=config_provider("electricity", "max_hours"), costs=config_provider("costs"), autarky=config_provider("electricity", "autarky"), input: @@ -784,28 +793,10 @@ rule prepare_network: solver="logs/prepare_network/{interconnect}/elec_s{simpl}_c{clusters}_ec_l{ll}_{opts}.log", threads: 1 resources: - mem_mb=interconnect_mem_prepare, + mem_mb=lambda wildcards, input, attempt: (input.size // 100000) * attempt * 2, group: "prepare" log: "logs/prepare_network", script: "../scripts/prepare_network.py" - - -rule build_powerplants: - input: - pudl=DATA + "pudl/pudl.sqlite", - wecc_ads="repo_data/WECC_ADS_public", - eia_ads_generator_mapping="repo_data/eia_ads_generator_mapping_updated.csv", - fuel_costs="repo_data/plants/fuelCost22.csv", - cems="repo_data/plants/cems_heat_rates.xlsx", - epa_crosswalk="repo_data/plants/epa_eia_crosswalk.csv", - output: - powerplants=RESOURCES + "powerplants.csv", - log: - "logs/build_powerplants.log", - resources: - mem_mb=30000, - script: - "../scripts/build_powerplants.py" diff --git a/workflow/rules/build_sector.smk b/workflow/rules/build_sector.smk index 6c1a87fe..62a2231a 100644 --- a/workflow/rules/build_sector.smk +++ b/workflow/rules/build_sector.smk @@ -46,7 +46,6 @@ rule add_sectors: params: electricity=config["electricity"], costs=config["costs"], - max_hours=config["electricity"]["max_hours"], plotting=config["plotting"], snapshots=config["snapshots"], api=config["api"], diff --git a/workflow/rules/common.smk b/workflow/rules/common.smk index 509a3288..fba894a8 100644 --- a/workflow/rules/common.smk +++ b/workflow/rules/common.smk @@ -86,7 +86,7 @@ def solver_threads(w): def memory(w): - factor = 10.0 + factor = 4.0 for o in w.opts.split("-"): m = re.match(r"^(\d+)h$", o, re.IGNORECASE) if m is not None: @@ -98,7 +98,7 @@ def memory(w): factor *= int(m.group(1)) / 8760 break if w.clusters.endswith("m") or w.clusters.endswith("c"): - val = int(factor * (55000 + 100 * int(w.simpl) + 195 * int(w.clusters[:-1]))) + val = int(factor * (50000 + 30 * int(w.simpl) + 195 * int(w.clusters[:-1]))) elif w.clusters == "all": val = int(factor * (18000 + 180 * 4000)) else: @@ -106,66 +106,6 @@ def memory(w): return int(val * len(config_provider("scenario", "planning_horizons")(w))) -def interconnect_mem(w): - mem = 50000 - if w.interconnect == "usa": - return int(mem * 1.5) - elif w.interconnect == "eastern": - return int(mem * 1.5) - elif w.interconnect == "western": - return int(mem) - elif w.interconnect == "texas": - return int(mem * 1) - - -def interconnect_mem_a(w): - mem = 30000 * len(config_provider("scenario", "planning_horizons")(w)) - if w.interconnect == "usa": - return int(mem * 4) - elif w.interconnect == "eastern": - return int(mem * 3) - elif w.interconnect == "western": - return int(mem * 2) - elif w.interconnect == "texas": - return int(mem * 0.5) - - -def interconnect_mem_s(w): - mem = 30000 * len(config_provider("scenario", "planning_horizons")(w)) - if w.interconnect == "usa": - return int(mem * 4) - elif w.interconnect == "eastern": - return int(mem * 3) - elif w.interconnect == "western": - return int(mem * 2) - elif w.interconnect == "texas": - return int(mem * 0.5) - - -def interconnect_mem_c(w): - mem = 10000 * len(config_provider("scenario", "planning_horizons")(w)) - if w.interconnect == "usa": - return int(mem * 4) - elif w.interconnect == "eastern": - return int(mem * 3) - elif w.interconnect == "western": - return int(mem * 2) - elif w.interconnect == "texas": - return int(mem * 0.75) - - -def interconnect_mem_prepare(w): - mem = 5000 * len(config_provider("scenario", "planning_horizons")(w)) - if w.interconnect == "usa": - return int(mem * 4) - elif w.interconnect == "eastern": - return int(mem * 3) - elif w.interconnect == "western": - return int(mem * 2) - elif w.interconnect == "texas": - return int(mem * 0.75) - - def input_custom_extra_functionality(w): path = config_provider( "solving", "options", "custom_extra_functionality", default=False diff --git a/workflow/rules/postprocess_sector.smk b/workflow/rules/postprocess_sector.smk index 08d6fe0b..c54453ef 100644 --- a/workflow/rules/postprocess_sector.smk +++ b/workflow/rules/postprocess_sector.smk @@ -142,7 +142,7 @@ rule plot_sankey_energy: + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/", output: RESULTS - + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/system/sankey/energy.png", + + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/system/sankey/energy.html", log: "logs/plot_figures/{interconnect}_s{simpl}_c{clusters}_l{ll}_{opts}_{sector}_energy_sankey.log", threads: 1 @@ -161,7 +161,7 @@ rule plot_sankey_carbon: + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/", output: RESULTS - + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/system/sankey/carbon.png", + + "{interconnect}/figures/s{simpl}_c{clusters}/l{ll}_{opts}_{sector}/system/sankey/carbon.html", log: "logs/plot_figures/{interconnect}_s{simpl}_c{clusters}_l{ll}_{opts}_{sector}_energy_sankey.log", threads: 1 diff --git a/workflow/rules/retrieve.smk b/workflow/rules/retrieve.smk index d7ed375a..887909f0 100644 --- a/workflow/rules/retrieve.smk +++ b/workflow/rules/retrieve.smk @@ -261,3 +261,18 @@ if "EGS" in config["electricity"]["extendable_carriers"]["Generator"]: LOGS + "retrieve_EGS_{interconnect}.log", script: "../scripts/retrieve_egs.py" + + +rule retrieve_eia_demand: + wildcard_constraints: + source="energy|transport|electricity", + params: + api=config["api"]["eia"], + output: + DATA + "eia/demand/{scenario}/{source}.csv", + resources: + mem_mb=5000, + log: + LOGS + "retrieve_eia_demand_{scenario}_{source}.log", + script: + "../retrieve_eia_demand.py" diff --git a/workflow/rules/solve_electricity.smk b/workflow/rules/solve_electricity.smk index d9d9bd27..00004328 100644 --- a/workflow/rules/solve_electricity.smk +++ b/workflow/rules/solve_electricity.smk @@ -44,7 +44,7 @@ rule solve_network: ) threads: solver_threads resources: - mem_mb=memory, + mem_mb=lambda wildcards, input, attempt: (input.size // 100000) * attempt * 80, walltime=config["solving"].get("walltime", "12:00:00"), conda: "../envs/environment.yaml" diff --git a/workflow/run_slurm.sh b/workflow/run_slurm.sh index 018a238a..97598394 100644 --- a/workflow/run_slurm.sh +++ b/workflow/run_slurm.sh @@ -1,3 +1,3 @@ # SLURM specifications made in default.cluster.yaml & the individual rules # GRB_LICENSE_FILE=/share/software/user/restricted/gurobi/11.0.2/licenses/gurobi.lic⁠ -snakemake --cluster "sbatch -A {cluster.account} --mail-type ALL --mail-user {cluster.email} -p {cluster.partition} -t {cluster.walltime} -o {cluster.output} -e {cluster.error} -c {threads} --mem {resources.mem_mb}" --cluster-config config/config.cluster.yaml --jobs 10 --latency-wait 60 --configfile config/config.egs_study.yaml +snakemake --cluster "sbatch -A {cluster.account} -p {cluster.partition} -t {cluster.walltime} -o {cluster.output} -e {cluster.error} -c {threads} --mem {resources.mem_mb}" --cluster-config config/config.cluster.yaml --jobs 10 --latency-wait 60 --configfile config/config.default.yaml diff --git a/workflow/scripts/_helpers.py b/workflow/scripts/_helpers.py index 715952cc..61e71754 100644 --- a/workflow/scripts/_helpers.py +++ b/workflow/scripts/_helpers.py @@ -35,8 +35,6 @@ def configure_logging(snakemake, skip_handlers=False): skip_handlers : True | False (default) Do (not) skip the default handlers created for redirecting output to STDERR and file. """ - import logging - kwargs = snakemake.config.get("logging", dict()).copy() kwargs.setdefault("level", "INFO") @@ -64,8 +62,6 @@ def configure_logging(snakemake, skip_handlers=False): def setup_custom_logger(name): - import logging - formatter = logging.Formatter( fmt="%(asctime)s - %(levelname)s - %(module)s - %(message)s", ) @@ -97,7 +93,9 @@ def load_network(import_name=None, custom_components=None): override_components: ShadowPrice: component: ["shadow_prices","Shadow price for a global constraint.",np.nan] - attributes: + + Attributes + ---------- name: ["string","n/a","n/a","Unique name","Input (required)"] value: ["float","n/a",0.,"shadow value","Output"] @@ -187,8 +185,8 @@ def load_network_for_plots(fn, tech_costs, config, combine_hydro_ps=True): # bus_carrier = n.storage_units.bus.map(n.buses.carrier) # n.storage_units.loc[bus_carrier == "heat","carrier"] = "water tanks" - Nyears = n.snapshot_weightings.loc[n.investment_periods[0]].objective.sum() / 8760.0 - costs = load_costs(tech_costs, config["costs"], config["electricity"], Nyears) + num_years = n.snapshot_weightings.loc[n.investment_periods[0]].objective.sum() / 8760.0 + costs = load_costs(tech_costs, config["costs"], config["electricity"], num_years) update_transmission_costs(n, costs) return n @@ -260,7 +258,6 @@ def aggregate_p_curtailed(n): def aggregate_costs(n, flatten=False, opts=None, existing_only=False): - components = dict( Link=("p_nom", "p0"), Generator=("p_nom", "p"), @@ -307,8 +304,8 @@ def progress_retrieve(url, file): pbar = ProgressBar(0, 100) - def dlProgress(count, blockSize, totalSize): - pbar.update(int(count * blockSize * 100 / totalSize)) + def dlProgress(count, block_size, total_size): + pbar.update(int(count * block_size * 100 / total_size)) urllib.request.urlretrieve(url, file, reporthook=dlProgress) @@ -331,10 +328,6 @@ def get_aggregation_strategies(aggregation_strategies): def export_network_for_gis_mapping(n, output_path): - import os - - import pandas as pd - # Creating GIS Table for Mapping Lines in QGIS lines_gis = n.lines.copy() lines_gis["latitude1"] = n.buses.loc[lines_gis.bus0].y.values @@ -363,7 +356,7 @@ def export_network_for_gis_mapping(n, output_path): def mock_snakemake(rulename, **wildcards): """ - This function is expected to be executed from the 'scripts'-directory of ' + Function is expected to be executed from the 'scripts'-directory of ' the snakemake project. It returns a snakemake.script.Snakemake object, based on the Snakefile. @@ -428,17 +421,6 @@ def make_accessable(*ios): return snakemake -def local_to_utc(group): - import pytz - from constants import STATE_2_TIMEZONE - - timezone_str = STATE_2_TIMEZONE[group.name] - timezone = pytz.timezone(timezone_str) - time_shift = -1 * group.iloc[0].tz_localize(timezone).utcoffset().total_seconds() / 3600 - utc = group + pd.Timedelta(hours=time_shift) - return utc - - def validate_checksum(file_path, zenodo_url=None, checksum=None): """ Validate file checksum against provided or Zenodo-retrieved checksum. @@ -518,12 +500,13 @@ def set_scenario_config(snakemake): def update_config_with_sector_opts(config, sector_opts): + from packaging.version import parse from snakemake.utils import update_config for o in sector_opts.split("-"): if o.startswith("CF+"): - l = o.split("+")[1:] - update_config(config, parse(l)) + l_ = o.split("+")[1:] + update_config(config, parse(l_)) def get_opt(opts, expr, flags=None): @@ -542,9 +525,7 @@ def get_opt(opts, expr, flags=None): def find_opt(opts, expr): - """ - Return if available the float after the expression. - """ + """Return if available the float after the expression.""" for o in opts: if expr in o: m = re.findall(r"m?\d+(?:[\.p]\d+)?", o) @@ -556,9 +537,8 @@ def find_opt(opts, expr): def update_config_from_wildcards(config, w, inplace=True): - """ - Parses configuration settings from wildcards and updates the config. - """ + """Parses configuration settings from wildcards and updates the config.""" + from packaging.version import parse if not inplace: config = copy.deepcopy(config) @@ -744,17 +724,17 @@ def get_scenarios(run): def get_rdir(run): scenario_config = run.get("scenarios", {}) if run["name"] and scenario_config.get("enable"): - RDIR = "{run}/" + rdir = "{run}/" elif run["name"]: - RDIR = run["name"] + "/" + rdir = run["name"] + "/" else: - RDIR = "" + rdir = "" prefix = run.get("prefix", "") if prefix: - RDIR = f"{prefix}/{RDIR}" + rdir = f"{prefix}/{rdir}" - return RDIR + return rdir def get_run_path(fn, dir, rdir, shared_resources): @@ -836,7 +816,6 @@ def get_snapshots( Taken from PyPSA-Eur implementation """ - time = pd.date_range(freq=freq, **snapshots, **kwargs) if drop_leap_day and time.is_leap_year.any(): time = time[~((time.month == 2) & (time.day == 29))] diff --git a/workflow/scripts/add_demand.py b/workflow/scripts/add_demand.py index c83e1d37..b900e57e 100644 --- a/workflow/scripts/add_demand.py +++ b/workflow/scripts/add_demand.py @@ -10,12 +10,7 @@ import pandas as pd import pypsa -from _helpers import ( - configure_logging, - get_multiindex_snapshots, - get_snapshots, - mock_snakemake, -) +from _helpers import configure_logging, get_multiindex_snapshots, mock_snakemake from constants_sector import ( AirTransport, BoatTransport, @@ -83,7 +78,6 @@ def attach_demand(n: pypsa.Network, df: pd.DataFrame, carrier: str, suffix: str) demand_files = [demand_files] if sectors == "E" or sectors == "": # electricity only - assert len(demand_files) == 1 suffix = "" @@ -91,17 +85,14 @@ def attach_demand(n: pypsa.Network, df: pd.DataFrame, carrier: str, suffix: str) df = pd.read_csv(demand_files[0], index_col=0) attach_demand(n, df, carrier, suffix) - logger.info(f"Electricity demand added to network") + logger.info("Electricity demand added to network") else: # sector files - for demand_file in demand_files: - parsed_name = Path(demand_file).name.split("_") parsed_name[-1] = parsed_name[-1].split(".pkl")[0] if len(parsed_name) == 2: - sector = parsed_name[0].upper() end_use = parsed_name[1].upper().replace("-", "_") @@ -113,7 +104,6 @@ def attach_demand(n: pypsa.Network, df: pd.DataFrame, carrier: str, suffix: str) log_statement = f"{sector} {end_use} demand added to network" elif len(parsed_name) == 3: - sector = parsed_name[0].upper() subsector = parsed_name[1].replace("-", "_") end_use = parsed_name[2].upper() # lpg | elec diff --git a/workflow/scripts/add_electricity.py b/workflow/scripts/add_electricity.py index cf1eeb5f..f4c84050 100755 --- a/workflow/scripts/add_electricity.py +++ b/workflow/scripts/add_electricity.py @@ -1,40 +1,10 @@ # PyPSA USA Authors """ -**Description** +Adds existing conventional generators, renewable generators, and storage devices to the network. -This module integrates data produced by `build_renewable_profiles` and `build_cost_data`, `build_fuel_prices`, and `add_demand` to create a network model that includes generators and their associated costs. The module attaches generators and storage units to the network created by `add_demand`. Each generator is assigned regional capital costs, and regional and daily or monthly marginal costs. - -Extendable generators are assigned a maximum capacity based on land-use constraints defined in `build_renewable_profiles`. - -**Relevant Settings** - -.. code:: yaml - - snapshots: - start: - end: - inclusive: - - electricity: - -.. seealso:: - Documentation of the configuration file `config/config.yaml` at :ref:`costs_cf`, - :ref:`electricity_cf`, :ref:`renewable_cf`, :ref:`lines_cf` - -**Inputs** - -- ``resources/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. -- ``resources/regions_onshore.geojson``: confer :ref:`busregions` -- ``resources/profile_{}.nc``: all technologies in ``config["renewables"].keys()``, confer :ref:`renewableprofiles`. -- ``networks/elec_base_network.nc``: confer :ref:`base` -- ``resources/ng_fuel_prices.csv``: Natural gas fuel prices by state and BA. - -**Outputs** - -- ``networks/elec_base_network_l_pp.nc`` +This script will add all generator unit availabilities (capacity-factors) to the network, for all investment horizons. """ - import logging import os @@ -49,7 +19,6 @@ calculate_annuity, configure_logging, export_network_for_gis_mapping, - load_costs, update_p_nom_max, weighted_avg, ) @@ -86,7 +55,6 @@ def sanitize_carriers(n, config): -------- Raises a warning if any carrier's "tech_colors" are not defined in the config dictionary. """ - for c in n.iterate_components(): if "carrier" in c.df: add_missing_carriers(n, c.df.carrier) @@ -107,18 +75,14 @@ def sanitize_carriers(n, config): def add_missing_carriers(n, carriers): - """ - Function to add missing carriers to the network without raising errors. - """ + """Function to add missing carriers to the network without raising errors.""" missing_carriers = set(carriers) - set(n.carriers.index) if len(missing_carriers) > 0: n.madd("Carrier", missing_carriers) def clean_locational_multiplier(df: pd.DataFrame): - """ - Updates format of locational multiplier data. - """ + """Updates format of locational multiplier data.""" df = df.fillna(1) df = df[["State", "Location Variation"]] return df.groupby("State").mean() @@ -129,12 +93,8 @@ def update_capital_costs( carrier: str, costs: pd.DataFrame, multiplier: pd.DataFrame, - Nyears: float = 1.0, ): - """ - Applies regional multipliers to capital cost data. - """ - + """Applies regional multipliers to capital cost data.""" # map generators to states bus_state_mapper = n.buses.to_dict()["state"] gen = n.generators[n.generators.carrier == carrier].copy() @@ -184,7 +144,6 @@ def apply_dynamic_pricing( vom: float = 0 Additional flat $/MWh cost to add onto the fuel costs """ - assert geography in n.buses.columns gens = n.generators.copy() @@ -250,13 +209,13 @@ def update_transmission_costs(n, costs, length_factor=1.0): def load_powerplants( plants_fn, investment_periods: list[int], - interconnect: str = None, + interconnect: str | None = None, ) -> pd.DataFrame: plants = pd.read_csv( plants_fn, ) # Filter out non-conus plants and plants that are not built by first investment period. - plants.set_index("generator_name", inplace=True) + plants = plants.set_index("generator_name") plants = plants[plants.build_year <= investment_periods[0]] plants = plants[plants.nerc_region != "non-conus"] if (interconnect is not None) & (interconnect != "usa"): @@ -266,9 +225,7 @@ def load_powerplants( def match_nearest_bus(plants_subset, buses_subset): - """ - Assign the nearest bus to each plant in the given subsets. - """ + """Assign the nearest bus to each plant in the given subsets.""" if plants_subset.empty or buses_subset.empty: return plants_subset @@ -276,7 +233,10 @@ def match_nearest_bus(plants_subset, buses_subset): tree = BallTree(buses_subset[["x", "y"]].values, leaf_size=2) # Find nearest bus for each plant in the subset - distances, indices = tree.query(plants_subset[["longitude", "latitude"]].values, k=1) + distances, indices = tree.query( + plants_subset[["longitude", "latitude"]].values, + k=1, + ) # Map the nearest bus information back to the plants subset plants_subset["bus_assignment"] = buses_subset.reset_index().iloc[indices.flatten()]["Bus"].values @@ -345,7 +305,12 @@ def filter_plants_by_region( # Some plants like Diablo Canyon near oceans don't have region due to # imprecise ReEDS Shapes. We filter plants that have no reeds regions, # then search these points again. - plants_in_regions = gpd.sjoin(gdf_plants, reeds_shapes, how="inner", predicate="intersects") + plants_in_regions = gpd.sjoin( + gdf_plants, + reeds_shapes, + how="inner", + predicate="intersects", + ) plants_no_region = gdf_plants[~gdf_plants.index.isin(plants_in_regions.index)] if not plants_no_region.empty: plants_no_region = plants_no_region.to_crs(epsg=3857) @@ -359,7 +324,7 @@ def filter_plants_by_region( plants_nearshore = plants_nearshore.to_crs(epsg=4326) plants_filt = pd.concat([plants_filt, plants_nearshore]) - plants_filt.drop(columns=["geometry"], inplace=True) + plants_filt = plants_filt.drop(columns=["geometry"]) plants_filt = plants_filt[~plants_filt.index.duplicated()] plants_filt[plants_filt.index.str.contains("Diablo")] @@ -385,7 +350,9 @@ def attach_renewable_capacities_to_atlite( plants_filt["sub_assignment"] = plants_filt.bus_assignment.map(n.buses.sub_id) build_year_avg = plants_filt.groupby(["sub_assignment"])[plants_filt.columns].apply( - lambda x: pd.Series({field: weighted_avg(x, field, "p_nom") for field in ["build_year"]}), + lambda x: pd.Series( + {field: weighted_avg(x, field, "p_nom") for field in ["build_year"]}, + ), ) caps_per_bus = ( @@ -399,16 +366,18 @@ def attach_renewable_capacities_to_atlite( # missing_plants.to_csv(f"missing_{tech}_plants.csv",) logger.info( - f"There are {np.round(missing_capacity/1000,4)} GW of {tech} plants that are not in the network. See git issue #16.", + f"There are {np.round(missing_capacity / 1000, 4)} GW of {tech} plants that are not in the network. See git issue #16.", ) logger.info( - f"{np.round(caps_per_bus.sum()/1000,2)} GW of {tech} capacity added.", + f"{np.round(caps_per_bus.sum() / 1000, 2)} GW of {tech} capacity added.", ) mapped_values = generators_tech.sub_assignment.map(caps_per_bus).dropna() n.generators.loc[mapped_values.index, "p_nom"] = mapped_values n.generators.loc[mapped_values.index, "p_nom_min"] = mapped_values - mapped_values = generators_tech.sub_assignment.map(build_year_avg.build_year).dropna() + mapped_values = generators_tech.sub_assignment.map( + build_year_avg.build_year, + ).dropna() n.generators.loc[mapped_values.index, "build_year"] = mapped_values.astype(int) @@ -594,12 +563,14 @@ def attach_egs( discount_rate = 0.07 # load_costs(snakemake.input.tech_costs).loc["geothermal", "wacc_real"] drilling_cost = snakemake.config["renewable"]["EGS"]["drilling_cost"] - with xr.open_dataset( - getattr(input_profiles, "specs_egs"), - ) as ds_specs, xr.open_dataset( - getattr(input_profiles, "profile_egs"), - ) as ds_profile: - + with ( + xr.open_dataset( + getattr(input_profiles, "specs_egs"), + ) as ds_specs, + xr.open_dataset( + getattr(input_profiles, "profile_egs"), + ) as ds_profile, + ): bus2sub = ( pd.read_csv(input_profiles.bus2sub, dtype=str) .drop("interconnect", axis=1) @@ -616,13 +587,13 @@ def attach_egs( df_specs["bus_id"] = df_specs["bus_id"].astype(str) # bus_id must be in index for pypsa to read it - df_specs.set_index("bus_id", inplace=True) + df_specs = df_specs.set_index("bus_id") # columns must be renamed to refer to the right quantities for pypsa to read it correctly logger.info(f"Using {drilling_cost} EGS drilling costs.") df_specs = df_specs.rename( columns={ - "advanced_capex_usd_kw" if drilling_cost == "advanced" else "capex_usd_kw": "capital_cost", + ("advanced_capex_usd_kw" if drilling_cost == "advanced" else "capex_usd_kw"): "capital_cost", "avail_capacity_mw": "p_nom_max", "fixed_om": "fixed_om", }, @@ -688,16 +659,14 @@ def attach_battery_storage( costs: pd.DataFrame, plants: pd.DataFrame, ): - """ - Attaches Existing Battery Energy Storage Systems To the Network. - """ + """Attaches Existing Battery Energy Storage Systems To the Network.""" plants_filt = plants.query("carrier == 'battery' ") plants_filt.index = plants_filt.index.astype(str) + "_" + plants_filt.generator_id.astype(str) plants_filt.loc[:, "energy_storage_capacity_mwh"] = plants_filt.energy_storage_capacity_mwh.astype(float) plants_filt = plants_filt.dropna(subset=["energy_storage_capacity_mwh"]) logger.info( - f"Added Batteries as Storage Units to the network.\n{np.round(plants_filt.p_nom.sum()/1000,2)} GW Power Capacity \n{np.round(plants_filt.energy_storage_capacity_mwh.sum()/1000, 2)} GWh Energy Capacity", + f"Added Batteries as Storage Units to the network.\n{np.round(plants_filt.p_nom.sum() / 1000, 2)} GW Power Capacity \n{np.round(plants_filt.energy_storage_capacity_mwh.sum() / 1000, 2)} GWh Energy Capacity", ) plants_filt = plants_filt.dropna(subset=["energy_storage_capacity_mwh"]) @@ -751,7 +720,7 @@ def apply_seasonal_capacity_derates( conventional_carriers: list, sns: pd.DatetimeIndex, ): - "Applies conventional rerate factor p_max_pu based on the seasonal capacity derates defined in eia860" + """Applies conventional rerate factor p_max_pu based on the seasonal capacity derates defined in eia860.""" sns_dt = sns.get_level_values(1) summer_sns = sns_dt[sns_dt.month.isin([6, 7, 8])] winter_sns = sns_dt[~sns_dt.month.isin([6, 7, 8])] @@ -785,9 +754,7 @@ def apply_must_run_ratings( conventional_carriers: list, sns: pd.DatetimeIndex, ): - """ - Applies Minimum Loading Capacities only to WECC ADS designated Plants. - """ + """Applies Minimum Loading Capacities only to WECC ADS designated Plants.""" conv_plants = plants.query("carrier in @conventional_carriers").copy() conv_plants.index = "C" + conv_plants.index @@ -809,16 +776,14 @@ def apply_must_run_ratings( def clean_bus_data(n: pypsa.Network): - """ - Drops data from the network that are no longer needed in workflow. - """ + """Drops data from the network that are no longer needed in workflow.""" col_list = [ - "Pd", + # "Pd", "load_dissag", "LAF", "LAF_state", ] - n.buses.drop(columns=[col for col in col_list if col in n.buses], inplace=True) + n.buses = n.buses.drop(columns=[col for col in col_list if col in n.buses]) def attach_breakthrough_renewable_plants( @@ -828,13 +793,12 @@ def attach_breakthrough_renewable_plants( extendable_carriers, costs, ): - add_missing_carriers(n, renewable_carriers) plants = pd.read_csv(fn_plants, dtype={"bus_id": str}, index_col=0).query( "bus_id in @n.buses.index", ) - plants.replace(["wind_offshore"], ["offwind"], inplace=True) + plants = plants.replace(["wind_offshore"], ["offwind"]) for tech in renewable_carriers: assert tech == "hydro" @@ -887,7 +851,6 @@ def apply_pudl_fuel_costs( plants, costs, ): - # Apply PuDL Fuel Costs for plants where listed pudl_fuel_costs = pd.read_csv(snakemake.input["pudl_fuel_costs"], index_col=0) @@ -922,7 +885,9 @@ def apply_pudl_fuel_costs( n.generators_t["marginal_cost"] = n.generators_t["marginal_cost"].join( pudl_fuel_costs, ) - logger.info(f"Applied PuDL fuel costs to {len(pudl_fuel_costs.columns)} generators.") + logger.info( + f"Applied PuDL fuel costs to {len(pudl_fuel_costs.columns)} generators.", + ) return n @@ -936,9 +901,6 @@ def main(snakemake): regions_offshore = gpd.read_file(snakemake.input.regions_offshore) reeds_shapes = gpd.read_file(snakemake.input.reeds_shapes) - Nyears = n.snapshot_weightings.loc[n.investment_periods[0]].objective.sum() / 8760.0 - - ### TODO COSTS TO REMOVE ### costs = pd.read_csv(snakemake.input.tech_costs) costs = costs.pivot(index="pypsa-name", columns="parameter", values="value") update_transmission_costs(n, costs, params.length_factor) @@ -990,7 +952,8 @@ def main(snakemake): ) if params.conventional.get("must_run", False): - # TODO (@ktehranchi): In the future the plants that are must-run should not be clustered and instead retire according to lifetime + # TODO (@ktehranchi): In the future the plants that are must-run should + # not be clustered and instead retire according to lifetime apply_must_run_ratings( n, plants, @@ -1040,12 +1003,12 @@ def main(snakemake): multiplier_file = snakemake.input[f"gen_cost_mult_{multiplier_data}"] df_multiplier = pd.read_csv(multiplier_file) df_multiplier = clean_locational_multiplier(df_multiplier) - update_capital_costs(n, carrier, costs, df_multiplier, Nyears) + update_capital_costs(n, carrier, costs, df_multiplier) if params.conventional["dynamic_fuel_price"].get("enable", False): logger.info("Applying dynamic fuel pricing to conventional generators") if params.conventional["dynamic_fuel_price"]["wholesale"]: - assert params.eia_api, f"Must provide EIA API key for dynamic fuel pricing" + assert params.eia_api, "Must provide EIA API key for dynamic fuel pricing" dynamic_fuel_prices = { "OCGT": { @@ -1070,7 +1033,10 @@ def main(snakemake): continue # if data should exist, try to read it in try: - df = pd.read_csv(snakemake.input[datafile], index_col="snapshot") + df = pd.read_csv( + snakemake.input[datafile], + index_col="snapshot", + ) if df.empty: logger.warning(f"No data provided for {datafile}") continue @@ -1087,7 +1053,9 @@ def main(snakemake): df=df, vom=vom, ) - logger.info(f"Applied dynamic price data for {carrier} from {datafile}") + logger.info( + f"Applied dynamic price data for {carrier} from {datafile}", + ) if params.conventional["dynamic_fuel_price"]["pudl"]: n = apply_pudl_fuel_costs(n, plants, costs) diff --git a/workflow/scripts/add_extra_components.py b/workflow/scripts/add_extra_components.py index 125c606e..96fd5665 100644 --- a/workflow/scripts/add_extra_components.py +++ b/workflow/scripts/add_extra_components.py @@ -1,9 +1,6 @@ -""" -Adds extra extendable components to the clustered and simplified network. -""" +"""Adds extra extendable components to the clustered and simplified network.""" import logging -from typing import List import geopandas as gpd import numpy as np @@ -18,19 +15,18 @@ def add_co2_emissions(n, costs, carriers): - """ - Add CO2 emissions to the network's carriers attribute. - """ + """Add CO2 emissions to the network's carriers attribute.""" suptechs = n.carriers.loc[carriers].index.str.split("-").str[0] missing_carriers = set(suptechs) - set(costs.index) if missing_carriers: - logger.warning(f"CO2 emissions for carriers {missing_carriers} not defined in cost data.") + logger.warning( + f"CO2 emissions for carriers {missing_carriers} not defined in cost data.", + ) suptechs = suptechs.difference(missing_carriers) n.carriers.loc[suptechs, "co2_emissions"] = costs.co2_emissions[suptechs].values - n.carriers.fillna( + n.carriers = n.carriers.fillna( {"co2_emissions": 0}, - inplace=True, ) # TODO: FIX THIS ISSUE IN BUILD_COST_DATA- missing co2_emissions for some VRE carriers if any("CCS" in carrier for carrier in carriers): @@ -243,7 +239,7 @@ def attach_stores(n, costs, elec_opts, investment_year): def split_retirement_gens( n: pypsa.Network, costs: pd.DataFrame, - carriers: list[str] = None, + carriers: list[str] | None = None, economic: bool = True, ): """ @@ -281,7 +277,7 @@ def split_retirement_gens( n.generators["capital_cost"] = n.generators.apply( lambda row: ( row["capital_cost"] - if not row.name in (retirement_gens.index) + if row.name not in (retirement_gens.index) else costs.at[row["carrier"], "opex_fixed_per_kw"] * 1e3 ), axis=1, @@ -289,7 +285,7 @@ def split_retirement_gens( # Rename retiring generators to include "existing" suffix n.generators.index = n.generators.apply( - lambda row: (row.name if not row.name in (retirement_gens.index) else row.name + " existing"), + lambda row: (row.name if row.name not in (retirement_gens.index) else row.name + " existing"), axis=1, ) @@ -305,9 +301,10 @@ def split_retirement_gens( n.generators["p_nom_min"], ) - n.generators.loc[retirement_mask.values, "p_nom_extendable"] = ( - economic # if economic retirement is true enable extendable - ) + n.generators.loc[ + retirement_mask.values, + "p_nom_extendable", + ] = economic # if economic retirement is true enable extendable # Adding Expanding generators for the first investment period # There are generators that exist today and could expand @@ -437,7 +434,7 @@ def attach_multihorizon_egs( costs_dict: dict, Dict of costs for each investment period carriers: List[str] - List of carriers to add multiple investment options for + List of carriers to add multiple investment options for. """ if gens.empty or len(n.investment_periods) == 1: return @@ -627,6 +624,143 @@ def apply_max_annual_growth_rate(n, max_growth): n.carriers.loc[carrier, "max_relative_growth"] = rate**years +def add_demand_response( + n: pypsa.Network, + dr_config: dict[str, str | float], +) -> None: + """Add price based demand response to network.""" + n.add("Carrier", "demand_response", color="#dd2e23", nice_name="Demand Response") + + shift = dr_config.get("shift", 0) + if shift == 0: + logger.info(f"DR not applied as allowable sift is {shift}") + return + + marginal_cost_storage = dr_config.get("marginal_cost", 0) + if marginal_cost_storage == 0: + logger.warning("No cost applied to demand response") + + # attach dr at all load locations + + buses = n.loads.bus + df = n.buses[n.buses.index.isin(buses)].copy() + + # two storageunits for forward and backwards load shifting + + n.madd( + "Bus", + names=df.index, + suffix="-fwd-dr", + x=df.x, + y=df.y, + carrier="demand_response", + unit="MWh", + country=df.country, + reeds_zone=df.reeds_zone, + reeds_ba=df.reeds_ba, + interconnect=df.interconnect, + trans_reg=df.trans_reg, + trans_grp=df.trans_grp, + reeds_state=df.reeds_state, + substation_lv=df.substation_lv, + ) + + n.madd( + "Bus", + names=df.index, + suffix="-bck-dr", + x=df.x, + y=df.y, + carrier="demand_response", + unit="MWh", + country=df.country, + reeds_zone=df.reeds_zone, + reeds_ba=df.reeds_ba, + interconnect=df.interconnect, + trans_reg=df.trans_reg, + trans_grp=df.trans_grp, + reeds_state=df.reeds_state, + substation_lv=df.substation_lv, + ) + + # seperate charging/discharging links for easier constraint generation + + n.madd( + "Link", + names=df.index, + suffix="-fwd-dr-charger", + bus0=df.index, + bus1=df.index + "-fwd-dr", + carrier="demand_response", + p_nom_extendable=False, + p_nom=np.inf, + ) + + n.madd( + "Link", + names=df.index, + suffix="-fwd-dr-discharger", + bus0=df.index + "-fwd-dr", + bus1=df.index, + carrier="demand_response", + p_nom_extendable=False, + p_nom=np.inf, + ) + + n.madd( + "Link", + names=df.index, + suffix="-bck-dr-charger", + bus0=df.index, + bus1=df.index + "-bck-dr", + carrier="demand_response", + p_nom_extendable=False, + p_nom=np.inf, + ) + + n.madd( + "Link", + names=df.index, + suffix="-bck-dr-discharger", + bus0=df.index + "-bck-dr", + bus1=df.index, + carrier="demand_response", + p_nom_extendable=False, + p_nom=np.inf, + ) + + # backward stores have positive marginal cost storage and postive e + # forward stores have negative marginal cost storage and negative e + + n.madd( + "Store", + names=df.index, + suffix="-bck-dr", + bus=df.index + "-bck-dr", + e_cyclic=True, + e_nom_extendable=False, + e_nom=np.inf, + e_min_pu=0, + e_max_pu=1, + carrier="demand_response", + marginal_cost_storage=marginal_cost_storage, + ) + + n.madd( + "Store", + names=df.index, + suffix="-fwd-dr", + bus=df.index + "-fwd-dr", + e_cyclic=True, + e_nom_extendable=False, + e_nom=np.inf, + e_min_pu=-1, + e_max_pu=0, + carrier="demand_response", + marginal_cost_storage=marginal_cost_storage * (-1), + ) + + if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake @@ -634,8 +768,8 @@ def apply_max_annual_growth_rate(n, max_growth): snakemake = mock_snakemake( "add_extra_components", interconnect="western", - simpl=12, - clusters=6, + simpl="70", + clusters="4m", ) configure_logging(snakemake) @@ -681,19 +815,25 @@ def apply_max_annual_growth_rate(n, max_growth): [car for car in elec_config["extendable_carriers"]["Generator"] if "EGS" not in car], ) ] - - egs_gens = n.generators[n.generators["p_nom_extendable"] == True] + egs_gens = n.generators[n.generators["p_nom_extendable"]] egs_gens = egs_gens.loc[egs_gens["carrier"].str.contains("EGS")] new_carriers = list( set(elec_config["extendable_carriers"].get("Generator", [])) - set(n.generators.carrier.unique()) - | set(["nuclear"] if "nuclear" in elec_config["extendable_carriers"].get("Generator", []) else []), + | set( + ["nuclear"] if "nuclear" in elec_config["extendable_carriers"].get("Generator", []) else [], + ), ) for investment_year in n.investment_periods: costs = costs_dict[investment_year] attach_storageunits(n, costs, elec_config, investment_year) - attach_multihorizon_existing_generators(n, costs, multi_horizon_gens, investment_year) + attach_multihorizon_existing_generators( + n, + costs, + multi_horizon_gens, + investment_year, + ) attach_multihorizon_egs(n, costs, costs_dict, egs_gens, investment_year) attach_multihorizon_new_generators(n, costs, new_carriers, investment_year) # attach_stores(n, costs, elec_config, investment_year) @@ -708,7 +848,11 @@ def apply_max_annual_growth_rate(n, max_growth): apply_max_annual_growth_rate(n, snakemake.config["costs"]["max_growth"]) add_nice_carrier_names(n, snakemake.config) add_co2_emissions(n, costs_dict[n.investment_periods[0]], n.carriers.index) - # n.generators.to_csv("generators_ec.csv") + + dr_config = snakemake.params.demand_response + if dr_config: + add_demand_response(n, dr_config) + n.consistency_check() n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) n.export_to_netcdf(snakemake.output[0]) diff --git a/workflow/scripts/add_sectors.py b/workflow/scripts/add_sectors.py index 19cf3dd4..5e2455c1 100644 --- a/workflow/scripts/add_sectors.py +++ b/workflow/scripts/add_sectors.py @@ -6,16 +6,12 @@ """ import logging +import sys import geopandas as gpd import numpy as np import pandas as pd import pypsa - -logger = logging.getLogger(__name__) -import sys -from typing import Optional - from _helpers import configure_logging, get_snapshots, load_costs from add_electricity import sanitize_carriers from build_electricity_sector import build_electricty @@ -32,25 +28,24 @@ get_transport_stock, ) from build_transportation import apply_exogenous_ev_policy, build_transportation -from constants import STATE_2_CODE, STATES_INTERCONNECT_MAPPER +from constants import CODE_2_STATE, STATE_2_CODE, STATES_INTERCONNECT_MAPPER from constants_sector import RoadTransport from shapely.geometry import Point -CODE_2_STATE = {v: k for k, v in STATE_2_CODE.items()} +logger = logging.getLogger(__name__) def assign_bus_2_state( n: pypsa.Network, shp: str, - states_2_include: list[str] = None, - state_2_state_name: dict[str, str] = None, + states_2_include: list[str] | None = None, + state_2_state_name: dict[str, str] | None = None, ) -> None: """ Adds a state column to the network buses dataframe. The shapefile must be the counties shapefile """ - buses = n.buses[["x", "y"]].copy() buses["geometry"] = buses.apply(lambda x: Point(x.x, x.y), axis=1) buses = gpd.GeoDataFrame(buses, crs="EPSG:4269") @@ -75,8 +70,8 @@ def add_sector_foundation( n: pypsa.Network, carrier: str, add_supply: bool = True, - costs: Optional[pd.DataFrame] = pd.DataFrame(), - center_points: Optional[pd.DataFrame] = pd.DataFrame(), + costs: pd.DataFrame | None = pd.DataFrame(), + center_points: pd.DataFrame | None = pd.DataFrame(), ) -> None: """ Adds carrier, state level bus and store for the energy carrier. @@ -85,7 +80,6 @@ def add_sector_foundation( only the bus is created and no energy supply will be added to the state level bus. """ - match carrier: case "gas": carrier_kwargs = {"color": "#d35050", "nice_name": "Natural Gas"} @@ -151,7 +145,6 @@ def add_sector_foundation( ) if add_supply: - n.madd( "Store", names=points.index, @@ -190,7 +183,6 @@ def convert_generators_2_links( bus0_suffix: str, suffix to attach link to """ - plants = n.generators[n.generators.carrier == carrier].copy() if plants.empty: @@ -257,7 +249,6 @@ def split_loads_by_carrier(n: pypsa.Network): Note: This will break the flow of energy in the model! You must add a new link between the new bus and old bus if you want to retain the flow """ - for bus in n.buses.index.unique(): df = n.loads[n.loads.bus == bus][["bus", "carrier"]] @@ -284,7 +275,6 @@ def get_pwr_co2_intensity(carrier: str, costs: pd.DataFrame) -> float: Spereate function, as there is some odd logic to account for different names in translation to a sector study. """ - # the ccs case are a hack solution match carrier: @@ -365,15 +355,15 @@ def get_pwr_co2_intensity(carrier: str, costs: pd.DataFrame) -> float: for carrier in ("OCGT", "CCGT", "CCGT-95CCS", "CCGT-97CCS"): co2_intensity = get_pwr_co2_intensity(carrier, costs) - convert_generators_2_links(n, carrier, f" gas", co2_intensity) + convert_generators_2_links(n, carrier, " gas", co2_intensity) for carrier in ("coal", "coal-95CCS", "coal-99CCS"): co2_intensity = get_pwr_co2_intensity(carrier, costs) - convert_generators_2_links(n, carrier, f" coal", co2_intensity) + convert_generators_2_links(n, carrier, " coal", co2_intensity) for carrier in ["oil"]: co2_intensity = get_pwr_co2_intensity(carrier, costs) - convert_generators_2_links(n, carrier, f" oil", co2_intensity) + convert_generators_2_links(n, carrier, " oil", co2_intensity) ng_options = snakemake.params.sector["natural_gas"] @@ -495,7 +485,6 @@ def get_pwr_co2_intensity(carrier: str, costs: pd.DataFrame) -> float: ) if snakemake.params.sector["service_sector"]["brownfield"]: - res_stock_dir = snakemake.input.residential_stock com_stock_dir = snakemake.input.commercial_stock @@ -504,7 +493,6 @@ def get_pwr_co2_intensity(carrier: str, costs: pd.DataFrame) -> float: else: fuels = ["heating", "cooling"] for fuel in fuels: - if fuel == "water_heating": simple_storage = snakemake.params.sector["service_sector"]["water_heating"].get("simple_storage", False) else: @@ -539,14 +527,12 @@ def get_pwr_co2_intensity(carrier: str, costs: pd.DataFrame) -> float: ) if snakemake.params.sector["industrial_sector"]["brownfield"]: - mecs_file = snakemake.input.industrial_stock ratios = get_industrial_stock(mecs_file) fuels = ["heat"] for fuel in fuels: - ratio = ratios.loc[fuel] add_industrial_brownfield( n=n, diff --git a/workflow/scripts/additional_policy_constraints.py b/workflow/scripts/additional_policy_constraints.py deleted file mode 100644 index e69de29b..00000000 diff --git a/workflow/scripts/build_base_network.py b/workflow/scripts/build_base_network.py index 9cbf9531..c5a1e427 100644 --- a/workflow/scripts/build_base_network.py +++ b/workflow/scripts/build_base_network.py @@ -1,23 +1,22 @@ +"""Builds base pypsa network with lines, buses, transformers.""" + # BY PyPSA-USA Authors import logging -from typing import Optional -import constants as const import geopandas as gpd import numpy as np import pandas as pd import pypsa from _helpers import configure_logging from build_shapes import load_na_shapes -from geopandas.tools import sjoin -from shapely.geometry import Point, Polygon +from shapely.geometry import Polygon from sklearn.neighbors import BallTree def haversine_np(lon1, lat1, lon2, lat2): """ Calculate the great circle distance between two points on the earth - (specified in decimal degrees) + (specified in decimal degrees). All args must be of equal length. source: https://stackoverflow.com/questions/29545704/fast-haversine-approximation-python-pandas @@ -71,7 +70,6 @@ def add_buses_from_file( def add_branches_from_file(n: pypsa.Network, fn_branches: str) -> pypsa.Network: - branches = pd.read_csv( fn_branches, dtype={"from_bus_id": str, "to_bus_id": str}, @@ -114,7 +112,6 @@ def assign_line_types(n: pypsa.Network): def add_dclines_from_file(n: pypsa.Network, fn_dclines: str) -> pypsa.Network: - dclines = pd.read_csv( fn_dclines, dtype={"from_bus_id": str, "to_bus_id": str}, @@ -137,17 +134,13 @@ def add_dclines_from_file(n: pypsa.Network, fn_dclines: str) -> pypsa.Network: def assign_sub_id(buses: pd.DataFrame, bus_locs: pd.DataFrame) -> pd.DataFrame: - """ - Adds sub id to dataframe as a new column. - """ + """Adds sub id to dataframe as a new column.""" buses["sub_id"] = bus_locs.sub_id return buses def assign_bus_location(buses: pd.DataFrame, buslocs: pd.DataFrame) -> gpd.GeoDataFrame: - """ - Attaches coordinates and sub ids to each bus. - """ + """Attaches coordinates and sub ids to each bus.""" gdf_bus = pd.merge( buses, buslocs[["lat", "lon"]], @@ -179,9 +172,7 @@ def map_bus_to_region( def assign_line_length(n: pypsa.Network): - """ - Assigns line length to each line in the network using Haversine distance. - """ + """Assigns line length to each line in the network using Haversine distance.""" bus_df = n.buses[["x", "y"]] bus0 = bus_df.loc[n.lines.bus0].values bus1 = bus_df.loc[n.lines.bus1].values @@ -240,7 +231,7 @@ def build_offshore_buses( offshore_shapes: gpd.GeoDataFrame, offshore_spacing: int, ) -> pd.DataFrame: - "Build dataframe of offshore buses by creating evenly spaced grid cells inside of the offshore shapes." + """Build dataframe of offshore buses by creating evenly spaced grid cells inside of the offshore shapes.""" offshore_buses = pd.DataFrame() offshore_shapes = offshore_shapes.to_crs("EPSG:5070") for shape in offshore_shapes.geometry: @@ -262,7 +253,7 @@ def build_offshore_buses( def add_offshore_buses(n: pypsa.Network, offshore_buses: pd.DataFrame) -> pypsa.Network: - "Add offshore buses to network" + """Add offshore buses to network.""" n.madd( "Bus", offshore_buses.index, @@ -291,7 +282,7 @@ def assign_texas_poi(n: pypsa.Network) -> pypsa.Network: def identify_osw_poi(n: pypsa.Network) -> pypsa.Network: - "Identify offshore wind points of interconnections in the base network." + """Identify offshore wind points of interconnections in the base network.""" offshore_lines = n.lines.loc[n.lines.bus0.isin(n.buses.loc[n.buses.substation_off].index)] poi_bus_ids = offshore_lines.bus1.unique() poi_sub_ids = n.buses.loc[poi_bus_ids, "sub_id"].unique() @@ -303,7 +294,7 @@ def identify_osw_poi(n: pypsa.Network) -> pypsa.Network: def match_missing_buses(buses_to_match_to, missing_buses): - "Match buses missing region assignment to their nearest bus" + """Match buses missing region assignment to their nearest bus.""" missing_buses = missing_buses.copy() missing_buses["bus_assignment"] = None @@ -322,12 +313,12 @@ def match_missing_buses(buses_to_match_to, missing_buses): k=1, # The number of nearest neighbors ) missing_buses["bus_assignment"] = buses_to_match_to.reset_index().iloc[missing_buses.id_nearest].Bus.values - missing_buses.drop(columns=["id_nearest"], inplace=True) + missing_buses = missing_buses.drop(columns=["id_nearest"]) return missing_buses def build_offshore_transmission_configuration(n: pypsa.Network) -> pypsa.Network: - "Builds offshore transmission configurations connecting offshore buses to the POIs onshore." + """Builds offshore transmission configurations connecting offshore buses to the POIs onshore.""" poi_buses = n.buses.loc[n.buses.poi_sub] # identify the buses at the POI highest_voltage_buses = poi_buses.loc[poi_buses.groupby("sub_id")["v_nom"].idxmax()] offshore_buses = match_missing_buses( @@ -372,7 +363,7 @@ def build_offshore_transmission_configuration(n: pypsa.Network) -> pypsa.Network ) # add offshore wind export cables - logger.info(f"Adding offshore wind export lines to the network.") + logger.info("Adding offshore wind export lines to the network.") n.madd( "Line", "OSW_export_" + osw_offsub_bus_ids, # name line after offshore substation @@ -493,9 +484,7 @@ def assign_missing_states_countries(n: pypsa.Network): def assign_reeds_memberships(n: pypsa.Network, fn_reeds_memberships: str): - """ - Assigns REeDS zone and balancing area memberships to buses. - """ + """Assigns REeDS zone and balancing area memberships to buses.""" reeds_memberships = pd.read_csv(fn_reeds_memberships, index_col=0) n.buses["nerc_reg"] = n.buses.reeds_zone.map(reeds_memberships.nercr) n.buses["trans_reg"] = n.buses.reeds_zone.map(reeds_memberships.transreg) @@ -504,12 +493,24 @@ def assign_reeds_memberships(n: pypsa.Network, fn_reeds_memberships: str): # Groupby county, and assign the most common reeds_zone, reeds_ba, reeds_state, nerc # This is a fix for the few counties that are split between unaligned county GIS and Reeds Zone Shapes. - n.buses["reeds_zone"] = n.buses.groupby("county")["reeds_zone"].transform(lambda x: x.mode()[0]) - n.buses["reeds_ba"] = n.buses.groupby("county")["reeds_ba"].transform(lambda x: x.mode()[0]) - n.buses["reeds_state"] = n.buses.groupby("county")["reeds_state"].transform(lambda x: x.mode()[0]) - n.buses["nerc_reg"] = n.buses.groupby("county")["nerc_reg"].transform(lambda x: x.mode()[0]) - n.buses["trans_reg"] = n.buses.groupby("county")["trans_reg"].transform(lambda x: x.mode()[0]) - n.buses["trans_grp"] = n.buses.groupby("county")["trans_grp"].transform(lambda x: x.mode()[0]) + n.buses["reeds_zone"] = n.buses.groupby("county")["reeds_zone"].transform( + lambda x: x.mode()[0], + ) + n.buses["reeds_ba"] = n.buses.groupby("county")["reeds_ba"].transform( + lambda x: x.mode()[0], + ) + n.buses["reeds_state"] = n.buses.groupby("county")["reeds_state"].transform( + lambda x: x.mode()[0], + ) + n.buses["nerc_reg"] = n.buses.groupby("county")["nerc_reg"].transform( + lambda x: x.mode()[0], + ) + n.buses["trans_reg"] = n.buses.groupby("county")["trans_reg"].transform( + lambda x: x.mode()[0], + ) + n.buses["trans_grp"] = n.buses.groupby("county")["trans_grp"].transform( + lambda x: x.mode()[0], + ) # # Assert that each county must have the same reeds_ba, reeds_zone, reeds_state, nerc_reg, and trans_reg # assert n.buses.groupby("county")["reeds_ba"].nunique().eq(1).all() @@ -604,9 +605,9 @@ def main(snakemake): # be calcualted here to capture splitting of states from the interconnect group_sums = gdf_bus.groupby("full_state")["Pd"].transform("sum") gdf_bus["LAF_state"] = gdf_bus["Pd"] / group_sums - gdf_bus.drop(columns=["full_state"], inplace=True) + gdf_bus = gdf_bus.drop(columns=["full_state"]) - # Removing few duplicated shapes where GIS shapes were overlapping. TODO Fix GIS shapes + # Removing few duplicated shapes where GIS shapes were overlapping. TODO: Fix GIS shapes gdf_bus = gdf_bus.reset_index().drop_duplicates(subset="bus_id", keep="first").set_index("bus_id") # add buses, transformers, lines and links @@ -661,7 +662,7 @@ def main(snakemake): ), "No buses remaining in network. Check your model_topology: inclusion:, you may be filtering the wrong zones for the selected interconnect" col_list = ["poi_bus", "poi_sub", "poi"] - n.buses.drop(columns=[col for col in col_list if col in n.buses], inplace=True) + n.buses = n.buses.drop(columns=[col for col in col_list if col in n.buses]) if ( len( diff --git a/workflow/scripts/build_bus_regions.py b/workflow/scripts/build_bus_regions.py index d01f23fa..d2479c80 100644 --- a/workflow/scripts/build_bus_regions.py +++ b/workflow/scripts/build_bus_regions.py @@ -1,6 +1,6 @@ # By PyPSA-USA Authors """ -**Description** +**Description**. Creates Voronoi shapes for each bus representing both onshore and offshore regions. @@ -23,7 +23,6 @@ - ``resources/regions_offshore.geojson`` """ - import logging import geopandas as gpd @@ -39,16 +38,17 @@ def voronoi_partition_pts(points, outline): """ Compute the polygons of a voronoi partition of `points` within the polygon `outline`. Taken from - https://github.com/FRESNA/vresutils/blob/master/vresutils/graph.py + https://github.com/FRESNA/vresutils/blob/master/vresutils/graph.py. + Attributes ---------- points : Nx2 - ndarray[dtype=float] outline : Polygon + Returns ------- polygons : N - ndarray[dtype=Polygon|MultiPolygon] """ - points = np.asarray(points) if len(points) == 1: @@ -195,7 +195,8 @@ def main(snakemake): "country": shape_name, }, ) - offshore_regions_c = offshore_regions_c.loc[offshore_regions_c.area > 1e-2] # remove extremely small regions + # remove extremely small regions + offshore_regions_c = offshore_regions_c.loc[offshore_regions_c.area > 1e-2] offshore_regions.append(offshore_regions_c) # Exporting if offshore_regions: diff --git a/workflow/scripts/build_clustered_population_layouts.py b/workflow/scripts/build_clustered_population_layouts.py index c9698b6d..91796f22 100644 --- a/workflow/scripts/build_clustered_population_layouts.py +++ b/workflow/scripts/build_clustered_population_layouts.py @@ -23,12 +23,12 @@ clustered_regions = gpd.read_file(snakemake.input.regions_onshore).set_index("name").buffer(0).squeeze() - I = cutout.indicatormatrix(clustered_regions) + indicator_matrix = cutout.indicatormatrix(clustered_regions) pop = {} for item in ["total", "urban", "rural"]: pop_layout = xr.open_dataarray(snakemake.input[f"pop_layout_{item}"]) - pop[item] = I.dot(pop_layout.stack(spatial=("y", "x"))) + pop[item] = indicator_matrix.dot(pop_layout.stack(spatial=("y", "x"))) pop = pd.DataFrame(pop, index=clustered_regions.index) diff --git a/workflow/scripts/build_cop_profiles.py b/workflow/scripts/build_cop_profiles.py index 0ea49b74..5ccc978a 100644 --- a/workflow/scripts/build_cop_profiles.py +++ b/workflow/scripts/build_cop_profiles.py @@ -18,13 +18,13 @@ def coefficient_of_performance( - delta_T: xr.DataArray, + delta_t: xr.DataArray, source: str = "air", ) -> xr.DataArray: if source == "air": - return 6.81 - 0.121 * delta_T + 0.000630 * delta_T**2 + return 6.81 - 0.121 * delta_t + 0.000630 * delta_t**2 elif source == "soil": - return 8.77 - 0.150 * delta_T + 0.000734 * delta_T**2 + return 8.77 - 0.150 * delta_t + 0.000734 * delta_t**2 else: raise NotImplementedError("'source' must be one of ['air', 'soil']") @@ -41,10 +41,10 @@ def coefficient_of_performance( for area in ["total", "urban", "rural"]: for source in ["air", "soil"]: - source_T = xr.open_dataarray(snakemake.input[f"temp_{source}_{area}"]) + source_t = xr.open_dataarray(snakemake.input[f"temp_{source}_{area}"]) - delta_T = snakemake.params.heat_pump_sink_T - source_T + delta_t = snakemake.params.heat_pump_sink_T - source_t - cop = coefficient_of_performance(delta_T, source) + cop = coefficient_of_performance(delta_t, source) cop.to_netcdf(snakemake.output[f"cop_{source}_{area}"]) diff --git a/workflow/scripts/build_cost_data.py b/workflow/scripts/build_cost_data.py index 8b2c7c1c..63c5bccc 100644 --- a/workflow/scripts/build_cost_data.py +++ b/workflow/scripts/build_cost_data.py @@ -1,9 +1,6 @@ -""" -Combines all time independent cost data sources into a standard format. -""" +"""Combines all time independent cost data sources into a standard format.""" import logging -from typing import Any, Optional import constants as const import duckdb @@ -38,7 +35,8 @@ LIFETIME_DATA = [ {"pypsa-name": "coal", "parameter": "lifetime", "value": 70}, {"pypsa-name": "oil", "parameter": "lifetime", "value": 55}, # using gas CT - {"pypsa-name": "geothermal", "parameter": "lifetime", "value": 70}, # Confirm with Jabs / NREL. 30 is way too small + # Confirm with Jabs / NREL. 30 is way too small + {"pypsa-name": "geothermal", "parameter": "lifetime", "value": 70}, {"pypsa-name": "waste", "parameter": "lifetime", "value": 55}, # using gas CT {"pypsa-name": "CCGT", "parameter": "lifetime", "value": 55}, {"pypsa-name": "OCGT", "parameter": "lifetime", "value": 55}, @@ -78,7 +76,7 @@ def create_duckdb_instance(pudl_fn: str): def load_pudl_atb_data(): - query = f""" + query = """ WITH finance_cte AS ( SELECT wacc_real, @@ -105,7 +103,7 @@ def load_pudl_atb_data(): def load_pudl_aeo_data(): - query = f""" + query = """ SELECT * FROM core_eiaaeo__yearly_projected_fuel_cost_in_electric_sector_by_type aeo WHERE aeo.report_year = 2023 @@ -134,11 +132,9 @@ def get_sector_costs( efs_icev_costs: str, eia_tech_costs, year: int, - additional_costs_csv: Optional[str] = None, + additional_costs_csv: str | None = None, ) -> pd.DataFrame: - """ - Gets end-use tech costs for sector coupling studies. - """ + """Gets end-use tech costs for sector coupling studies.""" def correct_units(df: pd.DataFrame) -> pd.DataFrame: # USD/gal -> USD/MWh (water storage) @@ -166,10 +162,7 @@ def get_investment_year_data(df: pd.DataFrame, year: int) -> pd.DataFrame: return df[df.year == year].drop(columns="year") def calculate_capex(df: pd.DataFrame, discount_rate: float) -> pd.DataFrame: - """ - Calcualtes capex based on annuity payments. - """ - + """Calcualtes capex based on annuity payments.""" capex = df.copy().set_index(["technology", "parameter"]) capex = capex.value.unstack().fillna(0) @@ -379,10 +372,9 @@ def calculate_capex(df: pd.DataFrame, discount_rate: float) -> pd.DataFrame: ], ignore_index=True, ) - pudl_atb.drop_duplicates( + pudl_atb = pudl_atb.drop_duplicates( subset=["pypsa-name", "parameter"], keep="last", - inplace=True, ) # Load AEO Fuel Cost Data @@ -400,7 +392,7 @@ def calculate_capex(df: pd.DataFrame, discount_rate: float) -> pd.DataFrame: var_name="parameter", value_name="value", ) - aeo.rename(columns={"fuel_type_eiaaeo": "pypsa-name"}, inplace=True) + aeo = aeo.rename(columns={"fuel_type_eiaaeo": "pypsa-name"}) addnl_fuels = pd.DataFrame( [ @@ -507,9 +499,7 @@ def calculate_capex(df: pd.DataFrame, discount_rate: float) -> pd.DataFrame: pivot_atb.loc[ pivot_atb["pypsa-name"].str.contains("offshore"), "capex_grid_connection_per_kw_km", - ] = ( - pivot_atb["capex_grid_connection_per_kw"] / 30 - ) + ] = pivot_atb["capex_grid_connection_per_kw"] / 30 pivot_atb["annualized_connection_capex_per_mw_km"] = ( calculate_annuity( @@ -532,7 +522,9 @@ def calculate_capex(df: pd.DataFrame, discount_rate: float) -> pd.DataFrame: pudl_atb["value"] = pudl_atb["value"].round(3) egs_costs = pd.read_csv(snakemake.input.egs_costs) - egs_costs = egs_costs.query("investment_horizon == @tech_year").drop(columns="investment_horizon") + egs_costs = egs_costs.query("investment_horizon == @tech_year").drop( + columns="investment_horizon", + ) pudl_atb = pd.concat([pudl_atb, egs_costs], ignore_index=True) pudl_atb.to_csv(snakemake.output.tech_costs, index=False) diff --git a/workflow/scripts/build_cutout.py b/workflow/scripts/build_cutout.py index f6658131..37e3a62f 100644 --- a/workflow/scripts/build_cutout.py +++ b/workflow/scripts/build_cutout.py @@ -90,7 +90,7 @@ import atlite import geopandas as gpd import pandas as pd -from _helpers import configure_logging, get_snapshots +from _helpers import configure_logging from pandas import Timestamp logger = logging.getLogger(__name__) @@ -129,7 +129,7 @@ ) * 2 ) - interconnect_params["bounds"] = regions.total_bounds + [-d, -d, d, d] + interconnect_params["bounds"] = [*regions.total_bounds, -d, -d, d, d] elif {"x", "y"}.issubset(interconnect_params): interconnect_params["x"] = slice(*interconnect_params["x"]) interconnect_params["y"] = slice(*interconnect_params["y"]) diff --git a/workflow/scripts/build_demand.py b/workflow/scripts/build_demand.py index 859802e6..f482ca31 100644 --- a/workflow/scripts/build_demand.py +++ b/workflow/scripts/build_demand.py @@ -1,17 +1,11 @@ -""" -Builds the demand data for the PyPSA network. -""" - -# snakemake is not liking this futures import. Removing type hints in context class -# from __future__ import annotations +"""Builds the demand data for the PyPSA network.""" import calendar import logging -import sqlite3 import sys from abc import ABC, abstractmethod from pathlib import Path -from typing import Any, Optional +from typing import Any, ClassVar import constants as const import duckdb @@ -22,72 +16,62 @@ import xarray as xr from _helpers import configure_logging, get_multiindex_snapshots from constants_sector import FIPS_2_STATE, NAICS, VMT_UNIT_CONVERSION -from eia import EnergyDemand, TransportationDemand +from demand_scalers import ( + AeoElectricityScaler, + AeoEnergyScalerApi, + AeoScaler, + AeoVmtScalerApi, + DemandScaler, + EfsElectricityScalar, +) +from eia import TransportationDemand logger = logging.getLogger(__name__) STATE_2_CODE = const.STATE_2_CODE -CODE_2_STATE = {value: key for key, value in STATE_2_CODE.items()} +CODE_2_STATE = const.CODE_2_STATE STATE_TIMEZONE = const.STATE_2_TIMEZONE TBTU_2_MWH = const.TBTU_2_MWH class Context: - """ - The Context defines the interface of interest to clients. - """ + """The Context defines the interface of interest to clients.""" def __init__(self, read_strategy, write_strategy) -> None: - """ - (read_strategy: ReadStrategy, write_strategy: WriteStrategy) - """ + """(read_strategy: ReadStrategy, write_strategy: WriteStrategy).""" self._read_strategy = read_strategy self._write_strategy = write_strategy @property def read_strategy(self): # returns ReadStrategy: - """ - The Context maintains a reference to the Strategy objects. - """ + """The Context maintains a reference to the Strategy objects.""" return self._read_strategy @read_strategy.setter def strategy(self, strategy) -> None: # arg is ReadStrategy - """ - Usually, the Context allows replacing a Strategy object at runtime. - """ + """Usually, the Context allows replacing a Strategy object at runtime.""" self._read_strategy = strategy @property def write_strategy(self): # returns WriteStrategy: - """ - The Context maintains a reference to the Strategy objects. - """ + """The Context maintains a reference to the Strategy objects.""" return self._write_strategy @write_strategy.setter - def strategy(self, strategy) -> None: # arg is WriteStrategy - """ - Usually, the Context allows replacing a Strategy object at runtime. - """ + def strategy(self, strategy) -> None: # arg is WriteStrategy # noqa: F811 + """Usually, the Context allows replacing a Strategy object at runtime.""" self._write_strategy = strategy def _read(self) -> pd.DataFrame: - """ - Delegate reading to the strategy. - """ + """Delegate reading to the strategy.""" return self._read_strategy.read_demand() def _write(self, demand: pd.DataFrame, zone: str, **kwargs) -> pd.DataFrame: - """ - Delegate writing to the strategy. - """ + """Delegate writing to the strategy.""" return self._write_strategy.dissagregate_demand(demand, zone, **kwargs) def prepare_demand(self, **kwargs) -> pd.DataFrame: - """ - Read in and dissagregate demand. - """ + """Read in and dissagregate demand.""" demand = self._read() return self._write(demand, self._read_strategy.zone, **kwargs) @@ -97,10 +81,7 @@ def prepare_multiple_demands( fuels: str | list[str], **kwargs, ) -> dict[str, pd.DataFrame]: - """ - Returns demand by end-use energy carrier. - """ - + """Returns demand by end-use energy carrier.""" if isinstance(fuels, str): fuels = [fuels] @@ -132,7 +113,6 @@ def prepare_demand_by_subsector( > result["electricity"]["light-duty"] > result["lpg"]["heavy-duty"] """ - if isinstance(fuels, str): fuels = [fuels] @@ -167,25 +147,20 @@ class ReadStrategy(ABC): of some algorithm. """ - def __init__(self, filepath: Optional[str | list[str]] = None) -> None: + def __init__(self, filepath: str | list[str] | None = None) -> None: self.filepath = filepath @property - def units(): + def units(): # noqa: D102 return "MW" @abstractmethod def _read_data(self, **kwargs) -> Any: - """ - Reads raw data into any arbitraty data structure. - """ + """Reads raw data into any arbitraty data structure.""" pass def read_demand(self) -> pd.DataFrame: - """ - Public interface to extract data. - """ - + """Public interface to extract data.""" data = self._read_data() df = self._format_data(data) self._check_index(df) @@ -217,9 +192,7 @@ def _format_data(self, data: Any) -> pd.DataFrame: pass def _check_index(self, df: pd.DataFrame) -> None: - """ - Enforces dimension labels. - """ + """Enforces dimension labels.""" assert all(x in ["snapshot", "sector", "subsector", "fuel"] for x in df.index.names) assert all( @@ -234,9 +207,7 @@ def _check_index(self, df: pd.DataFrame) -> None: @staticmethod def _format_snapshot_index(df: pd.DataFrame) -> pd.DataFrame: - """ - Makes index into datetime. - """ + """Makes index into datetime.""" if df.index.nlevels > 1: if "snapshot" not in df.index.names: logger.warning("Can not format snapshot index level") @@ -254,23 +225,18 @@ def _format_snapshot_index(df: pd.DataFrame) -> pd.DataFrame: class ReadEia(ReadStrategy): - """ - Reads data from GridEmissions. - """ + """Reads data from GridEmissions.""" def __init__(self, filepath: str | None = None) -> None: super().__init__(filepath) self._zone = "ba" @property - def zone(self): + def zone(self): # noqa: D102 return self._zone def _read_data(self) -> pd.DataFrame: - """ - Reads raw data. - """ - + """Reads raw data.""" if not self.filepath: logger.error("Must provide filepath for EIA data") sys.exit() @@ -279,9 +245,7 @@ def _read_data(self) -> pd.DataFrame: return pd.read_csv(self.filepath, engine="pyarrow", index_col="timestamp") def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: - """ - Formats raw data. - """ + """Formats raw data.""" df = data.copy().fillna(0) df = self._correct_balancing_areas(df) df = self._format_snapshot_index(df) @@ -293,9 +257,7 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: @staticmethod def _correct_balancing_areas(df: pd.DataFrame) -> pd.DataFrame: - """ - Combine EIA Demand Data to Match GIS Shapes. - """ + """Combine EIA Demand Data to Match GIS Shapes.""" df["Arizona"] = df.pop("SRP") + df.pop("AZPS") + df.pop("TEPC") df["Carolina"] = df.pop("CPLE") + df.pop("CPLW") + df.pop("DUK") + df.pop("SC") + df.pop("SCEG") + df.pop("YAD") df["Florida"] = ( @@ -315,23 +277,18 @@ def _correct_balancing_areas(df: pd.DataFrame) -> pd.DataFrame: class ReadFERC714(ReadStrategy): - """ - Reads data from PuDLs FERC 714 based State historical Demand. - """ + """Reads data from PuDLs FERC 714 based State historical Demand.""" def __init__(self, filepath: str | None = None) -> None: super().__init__(filepath) self._zone = "state" @property - def zone(self): + def zone(self): # noqa: D102 return self._zone def _read_data(self) -> pd.DataFrame: - """ - Reads raw data. - """ - + """Reads raw data.""" if not self.filepath: logger.error("Must provide filepath for FERC714 data") sys.exit() @@ -340,9 +297,7 @@ def _read_data(self) -> pd.DataFrame: return pd.read_parquet(self.filepath[0], dtype_backend="pyarrow") def _read_census_data(self) -> pd.DataFrame: - """ - Reads in census data for population weighting. - """ + """Reads in census data for population weighting.""" duckdb.connect(database=":memory:", read_only=False) duckdb.query("INSTALL sqlite;") @@ -371,9 +326,7 @@ def _read_census_data(self) -> pd.DataFrame: return states def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: - """ - Formats raw data. - """ + """Formats raw data.""" states = self._read_census_data() df = data.copy() @@ -401,20 +354,17 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: class ReadEfs(ReadStrategy): - """ - Reads in electrifications future study demand. - """ + """Reads in electrifications future study demand.""" def __init__(self, filepath: str | None = None) -> None: super().__init__(filepath) self._zone = "state" @property - def zone(self): + def zone(self): # noqa: D102 return self._zone def _read_data(self) -> pd.DataFrame: - if not self.filepath: logger.error("Must provide filepath for EFS data") sys.exit() @@ -423,10 +373,7 @@ def _read_data(self) -> pd.DataFrame: return pd.read_csv(self.filepath, engine="pyarrow").round(3) def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: - """ - Formats raw data. - """ - + """Formats raw data.""" df = data.copy() df = self._build_snapshots(df) df = self._format_snapshot_index(df).reset_index() @@ -452,24 +399,17 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: return df def _build_snapshots(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Builds snapshots based on UTC time. - """ - + """Builds snapshots based on UTC time.""" df = self._apply_timezones(df) df = self._build_datetime(df) return df.set_index("time").sort_index() @staticmethod def _apply_timezones(df: pd.DataFrame) -> pd.DataFrame: - """ - Changes local time to relative time from UTC. - """ + """Changes local time to relative time from UTC.""" def apply_timezone_shift(timezone: str) -> int: - """ - All shifts realitive to UTC time. - """ + """All shifts realitive to UTC time.""" if timezone == "US/Pacific": return 8 elif timezone == "US/Mountain": @@ -496,9 +436,7 @@ def apply_timezone_shift(timezone: str) -> int: @staticmethod def _build_datetime(df: pd.DataFrame) -> pd.DataFrame: - """ - Builds snapshot from EFS data. - """ + """Builds snapshot from EFS data.""" # minus 1 cause indexing starts at 1 df["hoy"] = pd.to_timedelta(df.UtcHourID - 1, unit="h") # assign everything 2018 (non-leap year) then correct just the year @@ -521,8 +459,8 @@ def get_growth_rate(self): Yearly values are linearlly interpolated between EFS planning years - Returns: - + Returns + ------- | | State 1 | State 2 | ... | State n | |----- |---------|---------|-----|---------| | 2018 | ### | ### | | ### | @@ -534,7 +472,6 @@ def get_growth_rate(self): | 2049 | ### | ### | | ### | | 2050 | ### | ### | | ### | """ - # extract efs provided data efs_years = self._read_data()[["Year", "State", "LoadMW"]] efs_years = efs_years.groupby(["Year", "State"]).sum().reset_index() @@ -556,9 +493,7 @@ def get_growth_rate(self): class ReadEulp(ReadStrategy): - """ - Reads in End Use Load Profile data. - """ + """Reads in End Use Load Profile data.""" def __init__(self, filepath: str | list[str], stock: str) -> None: super().__init__(filepath) @@ -567,11 +502,12 @@ def __init__(self, filepath: str | list[str], stock: str) -> None: self._zone = "state" @property - def zone(self): + def zone(self): # noqa: D102 return self._zone @property def stock(self): + """Data is from ResStock or ComStock.""" if self._stock == "res": return "residential" elif self._stock == "com": @@ -620,11 +556,9 @@ def _extract_state(filepath: str) -> str: @staticmethod def _apply_timeshift(data: dict[str, pd.DataFrame]) -> dict[str, pd.DataFrame]: """Raw EULP given in EST. Shift data by in local state time.""" - data_shifted = {} for state, df in data.items(): - year = df.index[0].year timezone = STATE_TIMEZONE[state] @@ -688,7 +622,7 @@ class ReadCliu(ReadStrategy): # MAIN -> MRO # MAPP -> SPP and some MRO # WSCC -> WECC (but left seperate here) - EPRI_NERC_2_STATE = { + EPRI_NERC_2_STATE: ClassVar[dict[str, list[str]]] = { "ECAR": ["IL", "IN", "KY", "MI", "OH", "WI", "WV"], "ERCOT": ["TX"], "MAAC": ["MD"], @@ -705,12 +639,12 @@ class ReadCliu(ReadStrategy): } # https://www.epri.com/research/products/000000003002018167 - EPRI_SEASON_2_MONTH = { + EPRI_SEASON_2_MONTH: ClassVar[dict[str, list[int]]] = { "Peak": [5, 6, 7, 8, 9], # may -> sept "OffPeak": [1, 2, 3, 4, 10, 11, 12], # oct -> april } - EPRI_ENDUSE = { + EPRI_ENDUSE: ClassVar[dict[str, str]] = { "HVAC": "electricity", "Lighting": "electricity", "MachineDrives": "electricity", @@ -722,9 +656,9 @@ class ReadCliu(ReadStrategy): def __init__( self, filepath: str | list[str], - epri_filepath: Optional[str] = None, - mecs_filepath: Optional[str] = None, - fips_filepath: Optional[str] = None, + epri_filepath: str | None = None, + mecs_filepath: str | None = None, + fips_filepath: str | None = None, ) -> None: super().__init__(filepath) self._epri_filepath = epri_filepath @@ -733,13 +667,11 @@ def __init__( self._zone = "state" @property - def zone(self): + def zone(self): # noqa: D102 return self._zone def _read_data(self) -> Any: - """ - Unzipped 'County_industry_energy_use.gz' csv file. - """ + """Unzipped 'County_industry_energy_use.gz' csv file.""" df = pd.read_csv( self.filepath, dtype={ @@ -777,9 +709,7 @@ def _format_data(self, county_demand: Any, scale_mecs: bool = True) -> pd.DataFr return self._apply_profiles(annual_demand, profiles) def get_demand_profiles(self, add_lpg: bool = True): - """ - Public method to extract EPRI data. - """ + """Public method to extract EPRI data.""" if not self._epri_filepath: logger.warning("No EPRI profiles provided") return @@ -803,34 +733,25 @@ def _apply_profiles( """ def profile_2_xarray(df: pd.DataFrame) -> xr.Dataset: - """ - Converts EPRI profiles to dataset. - """ + """Converts EPRI profiles to dataset.""" assert all(x in ("snapshot", "state") for x in df.index.names) assert all(x in ("electricity", "cool", "heat", "lpg") for x in df.columns) return xr.Dataset.from_dataframe(df) def annual_demand_2_xarray(df: pd.DataFrame) -> xr.Dataset: - """ - Converts CLIU profiles to dataset. - """ + """Converts CLIU profiles to dataset.""" assert all(x in ("state", "sector", "subsector", "end_use", "county") for x in df.index.names) assert all(x in ("electricity", "cool", "heat", "lpg") for x in df.columns) return xr.Dataset.from_dataframe(df) def remove_counties(df: pd.DataFrame) -> pd.DataFrame: - """ - Removes counties to reduce data. - """ + """Removes counties to reduce data.""" indices = df.index.names df.index = df.index.droplevel("county") return df.reset_index().groupby([x for x in indices if x != "county"]).sum() def check_variables(ds: xr.Dataset) -> xr.Dataset: - """ - Confirms all data variables are present. - """ - + """Confirms all data variables are present.""" assert "electricity" in ds.data_vars for fuel in ("heat", "cool", "lpg"): @@ -840,7 +761,7 @@ def check_variables(ds: xr.Dataset) -> xr.Dataset: return ds - annual_demand = remove_counties(annual_demand) # todo: retain county data + annual_demand = remove_counties(annual_demand) # TODO: retain county data annual_demand = annual_demand_2_xarray(annual_demand) profiles = profile_2_xarray(profiles) @@ -850,7 +771,7 @@ def check_variables(ds: xr.Dataset) -> xr.Dataset: demand = profiles * annual_demand dims = [x for x in demand.sizes] - # todo: add county arregation + # TODO: add county arregation if "county" in dims: indices = dims.remove("state") columns = "county" @@ -895,9 +816,7 @@ def _group_by_naics( @staticmethod def _group_by_fuels(data: pd.DataFrame) -> pd.DataFrame: - """ - Groups in electricity, heat, cool, and lpg. - """ + """Groups in electricity, heat, cool, and lpg.""" df = data.copy() df["electricity"] = df["Net_electricity"] + df["Other"].div(3) df["heat"] = df["Coal"] + df["Coke_and_breeze"] + df["Natural_gas"] + df["Other"].div(3) @@ -1017,9 +936,7 @@ def _norm_epri_data(data: pd.DataFrame) -> pd.DataFrame: @staticmethod def _add_lpg_epri(df: pd.DataFrame) -> pd.DataFrame: - """ - Adds an LPG column of data as an average. - """ + """Adds an LPG column of data as an average.""" df["lpg"] = df.mean(axis=1) return df @@ -1030,7 +947,6 @@ def _read_mecs_data(self) -> pd.DataFrame: Adapted from: https://github.com/NREL/Industry-Energy-Tool/blob/master/data_foundation/data_comparison/compare_mecs.py """ - cols_renamed = { "Code(a)": "NAICS", "Electricity(b)": "Net_electricity", @@ -1062,14 +978,10 @@ def _apply_mecs( mecs: pd.DataFrame, fips: pd.DataFrame, ) -> pd.DataFrame: - """ - Scales CLIU data by MECS data. - """ + """Scales CLIU data by MECS data.""" def assign_mecs_regions(cliu: pd.DataFrame, fips: pd.DataFrame) -> pd.DataFrame: - """ - Adds a mecs column to the cliu df with associated fips region. - """ + """Adds a mecs column to the cliu df with associated fips region.""" df = cliu.copy() df["Region"] = df.index.get_level_values("state").map( fips.set_index("state")["mecs"].to_dict(), @@ -1092,9 +1004,7 @@ def get_cliu_totals(cliu: pd.DataFrame, fips: pd.DataFrame) -> pd.DataFrame: return df.reset_index(drop=True).groupby("Region").sum() def get_mecs_totals(mecs: pd.DataFrame) -> pd.DataFrame: - """ - Gets regional energy totals for the year per fuel from MECS. - """ + """Gets regional energy totals for the year per fuel from MECS.""" df = mecs.copy() df = df.reset_index().drop(columns=["NAICS"]) df["Region"] = df.Region.map(lambda x: x.split(" ")[0]) @@ -1102,9 +1012,7 @@ def get_mecs_totals(mecs: pd.DataFrame) -> pd.DataFrame: return df.groupby("Region").sum() def get_scaling_factors(df1: pd.DataFrame, df2: pd.DataFrame) -> pd.DataFrame: - """ - Gets factor to multiply df1 by to become df2. - """ + """Gets factor to multiply df1 by to become df2.""" assert all([x in df2.columns for x in df1.columns]) assert all([x in df2.index for x in df1.index.unique()]) return df2.div(df1) @@ -1126,10 +1034,7 @@ def scale_industrial_demand( return scale_industrial_demand(cliu, scaling_factors) def _read_fips_data(self) -> pd.DataFrame: - """ - Reads FIPS data. - """ - + """Reads FIPS data.""" return ( pd.read_csv(self._fips_filepath) .drop(columns=["FIPS_County", "FIPS State"]) @@ -1168,12 +1073,10 @@ class ReadTransportEfsAeo(ReadStrategy): """ # TODO: extract this out directly from EFS - efs_years = [2018, 2020, 2022, 2024, 2030, 2040, 2050] + efs_years: ClassVar[list[int]] = [2018, 2020, 2022, 2024, 2030, 2040, 2050] def __init__(self, filepath: str, api: str, efs_path: str) -> None: - """ - Filepath is state level breakdown of VMT by vehicle type. - """ + """Filepath is state level breakdown of VMT by vehicle type.""" super().__init__(filepath) self._zone = "state" # self.units = "VMT" @@ -1185,14 +1088,12 @@ def __init__(self, filepath: str, api: str, efs_path: str) -> None: self.efs_profile = self._read_efs_data() @property - def zone(self): + def zone(self): # noqa: D102 return self._zone @staticmethod def _assign_vehicle_type(vehicle: str) -> str: - """ - Coordinates vehicle names. - """ + """Coordinates vehicle names.""" match vehicle: case v if v.startswith(("light_duty", "light-duty vehicles", "Light-Duty")): return "light_duty" @@ -1225,7 +1126,6 @@ def _read_data(self) -> pd.DataFrame: | ... | ... | ... | | other | Texas | 1.5 | """ - df = pd.read_csv(self.filepath, index_col=0, header=0) # check as these are user defined @@ -1251,7 +1151,6 @@ def _read_efs_data(self): the year will equal **ONE THOUSAND** Its scaled from 1 to 1000 just to avoid numerical issues. """ - efs = ReadEfs(self.efs_path).read_demand() transport = efs[efs.index.get_level_values("sector") == "transport"].droplevel( ["sector", "fuel"], @@ -1293,10 +1192,7 @@ def _get_yearly_energy_efs(df: pd.DataFrame) -> pd.DataFrame: return totals.reindex_like(df).ffill() def _read_demand_aeo(self) -> pd.DataFrame: - """ - Gets yearly national level VMT data. - """ - + """Gets yearly national level VMT data.""" demand = [] for vehicle in ("light_duty", "med_duty", "heavy_duty", "bus"): demand.append(TransportationDemand(vehicle, 2050, self.api).get_data()) @@ -1323,11 +1219,10 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: """ Merges national VMT data (self.aeo_demand), proportions of VMT travelled per state (data), and electric charging profiles - (self.efs_profile) + (self.efs_profile). This is one ugly function. holy. """ - aeo = self.aeo_demand.drop(columns="units") aeo = xr.DataArray.from_series(aeo.squeeze()) @@ -1421,13 +1316,13 @@ class ReadTransportAeo(ReadStrategy): """ # scales units so demand magnitudes are consistent - unit_scaler = { + unit_scaler: ClassVar[dict[str, int | float]] = { "air": 1000000, "boat_shipping": 1000000, "rail_shipping": 1000000, "rail_passenger": 1000000, } - unit_scaler_name = { + unit_scaler_name: ClassVar[dict[str, list[str]]] = { "air": ["billion", "thousand"], "boat_shipping": ["billion", "thousand"], "rail_shipping": ["billion", "thousand"], @@ -1453,26 +1348,22 @@ def __init__( self.aeo_demand = self._read_demand_aeo() @property - def zone(self): + def zone(self): # noqa: D102 return self._zone @staticmethod def _assign_vehicle_type(vehicle: str) -> str: - """ - Coordinates vehicle names. - """ - match vehicle: - case v if v.startswith(("Air", "air")): - return "air" - case "Domestic Shipping": - return "boat_shipping" - case "Rail": - return "rail_shipping" - case "Passenger Rail": - return "rail_passenger" - case _: - # logger.warning(f"Can not match {v}") - return v + """Coordinates vehicle names.""" + if vehicle.startswith(("Air", "air")): + return "air" + elif vehicle == "Domestic Shipping": + return "boat_shipping" + elif vehicle == "Rail": + return "rail_shipping" + elif vehicle == "Passenger Rail": + return "rail_passenger" + else: + return vehicle def _read_data(self) -> pd.DataFrame: """ @@ -1489,7 +1380,6 @@ def _read_data(self) -> pd.DataFrame: | ... | ... | ... | | other | Texas | 1.5 | """ - df = pd.read_csv(self.filepath, index_col=0, header=0) # check as these are user defined @@ -1507,10 +1397,7 @@ def _read_data(self) -> pd.DataFrame: return df def _read_demand_aeo(self) -> pd.DataFrame: - """ - Gets yearly national level demand. - """ - + """Gets yearly national level demand.""" demand = [] demand.append(TransportationDemand(self.vehicle, 2050, self.api).get_data()) for year in self.years: @@ -1543,7 +1430,6 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: Merges national VMT data (self.aeo_demand) and proportions of demand travelled per state (data) to ceate uniform demand profiles. """ - demand_by_state = data.copy() # given as a percentage demand_national = self.aeo_demand.drop(columns="units") @@ -1553,7 +1439,7 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: df = pd.DataFrame( index=pd.date_range( f"{year}-01-01", - f"{year+1}-01-01", + f"{year + 1}-01-01", freq="h", inclusive="left", ), @@ -1583,9 +1469,7 @@ def _format_data(self, data: pd.DataFrame) -> pd.DataFrame: class WriteStrategy(ABC): - """ - Disaggregates demand based on a specified method. - """ + """Disaggregates demand based on a specified method.""" def __init__(self, n: pypsa.Network) -> None: self.n = n @@ -1593,7 +1477,7 @@ def __init__(self, n: pypsa.Network) -> None: @abstractmethod def _get_load_allocation_factor( self, - df: Optional[pd.Series] = None, + df: pd.Series | None = None, **kwargs, ) -> pd.Series: """ @@ -1642,7 +1526,6 @@ def dissagregate_demand( | ... | | | | ### | | 2019-12-31 23:00:00 | ### | ### | | ### | """ - # 'state' is states based on power regions # 'full_state' is actual geographic boundaries assert zone in ("ba", "state", "reeds") @@ -1667,9 +1550,7 @@ def dissagregate_demand( return self._disaggregate_demand_to_buses(demand, zone_data) def _get_load_dissagregation_zones(self, zone: str) -> pd.Series: - """ - Map each bus to the load dissagregation zone (states, ba, ...) - """ + """Map each bus to the load dissagregation zone (states, ba, ...).""" if zone == "ba": return self._get_balanceing_area_zones() elif zone == "state": @@ -1681,9 +1562,7 @@ def _get_load_dissagregation_zones(self, zone: str) -> pd.Series: @staticmethod def _check_datastructure(df: pd.DataFrame) -> None: - """ - Confirms formatting of input datastructure. - """ + """Confirms formatting of input datastructure.""" assert all(x in ["snapshot", "sector", "subsector", "fuel"] for x in df.index.names) assert not df.empty @@ -1692,9 +1571,7 @@ def _filter_on_snapshots( df: pd.DataFrame, sns: pd.DatetimeIndex, ) -> pd.DataFrame: - """ - Filters demand on network snapshots. - """ + """Filters demand on network snapshots.""" filtered = df[df.index.get_level_values("snapshot").isin(sns)].copy() filtered = filtered[~filtered.index.duplicated(keep="last")] # issue-272 return filtered @@ -1722,10 +1599,7 @@ def _filter_demand( fuels: str | list[str] | None = None, sns: pd.DatetimeIndex | None = None, ) -> pd.DataFrame: - """ - Filters on snapshots, sector, and fuel. - """ - + """Filters on snapshots, sector, and fuel.""" if isinstance(sns, pd.DatetimeIndex): filtered = self._filter_on_snapshots(df, sns) df = filtered.reset_index() @@ -1752,10 +1626,7 @@ def _disaggregate_demand_to_buses( demand: pd.DataFrame, laf: pd.DataFrame, ) -> pd.DataFrame: - """ - Zone power demand is disaggregated to buses proportional to laf. - """ - + """Zone power demand is disaggregated to buses proportional to laf.""" all_load = [] for load_zone in laf.zone.unique(): @@ -1802,17 +1673,13 @@ def _get_reeds_zones(self) -> pd.Series: return n.buses.reeds_zone def _make_empty_demand(self, columns: list[str]) -> pd.DataFrame: - """ - Make a demand dataframe with zeros. - """ + """Make a demand dataframe with zeros.""" n = self.n return pd.DataFrame(columns=columns, index=n.snapshots.get_level_values(1)).infer_objects().fillna(0) class WritePopulation(WriteStrategy): - """ - Based on Population Density from Breakthrough Energy. - """ + """Based on Population Density from Breakthrough Energy.""" def __init__(self, n: pypsa.Network) -> None: super().__init__(n) @@ -1823,9 +1690,7 @@ def _get_load_allocation_factor( zone: str, **kwargs, ) -> pd.Series: - """ - Pulls weighting from 'build_base_network'. - """ + """Pulls weighting from 'build_base_network'.""" logger.info("Setting load allocation factors based on BE population density") n = self.n if zone == "state": @@ -1894,9 +1759,7 @@ def _dissagregate_on_reeds(self) -> pd.Series: @staticmethod def _read_data(filepath: str) -> pd.DataFrame: - """ - Unzipped 'County_industry_energy_use.gz' csv file. - """ + """Unzipped 'County_industry_energy_use.gz' csv file.""" df = pd.read_csv( filepath, dtype={ @@ -1962,10 +1825,7 @@ def get_laf_per_bus( county: str | int, buses: list[str], ) -> pd.Series: - """ - Evenly distributes laf to buses within a county. - """ - + """Evenly distributes laf to buses within a county.""" county_laf = df.at[county, "laf"] num_buses = len(buses) bus_laf = county_laf / num_buses @@ -1974,7 +1834,7 @@ def get_laf_per_bus( ### -# Formatters and Scalers +# Formatters ### @@ -1994,9 +1854,9 @@ class DemandFormatter: def __init__( self, n: pypsa.Network, - scaling_method: Optional[str] = None, - filepath: Optional[str] = None, - api: Optional[str] = None, + scaling_method: str | None = None, + filepath: str | None = None, + api: str | None = None, ): self.n = n self.sns = n.snapshots @@ -2011,10 +1871,7 @@ def __init__( self.scaler = None def format_demand(self, df: pd.DataFrame, sector: str, **kwargs) -> pd.DataFrame: - """ - Public method to format demand ready to be ingested into the model. - """ - + """Public method to format demand ready to be ingested into the model.""" if self.need_scaling(df): assert isinstance(self.scaler, DemandScaler) @@ -2046,335 +1903,30 @@ def format_demand(self, df: pd.DataFrame, sector: str, **kwargs) -> pd.DataFrame return demand def need_scaling(self, df: pd.DataFrame) -> bool: - """ - Checks if any demand needs to be scaled. - """ + """Checks if any demand needs to be scaled.""" if len(df.index) != len(self.sns): return True return False def assign_scaler(self): # type DemandScaler + """Assign logic to scale demand with.""" if self.scaling_method == "aeo_energy": - assert self.api, "Must provide eia api key" - return AeoEnergyScaler(self.api) + assert self.filepath.endswith(".csv"), "Must provide formatted AEO.csv data" + return AeoScaler(self.filepath) elif self.scaling_method == "aeo_electricity": assert self.filepath.endswith(".sqlite"), "Must provide pudl.sqlite file" return AeoElectricityScaler(self.filepath) elif self.scaling_method == "efs": assert self.filepath.endswith(".csv"), "Must provide EFS.csv data" return EfsElectricityScalar(self.filepath) - elif self.scaling_method == "aeo_vmt": + elif self.scaling_method == "aeo_energy_api": assert self.api, "Must provide eia api key" - return AeoVmtScaler(self.api) - else: - raise NotImplementedError - - -class DemandScaler(ABC): - - def __init__(self): - self.projection = self.get_projections() - - @abstractmethod - def get_projections(self) -> pd.DataFrame: - pass - - def get_growth(self, start_year: int, end_year: int, sector: str) -> float: - """ - Returns decimal change between two years. - """ - - min_year = self.projection.index.min() - max_year = self.projection.index.max() - - if start_year < min_year: - logger.warning(f"Setting base demand scaling year to {min_year}") - start_year = min_year - if end_year > max_year: - logger.warning(f"Setting final demand scaling year to {max_year}") - end_year = max_year - - start = self.projection.at[start_year, sector] - end = self.projection.at[end_year, sector] - - return end / start - - def scale( - self, - df: pd.DataFrame, - start_year: int, - end_year: int, - sector: str, - ) -> pd.DataFrame: - """ - Scales data. - """ - growth = self.get_growth(start_year, end_year, sector) - new = df.mul(growth) - return self.reindex(new, end_year) - - @staticmethod - def reindex(df: pd.DataFrame, year: int) -> pd.DataFrame: - """ - Reindex a dataframe for a different planning horizon. - - Input dataframe will be... - - | | BusName_1 | BusName_2 | ... | BusName_n | - |---------------------|-----------|-----------|-----|-----------| - | 2019-01-01 00:00:00 | aaa | ddd | | ggg | - | 2019-01-01 01:00:00 | bbb | eee | | hhh | - | ... | ... | ... | | ... | - | 2019-02-28 23:00:00 | ccc | fff | | iii | - - Output dataframe will be... - - | | BusName_1 | BusName_2 | ... | BusName_n | - |---------------------|-----------|-----------|-----|-----------| - | 2030-01-01 00:00:00 | aaa | ddd | | ggg | - | 2030-01-01 01:00:00 | bbb | eee | | hhh | - | ... | ... | ... | | ... | - | 2030-02-28 23:00:00 | ccc | fff | | iii | - """ - - new = df.copy() - new.index = new.index.map(lambda x: x.replace(year=year)) - return new - - -class AeoElectricityScaler(DemandScaler): - - def __init__(self, pudl: str, scenario: str = "reference"): - self.pudl = pudl - self.scenario = scenario - self.region = "united_states" - super().__init__() - - def get_projections(self) -> pd.DataFrame: - """ - Get sector yearly END-USE ELECTRICITY growth rates from AEO. - - | | power | units | - |----- |-------|-------| - | 2021 | ### | ### | - | 2022 | ### | ### | - | 2023 | ### | ### | - | ... | | | - | 2049 | ### | ### | - | 2050 | ### | ### | - """ - - con = sqlite3.connect(self.pudl) - df = pd.read_sql_query( - f""" - SELECT - projection_year, - technology_description_eiaaeo, - gross_generation_mwh - FROM - core_eiaaeo__yearly_projected_generation_in_electric_sector_by_technology - WHERE - electricity_market_module_region_eiaaeo = "{self.region}" AND - model_case_eiaaeo = "{self.scenario}" - """, - con, - ) - - df = ( - df.drop(columns=["technology_description_eiaaeo"]) - .rename( - columns={"projection_year": "year", "gross_generation_mwh": "power"}, - ) - .groupby("year") - .sum() - ) - df["units"] = "mwh" - return df - - -class AeoEnergyScaler(DemandScaler): - - def __init__(self, api: str, scenario: str = "reference"): - self.api = api - self.scenario = scenario - self.region = "united_states" - super().__init__() - - def get_sector_data(self, years: list[int], sector: str) -> pd.DataFrame: - """ - Function to piece togehter historical and projected values. - """ - start_year = min(years) - end_year = max(years) - - data = [] - - if start_year < 2024: - data.append( - EnergyDemand(sector=sector, year=start_year, api=self.api).get_data(), - ) - if end_year >= 2024: - data.append( - EnergyDemand(sector=sector, year=end_year, api=self.api).get_data(), - ) - return pd.concat(data) - - def get_projections(self) -> pd.DataFrame: - """ - Get sector yearly END-USE ENERGY growth rates from AEO at a NATIONAL - level. - - | | residential | commercial | industrial | transport | units | - |----- |-------------|-------------|-------------|------------|-------| - | 2018 | ### | ### | ### | ### | ### | - | 2019 | ### | ### | ### | ### | ### | - | 2020 | ### | ### | ### | ### | ### | - | ... | | | | | | - | 2049 | ### | ### | ### | ### | ### | - | 2050 | ### | ### | ### | ### | ### | - """ - - years = range(2017, 2051) - - # sectors = ("residential", "commercial", "industry", "transport") - sectors = ("residential", "commercial", "industry") - - df = pd.DataFrame( - index=years, - ) - - for sector in sectors: - sector_data = self.get_sector_data(years, sector).sort_index() - df[sector] = sector_data.value - - df["units"] = "quads" - return df - - -class AeoVmtScaler(DemandScaler): - - def __init__(self, api: str, scenario: str = "reference"): - self.api = api - self.scenario = scenario - self.region = "united_states" - super().__init__() - - def get_historical_value(self, year: int, sector: str) -> float: - """ - Returns single year value at a time. - """ - return TransportationDemand(vehicle=sector, year=year, api=self.api).get_data(pivot=True).values[0][0] - - def get_future_values( - self, - year: int, - sector: str, - ) -> pd.DataFrame: - """ - Returns all values from 2024 onwards. - """ - return TransportationDemand( - vehicle=sector, - year=year, - api=self.api, - scenario=self.scenario, - ).get_data() - - def get_projections(self) -> pd.DataFrame: - """ - Get sector yearly END-USE ENERGY growth rates from AEO at a NATIONAL - level. - - | | light_duty | med_duty | heavy_duty | bus | units | - |----- |------------|-----------|-------------|------|-------| - | 2018 | ### | ### | ### | ### | ### | - | 2019 | ### | ### | ### | ### | ### | - | 2020 | ### | ### | ### | ### | ### | - | ... | | | | | | - | 2049 | ### | ### | ### | ### | ### | - | 2050 | ### | ### | ### | ### | ### | - """ - - years = range(2017, 2051) - - vehicles = ("light_duty", "med_duty", "heavy_duty", "bus") - - df = pd.DataFrame( - columns=["light_duty", "med_duty", "heavy_duty", "bus"], - index=years, - ) - - for year in sorted(years): - if year < 2024: - for vehicle in vehicles: - df.at[year, vehicle] = self.get_historical_value( - year, - vehicle, - ) - - for vehicle in vehicles: - aeo = self.get_future_values(max(years), vehicle) - for year in years: - if year < 2024: - continue - df.at[year, vehicle] = aeo.at[year, "value"] - - df["units"] = "thousand VMT" - return df - - -class EfsElectricityScalar(DemandScaler): - - def __init__(self, filepath: str): - self.efs = filepath - self.region = "united_states" - super().__init__() - - def read(self) -> pd.DataFrame: - df = pd.read_csv(self.efs, engine="pyarrow") - return ( - df.drop( - columns=[ - "Electrification", - "TechnologyAdvancement", - "LocalHourID", - "Sector", - "Subsector", - ], - ) - .groupby(["Year", "State"]) - .sum() - ) - - def interpolate(self, df: pd.DataFrame) -> pd.DataFrame: - efs_years = df.index - new_years = range(min(efs_years), max(efs_years) + 1) - df = df.reindex(new_years) - return df.interpolate() - - def get_projections(self) -> pd.DataFrame: - """ - Get sector yearly END-USE ELECTRICITY growth rates from EFS. Linear - interpolates missing values. - - | | power | units | - |----- |-------|-------| - | 2018 | ### | ### | - | 2019 | ### | ### | - | 2020 | ### | ### | - | ... | | | - | 2049 | ### | ### | - | 2050 | ### | ### | - """ - df = self.read().reset_index() - if self.region == "united_states": - df = df.drop(columns="State").groupby("Year").sum() + return AeoEnergyScalerApi(self.api) + elif self.scaling_method == "aeo_vmt_api": + assert self.api, "Must provide eia api key" + return AeoVmtScalerApi(self.api) else: raise NotImplementedError - df = self.interpolate(df) - df = df.rename(columns={"LoadMW": "power"}) - df["units"] = "MWh" - return df ### @@ -2384,49 +1936,48 @@ def get_projections(self) -> pd.DataFrame: def get_demand_params( end_use: str, - demand_params: Optional[dict[str, str]] = None, + demand_params: dict[str, str] | None = None, **kwargs, ) -> tuple: - """ - Gets hard coded demand options. - """ - - match end_use: - case "power": # electricity only study - demand_profile = demand_params["profile"] + """Gets hard coded demand options.""" + if end_use == "power": # electricity only study + demand_profile = demand_params["profile"] + demand_disaggregation = "pop" + if demand_profile == "efs": + scaling_method = "efs" + elif demand_profile == "eia": + scaling_method = "aeo_electricity" + elif demand_profile == "ferc": + scaling_method = "aeo_electricity" + else: + logger.warning( + f"No scaling method available for {demand_profile} profile. Setting to 'aeo_electricity'", + ) + elif end_use in ("residential", "commercial"): + cache_eia = kwargs.get("cache_eia", False) + demand_profile = "eulp" + demand_disaggregation = "pop" + scaling_method = "aeo_energy" if cache_eia else "aeo_energy_api" + elif end_use == "industry": + cache_eia = kwargs.get("cache_eia", False) + demand_profile = "cliu" + demand_disaggregation = "cliu" + scaling_method = "aeo_energy" if cache_eia else "aeo_energy_api" + elif end_use == "transport": + cache_eia = kwargs.get("cache_eia", False) + vehicle = kwargs.get("vehicle", None) + if not vehicle: # road transport + demand_profile = "transport_efs_aeo" demand_disaggregation = "pop" - if demand_profile == "efs": - scaling_method = "efs" - elif demand_profile == "eia": - scaling_method = "aeo_electricity" - elif demand_profile == "ferc": - scaling_method = "aeo_electricity" - else: - logger.warning( - f"No scaling method available for {demand_profile} profile. Setting to 'aeo_electricity'", - ) - case "residential" | "commercial": - demand_profile = "eulp" + scaling_method = "aeo_energy" if cache_eia else "aeo_vmt_api" + elif vehicle.startswith(("air", "rail", "boat")): + demand_profile = "transport_aeo" demand_disaggregation = "pop" - scaling_method = "aeo_energy" - case "industry": - demand_profile = "cliu" - demand_disaggregation = "cliu" - scaling_method = "aeo_energy" - case "transport": - vehicle = kwargs.get("vehicle", None) - if not vehicle: # road transport - demand_profile = "transport_efs_aeo" - demand_disaggregation = "pop" - scaling_method = "aeo_vmt" - elif vehicle.startswith(("air", "rail", "boat")): - demand_profile = "transport_aeo" - demand_disaggregation = "pop" - scaling_method = None # will extract data for any year - else: - raise NotImplementedError - case _: + scaling_method = "aeo_energy" if cache_eia else "aeo_vmt_api" + else: raise NotImplementedError + else: + raise ValueError(end_use) return demand_profile, demand_disaggregation, scaling_method @@ -2489,6 +2040,11 @@ def _get_closest_efs_year(efs_years, investment_period): end_use = snakemake.wildcards.end_use eia_api = snakemake.params.eia_api + try: + cache_eia = snakemake.params.cache_eia + except KeyError: + cache_eia = None + vehicle = snakemake.wildcards.get("vehicle", None) planning_horizons = n.investment_periods.to_list() @@ -2498,6 +2054,7 @@ def _get_closest_efs_year(efs_years, investment_period): end_use, demand_params, vehicle=vehicle, + cache_eia=cache_eia, ) # set reading and writitng strategies diff --git a/workflow/scripts/build_electricity_sector.py b/workflow/scripts/build_electricity_sector.py index edbc0b93..11115b8d 100644 --- a/workflow/scripts/build_electricity_sector.py +++ b/workflow/scripts/build_electricity_sector.py @@ -1,7 +1,7 @@ -"""Functions for building electricity infrastructure in sector studies""" +"""Functions for building electricity infrastructure in sector studies.""" import logging -from typing import Any, Optional +from typing import Any import numpy as np import pandas as pd @@ -14,13 +14,11 @@ def build_electricty( n: pypsa.Network, sector: str, - pop_layout_path: Optional[pd.DataFrame] = None, - options: Optional[dict[str, Any]] = None, + pop_layout_path: pd.DataFrame | None = None, + options: dict[str, Any] | None = None, ) -> None: - """Adds electricity sector infrastructre data""" - + """Adds electricity sector infrastructre data.""" if sector in ("res", "com", "srv"): - split_urban_rural = options.get("split_urban_rural", False) if split_urban_rural: @@ -44,14 +42,17 @@ def build_electricty( add_electricity_dr(n, sector, dr_config) -def add_electricity_infrastructure(n: pypsa.Network, sector: str, suffix: Optional[str] = None): +def add_electricity_infrastructure( + n: pypsa.Network, + sector: str, + suffix: str | None = None, +): """ Adds links to connect electricity nodes. For example, will build the link between "p480 0" and "p480 0 ind- elec" """ - elec = SecCarriers.ELECTRICITY.value if suffix: @@ -86,28 +87,25 @@ def add_electricity_dr( sector: str, dr_config: dict[str, Any], ) -> None: - """ - Adds stores to the network to use for demand response. - """ + """Adds stores to the network to use for demand response.""" + by_carrier = dr_config.get("by_carrier", False) - shift = dr_config.get("shift", 0) - marginal_cost_storage = dr_config.get("marginal_cost", 0) - - if isinstance(marginal_cost_storage, dict): - try: - mc = marginal_cost_storage["electricity"] - except KeyError: - mc = 0 - else: - mc = marginal_cost_storage + # check if dr is applied at a per-carrier level - if mc == 0: - logger.warning(f"No cost applied to demand response for {sector}") + if by_carrier: + dr_config = dr_config.get("elec", {}) + shift = dr_config.get("shift", 0) if shift == 0: logger.info(f"DR not applied to {sector} as allowable sift is {shift}") return + # assign marginal cost value + + marginal_cost_storage = dr_config.get("marginal_cost", 0) + if marginal_cost_storage == 0: + logger.warning(f"No cost applied to demand response for {sector}") + elec = SecCarriers.ELECTRICITY.value df = n.loads[n.loads.index.str.endswith(f"-{elec}") & n.loads.index.str.contains(f"{sector}-")].copy() @@ -204,7 +202,7 @@ def add_electricity_dr( e_min_pu=0, e_max_pu=1, carrier=df.carrier, - marginal_cost_storage=mc, + marginal_cost_storage=marginal_cost_storage, ) n.madd( @@ -218,7 +216,7 @@ def add_electricity_dr( e_min_pu=-1, e_max_pu=0, carrier=df.carrier, - marginal_cost_storage=mc * (-1), + marginal_cost_storage=marginal_cost_storage * (-1), ) @@ -236,7 +234,6 @@ def _split_urban_rural_load( "p600 0 com-urban-elec" and "p600 0 com-rural-elec" at the same location as "p600 0"). """ - assert sector in ("com", "res") fuel = SecCarriers.ELECTRICITY.value @@ -244,7 +241,6 @@ def _split_urban_rural_load( load_names = n.loads[n.loads.carrier == f"{sector}-{fuel}"].index.to_list() for system in ("urban", "rural"): - # add buses to connect the new loads to new_buses = pd.DataFrame(index=load_names) new_buses.index = new_buses.index.map(n.loads.bus) @@ -299,10 +295,7 @@ def _format_total_load( n: pypsa.Network, sector: str, ) -> None: - """ - Formats load with 'total' prefix to match urban/rural split. - """ - + """Formats load with 'total' prefix to match urban/rural split.""" assert sector in ("com", "res", "srv") fuel = SecCarriers.ELECTRICITY.value diff --git a/workflow/scripts/build_emission_tracking.py b/workflow/scripts/build_emission_tracking.py index f0a7ef69..d13ce1f7 100644 --- a/workflow/scripts/build_emission_tracking.py +++ b/workflow/scripts/build_emission_tracking.py @@ -1,10 +1,8 @@ -""" -Module for building state and sector level co2 tracking. -""" +"""Module for building state and sector level co2 tracking.""" import itertools import logging -from typing import Any, Optional +from typing import Any import numpy as np import pandas as pd @@ -15,12 +13,9 @@ def build_co2_tracking( n: pypsa.Network, - config: Optional[dict[str, Any]] = None, + config: dict[str, Any] | None = None, ) -> None: - """ - Main funtion to interface with. - """ - + """Main funtion to interface with.""" states = n.buses.STATE.unique() sectors = ["pwr", "trn", "res", "com", "ind"] @@ -39,14 +34,13 @@ def build_ch4_tracking( n: pypsa.Network, gwp: float, leakage_rate: float, - config: Optional[dict[str, Any]] = None, + config: dict[str, Any] | None = None, ) -> None: """ Builds CH4 tracking. Natural gas network must already be constructed """ - states = [x for x in n.buses.STATE.dropna().unique() if x != np.nan] if not config: @@ -74,10 +68,7 @@ def _add_co2_carrier(n, config: dict[Any]): def _build_co2_bus(n: pypsa.Network, states: list[str], sectors: list[str]): - """ - Builds state level co2 bus per sector. - """ - + """Builds state level co2 bus per sector.""" df = pd.DataFrame(itertools.product(states, sectors), columns=["state", "sector"]) df.index = df.state + " " + df.sector @@ -85,10 +76,7 @@ def _build_co2_bus(n: pypsa.Network, states: list[str], sectors: list[str]): def _build_co2_store(n: pypsa.Network, states: list[str], sectors: list[str]): - """ - Builds state level co2 stores per sector. - """ - + """Builds state level co2 stores per sector.""" df = pd.DataFrame(itertools.product(states, sectors), columns=["state", "sector"]) df.index = df.state + " " + df.sector @@ -124,10 +112,7 @@ def _add_ch4_carrier(n, config: dict[Any]): def _build_ch4_bus(n: pypsa.Network, states: list[str]): - """ - Builds state level co2 bus per sector. - """ - + """Builds state level co2 bus per sector.""" df = pd.DataFrame(states, columns=["state"]) df.index = df.state @@ -135,10 +120,7 @@ def _build_ch4_bus(n: pypsa.Network, states: list[str]): def _build_ch4_store(n: pypsa.Network, states: list[str]): - """ - Builds state level co2 stores per sector. - """ - + """Builds state level co2 stores per sector.""" df = pd.DataFrame(states, columns=["state"]) df.index = df.state @@ -161,10 +143,7 @@ def _build_ch4_store(n: pypsa.Network, states: list[str]): def _build_ch4_links(n, states: list[str], gwp: float, leakage_rate: float): - """ - Modifies existing gas production links. - """ - + """Modifies existing gas production links.""" # first extract out exising gas production links gas_production = [f"{x} gas production" for x in states] diff --git a/workflow/scripts/build_fuel_prices.py b/workflow/scripts/build_fuel_prices.py index fceb22c8..6f42bfbf 100644 --- a/workflow/scripts/build_fuel_prices.py +++ b/workflow/scripts/build_fuel_prices.py @@ -1,6 +1,6 @@ # By PyPSA-USA Authors """ -**Description** +**Description**. Build_fuel_prices.py is a script that prepares data for dynamic fuel prices to be used in the `add_electricity` module. Data is input from `retrieve_caiso_data` and `retrieve_eia_data` to create a combined dataframe with all dynamic fuel prices available. The prices are modified to be on an hourly basis to match the network snapshots, and converted to $/MWh_thermal. The output is a CSV file containing the hourly fuel prices for each Balancing Authority and State. @@ -22,14 +22,10 @@ """ import logging -import sys from pathlib import Path -from typing import List import constants as const -import duckdb import eia -import numpy as np import pandas as pd from _helpers import configure_logging, get_snapshots, mock_snakemake from build_powerplants import ( @@ -47,10 +43,7 @@ def make_hourly(df: pd.DataFrame) -> pd.DataFrame: - """ - Makes the index hourly. - """ - + """Makes the index hourly.""" start = df.index.min() end = ( pd.to_datetime(start).to_period("Y").to_timestamp("Y").to_period("Y").to_timestamp("Y") @@ -117,7 +110,6 @@ def get_caiso_ng_power_prices( filepath: str, **kwargs, ) -> pd.DataFrame: - # pypsa-usa name: caiso name ba_mapper = { "CISO-PGAE": "CISO", @@ -150,9 +142,7 @@ def get_caiso_ng_power_prices( # Build PuDL EIA 923 Fuel Recipts based fuel costs ### def build_pudl_fuel_costs(snapshots: pd.DatetimeIndex, start_date: str, end_date: str): - """ - Build fuel costs based on PUDL EIA 923 Fuel Receipts data. - """ + """Build fuel costs based on PUDL EIA 923 Fuel Receipts data.""" _, fuel_cost_temporal = load_pudl_data(snakemake.input.pudl, start_date, end_date) fuel_cost_temporal["interconnect"] = fuel_cost_temporal["nerc_region"].map( const.NERC_REGION_MAPPER, @@ -190,8 +180,6 @@ def build_pudl_fuel_costs(snapshots: pd.DatetimeIndex, start_date: str, end_date if __name__ == "__main__": if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake("build_fuel_prices", interconnect="texas") configure_logging(snakemake) diff --git a/workflow/scripts/build_heat.py b/workflow/scripts/build_heat.py index d0c35789..617c7ab0 100644 --- a/workflow/scripts/build_heat.py +++ b/workflow/scripts/build_heat.py @@ -1,16 +1,14 @@ -""" -Module for building heating and cooling infrastructure. -""" +"""Module for building heating and cooling infrastructure.""" import logging -from typing import Any, Optional +from typing import Any import numpy as np import pandas as pd import pypsa import xarray as xr from constants import NG_MWH_2_MMCF, STATE_2_CODE, COAL_dol_ton_2_MWHthermal -from constants_sector import SecCarriers, SecNames +from constants_sector import SecNames from eia import FuelCosts logger = logging.getLogger(__name__) @@ -25,15 +23,12 @@ def build_heat( pop_layout_path: str, cop_ashp_path: str, cop_gshp_path: str, - eia: Optional[str] = None, # for dynamic pricing - year: Optional[int] = None, # for dynamic pricing - options: Optional[dict[str, str | bool | int | float]] = None, + eia: str | None = None, # for dynamic pricing + year: int | None = None, # for dynamic pricing + options: dict[str, str | bool | int | float] | None = None, **kwargs, ) -> None: - """ - Main funtion to interface with. - """ - + """Main funtion to interface with.""" sns = n.snapshots pop_layout = pd.read_csv(pop_layout_path).set_index("name") @@ -54,7 +49,6 @@ def build_heat( dr_config = options.get("demand_response", {}) if sector in ("res", "com", "srv"): - split_urban_rural = options.get("split_urban_rural", False) technologies = options.get("technologies") water_heating_config = options.get("water_heating", {}) @@ -107,7 +101,6 @@ def build_heat( assert not n.links_t.p_set.isna().any().any() elif sector == SecNames.INDUSTRY.value: - if dynamic_costs: gas_costs = _get_dynamic_marginal_costs( n, @@ -138,11 +131,11 @@ def combined_heat(n: pypsa.Network, sector: str) -> bool: """ Searches loads for combined or split heat loads. - Returns: + Returns + ------- True - If only '-heat' is used in load indexing False - If '-water-heat' and '-space-heat' is used in load indexing """ - assert sector in ("res", "com") loads = n.loads.index.to_list() @@ -165,7 +158,6 @@ def reindex_cop(sns: pd.MultiIndex, da: xr.DataArray) -> pd.DataFrame: This will allign snapshots to match the planning horizon. This will also calcualte the mean COP for each period if tsa has occured """ - cop = da.to_pandas() investment_years = sns.get_level_values(0).unique() @@ -198,13 +190,10 @@ def _get_dynamic_marginal_costs( fuel: str, eia: str, year: int, - sector: Optional[str] = None, + sector: str | None = None, **kwargs, ) -> pd.DataFrame: - """ - Gets end-use fuel costs at a state level. - """ - + """Gets end-use fuel costs at a state level.""" sector_mapper = { "res": "residential", "com": "commercial", @@ -237,7 +226,12 @@ def _get_dynamic_marginal_costs( ).get_data( pivot=True, ) - proj = FuelCosts(fuel, year, eia, industry=sector_mapper[sector]).get_data( + proj = FuelCosts( + fuel, + year, + eia, + industry=sector_mapper[sector], + ).get_data( pivot=True, ) @@ -304,9 +298,7 @@ def get_link_marginal_costs( links: pd.DataFrame, dynamic_costs: pd.DataFrame, ) -> pd.DataFrame: - """ - Gets dynamic marginal costs dataframe to add to the system. - """ + """Gets dynamic marginal costs dataframe to add to the system.""" assert len(dynamic_costs) == len(n.snapshots.get_level_values(1)) if "USA" not in dynamic_costs.columns: @@ -338,12 +330,11 @@ def add_industrial_heat( n: pypsa.Network, sector: str, costs: pd.DataFrame, - marginal_gas: Optional[pd.DataFrame | float] = None, - marginal_coal: Optional[pd.DataFrame | float] = None, - dr_config: Optional[dict[str, Any]] = None, + marginal_gas: pd.DataFrame | float | None = None, + marginal_coal: pd.DataFrame | float | None = None, + dr_config: dict[str, Any] | None = None, **kwargs, ) -> None: - assert sector == SecNames.INDUSTRY.value add_industrial_gas_furnace(n, costs, marginal_gas) @@ -360,18 +351,15 @@ def add_service_heat( pop_layout: pd.DataFrame, costs: pd.DataFrame, split_urban_rural: bool, - technologies: Optional[dict[str, str | bool | float]] = None, - ashp_cop: Optional[pd.DataFrame] = None, - gshp_cop: Optional[pd.DataFrame] = None, - marginal_gas: Optional[pd.DataFrame | float] = None, - marginal_oil: Optional[pd.DataFrame | float] = None, - water_heating_config: Optional[dict[str, Any]] = None, - dr_config: Optional[dict[str, Any]] = None, + technologies: dict[str, str | bool | float] | None = None, + ashp_cop: pd.DataFrame | None = None, + gshp_cop: pd.DataFrame | None = None, + marginal_gas: pd.DataFrame | float | None = None, + marginal_oil: pd.DataFrame | float | None = None, + water_heating_config: dict[str, Any] | None = None, + dr_config: dict[str, Any] | None = None, ): - """ - Adds heating links for residential and commercial sectors. - """ - + """Adds heating links for residential and commercial sectors.""" assert sector in ("res", "com", "srv") if not technologies: @@ -409,9 +397,7 @@ def add_service_heat( # add heat pumps for heat_system in heat_systems: - if (heat_system in ["urban", "total"]) and include_hps: - heat_pump_type = "air" cop = ashp_cop @@ -427,7 +413,6 @@ def add_service_heat( ) if (heat_system in ["rural", "total"]) and include_hps: - heat_pump_type = "ground" cop = gshp_cop @@ -479,7 +464,6 @@ def add_service_heat( # check if water heat is needed if split_space_water: - simple_storage = water_heating_config.get("simple_storage", False) n_hours = water_heating_config.get("n_hours", None) @@ -529,12 +513,11 @@ def add_service_cooling( sector: str, pop_layout: pd.DataFrame, costs: pd.DataFrame, - split_urban_rural: Optional[bool] = True, - technologies: Optional[dict[str, bool]] = None, - dr_config: Optional[dict[str, Any]] = None, + split_urban_rural: bool | None = True, + technologies: dict[str, bool] | None = None, + dr_config: dict[str, Any] | None = None, **kwargs, ): - assert sector in ("res", "com", "srv") if not technologies: @@ -570,10 +553,7 @@ def add_air_cons( heat_system: str, costs: pd.DataFrame, ) -> None: - """ - Adds gas furnaces to the system. - """ - + """Adds gas furnaces to the system.""" assert heat_system in ("urban", "rural", "total") match sector: @@ -629,7 +609,6 @@ def add_service_heat_pumps_cooling( heat_system: str ("rural" or "urban") """ - assert sector in ("com", "res") assert heat_system in ("urban", "rural", "total") assert heat_carrier in ["cool"] @@ -646,7 +625,9 @@ def add_service_heat_pumps_cooling( cool_links = cool_links.rename(index=index_mapper) cool_links_cop = cool_links_cop.rename(columns=index_mapper) - cool_links["bus1"] = cool_links["bus0"].map(lambda x: x.split(f" {sector}")[0]) # node code + cool_links["bus1"] = cool_links["bus0"].map( + lambda x: x.split(f" {sector}")[0], + ) # node code cool_links["bus1"] = cool_links["bus1"] + f" {sector}-{heat_system}-{heat_carrier}" # carrier_name = f"{sector}-{heat_system}-{heat_carrier}" @@ -689,14 +670,12 @@ def _split_urban_rural_load( than pypsa-eur implementation, as we add all load before clustering; we are not adding load here, rather just splitting it up """ - assert sector in ("com", "res") assert fuel in ("heat", "cool", "space-heat", "water-heat") load_names = n.loads[n.loads.carrier == f"{sector}-{fuel}"].index.to_list() for system in ("urban", "rural"): - # add buses to connect the new loads to new_buses = pd.DataFrame(index=load_names) new_buses.index = new_buses.index.map(n.loads.bus) @@ -749,10 +728,7 @@ def _format_total_load( sector: str, fuel: str, ) -> None: - """ - Formats load with 'total' prefix to match urban/rural split. - """ - + """Formats load with 'total' prefix to match urban/rural split.""" assert sector in ("com", "res", "srv") assert fuel in ("heat", "cool", "space-heat", "water-heat") @@ -811,7 +787,7 @@ def add_service_furnace( heat_carrier: str, fuel: str, costs: pd.DataFrame, - marginal_cost: Optional[pd.DataFrame | float] = None, + marginal_cost: pd.DataFrame | float | None = None, ) -> None: """ Adds direct furnace heating to the system. @@ -881,7 +857,7 @@ def add_service_furnace( if isinstance(marginal_cost, pd.DataFrame): assert "state" in df.columns mc = get_link_marginal_costs(n, df, marginal_cost) - elif isinstance(marginal_cost, (int, float)): + elif isinstance(marginal_cost, int | float): mc = marginal_cost else: mc = 0 @@ -921,58 +897,49 @@ def add_heat_dr( n: pypsa.Network, sector: str, dr_config: dict[str, Any], - heat_system: Optional[str] = None, - heat_carrier: Optional[str] = None, - standing_loss: Optional[float] = None, + heat_system: str | None = None, + heat_carrier: str | None = None, + standing_loss: float | None = None, ) -> None: - """ - Adds end-use thermal demand response. - """ + """Adds end-use thermal demand response.""" + by_carrier = dr_config.get("by_carrier", False) - shift = dr_config.get("shift", 0) - marginal_cost_storage = dr_config.get("marginal_cost", 0) - - if shift == 0: - logger.info(f"DR not applied to {sector} as allowable sift is {shift}") - return - - if marginal_cost_storage == 0: - logger.warning(f"No cost applied to demand response for {sector}") + # check if dr is applied at a per-carrier level if sector in ["res", "com"]: - assert heat_system in ("urban", "rural", "total") assert heat_carrier in ("heat", "space-heat", "cool") - if isinstance(marginal_cost_storage, dict): - try: - mc = marginal_cost_storage[heat_carrier] - except KeyError: - mc = 0 - else: - mc = marginal_cost_storage - carrier_name = f"{sector}-{heat_system}-{heat_carrier}" - elif sector == "ind": + if by_carrier: + dr_config = dr_config.get(heat_carrier, {}) - carrier_name = f"ind-heat" + elif sector == "ind": + carrier_name = "ind-heat" - if isinstance(marginal_cost_storage, dict): - try: - mc = marginal_cost_storage["heat"] - except KeyError: - mc = 0 - else: - mc = marginal_cost_storage + if by_carrier: + dr_config = dr_config.get("heat", {}) else: raise ValueError(f"{sector} not valid dr option") - if mc == 0: + # check if demand response is applied + + shift = dr_config.get("shift", 0) + if shift == 0: + logger.info(f"DR not applied to {sector} as allowable sift is {shift}") + return + + # assign marginal cost value + + marginal_cost_storage = dr_config.get("marginal_cost", 0) + if marginal_cost_storage == 0: logger.warning(f"No cost applied to demand response for {sector}") - # must be run after rural/urban load split + # get components to add + # MUST BE RUN AFTER URBAN/RURAL SPLIT + buses = n.buses[n.buses.carrier == carrier_name] df = pd.DataFrame(index=buses.index) @@ -1069,7 +1036,7 @@ def add_heat_dr( e_max_pu=1, carrier=df.carrier, standing_loss=standing_loss, - marginal_cost_storage=mc, + marginal_cost_storage=marginal_cost_storage, ) n.madd( @@ -1084,7 +1051,7 @@ def add_heat_dr( e_max_pu=0, carrier=df.carrier, standing_loss=standing_loss, - marginal_cost_storage=mc * (-1), + marginal_cost_storage=marginal_cost_storage * (-1), ) @@ -1094,11 +1061,11 @@ def add_service_water_store( heat_system: str, fuel: str, costs: pd.DataFrame, - marginal_cost: Optional[pd.DataFrame | float] = None, - standing_loss: Optional[float] = None, - extendable: Optional[bool] = True, - simple_storage: Optional[bool] = True, - n_hours: Optional[int | float] = None, + marginal_cost: pd.DataFrame | float | None = None, + standing_loss: float | None = None, + extendable: bool | None = True, + simple_storage: bool | None = True, + n_hours: int | float | None = None, ) -> None: """ Adds end-use water heat storage system. @@ -1114,7 +1081,6 @@ def add_service_water_store( stores. If True, costs are applied to the discharging link based on 4hr storage capacity. """ - assert sector in ("res", "com") assert heat_system in ("urban", "rural", "total") @@ -1166,7 +1132,7 @@ def add_service_water_store( if isinstance(marginal_cost, pd.DataFrame): assert "state" in df.columns mc = get_link_marginal_costs(n, df, marginal_cost) - elif isinstance(marginal_cost, (int, float)): + elif isinstance(marginal_cost, int | float): mc = marginal_cost else: mc = 0 @@ -1262,7 +1228,7 @@ def add_service_heat_pumps( heat_carrier: str, hp_type: str, costs: pd.DataFrame, - cop: Optional[pd.DataFrame] = None, + cop: pd.DataFrame | None = None, ) -> None: """ Adds heat pumps to the system. @@ -1282,7 +1248,6 @@ def add_service_heat_pumps( cop: pd.DataFrame If not provided, uses eff in costs """ - hp_type = hp_type.capitalize() assert sector in ("com", "res") @@ -1343,9 +1308,8 @@ def add_service_heat_pumps( def add_industrial_gas_furnace( n: pypsa.Network, costs: pd.DataFrame, - marginal_cost: Optional[pd.DataFrame | float] = None, + marginal_cost: pd.DataFrame | float | None = None, ) -> None: - sector = SecNames.INDUSTRY.value capex = costs.at["direct firing gas", "capital_cost"].round(1) @@ -1373,7 +1337,7 @@ def add_industrial_gas_furnace( if isinstance(marginal_cost, pd.DataFrame): assert "state" in furnaces.columns mc = get_link_marginal_costs(n, furnaces, marginal_cost) - elif isinstance(marginal_cost, (int, float)): + elif isinstance(marginal_cost, int | float): mc = marginal_cost else: mc = 0 @@ -1381,7 +1345,7 @@ def add_industrial_gas_furnace( n.madd( "Link", furnaces.index, - suffix="-gas-furnace", #'ind' included in index already + suffix="-gas-furnace", # 'ind' included in index already bus0=furnaces.bus0, bus1=furnaces.bus1, bus2=furnaces.bus2, @@ -1398,9 +1362,8 @@ def add_industrial_gas_furnace( def add_industrial_coal_furnace( n: pypsa.Network, costs: pd.DataFrame, - marginal_cost: Optional[pd.DataFrame | float] = None, + marginal_cost: pd.DataFrame | float | None = None, ) -> None: - sector = SecNames.INDUSTRY.value # performance charasteristics taken from (Table 311.1a) @@ -1432,7 +1395,7 @@ def add_industrial_coal_furnace( if isinstance(marginal_cost, pd.DataFrame): assert "state" in furnace.columns mc = get_link_marginal_costs(n, furnace, marginal_cost) - elif isinstance(marginal_cost, (int, float)): + elif isinstance(marginal_cost, int | float): mc = marginal_cost else: mc = 0 @@ -1458,7 +1421,6 @@ def add_indusrial_heat_pump( n: pypsa.Network, costs: pd.DataFrame, ) -> None: - sector = SecNames.INDUSTRY.value capex = costs.at["industrial heat pump high temperature", "capital_cost"].round(1) diff --git a/workflow/scripts/build_hydro_profile.py b/workflow/scripts/build_hydro_profile.py deleted file mode 100644 index 3bf1f889..00000000 --- a/workflow/scripts/build_hydro_profile.py +++ /dev/null @@ -1,213 +0,0 @@ -#!/usr/bin/env python - -# SPDX-FileCopyrightText: : 2017-2024 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: MIT -""" -Build hydroelectric inflow time-series for each country. - -Relevant Settings ------------------ - -.. code:: yaml - - countries: - - renewable: - hydro: - cutout: - clip_min_inflow: - -.. seealso:: - Documentation of the configuration file ``config/config.yaml`` at - :ref:`toplevel_cf`, :ref:`renewable_cf` - -Inputs ------- - -- ``data/bundle/eia_hydro_annual_generation.csv``: Hydroelectricity net generation per country and year (`EIA `_) - - .. image:: img/hydrogeneration.png - :scale: 33 % - -- ``resources/country_shapes.geojson``: confer :ref:`shapes` -- ``"cutouts/" + config["renewable"]['hydro']['cutout']``: confer :ref:`cutout` - -Outputs -------- - -- ``resources/profile_hydro.nc``: - - =================== ================ ========================================================= - Field Dimensions Description - =================== ================ ========================================================= - inflow countries, time Inflow to the state of charge (in MW), - e.g. due to river inflow in hydro reservoir. - =================== ================ ========================================================= - - .. image:: img/inflow-ts.png - :scale: 33 % - - .. image:: img/inflow-box.png - :scale: 33 % - -Description ------------ - -.. seealso:: - :mod:`build_renewable_profiles` -""" - -import logging - -import atlite -import country_converter as coco -import geopandas as gpd -import pandas as pd -from _helpers import configure_logging, set_scenario_config -from numpy.polynomial import Polynomial - -cc = coco.CountryConverter() - - -def get_eia_annual_hydro_generation(fn, countries, capacities=False): - # in billion kWh/a = TWh/a - df = pd.read_csv(fn, skiprows=2, index_col=1, na_values=[" ", "--"]).iloc[1:, 1:] - df.index = df.index.str.strip() - df.columns = df.columns.astype(int) - - former_countries = { - "Former Czechoslovakia": dict( - countries=["Czechia", "Slovakia"], - start=1980, - end=1992, - ), - "Former Serbia and Montenegro": dict( - countries=["Serbia", "Montenegro"], - start=1992, - end=2005, - ), - "Former Yugoslavia": dict( - countries=[ - "Slovenia", - "Croatia", - "Bosnia and Herzegovina", - "Serbia", - "Montenegro", - "North Macedonia", - ], - start=1980, - end=1991, - ), - } - - for k, v in former_countries.items(): - period = [i for i in range(v["start"], v["end"] + 1)] - ratio = df.loc[v["countries"]].T.dropna().sum() - ratio /= ratio.sum() - for country in v["countries"]: - df.loc[country, period] = df.loc[k, period] * ratio[country] - - baltic_states = ["Latvia", "Estonia", "Lithuania"] - df.loc[baltic_states] = df.loc[baltic_states].T.fillna(df.loc[baltic_states].mean(axis=1)).T - - df.loc["Germany"] = df.filter(like="Germany", axis=0).sum() - df.loc["Serbia"] += df.loc["Kosovo"].fillna(0.0) - df = df.loc[~df.index.str.contains("Former")] - df.drop(["Europe", "Germany, West", "Germany, East", "Kosovo"], inplace=True) - - df.index = cc.convert(df.index, to="iso2") - df.index.name = "countries" - - # convert to MW of MWh/a - factor = 1e3 if capacities else 1e6 - df = df.T[countries] * factor - - return df - - -def correct_eia_stats_by_capacity(eia_stats, fn, countries, baseyear=2019): - cap = get_eia_annual_hydro_generation(fn, countries, capacities=True) - ratio = cap / cap.loc[baseyear] - eia_stats_corrected = eia_stats / ratio - to_keep = ["AL", "AT", "CH", "DE", "GB", "NL", "RS", "RO", "SK"] - to_correct = eia_stats_corrected.columns.difference(to_keep) - eia_stats.loc[:, to_correct] = eia_stats_corrected.loc[:, to_correct] - - -def approximate_missing_eia_stats(eia_stats, runoff_fn, countries): - runoff = pd.read_csv(runoff_fn, index_col=0).T[countries] - runoff.index = runoff.index.astype(int) - - runoff_eia = runoff.loc[eia_stats.index] - - eia_stats_approximated = {} - - for c in countries: - X = runoff_eia[c] - Y = eia_stats[c] - - to_predict = runoff.index.difference(eia_stats.index) - X_pred = runoff.loc[to_predict, c] - - p = Polynomial.fit(X, Y, 1) - Y_pred = p(X_pred) - - eia_stats_approximated[c] = pd.Series(Y_pred, index=to_predict) - - eia_stats_approximated = pd.DataFrame(eia_stats_approximated) - return pd.concat([eia_stats, eia_stats_approximated]).sort_index() - - -logger = logging.getLogger(__name__) - -if __name__ == "__main__": - if "snakemake" not in globals(): - from _helpers import mock_snakemake - - snakemake = mock_snakemake("build_hydro_profile", interconnect="texas") - configure_logging(snakemake) - set_scenario_config(snakemake) - - params_hydro = snakemake.params.hydro - - time = pd.date_range(**snakemake.params.snapshots) - - cutout = atlite.Cutout(snakemake.input.cutout).sel(time=time) - - # countries = snakemake.params.countries - country_shapes = gpd.read_file(snakemake.input.reeds_shapes).set_index("name")["geometry"] - country_shapes.index.name = "countries" - - # fn = snakemake.input.eia_hydro_generation - # eia_stats = get_eia_annual_hydro_generation(fn, countries) - - # config_hydro = snakemake.config["renewable"]["hydro"] - - # if config_hydro.get("eia_correct_by_capacity"): - # fn = snakemake.input.eia_hydro_capacity - # correct_eia_stats_by_capacity(eia_stats, fn, countries) - - # if config_hydro.get("eia_approximate_missing"): - # fn = snakemake.input.era5_runoff - # eia_stats = approximate_missing_eia_stats(eia_stats, fn, countries) - - # contained_years = pd.date_range(freq="YE", **snakemake.params.snapshots).year - # norm_year = config_hydro.get("eia_norm_year") - # missing_years = contained_years.difference(eia_stats.index) - # if norm_year: - # eia_stats.loc[contained_years] = eia_stats.loc[norm_year] - # elif missing_years.any(): - # eia_stats.loc[missing_years] = eia_stats.median() - - inflow = cutout.runoff( - shapes=country_shapes, - smooth=True, - lower_threshold_quantile=True, - # normalize_using_yearly=eia_stats, - ) - - if "clip_min_inflow" in params_hydro: - inflow = inflow.where(inflow > params_hydro["clip_min_inflow"], 0) - - inflow.to_netcdf(snakemake.output.profile) diff --git a/workflow/scripts/build_natural_gas.py b/workflow/scripts/build_natural_gas.py index 73f63240..4966e40a 100644 --- a/workflow/scripts/build_natural_gas.py +++ b/workflow/scripts/build_natural_gas.py @@ -1,5 +1,4 @@ -""" -Module for adding the gas sector. +"""Module for adding the gas sector. This module will add a state level copperplate natural gas network to the model. Specifically, it will do the following @@ -14,21 +13,21 @@ """ import logging +from abc import ABC, abstractmethod +from math import pi +from typing import Any +import eia import geopandas as gpd +import numpy as np import pandas as pd import pypsa -from constants import NG_MWH_2_MMCF, STATE_2_CODE, STATES_INTERCONNECT_MAPPER +import yaml +from constants import CODE_2_STATE, EMPTY_STATES, NG_MWH_2_MMCF, STATE_2_CODE, STATES_INTERCONNECT_MAPPER from pypsa.components import Network logger = logging.getLogger(__name__) -from abc import ABC, abstractmethod -from math import pi -from typing import Any, Optional -import eia -import numpy as np -import yaml ### # Constants @@ -38,38 +37,28 @@ MWH_2_MMCF = NG_MWH_2_MMCF KJ_2_MWH = (1 / 1000) * (1 / 3600) -CODE_2_STATE = {v: k for k, v in STATE_2_CODE.items()} - ### # Geolocation of Assets class ### class StateGeometry: - """ - Holds state boundry data. - """ + """Holds state boundry data.""" def __init__(self, shapefile: str) -> None: - """ - Counties shapefile. - """ + """Counties shapefile.""" self._counties = gpd.read_file(shapefile) self._state_center_points = None self._states = None @property def counties(self) -> gpd.GeoDataFrame: - """ - Spatially resolved counties. - """ + """Spatially resolved counties.""" return self._counties @property def states(self) -> gpd.GeoDataFrame: - """ - Spatially resolved states. - """ + """Spatially resolved states.""" if self._states: return self._states else: @@ -78,9 +67,7 @@ def states(self) -> gpd.GeoDataFrame: @property def state_center_points(self) -> gpd.GeoDataFrame: - """ - Center points of Sates. - """ + """Center points of Sates.""" if self._state_center_points: return self._state_center_points else: @@ -90,9 +77,7 @@ def state_center_points(self) -> gpd.GeoDataFrame: return self._state_center_points def _get_state_boundaries(self) -> gpd.GeoDataFrame: - """ - Gets admin boundaries of state. - """ + """Gets admin boundaries of state.""" return ( self._counties.dissolve("STATE_NAME") .rename(columns={"STUSPS": "STATE"}) @@ -100,9 +85,7 @@ def _get_state_boundaries(self) -> gpd.GeoDataFrame: ) def _get_state_center_points(self) -> gpd.GeoDataFrame: - """ - Gets centerpoints of states using county shapefile. - """ + """Gets centerpoints of states using county shapefile.""" gdf = self._states.copy().rename(columns={"geometry": "shape"}) gdf["geometry"] = gdf["shape"].map(lambda x: x.centroid) gdf[["x", "y"]] = gdf["geometry"].apply( @@ -117,14 +100,12 @@ def _get_state_center_points(self) -> gpd.GeoDataFrame: class GasData(ABC): - """ - Main class to interface with data. - """ + """Interface with any gas data.""" state_2_interconnect = STATES_INTERCONNECT_MAPPER state_2_name = CODE_2_STATE name_2_state = STATE_2_CODE - states_2_remove = [x for x, y in STATES_INTERCONNECT_MAPPER.items() if not y] + states_2_remove = EMPTY_STATES def __init__(self, year: int, interconnect: str) -> None: self.year = year @@ -137,14 +118,17 @@ def __init__(self, year: int, interconnect: str) -> None: @property def data(self) -> pd.DataFrame: + """Get formatted data.""" return self._data @abstractmethod def read_data(self) -> pd.DataFrame | gpd.GeoDataFrame: + """Read in data.""" pass @abstractmethod def format_data(self, data: pd.DataFrame | gpd.GeoDataFrame) -> pd.DataFrame: + """Format dataset.""" pass def _get_data(self) -> pd.DataFrame: @@ -153,17 +137,15 @@ def _get_data(self) -> pd.DataFrame: @abstractmethod def build_infrastructure(self, n: pypsa.Network) -> None: + """Add pypsa components to network.""" pass def filter_on_interconnect( self, df: pd.DataFrame, - additional_removals: list[str] = None, + additional_removals: list[str] | None = None, ) -> pd.DataFrame: - """ - Name of states must be in column called 'STATE'. - """ - + """Name of states must be in column called 'STATE'.""" states_2_remove = self.states_2_remove if additional_removals: states_2_remove += additional_removals @@ -218,9 +200,11 @@ def __init__(self, interconnect: str, counties: str) -> None: ) # year locked for location mapping def read_data(self) -> gpd.GeoDataFrame: + """Read in state centerpoints.""" return pd.DataFrame(self.states.state_center_points) def format_data(self, data: gpd.GeoDataFrame) -> pd.DataFrame: + """Format bus data.""" data = pd.DataFrame(data) data["name"] = data.STATE.map(self.state_2_name) return self.filter_on_interconnect(data) @@ -230,6 +214,7 @@ def filter_on_sate( n: pypsa.Network, df: pd.DataFrame, ) -> pd.DataFrame: + """Filter formatted data to only include states in geographic scope.""" states_in_model = n.buses[ ~n.buses.carrier.isin( ["gas storage", "gas trade", "gas pipeline"], @@ -247,7 +232,7 @@ def filter_on_sate( return df def build_infrastructure(self, n: Network) -> None: - + """Add pypsa components to network.""" df = self.filter_on_sate(n, self.data) states = df.set_index("STATE") @@ -268,15 +253,14 @@ def build_infrastructure(self, n: Network) -> None: class GasStorage(GasData): - """ - Creator for underground storage. - """ + """Creator for underground storage.""" def __init__(self, year: int, interconnect: str, api: str) -> None: self.api = api super().__init__(year, interconnect) def read_data(self): + """Read in data from EIA API.""" base = eia.Storage("gas", "base", self.year, self.api).get_data() base["storage_type"] = "base_capacity" total = eia.Storage("gas", "total", self.year, self.api).get_data() @@ -289,6 +273,7 @@ def read_data(self): return final def format_data(self, data: pd.DataFrame): + """Format storage data.""" df = data.copy() df["value"] = df.value * MWH_2_MMCF df = ( @@ -322,6 +307,7 @@ def filter_on_sate( n: pypsa.Network, df: pd.DataFrame, ) -> pd.DataFrame: + """Filter formatted data to only include states in geographic scope.""" states_in_model = n.buses[ ~n.buses.carrier.isin( ["gas storage", "gas trade", "gas pipeline"], @@ -339,7 +325,7 @@ def filter_on_sate( return df def build_infrastructure(self, n: pypsa.Network, **kwargs): - + """Add pypsa components to network.""" df = self.filter_on_sate(n, self.data) df.index = df.STATE df["state_name"] = df.index.map(self.state_2_name) @@ -406,18 +392,18 @@ def build_infrastructure(self, n: pypsa.Network, **kwargs): class GasProcessing(GasData): - """ - Creator for processing capacity. - """ + """Creator for processing capacity.""" def __init__(self, year: int, interconnect: str, api: str) -> None: self.api = api super().__init__(year=year, interconnect=interconnect) def read_data(self) -> pd.DataFrame: + """Read in data from EIA API.""" return eia.Production("gas", "market", self.year, self.api).get_data() def format_data(self, data: pd.DataFrame): + """Format processing capacity data.""" df = data.copy() df["value"] = ( @@ -438,6 +424,7 @@ def filter_on_sate( n: pypsa.Network, df: pd.DataFrame, ) -> pd.DataFrame: + """Filter formatted data to only include states in geographic scope.""" states_in_model = n.buses[ ~n.buses.carrier.isin( ["gas storage", "gas trade", "gas pipeline"], @@ -455,7 +442,7 @@ def filter_on_sate( return df def build_infrastructure(self, n: pypsa.Network, **kwargs): - + """Add pypsa components to network.""" df = self.filter_on_sate(n, self.data) df = df.set_index("STATE") df["bus"] = df.index + " gas" @@ -528,19 +515,19 @@ def build_infrastructure(self, n: pypsa.Network, **kwargs): class _GasPipelineCapacity(GasData): - def __init__( self, year: int, interconnect: str, xlsx: str, - api: Optional[str] = None, + api: str | None = None, ) -> None: self.xlsx = xlsx self.api = api super().__init__(year, interconnect) def read_data(self) -> pd.DataFrame: + """Read in excel dataset.""" return pd.read_excel( self.xlsx, sheet_name="Pipeline State2State Capacity", @@ -561,7 +548,6 @@ def filter_on_sate( df: pd.DataFrame, in_spatial_scope: bool, ) -> pd.DataFrame: - states_in_model = self.get_states_in_model(n) if ("STATE_TO" and "STATE_FROM") not in df.columns: @@ -578,6 +564,7 @@ def filter_on_sate( return df[~(df.STATE_TO == df.STATE_FROM)].copy() def format_data(self, data: pd.DataFrame) -> pd.DataFrame: + """Format pipeline data.""" df = data.copy() df.columns = df.columns.str.strip() df = df[df.index == int(self.year)] @@ -633,7 +620,7 @@ def format_data(self, data: pd.DataFrame) -> pd.DataFrame: return self.extract_pipelines(df) def _get_capacity_based_on_trade_flows(self) -> pd.DataFrame: - """Check that trade flows do not exceed design capacity + """Check that trade flows do not exceed design capacity. See Issue #487 https://github.com/PyPSA/pypsa-usa/issues/487 @@ -662,7 +649,6 @@ def _merge_capacity_trade_data( capacity: pd.DataFrame, trade: pd.DataFrame, ) -> pd.DataFrame: - df = pd.concat([capacity, trade]) df = df.sort_values(by="CAPACITY_MW", ascending=False) df = df.drop_duplicates( @@ -693,10 +679,7 @@ def extract_pipelines(self, df: pd.DataFrame) -> pd.DataFrame: pass def assign_pipeline_interconnects(self, df: pd.DataFrame): - """ - Adds interconnect labels to the pipelines. - """ - + """Adds interconnect labels to the pipelines.""" df["STATE_TO"] = df.STATE_NAME_TO.map(self.name_2_state) df["STATE_FROM"] = df.STATE_NAME_FROM.map(self.name_2_state) @@ -709,21 +692,19 @@ def assign_pipeline_interconnects(self, df: pd.DataFrame): class InterconnectGasPipelineCapacity(_GasPipelineCapacity): - """ - Pipeline capacity within the interconnect. - """ + """Pipeline capacity within the interconnect.""" def __init__( self, year: int, interconnect: str, xlsx: str, - api: Optional[str] = None, + api: str | None = None, ) -> None: super().__init__(year, interconnect, xlsx, api) def extract_pipelines(self, data: pd.DataFrame) -> pd.DataFrame: - + """Get piplines within the geographic scope.""" df = data.copy() # for some reason drop duplicates is not wokring here and I cant figure out why :( # df = df.drop_duplicates(subset=["STATE_TO", "STATE_FROM"], keep=False).copy() @@ -746,7 +727,7 @@ def extract_pipelines(self, data: pd.DataFrame) -> pd.DataFrame: return df.reset_index(drop=True) def build_infrastructure(self, n: pypsa.Network) -> None: - + """Add pypsa components to network.""" df = self.filter_on_sate(n, self.data, in_spatial_scope=True) if df.empty: @@ -775,9 +756,7 @@ def build_infrastructure(self, n: pypsa.Network) -> None: class TradeGasPipelineCapacity(_GasPipelineCapacity): - """ - Pipeline capcity connecting to the interconnect. - """ + """Pipeline capcity connecting to the interconnect.""" def __init__( self, @@ -791,7 +770,7 @@ def __init__( super().__init__(year, interconnect, xlsx, api) def extract_pipelines(self, data: pd.DataFrame) -> pd.DataFrame: - + """Get pipelines within geographic scope.""" df = data.copy() if self.domestic: return self._get_domestic_pipeline_connections(df) @@ -799,10 +778,7 @@ def extract_pipelines(self, data: pd.DataFrame) -> pd.DataFrame: return self._get_international_pipeline_connections(df) def _get_domestic_pipeline_connections(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Gets all pipelines within the usa that connect to the interconnect. - """ - + """Gets all pipelines within the usa that connect to the interconnect.""" # get rid of international connections df = df[~((df.INTERCONNECT_TO.isin(["canada", "mexico"])) | (df.INTERCONNECT_FROM.isin(["canada", "mexico"])))] @@ -813,9 +789,7 @@ def _get_domestic_pipeline_connections(self, df: pd.DataFrame) -> pd.DataFrame: return df[df["INTERCONNECT_TO"].eq(self.interconnect) | df["INTERCONNECT_FROM"].eq(self.interconnect)] def _get_international_pipeline_connections(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Gets all international pipeline connections. - """ + """Gets all international pipeline connections.""" df = df[(df.INTERCONNECT_TO.isin(["canada", "mexico"])) | (df.INTERCONNECT_FROM.isin(["canada", "mexico"]))] if self.interconnect == "usa": return df @@ -833,7 +807,6 @@ def _get_international_costs( interpolation_method can be one of: - linear, zero """ - assert direction in ("imports", "exports") # fuel costs/profits at a national level @@ -846,9 +819,7 @@ def _get_international_costs( return costs.resample("1h").asfreq().interpolate(method=interpoloation_method) def _expand_costs(self, n: pypsa.Network, costs: pd.DataFrame) -> pd.DataFrame: - """ - Expands import/export costs over snapshots and investment periods. - """ + """Expands import/export costs over snapshots and investment periods.""" expanded_costs = [] for invesetment_period in n.investment_periods: # reindex to match any tsa @@ -937,10 +908,7 @@ def _get_marginal_costs( connections: pd.DataFrame, imports: bool, ) -> pd.DataFrame: - """ - Gets time varrying import/export costs. - """ - + """Gets time varrying import/export costs.""" df = connections.copy() states_in_model = self.get_states_in_model(n) @@ -964,7 +932,6 @@ def _assign_country(self, n: pypsa.Network, template: pd.DataFrame) -> pd.DataFr Country is always in model spatial scope. """ - df = template.copy() states_in_model = self.get_states_in_model(n) @@ -981,9 +948,7 @@ def _assign_link_buses( n: pypsa.Network, template: pd.DataFrame, ) -> pd.DataFrame: - """ - Assigns bus names for links. - """ + """Assigns bus names for links.""" def assign_bus0_name(row) -> str: if row["STATE_FROM"] in states_in_model: @@ -1013,7 +978,6 @@ def _assign_stores(self, template: pd.DataFrame) -> pd.DataFrame: imports) If bus0 is a state gas bus, energy will flow out of the model (ie. exports) """ - df = template.copy() df["store"] = df.bus0.map( @@ -1041,7 +1005,6 @@ def build_infrastructure(self, n: pypsa.Network) -> None: - "WA BC gas trade" - "BC WA gas trade" """ - df = self.filter_on_sate(n, self.data, in_spatial_scope=False) df = self._add_zero_capacity_connections(df) @@ -1140,9 +1103,7 @@ def build_infrastructure(self, n: pypsa.Network) -> None: class PipelineLinepack(GasData): - """ - Creator for linepack infrastructure. - """ + """Creator for linepack infrastructure.""" def __init__( self, @@ -1157,7 +1118,10 @@ def __init__( super().__init__(year, interconnect) def read_data(self) -> gpd.GeoDataFrame: - """https://atlas.eia.gov/apps/3652f0f1860d45beb0fed27dc8a6fc8d/explore""" + """Read in geojson pipe locations. + + https://atlas.eia.gov/apps/3652f0f1860d45beb0fed27dc8a6fc8d/explore. + """ return gpd.read_file(self.pipeline_geojson) def filter_on_sate( @@ -1165,7 +1129,7 @@ def filter_on_sate( n: pypsa.Network, df: pd.DataFrame, ) -> pd.DataFrame: - + """Filter formatted data to only include states in geographic scope.""" states_in_model = n.buses[ ~n.buses.carrier.isin( ["gas storage", "gas trade", "gas pipeline"], @@ -1183,6 +1147,7 @@ def filter_on_sate( return df def format_data(self, data: gpd.GeoDataFrame) -> pd.DataFrame: + """Format linepack data.""" gdf = data.copy() states = self.states.copy() @@ -1230,7 +1195,7 @@ def format_data(self, data: gpd.GeoDataFrame) -> pd.DataFrame: return self.filter_on_interconnect(final) def build_infrastructure(self, n: pypsa.Network, **kwargs) -> None: - + """Add pypsa components to network.""" df = self.filter_on_sate(n, self.data) df = df.set_index("STATE") @@ -1266,10 +1231,7 @@ def build_infrastructure(self, n: pypsa.Network, **kwargs) -> None: def _remove_marginal_costs(n: pypsa.Network): - """ - Removes marginal costs of CCGT and OCGT plants. - """ - + """Removes marginal costs of CCGT and OCGT plants.""" links = n.links[n.links.carrier.str.contains("CCGT") | n.links.carrier.str.contains("OCGT")].index n.links.loc[links, "marginal_cost"] = 0 @@ -1288,10 +1250,9 @@ def build_natural_gas( county_path: str = "../data/counties/cb_2020_us_county_500k.shp", pipelines_path: str = "../data/natural_gas/EIA-StatetoStateCapacity_Feb2024.xlsx", pipeline_shape_path: str = "../data/natural_gas/pipelines.geojson", - options: Optional[dict[str, Any]] = None, + options: dict[str, Any] | None = None, **kwargs, ) -> None: - if not options: options = {} diff --git a/workflow/scripts/build_population_layouts.py b/workflow/scripts/build_population_layouts.py index 0963e435..7a3f81c0 100644 --- a/workflow/scripts/build_population_layouts.py +++ b/workflow/scripts/build_population_layouts.py @@ -1,22 +1,18 @@ -""" -Builds mapping between cutout grid cells and population (total, urban, rural). -""" +"""Builds mapping between cutout grid cells and population (total, urban, rural).""" import logging - -logger = logging.getLogger(__name__) - from pathlib import Path import atlite import constants import geopandas as gpd import matplotlib.pyplot as plt -import numpy as np import pandas as pd import xarray as xr from _helpers import configure_logging, mock_snakemake +logger = logging.getLogger(__name__) + def load_urban_ratio(df: pd.DataFrame) -> pd.DataFrame: """ @@ -73,9 +69,9 @@ def load_population(df: pd.DataFrame) -> pd.DataFrame: def plot_county_data( gdf: gpd.GeoDataFrame, col: str, - title: str = None, - description: str = None, - save: str = None, + title: str | None = None, + description: str | None = None, + save: str | None = None, ): """ Plots heat map of geodataframe. @@ -83,7 +79,6 @@ def plot_county_data( Adapted from https://www.relataly.com/visualize-covid-19-data-on-a-geographic-heat-maps/291/ """ - # for legend range vmin = gdf[col].min() vmax = gdf[col].max() @@ -113,11 +108,8 @@ def plot_county_data( fig.savefig(save) -def plot_grid_data(da: xr.DataArray, title: str = None, save: str = None): - """ - Plots gridded population layout. - """ - +def plot_grid_data(da: xr.DataArray, title: str | None = None, save: str | None = None): + """Plots gridded population layout.""" fig, ax = plt.subplots(figsize=(5, 4)) da.plot(ax=ax, cbar_kwargs={"label": "population"}) ax.set_xlabel("longitude") @@ -132,8 +124,6 @@ def plot_grid_data(da: xr.DataArray, title: str = None, save: str = None): if __name__ == "__main__": if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake( "build_population_layouts", interconnect="western", @@ -177,12 +167,15 @@ def plot_grid_data(da: xr.DataArray, title: str = None, save: str = None): counties = counties.join(pop) # Indicator matrix counties -> grid cells - I = atlite.cutout.compute_indicatormatrix(counties.geometry, grid_cells) + indicator_matrix = atlite.cutout.compute_indicatormatrix( + counties.geometry, + grid_cells, + ) # population in each grid cell - cell_pop = pd.Series(I.dot(counties["population"])) - cell_rural_pop = pd.Series(I.dot(counties["rural_population"])) - cell_urban_pop = pd.Series(I.dot(counties["urban_population"])) + cell_pop = pd.Series(indicator_matrix.dot(counties["population"])) + cell_rural_pop = pd.Series(indicator_matrix.dot(counties["rural_population"])) + cell_urban_pop = pd.Series(indicator_matrix.dot(counties["urban_population"])) # save total, rural, urban population pops = { @@ -206,7 +199,6 @@ def plot_grid_data(da: xr.DataArray, title: str = None, save: str = None): # plot data if save_path: - plotting_data = counties.copy() plotting_data["density_person_per_km2"] = plotting_data.population / counties.ALAND * 1000000 columns = { diff --git a/workflow/scripts/build_powerplants.py b/workflow/scripts/build_powerplants.py index 21100567..d3912f29 100644 --- a/workflow/scripts/build_powerplants.py +++ b/workflow/scripts/build_powerplants.py @@ -1,3 +1,5 @@ +"""Assimilates data on existing generator and storage resources from PUDL, CEMS, ADS, and other sources.""" + import logging import re @@ -118,9 +120,7 @@ def get_heat_rates(start_date, end_date): def set_non_conus(eia_data_operable): - """ - Set NERC region and balancing authority code for non-CONUS plants. - """ + """Set NERC region and balancing authority code for non-CONUS plants.""" eia_data_operable.loc[eia_data_operable.state.isin(["AK", "HI"]), "nerc_region"] = "non-conus" eia_data_operable.loc[ eia_data_operable.state.isin(["AK", "HI"]), @@ -211,7 +211,7 @@ def set_derates(plants): ], }, ) -eia_tech_map.set_index("Technology", inplace=True) +eia_tech_map = eia_tech_map.set_index("Technology") eia_fuel_map = pd.DataFrame( { "Energy Source 1": [ @@ -339,7 +339,7 @@ def set_derates(plants): ], }, ) -eia_fuel_map.set_index("Energy Source 1", inplace=True) +eia_fuel_map = eia_fuel_map.set_index("Energy Source 1") eia_primemover_map = pd.DataFrame( { "Prime Mover": [ @@ -394,7 +394,7 @@ def set_derates(plants): ], }, ) -eia_primemover_map.set_index("Prime Mover", inplace=True) +eia_primemover_map = eia_primemover_map.set_index("Prime Mover") def set_tech_fuels_primer_movers(eia_data_operable): @@ -433,12 +433,10 @@ def standardize_col_names(columns, prefix="", suffix=""): def merge_ads_data(eia_data_operable): - """ - Merges WECC ADS Data into the prepared EIA Data. - """ - ADS_PATH = snakemake.input.wecc_ads + """Merges WECC ADS Data into the prepared EIA Data.""" + path_ads = snakemake.input.wecc_ads ads_thermal = pd.read_csv( - ADS_PATH + "/Thermal_General_Info.csv", + path_ads + "/Thermal_General_Info.csv", skiprows=1, ) # encoding='unicode_escape') ads_thermal = ads_thermal[ @@ -460,7 +458,7 @@ def merge_ads_data(eia_data_operable): ads_thermal.columns = standardize_col_names(ads_thermal.columns) ads_ioc = pd.read_csv( - ADS_PATH + "/Thermal_IOCurve_Info.csv", + path_ads + "/Thermal_IOCurve_Info.csv", skiprows=1, ).rename(columns={"Generator Name": "GeneratorName"}) ads_ioc = ads_ioc[ @@ -478,7 +476,7 @@ def merge_ads_data(eia_data_operable): # loading ads to match ads_name with generator key in order to link with ads thermal file ads = pd.read_csv( - ADS_PATH + "/GeneratorList.csv", + path_ads + "/GeneratorList.csv", skiprows=2, encoding="unicode_escape", ) @@ -492,7 +490,7 @@ def merge_ads_data(eia_data_operable): ads["SubType"] = ads["SubType"].apply( lambda x: re.sub(r"[^a-zA-Z0-9]", "", x).lower(), ) - ads.rename( + ads = ads.rename( { "Name": "ads_name", "Long Name": "ads_long_name", @@ -502,9 +500,8 @@ def merge_ads_data(eia_data_operable): "Area Name": "balancing_area", }, axis=1, - inplace=True, ) - ads.rename(str.lower, axis="columns", inplace=True) + ads = ads.rename(str.lower, axis="columns") ads["long id"] = ads["long id"].astype(str) ads = ads.loc[ :, @@ -522,7 +519,8 @@ def merge_ads_data(eia_data_operable): ads_name_key_dict, ) - # Identify Generators not in ads generator list that are in the IOC curve. This could potentially be matched with manual work. + # Identify Generators not in ads generator list that are in the IOC curve. + # This could potentially be matched with manual work. ads_thermal_ioc[ads_thermal_ioc.generator_key.isna()] # Merge ads thermal_IOC data with ads generator data @@ -552,12 +550,12 @@ def merge_ads_data(eia_data_operable): eia_ads_mapper.columns, prefix="mapper_", ) - eia_ads_mapper.dropna(subset=["mapper_plant_id_eia"], inplace=True) + eia_ads_mapper = eia_ads_mapper.dropna(subset=["mapper_plant_id_eia"]) eia_ads_mapper.mapper_plant_id_eia = eia_ads_mapper.mapper_plant_id_eia.astype(int) eia_ads_mapper.mapper_ads_name = eia_ads_mapper.mapper_ads_name.astype(str) eia_ads_mapper.mapper_generatorkey = eia_ads_mapper.mapper_generatorkey.astype(int) - ads_complete.dropna(subset=["ads_generator_key"], inplace=True) + ads_complete = ads_complete.dropna(subset=["ads_generator_key"]) ads_complete.ads_generator_key = ads_complete.ads_generator_key.astype(int) eia_ads_mapper.mapper_generatorkey = eia_ads_mapper.mapper_generatorkey.astype(int) @@ -577,8 +575,8 @@ def merge_ads_data(eia_data_operable): right_on=["mapper_plant_id_eia", "mapper_generator_id_ads"], how="left", ) - eia_ads_merged.drop(columns=eia_ads_mapper.columns, inplace=True) - eia_ads_merged.drop( + eia_ads_merged = eia_ads_merged.drop(columns=eia_ads_mapper.columns) + eia_ads_merged = eia_ads_merged.drop( columns=[ "ads_generator_name_alt", "ads_generator_key", @@ -599,7 +597,6 @@ def merge_ads_data(eia_data_operable): "ads_commission_date", "ads_servicestatus", ], - inplace=True, ) eia_ads_merged = eia_ads_merged.drop_duplicates( subset=["plant_id_eia", "generator_id"], @@ -774,8 +771,8 @@ def set_parameters(plants: pd.DataFrame): set_derates(plants) - plants[f"heat_rate_source"] = plants[f"heat_rate_source"].fillna("NA") - plants[f"fuel_cost_source"] = plants[f"fuel_cost_source"].fillna("NA") + plants["heat_rate_source"] = plants["heat_rate_source"].fillna("NA") + plants["fuel_cost_source"] = plants["fuel_cost_source"].fillna("NA") # Check for missing heat rate data if plants["heat_rate"].isna().sum() > 0: @@ -792,29 +789,25 @@ def set_parameters(plants: pd.DataFrame): def filter_outliers_iqr_grouped(df, group_column, value_column): - """ - Filter outliers using IQR for each generator group. - """ + """Filter outliers using IQR for each generator group.""" def filter_outliers(group): - Q1 = group[value_column].quantile(0.25) - Q3 = group[value_column].quantile(0.75) - IQR = Q3 - Q1 - lower_bound = Q1 - 1.5 * IQR - upper_bound = Q3 + 1.5 * IQR + q1 = group[value_column].quantile(0.25) + q3 = group[value_column].quantile(0.75) + iqr = q3 - q1 + lower_bound = q1 - 1.5 * iqr + upper_bound = q3 + 1.5 * iqr return group[(group[value_column] >= lower_bound) & (group[value_column] <= upper_bound)] return df.groupby(group_column)[df.columns].apply(filter_outliers).reset_index(drop=True) def filter_outliers_zscore(temporal_data, target_field_name): - """ - Filter outliers using Z-score. - """ + """Filter outliers using Z-score.""" # Calculate mean and standard deviation for each generator stats = temporal_data.groupby(["generator_name"])[target_field_name].agg(["mean", "std"]).reset_index() stats["mean"] = stats["mean"].replace(np.inf, np.nan) - stats.dropna(inplace=True) + stats = stats.dropna() # Merge mean and std back to the original dataframe temporal_stats = temporal_data.merge( @@ -863,7 +856,7 @@ def merge_fc_hr_data( ) if target_field_name in plants.columns: - plants.drop(columns=[target_field_name], inplace=True) + plants = plants.drop(columns=[target_field_name]) temporal_average[f"{target_field_name}_source"] = "pudl_reciepts" @@ -896,7 +889,7 @@ def apply_cems_heat_rates(plants, crosswalk_fn, cems_fn): how="right", ) - plants.rename(columns={"Heat Input (mmBtu/MWh)": "heat_rate_"}, inplace=True) + plants = plants.rename(columns={"Heat Input (mmBtu/MWh)": "heat_rate_"}) plants.heat_rate_ = plants.heat_rate_.fillna( plants.unit_heat_rate_mmbtu_per_mwh, ) # First take CEMS, then use PUDL @@ -907,7 +900,7 @@ def apply_cems_heat_rates(plants, crosswalk_fn, cems_fn): ) plants.unit_heat_rate_mmbtu_per_mwh_source = plants.pop("hr_source_cems") - plants.drop( + plants = plants.drop( columns=[ "Facility ID", "Unit ID", @@ -916,7 +909,6 @@ def apply_cems_heat_rates(plants, crosswalk_fn, cems_fn): "EIA_PLANT_ID", "EIA_GENERATOR_ID", ], - inplace=True, ) return plants diff --git a/workflow/scripts/build_renewable_profiles.py b/workflow/scripts/build_renewable_profiles.py index ba2f9cc5..befe352c 100644 --- a/workflow/scripts/build_renewable_profiles.py +++ b/workflow/scripts/build_renewable_profiles.py @@ -1,160 +1,9 @@ # BY PyPSA-USA Authors """ -Calculates for each network node the (i) installable capacity (based on land- -use), (ii) the available generation time series (based on weather data), and -(iii) the average distance from the node for onshore wind, AC-connected -offshore wind, DC-connected offshore wind and solar PV generators. In addition -for offshore wind it calculates the fraction of the grid connection which is -under water. - -.. note:: Hydroelectric profiles are built in script :mod:`build_hydro_profiles`. - -**Relevant settings** - -.. code:: yaml - - snapshots: - - atlite: - nprocesses: - - renewable: - {technology}: - cutout: - corine: - grid_codes: - distance: - natura: - min_depth: - max_depth: - max_shore_distance: - min_shore_distance: - capacity_per_sqkm: - correction_factor: - potential: - min_p_max_pu: - clip_p_max_pu: - resource: - -.. seealso:: - Documentation of the configuration file ``config/config.yaml`` at - :ref:`snapshots_cf`, :ref:`atlite_cf`, :ref:`renewable_cf` - -**Inputs** - -- ``data/bundle/corine/g250_clc06_V18_5.tif``: `CORINE Land Cover (CLC) `_ inventory on `44 classes `_ of land use (e.g. forests, arable land, industrial, urban areas). - - # .. image:: img/corine.png - # :scale: 33 % - -- ``data/bundle/GEBCO_2014_2D.nc``: A `bathymetric `_ data set with a global terrain model for ocean and land at 15 arc-second intervals by the `General Bathymetric Chart of the Oceans (GEBCO) `_. - - # .. image:: img/gebco_2019_grid_image.jpg - # :scale: 50 % - - **Source:** `GEBCO `_ - -- ``resources/natura.tiff``: confer :ref:`databundle` -- ``resources/offshore_shapes.geojson``: confer :ref:`shapes` -- ``resources/regions_onshore.geojson``: (if not offshore wind), confer :ref:`busregions` -- ``resources/regions_offshore.geojson``: (if offshore wind), :ref:`busregions` -- ``"cutouts/" + params["renewable"][{technology}]['cutout']``: :ref:`cutout` -- ``networks/base.nc``: :ref:`base` - -**Outputs** - -- `resources/profile_{technology}.nc` with the following structure - - =================== ========== ========================================================= - Field Dimensions Description - =================== ========== ========================================================= - profile bus, time the per unit hourly availability factors for each node - ------------------- ---------- --------------------------------------------------------- - weight bus sum of the layout weighting for each node - ------------------- ---------- --------------------------------------------------------- - p_nom_max bus maximal installable capacity at the node (in MW) - ------------------- ---------- --------------------------------------------------------- - potential y, x layout of generator units at cutout grid cells inside the - Voronoi cell (maximal installable capacity at each grid - cell multiplied by capacity factor) - ------------------- ---------- --------------------------------------------------------- - average_distance bus average distance of units in the Voronoi cell to the - grid node (in km) - ------------------- ---------- --------------------------------------------------------- - underwater_fraction bus fraction of the average connection distance which is - under water (only for offshore) - =================== ========== ========================================================= - - - **profile** - - # .. image:: img/profile_ts.png - # :scale: 33 % - # :align: center - - - **p_nom_max** - - # .. image:: img/p_nom_max_hist.png - # :scale: 33 % - # :align: center - - - **potential** - - # .. image:: img/potential_heatmap.png - # :scale: 33 % - # :align: center - - - **average_distance** - - # .. image:: img/distance_hist.png - # :scale: 33 % - # :align: center - - - **underwater_fraction** - - # .. image:: img/underwater_hist.png - # :scale: 33 % - # :align: center - -Description ------------ - -This script functions at two main spatial resolutions: the resolution of the -network nodes and their `Voronoi cells -`_, and the resolution of the -cutout grid cells for the weather data. Typically the weather data grid is -finer than the network nodes, so we have to work out the distribution of -generators across the grid cells within each Voronoi cell. This is done by -taking account of a combination of the available land at each grid cell and the -capacity factor there. - -First the script computes how much of the technology can be installed at each -cutout grid cell and each node using the `GLAES -`_ library. This uses the CORINE land use data, -Natura2000 nature reserves and GEBCO bathymetry data. - -To compute the layout of generators in each node's Voronoi cell, the -installable potential in each grid cell is multiplied with the capacity factor -at each grid cell. This is done since we assume more generators are installed -at cells with a higher capacity factor. - - -This layout is then used to compute the generation availability time series -from the weather data cutout from `atlite`. - -Two methods are available to compute the maximal installable potential for the -node (`p_nom_max`): `simple` and `conservative`: - -- `simple` adds up the installable potentials of the individual grid cells. - If the model comes close to this limit, then the time series may slightly - overestimate production since it is assumed the geographical distribution is - proportional to capacity factor. - -- `conservative` assertains the nodal limit by increasing capacities - proportional to the layout until the limit of an individual grid cell is - reached. +Calculates for each network substation the installable capacity (based on land- +use) and the available generation time series (based on weather data). """ - import functools import logging import time @@ -163,7 +12,6 @@ import geopandas as gpd import matplotlib.pyplot as plt import numpy as np -import pandas as pd import xarray as xr from _helpers import configure_logging, get_snapshots from dask.distributed import Client @@ -230,10 +78,9 @@ def plot_data(data): regions = gpd.read_file(snakemake.input.regions) - assert "x" in regions.columns and "y" in regions.columns, ( - f"List of regions in {snakemake.input.regions} is empty, please " - "disable the corresponding renewable technology" - ) + assert ( + "x" in regions.columns and "y" in regions.columns + ), f"List of regions in {snakemake.input.regions} is empty, please disable the corresponding renewable technology" # do not pull up, set_index does not work if geo dataframe is empty regions = regions.set_index("name").rename_axis("bus") buses = regions.index @@ -276,7 +123,7 @@ def plot_data(data): if params.get("boem_screen", 0): excluder.add_raster( - snakemake.input[f"boem_osw"], + snakemake.input["boem_osw"], invert=True, nodata=0, allow_no_overlap=True, @@ -363,7 +210,7 @@ def plot_data(data): p_nom_max = capacities / max_cap_factor else: raise AssertionError( - 'Config key `potential` should be one of "simple" ' f'(default) or "conservative", not "{p_nom_max_meth}"', + f'Config key `potential` should be one of "simple" (default) or "conservative", not "{p_nom_max_meth}"', ) logger.info("Calculate average distances.") diff --git a/workflow/scripts/build_sector_costs.py b/workflow/scripts/build_sector_costs.py index 4b1503c4..0ccff017 100644 --- a/workflow/scripts/build_sector_costs.py +++ b/workflow/scripts/build_sector_costs.py @@ -6,10 +6,8 @@ """ from abc import ABC, abstractmethod -from typing import Optional import pandas as pd -import xarray as xr from constants import TBTU_2_MWH, MMBTU_MWHthemal # Vehicle life assumptions for getting $/VMT capital cost @@ -76,9 +74,7 @@ def assign_vehicle_type(name: str) -> str: - """ - Must match class level VMT assumptions. - """ + """Must match class level VMT assumptions.""" if name.startswith("Light Duty Cars"): return "light_duty_cars" elif name.startswith("Light Duty Trucks"): @@ -116,6 +112,7 @@ def __init__(self, file_path: str, efs_case: str = "Moderate Advancement") -> No @property def efs_case(self): + """EFS case name.""" return self._efs_case @efs_case.setter @@ -131,6 +128,7 @@ def _read_efs(self) -> pd.DataFrame: return pd.read_excel(self.file_path, sheet_name="EFS Data") def initialize(self, sector: str): # returns EfsSectorData + """Initialize type of EFS data.""" if sector == "Transportation": return EfsBevTransportationData(self.data, self.efs_case) elif sector == "Buildings": @@ -139,9 +137,7 @@ def initialize(self, sector: str): # returns EfsSectorData raise NotImplementedError def get_data(self, sector: str) -> pd.DataFrame: - """ - Collects all data for the sector. - """ + """Collects all data for the sector.""" return pd.concat( [ self.get_capex(sector), @@ -151,23 +147,21 @@ def get_data(self, sector: str) -> pd.DataFrame: ], )[self.columns] - def get_capex(self, sector: str) -> pd.DataFrame: + def get_capex(self, sector: str) -> pd.DataFrame: # noqa: D102 return self.initialize(sector).get_capex() - def get_lifetime(self, sector: str) -> pd.DataFrame: + def get_lifetime(self, sector: str) -> pd.DataFrame: # noqa: D102 return self.initialize(sector).get_lifetime() - def get_efficiency(self, sector: str) -> pd.DataFrame: + def get_efficiency(self, sector: str) -> pd.DataFrame: # noqa: D102 return self.initialize(sector).get_efficiency() - def get_fixed_costs(self, sector: str) -> pd.DataFrame: + def get_fixed_costs(self, sector: str) -> pd.DataFrame: # noqa: D102 return self.initialize(sector).get_fixed_costs() class EfsSectorData(ABC): - """ - Class to collect EFS building and electric transportation data. - """ + """Class to collect EFS building and electric transportation data.""" columns = COLUMN_ORDER @@ -176,19 +170,19 @@ def __init__(self, data: pd.DataFrame, efs_case: str) -> None: self.efs_case = efs_case @abstractmethod - def get_capex(self): + def get_capex(self): # noqa: D102 pass @abstractmethod - def get_efficiency(self): + def get_efficiency(self): # noqa: D102 pass @abstractmethod - def get_fixed_costs(self): + def get_fixed_costs(self): # noqa: D102 pass @abstractmethod - def get_lifetime(self): + def get_lifetime(self): # noqa: D102 pass @staticmethod @@ -213,8 +207,8 @@ def _format_columns(df: pd.DataFrame) -> pd.DataFrame: def _format_data_structure( self, df: pd.DataFrame, - source: Optional[str] = "", - description: Optional[str] = "", + source: str | None = "", + description: str | None = "", ) -> pd.DataFrame: data = df.copy() data["technology"] = data.Subsector + " " + data.Technology @@ -223,9 +217,7 @@ def _format_data_structure( return self._format_columns(data)[self.columns] def expand_data(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Performs lienar interpolations to fill in values for all years. - """ + """Performs lienar interpolations to fill in values for all years.""" data = df.copy() years = range(data.year.min(), data.year.max() + 1) ds = df.set_index( @@ -242,9 +234,7 @@ def expand_data(self, df: pd.DataFrame) -> pd.DataFrame: class EfsBevTransportationData(EfsSectorData): - """ - Only contains BEV and PHBEV. - """ + """Only contains BEV and PHBEV.""" # Assumptions from https://www.nrel.gov/docs/fy18osti/70485.pdf wh_per_gallon = 33700 # footnote 24 @@ -259,7 +249,7 @@ class EfsBevTransportationData(EfsSectorData): def __init__(self, data: pd.DataFrame, efs_case: str) -> None: super().__init__(data, efs_case) - def get_capex(self): + def get_capex(self): # noqa: D102 df = self.data.copy() df = df[ (df.Sector == "Transportation") & (df["EFS Case"] == self.efs_case) & (df.Metric == "Capital Cost") @@ -271,7 +261,7 @@ def get_capex(self): df = self._correct_capex_units(df) return self.expand_data(df) - def get_lifetime(self): + def get_lifetime(self): # noqa: D102 df = self.data.copy() df = df[ (df.Sector == "Transportation") & (df["EFS Case"] == self.efs_case) & (df.Metric == "Capital Cost") @@ -283,9 +273,7 @@ def get_lifetime(self): return self.expand_data(df) def get_efficiency(self): - """ - Only pulls main efficiency. - """ + """Only pulls main efficiency.""" df = self.data.copy() df = df[ (df.Sector == "Transportation") & (df["EFS Case"] == self.efs_case) & (df.Metric == "Main Efficiency") @@ -302,7 +290,7 @@ def get_efficiency(self): # df = df.rename(columns={"value": "capex"}) # return self._calculate_fom(df) - def get_fixed_costs(self): + def get_fixed_costs(self): # noqa: D102 df = self.get_capex() df["parameter"] = "FOM" df["unit"] = "%/year" @@ -311,9 +299,7 @@ def get_fixed_costs(self): return df def _correct_capex_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Coverts per unit into per VMT. - """ + """Coverts per unit into per VMT.""" corrected = df.copy() corrected["miles"] = corrected.technology.map(assign_vehicle_type) corrected["miles"] = corrected.miles.map(self.lifetime_miles) @@ -322,18 +308,14 @@ def _correct_capex_units(self, df: pd.DataFrame) -> pd.DataFrame: return corrected.drop(columns=["miles"]) def _correct_efficiency_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Coverts MPGe into per Miles/MWh. - """ + """Coverts MPGe into per Miles/MWh.""" corrected = df.copy() corrected["value"] = corrected.value.mul(1 / self.wh_per_gallon).mul(1e6) corrected["unit"] = "miles/MWh" return corrected def _calculate_fom(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Converts $/mile costs to %/year. - """ + """Converts $/mile costs to %/year.""" corrected = df.copy() corrected["value"] = corrected.technology.map(assign_vehicle_type) corrected["value"] = corrected.value.map(self.fixed_cost) @@ -421,29 +403,30 @@ def _expand_data(df: pd.DataFrame) -> pd.DataFrame: return pd.concat(dfs).reset_index() def get_data(self): + """Get capex, lifetime, efficiency, and fixed cost data.""" return pd.concat( [ - self.get_capex(), - self.get_lifetime(), - self.get_efficiency(), - self.get_fixed_costs(), + self._get_capex(), + self._get_lifetime(), + self._get_efficiency(), + self._get_fixed_costs(), ], ) - def get_capex(self): + def _get_capex(self): df = self.data.copy() df = df[df.parameter == "investment"] df = self._correct_capex_units(df) return self._expand_data(df)[self.columns] - def get_lifetime(self): - df = self.get_capex() + def _get_lifetime(self): + df = self._get_capex() df["parameter"] = "lifetime" df["value"] = self.lifetime df["unit"] = "years" return df[self.columns] - def get_efficiency(self): + def _get_efficiency(self): df = self.data.copy() df = df[df.parameter == "efficiency"] df = self._correct_efficiency_units(df) @@ -455,8 +438,8 @@ def get_efficiency(self): # df["capex"] = df.value # return self._correct_fom_units(df) - def get_fixed_costs(self): - df = self.get_capex() + def _get_fixed_costs(self): + df = self._get_capex() df["parameter"] = "FOM" df["unit"] = "%/year" df["value"] = df.technology.map(assign_vehicle_type) @@ -464,9 +447,7 @@ def get_fixed_costs(self): return df[self.columns] def _correct_capex_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Coverts per unit into per VMT. - """ + """Coverts per unit into per VMT.""" corrected = df.copy() corrected["miles"] = corrected.technology.map(assign_vehicle_type) corrected["miles"] = corrected.miles.map(self.lifetime_miles) @@ -475,9 +456,7 @@ def _correct_capex_units(self, df: pd.DataFrame) -> pd.DataFrame: return corrected.drop(columns=["miles"]) def _correct_fom_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Converts $/mile costs to %/year. - """ + """Converts $/mile costs to %/year.""" corrected = df.copy() corrected["fixed"] = corrected.technology.map(assign_vehicle_type) corrected["fixed"] = corrected.fixed.map(self.fixed_cost) @@ -486,9 +465,7 @@ def _correct_fom_units(self, df: pd.DataFrame) -> pd.DataFrame: return corrected.drop(columns=["capex", "fixed"]) def _correct_efficiency_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Coverts MPGe into per Miles/MWh. - """ + """Coverts MPGe into per Miles/MWh.""" corrected = df.copy() corrected["value"] = corrected.value.mul(1 / self.wh_per_gallon).mul(1e6) corrected["unit"] = "miles/MWh" @@ -496,36 +473,37 @@ def _correct_efficiency_units(self, df: pd.DataFrame) -> pd.DataFrame: class EfsBuildingData(EfsSectorData): + """Processes EIA building technology data.""" mmbtu_2_mwh = MMBTU_MWHthemal - # Assumptions from https://atb.nrel.gov/transportation/2022/definitions - - # table a3 - lifetimes = { # units in years - "ashp": 15, - "furnace": 15, - "elec_resistance": 20, - "hpwh": 13, # heat pump water heater - "ngwh": 13, # natural gas water heater - "ewh": 13, # electrical water heater - } - - # table a3 - # using commercal since it gives at a per-unit level - fixed_cost = { # units in $/kBTU/yr - "ashp": 1.47, - "furnace": 1.03, - "elec_resistance": 0.01, - "hpwh": 2.29, - "ngwh": 0.55, - "ewh": 0.88, - } - def __init__(self, data: pd.DataFrame, efs_case: str) -> None: super().__init__(data, efs_case) - def get_capex(self): + # # table a3 + # # units in years + # lifetimes: dict[str, int | float] = { + # "ashp": 15, + # "furnace": 15, + # "elec_resistance": 20, + # "hpwh": 13, # heat pump water heater + # "ngwh": 13, # natural gas water heater + # "ewh": 13, # electrical water heater + # } + + # # table a3 + # # using commercal since it gives at a per-unit level + # # units in $/kBTU/yr + # fixed_cost: dict[str, int | float] = { + # "ashp": 1.47, + # "furnace": 1.03, + # "elec_resistance": 0.01, + # "hpwh": 2.29, + # "ngwh": 0.55, + # "ewh": 0.88, + # } + + def get_capex(self): # noqa: D102 df = self.data.copy() df = df[ (df.Sector == "Buildings") @@ -540,7 +518,7 @@ def get_capex(self): df = self._correct_capex_units(df) return self.expand_data(df) - def get_lifetime(self): + def get_lifetime(self): # noqa: D102 df = self.get_capex() df["tech_type"] = df.technology.map(self.assign_tech_types) df["value"] = df.tech_type.map(self.lifetimes) @@ -548,7 +526,7 @@ def get_lifetime(self): df["parameter"] = "lifetime" return df.drop(columns=["tech_type"]) - def get_efficiency(self): + def get_efficiency(self): # noqa: D102 df = self.data.copy() df = df[(df.Sector == "Buildings") & (df["EFS Case"] == self.efs_case) & (df.Metric == "Efficiency")].copy() source = "NREL EFS at https://data.nrel.gov/submissions/78" @@ -557,15 +535,13 @@ def get_efficiency(self): df = self._format_data_structure(df, source=source, description="") return self.expand_data(df) - def get_fixed_costs(self): + def get_fixed_costs(self): # noqa: D102 df = self.get_capex() df["parameter"] = "FOM" return self._correct_fom_units(df) def assign_tech_types(self, name: str) -> float: - """ - Must match class level VMT assumptions. - """ + """Must match class level VMT assumptions.""" if name.endswith("Air Source Heat Pump"): return "ashp" elif name.endswith("Heat Pump Water Heater"): @@ -575,18 +551,14 @@ def assign_tech_types(self, name: str) -> float: return 0 def _correct_capex_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Coverts $/kBtu to $/MWh. - """ + """Coverts $/kBtu to $/MWh.""" corrected = df.copy() corrected["value"] = corrected.value.mul(1000).mul(self.mmbtu_2_mwh) corrected["unit"] = "$/Mwh" return corrected def _correct_fom_units(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Converts $/kBtu costs to %/year. - """ + """Converts $/kBtu costs to %/year.""" corrected = df.copy() corrected["tech_type"] = corrected.technology.map(self.assign_tech_types) corrected["fom"] = corrected.tech_type.map(self.fixed_cost) # $ /kBTU @@ -598,7 +570,7 @@ def _correct_fom_units(self, df: pd.DataFrame) -> pd.DataFrame: class EiaBuildingData: """ - Class for processing EIA residential and commercial data. + Processes EIA residential and commercial data. All data originates from this document: https://www.eia.gov/analysis/studies/buildings/equipcosts/pdf/full.pdf @@ -654,18 +626,19 @@ def _correct_investment_units(df: pd.DataFrame) -> pd.DataFrame: df2.unit = df2.unit.str.replace("/kBtu/hr", "/MW") return df2 - def get_data(self, sector: Optional[str] = None) -> pd.DataFrame: + def get_data(self, sector: str | None = None) -> pd.DataFrame: + """Get capex, lifetime, efficiency, and fixed cost data.""" sector = self._check_sector(sector) return pd.concat( [ - self.get_capex(sector), - self.get_lifetime(sector), - self.get_efficiency(sector), - self.get_fixed_costs(sector), + self._get_capex(sector), + self._get_lifetime(sector), + self._get_efficiency(sector), + self._get_fixed_costs(sector), ], ) - def get_capex(self, sector: Optional[str] = None): + def _get_capex(self, sector: str | None = None): sector = self._check_sector(sector) if sector: slicer = (self.data.technology.str.startswith(sector)) & (self.data.parameter == "investment") @@ -674,7 +647,7 @@ def get_capex(self, sector: Optional[str] = None): df = self.data[slicer] return self._correct_investment_units(df)[self.columns] - def get_lifetime(self, sector: Optional[str] = None): + def _get_lifetime(self, sector: str | None = None): sector = self._check_sector(sector) if sector: slicer = (self.data.technology.str.startswith(sector)) & (self.data.parameter == "lifetime") @@ -682,7 +655,7 @@ def get_lifetime(self, sector: Optional[str] = None): slicer = self.data.parameter == "lifetime" return self.data[slicer][self.columns] - def get_efficiency(self, sector: Optional[str] = None): + def _get_efficiency(self, sector: str | None = None): sector = self._check_sector(sector) if sector: slicer = (self.data.technology.str.startswith(sector)) & (self.data.parameter == "efficiency") @@ -690,7 +663,7 @@ def get_efficiency(self, sector: Optional[str] = None): slicer = self.data.parameter == "efficiency" return self.data[slicer][self.columns] - def get_fixed_costs(self, sector: Optional[str] = None): + def _get_fixed_costs(self, sector: str | None = None): sector = self._check_sector(sector) if sector: slicer = (self.data.technology.str.startswith(sector)) & (self.data.parameter == "FOM") diff --git a/workflow/scripts/build_shapes.py b/workflow/scripts/build_shapes.py index 03dccf58..d3272837 100644 --- a/workflow/scripts/build_shapes.py +++ b/workflow/scripts/build_shapes.py @@ -1,55 +1,12 @@ -# BY PyPSA-USA Authors -""" -**Description** - -The `build_shapes` rule builds the GIS shape files for the balancing authorities and offshore regions. The regions are only built for the {interconnect} wildcard. Because balancing authorities often overlap- we modify the GIS dataset developed by [Breakthrough Energy Sciences](https://breakthrough-energy.github.io/docs/). - -**Relevant Settings** - -.. code:: yaml - - interconnect: - -**Inputs** - -- ``breakthrough_network/base_grid/zone.csv``: confer :ref:`base` -- ``repo_data/BA_shapes_new/Modified_BE_BA_Shapes.shp``: confer :ref:`base` -- ``repo_data/BOEM_CA_OSW_GIS/CA_OSW_BOEM_CallAreas.shp``: confer :ref:`base` - -**Outputs** - -- ``resources/country_shapes.geojson``: - - # .. image:: ../img/regions_onshore.png - # :scale: 33 % - -- ``resources/onshore_shapes.geojson``: - - # .. image:: ../img/regions_offshore.png - # :scale: 33 % - -- ``resources/offshore_shapes.geojson``: - - # .. image:: ../img/regions_offshore.png - # :scale: 33 % - -- ``resources/state_boundaries.geojson``: - - # .. image:: ../img/regions_offshore.png - # :scale: 33 % -""" - +"""The `build_shapes` rule builds the GIS shape files for the balancing authorities and offshore regions. The regions are only built for the {interconnect} wildcard.""" import logging -from typing import List -import cartopy.crs as ccrs import cartopy.io.shapereader as shpreader import geopandas as gpd -import matplotlib.pyplot as plt import pandas as pd from _helpers import configure_logging, mock_snakemake -from constants import * +from constants import GPS_CRS, MEASUREMENT_CRS from shapely.geometry import MultiPolygon @@ -61,11 +18,13 @@ def filter_small_polygons_gpd( Filters out polygons within each MultiPolygon in a GeoSeries that are smaller than a specified area. - Parameters: + Parameters + ---------- geo_series (gpd.GeoSeries): A GeoSeries containing MultiPolygon geometries. min_area (float): The minimum area threshold. - Returns: + Returns + ------- gpd.GeoSeries: A GeoSeries with MultiPolygons filtered based on the area criterion. """ # Explode the MultiPolygons into individual Polygons @@ -88,9 +47,7 @@ def load_na_shapes( state_shape: str = "admin_1_states_provinces_lakes", countries: list = ["US"], ) -> gpd.GeoDataFrame: - """ - Creates geodataframe of north america. - """ + """Creates geodataframe of north america.""" shpfilename = shpreader.natural_earth( resolution="10m", category="cultural", @@ -122,12 +79,9 @@ def filter_shapes( data: gpd.GeoDataFrame, zones: pd.DataFrame, interconnect: str = "western", - add_regions: list = None, + add_regions: list | None = None, ) -> gpd.GeoDataFrame: - """ - Filters breakthrough energy zone data by interconnect region. - """ - + """Filters breakthrough energy zone data by interconnect region.""" if interconnect not in ("western", "texas", "eastern", "usa"): logger.warning(f"Interconnector of {interconnect} is not valid") @@ -140,9 +94,7 @@ def filter_shapes( def load_ba_shape(ba_file: str) -> gpd.GeoDataFrame: - """ - Loads balancing authority into a geodataframe. - """ + """Loads balancing authority into a geodataframe.""" gdf = gpd.read_file(ba_file) gdf = gdf.rename(columns={"BA": "name"}) return gdf.to_crs(4326) @@ -165,9 +117,7 @@ def combine_offshore_shapes( interconnect: gpd.GeoDataFrame, buffer, ) -> gpd.GeoDataFrame: - """ - Conbines offshore shapes. - """ + """Conbines offshore shapes.""" if source == "ca_osw": offshore = _dissolve_boem(shape) elif source == "eez": @@ -179,11 +129,9 @@ def combine_offshore_shapes( def _dissolve_boem(shape: gpd.GeoDataFrame): - """ - Dissolves offshore shapes from boem. - """ + """Dissolves offshore shapes from boem.""" shape_split = shape.dissolve().explode(index_parts=False) - shape_split.rename(columns={"Lease_Name": "name"}, inplace=True) + shape_split = shape_split.rename(columns={"Lease_Name": "name"}) shape_split.name = ["Morro_Bay", "Humboldt"] return shape_split @@ -213,9 +161,7 @@ def trim_states_to_interconnect( gdf_nerc: gpd.GeoDataFrame, interconnect: str, ): - """ - Trims states to only include portions of states in NERC Interconnect. - """ + """Trims states to only include portions of states in NERC Interconnect.""" if interconnect == "western": gdf_nerc_f = gdf_nerc[gdf_nerc.OBJECTID.isin([3, 8, 9])] gdf_states = gpd.overlay( @@ -240,7 +186,7 @@ def trim_shape_to_interconnect( gdf: gpd.GeoDataFrame, interconnect_regions: gpd.GeoDataFrame, interconnect: str, - exclusion_dict: dict = None, + exclusion_dict: dict | None = None, ): """ Trim Shapes to only portions inside NERC/State Region to ensure renewables @@ -421,8 +367,6 @@ def main(snakemake): if __name__ == "__main__": logger = logging.getLogger(__name__) if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake("build_shapes", interconnect="eastern") configure_logging(snakemake) main(snakemake) diff --git a/workflow/scripts/build_stock_data.py b/workflow/scripts/build_stock_data.py index 42806c39..e26fb1e0 100644 --- a/workflow/scripts/build_stock_data.py +++ b/workflow/scripts/build_stock_data.py @@ -1,28 +1,24 @@ -""" -Builds End-Use initial stock data. -""" +"""Builds End-Use initial stock data.""" # to supress warning in water heat xlsx # UserWarning: Print area cannot be set to Defined name: data!$A:$J -import warnings - -warnings.simplefilter("ignore") - import logging +import warnings from pathlib import Path -from typing import Optional +from typing import ClassVar import numpy as np import pandas as pd import pypsa -from build_heat import combined_heat -from constants import STATE_2_CODE, STATES_CENSUS_DIVISION_MAPPER, STATES_CENSUS_MAPPER +from constants import CODE_2_STATE, STATES_CENSUS_DIVISION_MAPPER, STATES_CENSUS_MAPPER from constants_sector import RoadTransport, SecCarriers, SecNames, Transport from eia import TransportationFuelUse +warnings.simplefilter("ignore") + + logger = logging.getLogger(__name__) -CODE_2_STATE = {v: k for k, v in STATE_2_CODE.items()} """ Hardcoded build years based on building year constructed starting from 2000 https://www.eia.gov/consumption/commercial/data/2018/bc/pdf/b6.pdf @@ -72,7 +68,7 @@ class Recs: - Highlights for water heating in U.S. homes by state, 2020 """ - file_mapper = { + FILE_MAPPER: ClassVar[dict[str, str]] = { "aircon_stock": "State Air Conditioning", "space_heat_stock": "State Space Heating", "water_heat": "State Water Heating", @@ -80,7 +76,7 @@ class Recs: "water_heat_fuel": "State Water Heating Fuels", } - column_mapper = { + COLUMN_MAPPER: ClassVar[dict[str, str]] = { "aircon_stock": { "Unnamed: 1": "total_stock", "Uses air-conditioning equipment": "ac_stock", @@ -144,10 +140,8 @@ def _valid_name(s: str): ] def _read(self, stock: str) -> pd.DataFrame: - """ - Reads in the data. - """ - f = Path(self.dir, f"{self.file_mapper[stock]}.xlsx") + """Reads in the data.""" + f = Path(self.dir, f"{self.FILE_MAPPER[stock]}.xlsx") df = ( pd.read_excel( @@ -157,7 +151,7 @@ def _read(self, stock: str) -> pd.DataFrame: index_col=0, skipfooter=2, ) - .rename(columns=self.column_mapper[stock], index={"All homes": "USA"}) + .rename(columns=self.COLUMN_MAPPER[stock], index={"All homes": "USA"}) .dropna() .astype(str) # avoids downcasting object dtype error .replace("Q", np.nan) # > 50% RSE or n < 10 @@ -168,9 +162,7 @@ def _read(self, stock: str) -> pd.DataFrame: return df def _get_data(self, stock: str, fillna: bool = False) -> pd.DataFrame: - """ - Formats data. - """ + """Formats data.""" self._valid_name(stock) df = self._read(stock) if fillna: @@ -179,23 +171,17 @@ def _get_data(self, stock: str, fillna: bool = False) -> pd.DataFrame: return df def get_percentage(self, stock: str) -> pd.DataFrame: - """ - Gets percentage of stock per state. - """ + """Gets percentage of stock per state.""" df = self._get_data(stock, fillna=True) return df[[x for x in df.columns if x.endswith("percent")]] def get_absolute(self, stock: str) -> pd.DataFrame: - """ - Gets raw stock values per state. - """ + """Gets raw stock values per state.""" df = self._get_data(stock, fillna=False) return df[[x for x in df.columns if x.endswith("stock")]] def _fill_missing(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Fills missing values with USA average. - """ + """Fills missing values with USA average.""" columns = df.columns for col in columns: df[col] = df[col].fillna(df.at["USA", col]) @@ -212,27 +198,27 @@ class Cecs: # Percentages from Page 7 from Table C7 at # https://www.eia.gov/consumption/commercial/data/2018/index.php?view=consumption#major - usa_avg_space_heating = { + USA_AVG_SPACE_HEATING: ClassVar[dict:float] = { "Electricity": 0.313, # 1856 / 5918 "Natural gas": 0.396, # 2344 / 5918 "Fuel oil": 0.038, # 222 / 5918 "District heat": 0.013, # 78 / 5918 "Propane": 0.057, # 338 / 5918 } - usa_avg_water_heating = { + USA_AVG_WATER_HEATING: ClassVar[dict:float] = { "Electricity": 0.471, # 2785 / 5918 "Natural gas": 0.319, # 1885 / 5918 "Fuel oil": 0.012, # 72 / 5918 "District heat": 0.006, # 38 / 5918 "Propane": 0.025, # 145 / 5918 } - usa_avg_cooling = { + USA_AVG_COOLING: ClassVar[dict:float] = { "Electricity": 0.775, # 4584 / 5918 "Natural gas": 0.0, # 4 / 5918 "District chilled": 0.01, # 55 / 5918 } - census_name_map = { + CENSUS_NAME_MAP: ClassVar[dict:float] = { "NewEngland": "new_england", "Middle Atlantic": "mid_atlantic", "EastNorthCentral": "east_north_central", @@ -255,16 +241,12 @@ def _valid_name(s: str): assert s in ["aircon_fuel", "space_heat_fuel", "water_heat_fuel"] def _read(self, fuel: str) -> pd.DataFrame: - """ - Reads in the data. - """ - + """Reads in the data.""" skip_rows = self._get_skip_rows(fuel) dfs = [] for f_name in ("c7", "c8", "c9"): - f = Path(self.dir, f"{f_name}.xlsx") df = ( @@ -283,7 +265,7 @@ def _read(self, fuel: str) -> pd.DataFrame: .astype(float) ) df = df.rename(columns={x: x.replace("\n", "") for x in df.columns}).rename( - columns=self.census_name_map, + columns=self.CENSUS_NAME_MAP, ) dfs.append(df) @@ -291,10 +273,7 @@ def _read(self, fuel: str) -> pd.DataFrame: @staticmethod def _get_skip_rows(fuel: str) -> list[int]: - """ - Gets rows to skip when reading in data files. - """ - + """Gets rows to skip when reading in data files.""" keep_rows = [3, 4] match fuel: @@ -317,9 +296,7 @@ def _get_data( fillna: bool = False, by_state: bool = True, ) -> pd.DataFrame: - """ - Formats data. - """ + """Formats data.""" self._valid_name(fuel) data = self._read(fuel) @@ -341,10 +318,7 @@ def _get_data( return df def _expand_by_state(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Maps census division to state. - """ - + """Maps census division to state.""" states = pd.DataFrame(index=df.index) for state, census_division in self.state_2_census_division.items(): try: @@ -354,16 +328,14 @@ def _expand_by_state(self, df: pd.DataFrame) -> pd.DataFrame: return states def _fill_missing(self, df: pd.DataFrame, fuel: str) -> pd.DataFrame: - """ - Fills missing values with USA average. - """ + """Fills missing values with USA average.""" match fuel: case "space_heat_fuel": - fill_values = self.usa_avg_space_heating + fill_values = self.USA_AVG_SPACE_HEATING case "water_heat_fuel": - fill_values = self.usa_avg_water_heating + fill_values = self.USA_AVG_WATER_HEATING case "aircon_fuel": - fill_values = self.usa_avg_cooling + fill_values = self.USA_AVG_COOLING case _: raise NotImplementedError @@ -377,15 +349,11 @@ def _fill_missing(self, df: pd.DataFrame, fuel: str) -> pd.DataFrame: """ def get_percentage(self, fuel: str, by_state: bool = True) -> pd.DataFrame: - """ - Gets percentage of stock at a national level. - """ + """Gets percentage of stock at a national level.""" return self._get_data(fuel, as_percent=True, by_state=by_state, fillna=True).mul(100).round(2) def get_absolute(self, fuel: str, by_state: bool = True) -> pd.DataFrame: - """ - Gets raw stock values at national level. - """ + """Gets raw stock values at national level.""" return self._get_data(fuel, as_percent=False, by_state=by_state, fillna=False) @@ -397,7 +365,6 @@ def _already_retired(build_year: int, lifetime: int, year: int) -> bool: instead of '<' to follow pypsa convention. See folling link https://pypsa.readthedocs.io/en/latest/examples/multi-investment-optimisation.html#Multi-Investment-Optimization """ - if (build_year + lifetime) <= year: return True else: @@ -407,7 +374,7 @@ def _already_retired(build_year: int, lifetime: int, year: int) -> bool: def _get_marginal_cost( n: pypsa.Network, names: list[str], - fuel: Optional[str] = None, + fuel: str | None = None, ) -> float | pd.DataFrame: """ Gets marginal cost from the investable link. @@ -416,7 +383,6 @@ def _get_marginal_cost( Else, returns the static cost associated with the first name in the list """ - df = pd.DataFrame(index=n.links_t.marginal_cost.index) try: @@ -443,7 +409,6 @@ def get_residential_stock(root_dir: str, load: str) -> pd.DataFrame: Pass folder of data from the residential energy consumption survey """ - recs = Recs(root_dir) match load: @@ -468,10 +433,7 @@ def get_residential_stock(root_dir: str, load: str) -> pd.DataFrame: def get_commercial_stock(root_dir: Path | str, fuel: str) -> pd.DataFrame: - """ - Gets commercial fuel values as a percetange. - """ - + """Gets commercial fuel values as a percetange.""" cecs = Cecs(root_dir) match fuel: @@ -499,7 +461,6 @@ def get_transport_stock(api: str, year: int) -> pd.DataFrame: """ def _get_data(api: str, year: int) -> pd.DataFrame: - dfs = [] for vehicle in ("light_duty", "med_duty", "heavy_duty", "bus"): @@ -527,9 +488,7 @@ def _get_data(api: str, year: int) -> pd.DataFrame: return pd.concat(dfs, axis=1).fillna(0) def get_percentage(api: str, year: int) -> pd.DataFrame: - """ - Gets percentage of stock at a national level. - """ + """Gets percentage of stock at a national level.""" df = get_absolute(api, year) for col in df.columns: @@ -540,9 +499,7 @@ def get_percentage(api: str, year: int) -> pd.DataFrame: return df.mul(100).round(2) def get_absolute(api: str, year: int) -> pd.DataFrame: - """ - Gets raw stock values at national level. - """ + """Gets raw stock values at national level.""" return _get_data(api, year).round(2) df = get_percentage(api, year).T @@ -567,7 +524,6 @@ def get_absolute(api: str, year: int) -> pd.DataFrame: def get_industrial_stock(xlsx: str) -> pd.DataFrame: - def _get_census_to_state(data: dict[str, str]) -> dict[str, list[str]]: mapper = {} for state, census in data.items(): @@ -581,7 +537,6 @@ def _get_census_to_state(data: dict[str, str]) -> dict[str, list[str]]: return mapper def _get_data(xlsx: str) -> pd.DataFrame: - cols_renamed = { "Code(a)": "NAICS", "Electricity(a)": "electricity", @@ -601,7 +556,6 @@ def _get_data(xlsx: str) -> pd.DataFrame: ) def _format_raw_data(df: pd.DataFrame) -> pd.DataFrame: - slicer = [ "TOTAL FUEL CONSUMPTION", "Indirect Uses-Boiler Fuel", @@ -685,7 +639,7 @@ def _get_brownfield_template_df( n: pypsa.Network, fuel: str, sector: str, - subsector: Optional[str] = None, + subsector: str | None = None, ) -> None: """ Gets a dataframe in the following form. @@ -697,7 +651,6 @@ def _get_brownfield_template_df( | 2 | p610 0 com-urban-heat | p610 0 | com-urban-heat | TX | 1999.486 | | ... | ... | ... | ... | ... | ... | """ - assert fuel in [x.value for x in SecCarriers] if subsector: @@ -720,7 +673,7 @@ def _get_brownfield_template_df( def _get_endogenous_transport_brownfield_template_df( n: pypsa.Network, fuel: str, - veh_mode: Optional[str] = None, + veh_mode: str | None = None, ) -> pd.DataFrame: """ Gets a dataframe in the following form. @@ -732,7 +685,6 @@ def _get_endogenous_transport_brownfield_template_df( | 2 | p610 0 trn-veh-med | p610 0 | trn-veh-med | TX | 1999.486 | | ... | ... | ... | ... | ... | ... | """ - sector = SecNames.TRANSPORT.value subsector = Transport.ROAD.value if veh_mode: @@ -766,9 +718,7 @@ def add_road_transport_brownfield( costs: pd.DataFrame, exogenous_transport: bool, ) -> None: - """ - Adds existing stock to transportation sector. - """ + """Adds existing stock to transportation sector.""" def add_brownfield_ev( n: pypsa.Network, @@ -777,7 +727,6 @@ def add_brownfield_ev( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - match vehicle_mode: case RoadTransport.LIGHT.value: costs_name = "Light Duty Cars BEV 300" @@ -818,7 +767,6 @@ def add_brownfield_ev( start_year = start_year if start_year >= 2023 else 2023 for period in range(1, periods + 1): - build_year = start_year - period * step percent = step / lifetime # given as a ratio @@ -852,7 +800,6 @@ def add_brownfield_lpg( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - # existing stock efficiencies taken from 2016 EFS Technology data # This is consistent with where future efficiencies are taken from # https://data.nrel.gov/submissions/93 @@ -914,7 +861,6 @@ def add_brownfield_lpg( # start_year = start_year if start_year >= 2023 else 2023 for period in range(1, periods + 1): - build_year = start_year - period * step percent = step / lifetime # given as a ratio @@ -933,7 +879,7 @@ def add_brownfield_lpg( mc = mc.rename(columns={v: k for k, v in name_mapper.items()}) else: mc = marginal_cost - assert isinstance(mc, (float, int)) + assert isinstance(mc, float | int) n.madd( "Link", @@ -959,7 +905,6 @@ def add_brownfield_lpg( lpg_fuel = SecCarriers.LPG.value if exogenous_transport: - veh_name = f"{veh_type}-{vehicle_mode}" # ev brownfield @@ -983,14 +928,21 @@ def add_brownfield_lpg( add_brownfield_lpg(n, df, vehicle_mode, ratios, costs) else: - # elec brownfield - df = _get_endogenous_transport_brownfield_template_df(n, fuel=elec_fuel, veh_mode=vehicle_mode) + df = _get_endogenous_transport_brownfield_template_df( + n, + fuel=elec_fuel, + veh_mode=vehicle_mode, + ) df["p_nom"] = df.p_max.mul(growth_multiplier) add_brownfield_ev(n, df, vehicle_mode, ratios, costs) # lpg brownfield - df = _get_endogenous_transport_brownfield_template_df(n, fuel=lpg_fuel, veh_mode=vehicle_mode) + df = _get_endogenous_transport_brownfield_template_df( + n, + fuel=lpg_fuel, + veh_mode=vehicle_mode, + ) df["p_nom"] = df.p_max.mul(growth_multiplier) add_brownfield_lpg(n, df, vehicle_mode, ratios, costs) @@ -1002,11 +954,9 @@ def add_service_brownfield( growth_multiplier: float, ratios: pd.DataFrame, costs: pd.DataFrame, - simple_storage: Optional[bool] = None, # for water heating only + simple_storage: bool | None = None, # for water heating only ) -> None: - """ - Adds existing stock to res/com sector. - """ + """Adds existing stock to res/com sector.""" def add_brownfield_gas_furnace( n: pypsa.Network, @@ -1015,7 +965,6 @@ def add_brownfield_gas_furnace( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - df = template.copy() # existing efficiency values taken from: @@ -1050,7 +999,6 @@ def add_brownfield_gas_furnace( # start_year if start_year >= 2023 else 2023 for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1066,7 +1014,7 @@ def add_brownfield_gas_furnace( mc = mc.rename(columns={v: k for k, v in name_mapper.items()}) else: mc = 0 - assert isinstance(mc, (float, int)) + assert isinstance(mc, float | int) n.madd( "Link", @@ -1092,7 +1040,6 @@ def add_brownfield_oil_furnace( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - df = template.copy() # existing efficiency values taken from: @@ -1127,7 +1074,6 @@ def add_brownfield_oil_furnace( # start_year = start_year if start_year >= 2023 else 2023 for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1143,7 +1089,7 @@ def add_brownfield_oil_furnace( mc = mc.rename(columns={v: k for k, v in name_mapper.items()}) else: mc = marginal_cost - assert isinstance(mc, (float, int)) + assert isinstance(mc, float | int) n.madd( "Link", @@ -1169,7 +1115,6 @@ def add_brownfield_elec_furnace( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - df = template.copy() # existing efficiency values taken from: @@ -1198,7 +1143,6 @@ def add_brownfield_elec_furnace( # start_year = start_year if start_year >= 2023 else 2023 for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1228,9 +1172,7 @@ def add_brownfield_heat_pump( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - """ - Need to pull in existing COP profiles. - """ + """Need to pull in existing COP profiles.""" pass def add_brownfield_aircon( @@ -1266,7 +1208,6 @@ def add_brownfield_aircon( # start_year = start_year if start_year >= 2023 else 2023 for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1297,7 +1238,6 @@ def add_brownfield_water_heater_simple_storage( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - # existing efficiency values taken from: # https://www.eia.gov/analysis/studies/buildings/equipcosts/pdf/full.pdf @@ -1346,7 +1286,6 @@ def add_brownfield_water_heater_simple_storage( start_year = n.investment_periods[0] for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1362,7 +1301,7 @@ def add_brownfield_water_heater_simple_storage( mc = mc.rename(columns={v: k for k, v in name_mapper.items()}) else: mc = 0 - assert isinstance(mc, (float, int)) + assert isinstance(mc, float | int) n.madd( "Link", @@ -1388,7 +1327,6 @@ def add_brownfield_water_heater( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - # existing efficiency values taken from: # https://www.eia.gov/analysis/studies/buildings/equipcosts/pdf/full.pdf @@ -1436,7 +1374,6 @@ def add_brownfield_water_heater( start_year = n.investment_periods[0] for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1534,9 +1471,7 @@ def add_industrial_brownfield( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - """ - Adds existing stock to industrial sector. - """ + """Adds existing stock to industrial sector.""" def add_brownfield_gas_furnace( n: pypsa.Network, @@ -1544,7 +1479,6 @@ def add_brownfield_gas_furnace( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - sector = SecNames.INDUSTRY.value df = template.copy() @@ -1570,7 +1504,6 @@ def add_brownfield_gas_furnace( start_year = n.investment_periods[0] for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1586,7 +1519,7 @@ def add_brownfield_gas_furnace( mc = mc.rename(columns={v: k for k, v in name_mapper.items()}) else: mc = marginal_cost - assert isinstance(mc, (float, int)) + assert isinstance(mc, float | int) n.madd( "Link", @@ -1619,7 +1552,6 @@ def add_brownfield_coal_furnace( ratios: pd.DataFrame, costs: pd.DataFrame, ) -> None: - sector = SecNames.INDUSTRY.value df = template.copy() @@ -1646,7 +1578,6 @@ def add_brownfield_coal_furnace( start_year = n.investment_periods[0] for build_year, percent in installed_capacity.items(): - if _already_retired(build_year, lifetime, start_year): continue @@ -1662,7 +1593,7 @@ def add_brownfield_coal_furnace( mc = mc.rename(columns={v: k for k, v in name_mapper.items()}) else: mc = marginal_cost - assert isinstance(mc, (float, int)) + assert isinstance(mc, float | int) n.madd( "Link", diff --git a/workflow/scripts/build_temperature_profiles.py b/workflow/scripts/build_temperature_profiles.py index 3f85927a..67f5e88a 100644 --- a/workflow/scripts/build_temperature_profiles.py +++ b/workflow/scripts/build_temperature_profiles.py @@ -1,6 +1,4 @@ -""" -Build time series for air and soil temperatures per clustered model region. -""" +"""Build time series for air and soil temperatures per clustered model region.""" import atlite import geopandas as gpd @@ -32,12 +30,12 @@ clustered_regions = gpd.read_file(snakemake.input.regions_onshore).set_index("name").buffer(0).squeeze() - I = cutout.indicatormatrix(clustered_regions) + indicator_matrix = cutout.indicatormatrix(clustered_regions) pop_layout = xr.open_dataarray(snakemake.input.pop_layout) stacked_pop = pop_layout.stack(spatial=("y", "x")) - M = I.T.dot(np.diag(I.dot(stacked_pop))) + M = indicator_matrix.T.dot(np.diag(indicator_matrix.dot(stacked_pop))) nonzero_sum = M.sum(axis=0, keepdims=True) nonzero_sum[nonzero_sum == 0.0] = 1.0 diff --git a/workflow/scripts/build_transportation.py b/workflow/scripts/build_transportation.py index e590cfb2..741efffd 100644 --- a/workflow/scripts/build_transportation.py +++ b/workflow/scripts/build_transportation.py @@ -1,17 +1,12 @@ -""" -Module for building transportation infrastructure. -""" +"""Module for building transportation infrastructure.""" import logging -from typing import Any, Optional +from typing import Any import numpy as np import pandas as pd import pypsa from build_heat import _get_dynamic_marginal_costs, get_link_marginal_costs - -logger = logging.getLogger(__name__) - from constants_sector import ( AirTransport, BoatTransport, @@ -20,6 +15,8 @@ Transport, ) +logger = logging.getLogger(__name__) + def build_transportation( n: pypsa.Network, @@ -29,15 +26,12 @@ def build_transportation( rail: bool = True, boat: bool = True, dynamic_pricing: bool = False, - eia: Optional[str] = None, # for dynamic pricing - year: Optional[int] = None, # for dynamic pricing - must_run_evs: Optional[bool] = None, # for endogenous EV investment - dr_config: Optional[dict[str, Any]] = None, + eia: str | None = None, # for dynamic pricing + year: int | None = None, # for dynamic pricing + must_run_evs: bool | None = None, # for endogenous EV investment + dr_config: dict[str, Any] | None = None, ) -> None: - """ - Main funtion to interface with. - """ - + """Main funtion to interface with.""" road_suffix = Transport.ROAD.value for fuel in ("elec", "lpg"): @@ -96,10 +90,7 @@ def add_ev_infrastructure( n: pypsa.Network, vehicle: str, ) -> None: - """ - Adds bus that all EVs attach to at a node level. - """ - + """Adds bus that all EVs attach to at a node level.""" nodes = n.buses[n.buses.carrier == "AC"] n.madd( @@ -131,12 +122,9 @@ def add_ev_infrastructure( def add_lpg_infrastructure( n: pypsa.Network, vehicle: str, - costs: Optional[pd.DataFrame] = None, + costs: pd.DataFrame | None = None, ) -> None: - """ - Adds lpg connections for vehicle type. - """ - + """Adds lpg connections for vehicle type.""" nodes = n.buses[n.buses.carrier == "AC"] n.madd( @@ -177,8 +165,7 @@ def add_lpg_infrastructure( def add_transport_dr(n: pypsa.Network, vehicle: str, dr_config: dict[str, Any]) -> None: - """Attachs DR infrastructure at load location""" - + """Attachs DR infrastructure at load location.""" shift = dr_config.get("shift", 0) marginal_cost_storage = dr_config.get("marginal_cost", 0) @@ -320,7 +307,6 @@ def add_elec_vehicle( - Light Duty Trucks PHEV 50 - Medium Duty Trucks BEV """ - match mode: case RoadTransport.LIGHT.value: costs_name = "Light Duty Cars BEV 300" @@ -372,7 +358,7 @@ def add_lpg_vehicle( vehicle: str, mode: str, costs: pd.DataFrame, - marginal_cost: Optional[pd.DataFrame | float] = None, + marginal_cost: pd.DataFrame | float | None = None, ) -> None: """ Adds electric vehicle to the network. @@ -384,7 +370,6 @@ def add_lpg_vehicle( - Heavy Duty Trucks ICEV - Buses ICEV """ - match mode: case RoadTransport.LIGHT.value: costs_name = "Light Duty Cars ICEV" @@ -421,7 +406,7 @@ def add_lpg_vehicle( if isinstance(marginal_cost, pd.DataFrame): assert "state" in vehicles.columns mc = get_link_marginal_costs(n, vehicles, marginal_cost) - elif isinstance(marginal_cost, (int, float)): + elif isinstance(marginal_cost, int | float): mc = marginal_cost elif isinstance(marginal_cost, None): mc = 0 @@ -455,7 +440,6 @@ def add_air( NOTE: COSTS ARE CURRENTLY HARD CODED IN FROM 2030. Look at travel indicators here: - https://www.eia.gov/outlooks/aeo/data/browser/ """ - # Assumptions from https://www.nrel.gov/docs/fy18osti/70485.pdf wh_per_gallon = 33700 # footnote 24 @@ -468,7 +452,7 @@ def add_air( loads = n.loads[(n.loads.carrier.str.contains("trn-")) & (n.loads.carrier.str.contains(f"{vehicle}-{mode}"))] vehicles = pd.DataFrame(index=loads.bus) - vehicles.index = vehicles.index.map(lambda x: x.split(f" trn-")[0]) + vehicles.index = vehicles.index.map(lambda x: x.split(" trn-")[0]) vehicles["bus0"] = vehicles.index + f" trn-lpg-{vehicle}" vehicles["bus1"] = vehicles.index + f" trn-lpg-{vehicle}-{mode}" vehicles["carrier"] = f"trn-lpg-{vehicle}-{mode}" @@ -499,7 +483,6 @@ def add_boat( NOTE: COSTS ARE CURRENTLY HARD CODED IN FROM 2030. Look at travel indicators here: - https://www.eia.gov/outlooks/aeo/data/browser/ """ - # efficiency = costs.at[costs_name, "efficiency"] / 1000 # base efficiency is 5 ton miles per thousand Btu # 1 kBTU / 0.000293 MWh @@ -510,7 +493,7 @@ def add_boat( loads = n.loads[(n.loads.carrier.str.contains("trn-")) & (n.loads.carrier.str.contains(f"{vehicle}-{mode}"))] vehicles = pd.DataFrame(index=loads.bus) - vehicles.index = vehicles.index.map(lambda x: x.split(f" trn-")[0]) + vehicles.index = vehicles.index.map(lambda x: x.split(" trn-")[0]) vehicles["bus0"] = vehicles.index + f" trn-lpg-{vehicle}" vehicles["bus1"] = vehicles.index + f" trn-lpg-{vehicle}-{mode}" vehicles["carrier"] = f"trn-lpg-{vehicle}-{mode}" @@ -541,7 +524,6 @@ def add_rail( NOTE: COSTS ARE CURRENTLY HARD CODED IN FROM 2030. Look at travel indicators here: - https://www.eia.gov/outlooks/aeo/data/browser/ """ - match mode: case RailTransport.SHIPPING.value: # efficiency = costs.at[costs_name, "efficiency"] / 1000 @@ -566,7 +548,7 @@ def add_rail( loads = n.loads[(n.loads.carrier.str.contains("trn-")) & (n.loads.carrier.str.contains(f"{vehicle}-{mode}"))] vehicles = pd.DataFrame(index=loads.bus) - vehicles.index = vehicles.index.map(lambda x: x.split(f" trn-")[0]) + vehicles.index = vehicles.index.map(lambda x: x.split(" trn-")[0]) vehicles["bus0"] = vehicles.index + f" trn-lpg-{vehicle}" vehicles["bus1"] = vehicles.index + f" trn-lpg-{vehicle}-{mode}" vehicles["carrier"] = f"trn-lpg-{vehicle}-{mode}" @@ -586,8 +568,7 @@ def add_rail( def _create_endogenous_buses(n: pypsa.Network) -> None: - """Creats new bus for grouped endogenous vehicle load""" - + """Creats new bus for grouped endogenous vehicle load.""" buses = n.buses[ n.buses.carrier.str.startswith("trn") & n.buses.carrier.str.contains("veh") @@ -619,12 +600,11 @@ def _create_endogenous_buses(n: pypsa.Network) -> None: def _create_endogenous_loads(n: pypsa.Network) -> None: - """Creates aggregated vehicle load + """Creates aggregated vehicle load. - Removes LPG load - Transfers EV load to central bus """ - loads = n.loads[n.loads.carrier.str.startswith("trn") & n.loads.carrier.str.contains("veh")] to_remove = [x for x in loads.index if "-lpg-" in x] to_shift = [x for x in loads.index if "-elec-" in x] @@ -645,28 +625,34 @@ def _create_endogenous_loads(n: pypsa.Network) -> None: # transfer elec load buses to general bus n.loads.loc[new_names, "bus"] = n.loads.loc[new_names, "bus"].map(new_name_mapper) - n.loads.loc[new_names, "carrier"] = n.loads.loc[new_names, "carrier"].map(lambda x: x.replace("trn-elec-", "trn-")) - n.loads.loc[new_names, "carrier"] = n.loads.loc[new_names, "carrier"].map(lambda x: x.replace("trn-lpg-", "trn-")) + n.loads.loc[new_names, "carrier"] = n.loads.loc[new_names, "carrier"].map( + lambda x: x.replace("trn-elec-", "trn-"), + ) + n.loads.loc[new_names, "carrier"] = n.loads.loc[new_names, "carrier"].map( + lambda x: x.replace("trn-lpg-", "trn-"), + ) def _create_endogenous_links(n: pypsa.Network) -> None: - """Creates links for LPG and EV to load bus + """Creates links for LPG and EV to load bus. Just involves transfering bus1 from exogenous load bus to endogenous load bus """ - slicer = ( n.links.carrier.str.startswith("trn") & n.links.carrier.str.contains("veh") & ~n.links.carrier.str.endswith("veh") ) - n.links.loc[slicer, "bus1"] = n.links.loc[slicer, "bus1"].map(lambda x: x.replace("trn-elec-", "trn-")) - n.links.loc[slicer, "bus1"] = n.links.loc[slicer, "bus1"].map(lambda x: x.replace("trn-lpg-", "trn-")) + n.links.loc[slicer, "bus1"] = n.links.loc[slicer, "bus1"].map( + lambda x: x.replace("trn-elec-", "trn-"), + ) + n.links.loc[slicer, "bus1"] = n.links.loc[slicer, "bus1"].map( + lambda x: x.replace("trn-lpg-", "trn-"), + ) def _remove_exogenous_buses(n: pypsa.Network) -> None: - """Removes buses that are used for exogenous vehicle loads""" - + """Removes buses that are used for exogenous vehicle loads.""" # this is super awkward filtering :( buses = n.buses[ (n.buses.index.str.contains("trn-elec-veh") | n.buses.index.str.contains("trn-lpg-veh")) @@ -676,7 +662,7 @@ def _remove_exogenous_buses(n: pypsa.Network) -> None: def _constrain_charing_rates(n: pypsa.Network, must_run_evs: bool) -> None: - """Applies limits to p_min_pu/p_max_pu on links + """Applies limits to p_min_pu/p_max_pu on links. must_run_evs: True @@ -685,7 +671,6 @@ def _constrain_charing_rates(n: pypsa.Network, must_run_evs: bool) -> None: p_max_pu of both EVs and LPGs are set to match the load profile. p_min_pu is left unchanged (ie. zero) """ - links = n.links[n.links.carrier.str.contains("-veh") & ~n.links.carrier.str.endswith("-veh")] evs = links[links.carrier.str.contains("-elec-")] lpgs = links[links.carrier.str.contains("-lpg-")] @@ -721,7 +706,10 @@ def _constrain_charing_rates(n: pypsa.Network, must_run_evs: bool) -> None: n.links_t["p_max_pu"] = pd.concat([n.links_t["p_max_pu"], p_max_pu], axis=1) -def apply_endogenous_road_investments(n: pypsa.Network, must_run_evs: bool = False) -> None: +def apply_endogenous_road_investments( + n: pypsa.Network, + must_run_evs: bool = False, +) -> None: """Merges EV and LPG load into a single load. This function will do the following: @@ -754,7 +742,6 @@ def apply_exogenous_ev_policy(n: pypsa.Network, policy: pd.DataFrame) -> None: - Figure 6.3 at https://www.nrel.gov/docs/fy18osti/71500.pdf - Sheet 6.3 at https://data.nrel.gov/submissions/90 """ - vehicle_mapper = { "light_duty": RoadTransport.LIGHT.value, "med_duty": RoadTransport.MEDIUM.value, @@ -770,7 +757,6 @@ def apply_exogenous_ev_policy(n: pypsa.Network, policy: pd.DataFrame) -> None: for period in n.investment_periods: ev_share = policy.at[period, vehicle] for fuel in ("elec", "lpg"): - # adjust load value load_names = [x for x in n.loads.index if x.endswith(f"trn-{fuel}-{abrev}-{vehicle_mapper[vehicle]}")] df = n.loads_t.p_set.loc[period,][load_names] diff --git a/workflow/scripts/cluster_network.py b/workflow/scripts/cluster_network.py index faf8c4e8..6fb0e183 100644 --- a/workflow/scripts/cluster_network.py +++ b/workflow/scripts/cluster_network.py @@ -1,3 +1,5 @@ +"""Cluster_network aggregates the outputs of simplify_network, and transforms the network to a zonal power balance model if specified in the configuration.""" + import logging import warnings from functools import reduce @@ -16,7 +18,7 @@ update_p_nom_max, ) from add_electricity import update_transmission_costs -from constants import * +from constants import REEDS_NERC_INTERCONNECT_MAPPER from pypsa.clustering.spatial import ( busmap_by_greedy_modularity, busmap_by_hac, @@ -35,7 +37,8 @@ def normed(x): return (x / x.sum()).fillna(0.0) -def weighting_for_country(n, x): +def weighting_for_region(n, x, weighting_strategy=None): + """Calculate the weighting for internal nodes within a given region.""" conv_carriers = {"nuclear", "OCGT", "CCGT", "PHS", "hydro", "coal", "biomass"} generators = n.generators generators["carrier_base"] = generators.carrier.str.split().str[0] @@ -53,11 +56,14 @@ def weighting_for_country(n, x): load = n.loads_t.p_set.mean().groupby(n.loads.bus).sum() b_i = x.index - g = normed(gen.reindex(b_i, fill_value=0)) - l = normed(load.reindex(b_i, fill_value=0)) - w = g + l + gen_weight = normed(gen.reindex(b_i, fill_value=0)) + load_weight = normed(load.reindex(b_i, fill_value=0)) + weighting = gen_weight + load_weight + + if weighting_strategy == "population": + weighting = normed(n.buses.loc[x.index].Pd) - return (w * (100.0 / w.max())).clip(lower=1.0).astype(int) + return (weighting * (100.0 / weighting.max())).clip(lower=1.0).astype(int) def get_feature_for_hac(n, buses_i=None, feature=None): @@ -100,24 +106,24 @@ def get_feature_for_hac(n, buses_i=None, feature=None): return feature_data -def distribute_clusters(n, n_clusters, focus_weights=None, solver_name="cbc"): - """ - Determine the number of clusters per country. - """ - L = ( - n.loads_t.p_set.mean() - .groupby(n.loads.bus) - .sum() - .groupby([n.buses.country, n.buses.sub_network]) - .sum() - .pipe(normed) - ) - - N = n.buses.groupby(["country", "sub_network"]).size() +def distribute_clusters( + n, + n_clusters, + focus_weights=None, + solver_name="cbc", + weighting_strategy=None, +): + """Determine the number of clusters per region.""" + if weighting_strategy == "population": + bus_distribution_factor = n.buses.Pd + else: + bus_distribution_factor = n.loads_t.p_set.mean().groupby(n.loads.bus).sum() + factors = bus_distribution_factor.groupby([n.buses.country, n.buses.sub_network]).sum().pipe(normed) + n_subnetwork_nodes = n.buses.groupby(["country", "sub_network"]).size() assert ( - n_clusters >= len(N) and n_clusters <= N.sum() - ), f"Number of clusters must be {len(N)} <= n_clusters <= {N.sum()} for this selection of countries." + n_clusters >= len(n_subnetwork_nodes) and n_clusters <= n_subnetwork_nodes.sum() + ), f"Number of clusters must be {len(n_subnetwork_nodes)} <= n_clusters <= {n_subnetwork_nodes.sum()} for this selection of countries." if focus_weights is not None: total_focus = sum(list(focus_weights.values())) @@ -125,28 +131,28 @@ def distribute_clusters(n, n_clusters, focus_weights=None, solver_name="cbc"): assert total_focus <= 1.0, "The sum of focus weights must be less than or equal to 1." for country, weight in focus_weights.items(): - L[country] = weight / len(L[country]) + factors[country] = weight / len(factors[country]) - remainder = [c not in focus_weights.keys() for c in L.index.get_level_values("country")] - L[remainder] = L.loc[remainder].pipe(normed) * (1 - total_focus) + remainder = [c not in focus_weights.keys() for c in factors.index.get_level_values("country")] + factors[remainder] = factors.loc[remainder].pipe(normed) * (1 - total_focus) logger.warning("Using custom focus weights for determining number of clusters.") assert np.isclose( - L.sum(), + factors.sum(), 1.0, rtol=1e-3, - ), f"Country weights L must sum up to 1.0 when distributing clusters. Is {L.sum()}." + ), f"Country weights L must sum up to 1.0 when distributing clusters. Is {factors.sum()}." m = po.ConcreteModel() def n_bounds(model, *n_id): - return (1, N[n_id]) + return (1, n_subnetwork_nodes[n_id]) - m.n = po.Var(list(L.index), bounds=n_bounds, domain=po.Integers) + m.n = po.Var(list(factors.index), bounds=n_bounds, domain=po.Integers) m.tot = po.Constraint(expr=(po.summation(m.n) == n_clusters)) m.objective = po.Objective( - expr=sum((m.n[i] - L.loc[i] * n_clusters) ** 2 for i in L.index), + expr=sum((m.n[i] - factors.loc[i] * n_clusters) ** 2 for i in factors.index), sense=po.minimize, ) @@ -163,7 +169,7 @@ def n_bounds(model, *n_id): results = opt.solve(m) assert results["Solver"][0]["Status"] == "ok", f"Solver returned non-optimally: {results}" - return pd.Series(m.n.get_values(), index=L.index).round().astype(int) + return pd.Series(m.n.get_values(), index=factors.index).round().astype(int) def busmap_for_n_clusters( @@ -173,6 +179,7 @@ def busmap_for_n_clusters( focus_weights=None, algorithm="kmeans", feature=None, + weighting_strategy=None, **algorithm_kwds, ): if algorithm == "kmeans": @@ -201,12 +208,10 @@ def fix_country_assignment_for_hac(n): neighbor_bus = n.lines.query( "bus0 == @disconnected_bus or bus1 == @disconnected_bus", - ).iloc[ - 0 - ][["bus0", "bus1"]] - new_country = list( - set(n.buses.loc[neighbor_bus].country) - {country}, - )[0] + ).iloc[0][["bus0", "bus1"]] + new_country = next( + iter(set(n.buses.loc[neighbor_bus].country) - {country}), + ) logger.info( f"overwriting country `{country}` of bus `{disconnected_bus}` " @@ -222,8 +227,7 @@ def fix_country_assignment_for_hac(n): if (algorithm != "hac") and (feature is not None): logger.warning( - f"Keyword argument feature is only valid for algorithm `hac`. " - f"Given feature `{feature}` will be ignored.", + f"Keyword argument feature is only valid for algorithm `hac`. Given feature `{feature}` will be ignored.", ) n.determine_network_topology() @@ -232,16 +236,18 @@ def fix_country_assignment_for_hac(n): n, n_clusters, focus_weights=focus_weights, + weighting_strategy=weighting_strategy, solver_name=solver_name, ) - - # Potentiall remove buses and lines from these corner case counties from network + # Remove buses and lines that are not part of the clustering to reconcile TAMU and ReEDS Topologies nc_set = set(n_clusters.index.get_level_values(0).unique()) bus_set = set(n.buses.country.unique()) countries_remove = list(bus_set - nc_set) buses_remove = n.buses[n.buses.country.isin(countries_remove)] if not buses_remove.empty: - logger.warning(f"Reconciling TAMU and ReEDS Topologies. \n Removing buses: {buses_remove.index}") + logger.warning( + f"Reconciling TAMU and ReEDS Topologies. \n Removing buses: {buses_remove.index}", + ) for c in n.one_port_components: component = n.df(c) rm = component[component.bus.isin(buses_remove.index)] @@ -260,8 +266,7 @@ def busmap_for_country(x): logger.debug(f"Determining busmap for country {prefix[:-1]}") if len(x) == 1: return pd.Series(prefix + "0", index=x.index) - weight = weighting_for_country(n, x) - + weight = weighting_for_region(n, x, weighting_strategy) if algorithm == "kmeans": return prefix + busmap_by_kmeans( n, @@ -307,6 +312,7 @@ def clustering_for_n_clusters( algorithm="hac", feature=None, focus_weights=None, + weighting_strategy=None, ): if not isinstance(custom_busmap, pd.Series): busmap = busmap_for_n_clusters( @@ -316,14 +322,16 @@ def clustering_for_n_clusters( focus_weights, algorithm, feature, + weighting_strategy, ) + # plot_busmap(n, busmap, 'busmap.png') else: busmap = custom_busmap line_strategies = aggregation_strategies.get("lines", dict()) generator_strategies = aggregation_strategies.get("generators", dict()) one_port_strategies = aggregation_strategies.get("one_ports", dict()) - + bus_strategies = {"Pd": "sum"} clustering = get_clustering_from_busmap( n, busmap, @@ -333,6 +341,7 @@ def clustering_for_n_clusters( line_length_factor=line_length_factor, line_strategies=line_strategies, generator_strategies=generator_strategies, + bus_strategies=bus_strategies, one_port_strategies=one_port_strategies, scale_link_capital_costs=False, ) @@ -450,69 +459,51 @@ def convert_to_transport( add_itls(buses, itls_filt, itl_cost) if itl_agg_fn: - topology_aggregation_key = list(topology_aggregation.keys())[0] - itl_agg = pd.read_csv(itl_agg_fn) - itl_agg.columns = itl_agg.columns.str.lower() - itl_agg = itl_agg.rename(columns={"transgrp": "r", "transgrpp": "rr"}) - itl_agg = itl_agg[ - itl_agg.r.isin(clustering.network.buses["country"]) | itl_agg.rr.isin(clustering.network.buses["country"]) + # Aggregating the ITLs to lower resolution + topology_aggregation_key = next(iter(topology_aggregation.keys())) + itl_lower_res = pd.read_csv(itl_agg_fn) + itl_lower_res.columns = itl_lower_res.columns.str.lower() + itl_lower_res = itl_lower_res.rename( + columns={"transgrp": "r", "transgrpp": "rr"}, + ) + + itl_lower_res = itl_lower_res[ # Filter low-res ITLs to only include those that have an end in the network + itl_lower_res.r.isin(buses["country"]) | itl_lower_res.rr.isin(buses["country"]) ] aggregated_buses = agg_busmap.rename(index=lambda x: x.strip(" 0")) non_agg_buses = buses[~buses.index.isin(agg_busmap.values)] non_agg_buses = non_agg_buses[ - non_agg_buses[topology_aggregation_key].isin(itl_agg.r) - | non_agg_buses[topology_aggregation_key].isin(itl_agg.rr) + non_agg_buses[topology_aggregation_key].isin(itl_lower_res.r) + | non_agg_buses[topology_aggregation_key].isin(itl_lower_res.rr) ] - virtual_buses = non_agg_buses.groupby(topology_aggregation_key)[non_agg_buses.columns].min() - existing_x = non_agg_buses.groupby(topology_aggregation_key).x.mean() - existing_y = non_agg_buses.groupby(topology_aggregation_key).y.mean() - agg_x = buses.loc[agg_busmap.unique()].x.mean() - agg_y = buses.loc[agg_busmap.unique()].y.mean() - virtual_buses["x"] = 0.3 * agg_x + 0.7 * existing_x - virtual_buses["y"] = 0.3 * agg_y + 0.7 * existing_y - - if not virtual_buses.empty: - clustering.network.madd( - "Bus", - virtual_buses[topology_aggregation_key], - country=virtual_buses[topology_aggregation_key], - reeds_zone="na" if topology_aggregation_key == "trans_grp" else virtual_buses["reeds_zone"], - reeds_ba="na" if topology_aggregation_key == "trans_grp" else virtual_buses["reeds_ba"], - interconnect=virtual_buses["interconnect"], - nerc_reg=virtual_buses["nerc_reg"], - trans_reg=virtual_buses["trans_reg"], - trans_grp=virtual_buses["trans_grp"], - reeds_state=virtual_buses["reeds_state"], - x=virtual_buses.x, - y=virtual_buses.y, - ) - itl_agg = itl_agg[ - itl_agg.r.isin(clustering.network.buses["country"]) - & itl_agg.rr.isin(clustering.network.buses["country"]) - & (itl_agg.r.isin(agg_busmap.values) | itl_agg.rr.isin(agg_busmap.values)) + + itl_lower_res = itl_lower_res[ # Filter low-res ITLs to only include those that have both ends in the network + itl_lower_res.r.isin(buses["country"]) + & itl_lower_res.rr.isin(buses["country"]) + & (itl_lower_res.r.isin(agg_busmap.values) | itl_lower_res.rr.isin(agg_busmap.values)) ] - buses = clustering.network.buses.copy() # itls from county to respective virtual bus - itls_to_virtual = itls[ + itls_between = itls[ # Remove ITLs internal to the aggregated buses (itls.r.isin(aggregated_buses.index) | itls.rr.isin(aggregated_buses.index)) & ~(itls.r.isin(aggregated_buses.index) & itls.rr.isin(aggregated_buses.index)) ] - itls_to_virtual = itls_to_virtual[itls_to_virtual.r.isin(buses.index) | itls_to_virtual.rr.isin(buses.index)] - # Update the itls virtual such that the existing bus : virtual bus - itls_to_virtual.loc[itls_to_virtual.r.isin(non_agg_buses.index), "rr"] = non_agg_buses.loc[ - itls_to_virtual.r[itls_to_virtual.r.isin(non_agg_buses.index)], - topology_aggregation_key, - ].values - itls_to_virtual.loc[itls_to_virtual.rr.isin(non_agg_buses.index), "r"] = non_agg_buses.loc[ - itls_to_virtual.rr[itls_to_virtual.rr.isin(non_agg_buses.index)], - topology_aggregation_key, - ].values - - itl_agg = pd.concat([itl_agg, itls_to_virtual]) + itls_between = itls_between[ # Keep only ITLS which have end in network buses + itls_between.r.isin(buses.index) | itls_between.rr.isin(buses.index) + ] + + # Instead replace the itl aggregated bus with the new agg_bus + itls_between.loc[itls_between.r.isin(aggregated_buses.index), "r"] = itls_between.r.map( + aggregated_buses, + ).dropna() + itls_between.loc[itls_between.rr.isin(aggregated_buses.index), "rr"] = itls_between.rr.map( + aggregated_buses, + ).dropna() + + itl_lower_res = pd.concat([itl_lower_res, itls_between]) itl_agg_costs = None if itl_agg_costs_fn is None else pd.concat([itl_cost, pd.read_csv(itl_agg_costs_fn)]) - add_itls(buses, itl_agg, itl_agg_costs, expansion=False) - itls = pd.concat([itls_filt, itl_agg]) + add_itls(buses, itl_lower_res, itl_agg_costs, expansion=True) + itls = pd.concat([itls_filt, itl_lower_res]) else: itls = itls_filt @@ -528,34 +519,11 @@ def convert_to_transport( f"Network configuration contains {len(disconnected_buses)} disconnected buses. ", ) - # Dissolve TX for particular zones according to default reeds configurations - clustering.network.links.loc[ - clustering.network.links.bus0.isin(["p119"]) & clustering.network.links.bus1.isin(["p122"]), - "p_nom", - ] = 1e9 - clustering.network.links.loc[ - clustering.network.links.bus1.isin(["p119"]) & clustering.network.links.bus0.isin(["p122"]), - "p_nom", - ] = 1e9 - # Dissolve p124 and p99 - if "p124" in clustering.network.buses.index and "p99" in clustering.network.buses.index: - clustering.network.add( - "Link", - "p124||p99", - bus0="p124", - bus1="p99", - p_nom=1e9, - p_nom_extendable=False, - length=0, - capital_cost=0, - efficiency=1, - carrier="AC", - ) - return clustering def cluster_regions(busmaps, input=None, output=None): + """Create new geojson files for the clustered regions.""" busmap = reduce(lambda x, y: x.map(y), busmaps[1:], busmaps[0]) for which in ("regions_onshore", "regions_offshore"): @@ -567,8 +535,7 @@ def cluster_regions(busmaps, input=None, output=None): regions_c.to_file(getattr(output, which)) -def plot_busmap_for_n_clusters(n, n_clusters, fn=None): - busmap = busmap_for_n_clusters(n, n_clusters) +def plot_busmap(n, busmap, fn=None): cs = busmap.unique() cr = sns.color_palette("hls", len(cs)) n.plot(bus_colors=busmap.map(dict(zip(cs, cr)))) @@ -619,7 +586,10 @@ def plot_busmap_for_n_clusters(n, n_clusters, fn=None): else: n_clusters = int(snakemake.wildcards.clusters) - n.generators.loc[n.generators.carrier.isin(non_aggregated_carriers), "land_region"] = n.generators.loc[ + n.generators.loc[ + n.generators.carrier.isin(non_aggregated_carriers), + "land_region", + ] = n.generators.loc[ n.generators.carrier.isin(non_aggregated_carriers), "bus", ] @@ -686,10 +656,15 @@ def plot_busmap_for_n_clusters(n, n_clusters, fn=None): itl_fn = snakemake.input.itl_county itl_cost_fn = snakemake.input.itl_costs_county case _: - raise ValueError(f"Unknown aggregation zone {topological_boundaries}") + raise ValueError( + f"Unknown aggregation zone {topological_boundaries}", + ) if topology_aggregation: - assert isinstance(topology_aggregation, dict), "topology_aggregation must be a dictionary." + assert isinstance( + topology_aggregation, + dict, + ), "topology_aggregation must be a dictionary." assert len(topology_aggregation) == 1, "topology_aggregation must contain exactly one key." # Extract the single key and value @@ -716,7 +691,7 @@ def plot_busmap_for_n_clusters(n, n_clusters, fn=None): ), f"Number of clusters must be {len(nodes_req)} for current configuration." n.buses.interconnect = n.buses.nerc_reg.map(REEDS_NERC_INTERCONNECT_MAPPER) - n.lines.drop(columns=["interconnect"], inplace=True) + n.lines = n.lines.drop(columns=["interconnect"]) clustering = clustering_for_n_clusters( n, @@ -729,6 +704,7 @@ def plot_busmap_for_n_clusters(n, n_clusters, fn=None): params.cluster_network["algorithm"], params.cluster_network["feature"], params.focus_weights, + weighting_strategy=params.cluster_network.get("weighting_strategy", None), ) if transport_model: diff --git a/workflow/scripts/constants.py b/workflow/scripts/constants.py index a9547919..e041b1a3 100644 --- a/workflow/scripts/constants.py +++ b/workflow/scripts/constants.py @@ -1,11 +1,7 @@ -""" -Module for holding global constant values. -""" +"""Module for holding global constant values.""" from enum import Enum -import pandas as pd - ########################################### # Constants for GIS Coordinate Reference Systems ########################################### @@ -162,7 +158,7 @@ "Water": "Hydro", "Bio": "Biomass", "Wind": "Wind", - "WH": "Waste", ##TODO: #33 add waste into cost data + "WH": "Waste", # TODO: #33 add waste into cost data "Geo": "Geothermal", "Uranium": "Nuclear", "Petroleum Coke": "Oil", @@ -365,6 +361,7 @@ "YT": "canada", "MX": "mexico", } +EMPTY_STATES = [x for x, y in STATES_INTERCONNECT_MAPPER.items() if not y] STATES_CENSUS_MAPPER = { "AL": "south", @@ -563,6 +560,8 @@ "Mexico": "MX", } +CODE_2_STATE = {value: key for key, value in STATE_2_CODE.items()} + REEDS_NERC_INTERCONNECT_MAPPER = { "WECC_CA": "western", "WECC_NWPP": "western", @@ -926,6 +925,8 @@ class Month(Enum): + """Enums for Month of Year.""" + JANUARY = 1 FEBRUARY = 2 MARCH = 3 diff --git a/workflow/scripts/constants_sector.py b/workflow/scripts/constants_sector.py index 85ffa60b..27c5ec39 100644 --- a/workflow/scripts/constants_sector.py +++ b/workflow/scripts/constants_sector.py @@ -1,6 +1,4 @@ -""" -Constants specific for sector coupling. -""" +"""Constants specific for sector coupling.""" from enum import Enum @@ -10,6 +8,8 @@ class SecNames(Enum): + """Three letter sector names.""" + RESIDENTIAL = "res" COMMERCIAL = "com" INDUSTRY = "ind" @@ -18,6 +18,8 @@ class SecNames(Enum): class SecCarriers(Enum): + """Sector carrier names.""" + ELECTRICITY = "elec" HEATING = "heat" COOLING = "cool" @@ -32,6 +34,8 @@ class SecCarriers(Enum): class Transport(Enum): + """Transport mode names.""" + ROAD = "veh" AIR = "air" BOAT = "boat" @@ -39,6 +43,8 @@ class Transport(Enum): class RoadTransport(Enum): + """Road transport mode names.""" + LIGHT = "lgt" MEDIUM = "med" HEAVY = "hvy" @@ -46,6 +52,8 @@ class RoadTransport(Enum): class RoadTransportUnits(Enum): + """Road transport mode units.""" + LIGHT = "kVMT" MEDIUM = "kVMT" HEAVY = "kVMT" @@ -53,28 +61,40 @@ class RoadTransportUnits(Enum): class AirTransport(Enum): + """Air transport mode names.""" + PASSENGER = "psg" class AirTransportUnits(Enum): + """Air transport mode units.""" + PASSENGER = "kSeatMiles" class RailTransport(Enum): + """Rail transport mode names.""" + PASSENGER = "psg" SHIPPING = "ship" class RailTransportUnits(Enum): + """Rail transport mode units.""" + PASSENGER = "kPassengerMiles" SHIPPING = "kTonMiles" class BoatTransport(Enum): + """Boat transport mode names.""" + SHIPPING = "ship" class BoatTransportUnits(Enum): + """Boat transport mode units.""" + SHIPPING = "kTonMiles" @@ -103,7 +123,7 @@ class BoatTransportUnits(Enum): class TransportEfficiency(Enum): - """Approximate MWh/MWh efficiencies""" + """Approximate MWh/MWh efficiencies.""" LPG = 0.20 # LLNL estimates 21 combined ELEC = 0.75 diff --git a/workflow/scripts/demand_scalers.py b/workflow/scripts/demand_scalers.py new file mode 100644 index 00000000..6a508919 --- /dev/null +++ b/workflow/scripts/demand_scalers.py @@ -0,0 +1,332 @@ +"""Demand Scalers for electricity and sector studies.""" + +import logging +import sqlite3 +from abc import ABC, abstractmethod + +import pandas as pd +from eia import EnergyDemand, TransportationDemand + +logger = logging.getLogger(__name__) + + +class DemandScaler(ABC): + """Allow the scaling of input data bases on different energy projections.""" + + def __init__(self): + self.projection = self.get_projections() + + @abstractmethod + def get_projections(self) -> pd.DataFrame: + """Get implementation specific energy projections.""" + pass + + def get_growth(self, start_year: int, end_year: int, sector: str) -> float: + """Returns decimal change between two years.""" + min_year = self.projection.index.min() + max_year = self.projection.index.max() + + if start_year < min_year: + logger.warning(f"Setting base demand scaling year to {min_year}") + start_year = min_year + if end_year > max_year: + logger.warning(f"Setting final demand scaling year to {max_year}") + end_year = max_year + + start = self.projection.at[start_year, sector] + end = self.projection.at[end_year, sector] + + return end / start + + def scale( + self, + df: pd.DataFrame, + start_year: int, + end_year: int, + sector: str, + ) -> pd.DataFrame: + """Scales data.""" + growth = self.get_growth(start_year, end_year, sector) + new = df.mul(growth) + return self.reindex(new, end_year) + + @staticmethod + def reindex(df: pd.DataFrame, year: int) -> pd.DataFrame: + """ + Reindex a dataframe for a different planning horizon. + + Input dataframe will be... + + | | BusName_1 | BusName_2 | ... | BusName_n | + |---------------------|-----------|-----------|-----|-----------| + | 2019-01-01 00:00:00 | aaa | ddd | | ggg | + | 2019-01-01 01:00:00 | bbb | eee | | hhh | + | ... | ... | ... | | ... | + | 2019-02-28 23:00:00 | ccc | fff | | iii | + + Output dataframe will be... + + | | BusName_1 | BusName_2 | ... | BusName_n | + |---------------------|-----------|-----------|-----|-----------| + | 2030-01-01 00:00:00 | aaa | ddd | | ggg | + | 2030-01-01 01:00:00 | bbb | eee | | hhh | + | ... | ... | ... | | ... | + | 2030-02-28 23:00:00 | ccc | fff | | iii | + """ + new = df.copy() + new.index = new.index.map(lambda x: x.replace(year=year)) + return new + + +class AeoElectricityScaler(DemandScaler): + """Scales against EIA Annual Energy Outlook electricity projections.""" + + def __init__(self, pudl: str, scenario: str = "reference"): + self.pudl = pudl + self.scenario = scenario + self.region = "united_states" + super().__init__() + + def get_projections(self) -> pd.DataFrame: + """ + Get sector yearly END-USE ELECTRICITY growth rates from AEO. + + | | power | units | + |----- |-------|-------| + | 2021 | ### | ### | + | 2022 | ### | ### | + | 2023 | ### | ### | + | ... | | | + | 2049 | ### | ### | + | 2050 | ### | ### | + """ + con = sqlite3.connect(self.pudl) + df = pd.read_sql_query( + f""" + SELECT + projection_year, + technology_description_eiaaeo, + gross_generation_mwh + FROM + core_eiaaeo__yearly_projected_generation_in_electric_sector_by_technology + WHERE + electricity_market_module_region_eiaaeo = "{self.region}" AND + model_case_eiaaeo = "{self.scenario}" + """, + con, + ) + + df = ( + df.drop(columns=["technology_description_eiaaeo"]) + .rename( + columns={"projection_year": "year", "gross_generation_mwh": "power"}, + ) + .groupby("year") + .sum() + ) + df["units"] = "mwh" + return df + + +class EfsElectricityScalar(DemandScaler): + """Scales against NREL Electrification Futures Study electricity projections.""" + + def __init__(self, filepath: str): + self.efs = filepath + self.region = "united_states" + super().__init__() + + def read(self) -> pd.DataFrame: + """Read in raw EFS data.""" + df = pd.read_csv(self.efs, engine="pyarrow") + return ( + df.drop( + columns=[ + "Electrification", + "TechnologyAdvancement", + "LocalHourID", + "Sector", + "Subsector", + ], + ) + .groupby(["Year", "State"]) + .sum() + ) + + def interpolate(self, df: pd.DataFrame) -> pd.DataFrame: + """Function interpolates between provided demand data years.""" + efs_years = df.index + new_years = range(min(efs_years), max(efs_years) + 1) + df = df.reindex(new_years) + return df.interpolate() + + def get_projections(self) -> pd.DataFrame: + """ + Get sector yearly END-USE ELECTRICITY growth rates from EFS. Linear + interpolates missing values. + + | | power | units | + |----- |-------|-------| + | 2018 | ### | ### | + | 2019 | ### | ### | + | 2020 | ### | ### | + | ... | | | + | 2049 | ### | ### | + | 2050 | ### | ### | + """ + df = self.read().reset_index() + if self.region == "united_states": + df = df.drop(columns="State").groupby("Year").sum() + else: + raise NotImplementedError + df = self.interpolate(df) + df = df.rename(columns={"LoadMW": "power"}) + df["units"] = "MWh" + return df + + +""" +Only used if caching is turned on. +""" + + +class AeoScaler(DemandScaler): + """Scales according to AEO data previously extracted.""" + + def __init__(self, filepath: str): + self.filepath = filepath + super().__init__() + + def get_projections(self) -> pd.DataFrame: + """Get yearly END-USE growth rates at a national level.""" + return pd.read_csv(self.filepath, index_col=0) + + +""" +Also used for caching purposes! +""" + + +class AeoEnergyScalerApi(DemandScaler): + """Scales against EIA Annual Energy Outlook energy projections.""" + + def __init__(self, api: str, scenario: str = "reference"): + self.api = api + self.scenario = scenario + self.region = "united_states" + super().__init__() + + def get_sector_data(self, years: list[int], sector: str) -> pd.DataFrame: + """Function to piece togehter historical and projected values.""" + start_year = min(years) + end_year = max(years) + + data = [] + + if start_year < 2024: + data.append( + EnergyDemand(sector=sector, year=start_year, api=self.api).get_data(), + ) + if end_year >= 2024: + data.append( + EnergyDemand(sector=sector, year=end_year, api=self.api).get_data(), + ) + return pd.concat(data) + + def get_projections(self) -> pd.DataFrame: + """ + Get sector yearly END-USE ENERGY growth rates from AEO at a NATIONAL + level. + + | | residential | commercial | industrial | transport | units | + |----- |-------------|-------------|-------------|------------|-------| + | 2018 | ### | ### | ### | ### | ### | + | 2019 | ### | ### | ### | ### | ### | + | 2020 | ### | ### | ### | ### | ### | + | ... | | | | | | + | 2049 | ### | ### | ### | ### | ### | + | 2050 | ### | ### | ### | ### | ### | + """ + years = range(2017, 2051) + + # sectors = ("residential", "commercial", "industry", "transport") + sectors = ("residential", "commercial", "industry") + + df = pd.DataFrame( + index=years, + ) + + for sector in sectors: + sector_data = self.get_sector_data(years, sector).sort_index() + df[sector] = sector_data.value + + df["units"] = "quads" + return df + + +class AeoVmtScalerApi(DemandScaler): + """Scales against EIA Annual Energy Outlook vehicle mile traveled projections.""" + + def __init__(self, api: str, scenario: str = "reference"): + self.api = api + self.scenario = scenario + self.region = "united_states" + super().__init__() + + def get_historical_value(self, year: int, sector: str) -> float: + """Returns single year value at a time.""" + return TransportationDemand(vehicle=sector, year=year, api=self.api).get_data(pivot=True).values[0][0] + + def get_future_values( + self, + year: int, + sector: str, + ) -> pd.DataFrame: + """Returns all values from 2024 onwards.""" + return TransportationDemand( + vehicle=sector, + year=year, + api=self.api, + scenario=self.scenario, + ).get_data() + + def get_projections(self) -> pd.DataFrame: + """ + Get sector yearly END-USE ENERGY growth rates from AEO at a NATIONAL + level. + + | | light_duty | med_duty | heavy_duty | bus | units | + |----- |------------|-----------|-------------|------|-------| + | 2018 | ### | ### | ### | ### | ### | + | 2019 | ### | ### | ### | ### | ### | + | 2020 | ### | ### | ### | ### | ### | + | ... | | | | | | + | 2049 | ### | ### | ### | ### | ### | + | 2050 | ### | ### | ### | ### | ### | + """ + years = range(2017, 2051) + + vehicles = ("light_duty", "med_duty", "heavy_duty", "bus") + + df = pd.DataFrame( + columns=["light_duty", "med_duty", "heavy_duty", "bus"], + index=years, + ) + + for year in sorted(years): + if year < 2024: + for vehicle in vehicles: + df.at[year, vehicle] = self.get_historical_value( + year, + vehicle, + ) + + for vehicle in vehicles: + aeo = self.get_future_values(max(years), vehicle) + for year in years: + if year < 2024: + continue + df.at[year, vehicle] = aeo.at[year, "value"] + + df["units"] = "thousand VMT" + return df diff --git a/workflow/scripts/eia.py b/workflow/scripts/eia.py index 75863489..e25849a6 100644 --- a/workflow/scripts/eia.py +++ b/workflow/scripts/eia.py @@ -9,7 +9,8 @@ - Storage(fuel, storage, year, api) - Emissions(sector, year, api, fuel) -Examples: +Examples +-------- >>> costs = FuelCosts("gas", "power", 2020, "xxxxxxxxxxxxxxxx") >>> costs.get_data() @@ -37,7 +38,7 @@ import logging import math from abc import ABC, abstractmethod -from typing import Optional +from typing import ClassVar import constants import numpy as np @@ -98,10 +99,8 @@ # exceptions -class InputException(Exception): - """ - Class for exceptions. - """ +class InputPropertyError(Exception): + """Class for exceptions.""" def __init__(self, propery, valid_options, recived_option) -> None: self.message = f" {propery} must be in {valid_options}; recieved {recived_option}" @@ -112,18 +111,15 @@ def __str__(self): # creator class EiaData(ABC): - """ - Creator class to extract EIA data. - """ + """Creator class to extract EIA data.""" @abstractmethod def data_creator(self): # type DataExtractor - """ - Gets the data. - """ + """Gets the data.""" pass def get_data(self, pivot: bool = False) -> pd.DataFrame: + """Get formated data.""" product = self.data_creator() df = product.retrieve_data() df = product.format_data(df) @@ -132,25 +128,28 @@ def get_data(self, pivot: bool = False) -> pd.DataFrame: return df def get_api_call(self) -> pd.DataFrame: + """Get API URL.""" product = self.data_creator() return product.build_url() def get_raw_data(self) -> pd.DataFrame: + """Get unformatted data from API.""" product = self.data_creator() return product.retrieve_data() # concrete creator class FuelCosts(EiaData): + """Primary fuel cost data.""" def __init__( self, fuel: str, year: int, api: str, - industry: Optional[str] = None, - grade: Optional[str] = None, - scenario: Optional[str] = None, + industry: str | None = None, + grade: str | None = None, + scenario: str | None = None, ) -> None: self.fuel = fuel self.year = year @@ -160,30 +159,31 @@ def __init__( self.scenario = scenario def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.fuel == "gas": assert self.industry if self.year < 2024: - return GasCosts(self.industry, self.year, self.api) + return _GasCosts(self.industry, self.year, self.api) else: if self.industry in ("imports", "exports"): logger.warning( f"Projected {self.industry} prices not availble. Returning 2023 data.", ) - return GasCosts(self.industry, 2023, self.api) + return _GasCosts(self.industry, 2023, self.api) aeo = "reference" if not self.scenario else self.scenario - return ProjectedGasCosts(self.industry, self.year, aeo, self.api) + return _ProjectedGasCosts(self.industry, self.year, aeo, self.api) elif self.fuel == "coal": assert self.industry - return CoalCosts(self.industry, self.year, self.api) + return _CoalCosts(self.industry, self.year, self.api) elif self.fuel == "lpg": assert self.grade - return LpgCosts(self.grade, self.year, self.api) + return _LpgCosts(self.grade, self.year, self.api) elif self.fuel == "heating_oil": - return HeatingFuelCosts("fuel_oil", self.year, self.api) + return _HeatingFuelCosts("fuel_oil", self.year, self.api) elif self.fuel == "propane": - return HeatingFuelCosts("propane", self.year, self.api) + return _HeatingFuelCosts("propane", self.year, self.api) else: - raise InputException( + raise InputPropertyError( propery="Fuel Costs", valid_options=["gas", "coal", "lpg", "heating_oil", "propane"], recived_option=self.fuel, @@ -192,6 +192,7 @@ def data_creator(self) -> pd.DataFrame: # concrete creator class Trade(EiaData): + """Natural gas trade data.""" def __init__( self, @@ -208,15 +209,16 @@ def __init__( self.api = api def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.fuel == "gas": if self.international: # gives monthly values - return InternationalGasTrade(self.direction, self.year, self.api) + return _InternationalGasTrade(self.direction, self.year, self.api) else: # gives annual values - return DomesticGasTrade(self.direction, self.year, self.api) + return _DomesticGasTrade(self.direction, self.year, self.api) else: - raise InputException( + raise InputPropertyError( propery="Energy Trade", valid_options=["gas"], recived_option=self.fuel, @@ -225,6 +227,7 @@ def data_creator(self) -> pd.DataFrame: # concrete creator class Production(EiaData): + """Primary energy production data.""" def __init__(self, fuel: str, production: str, year: int, api: str) -> None: self.fuel = fuel # (gas) @@ -233,10 +236,11 @@ def __init__(self, fuel: str, production: str, year: int, api: str) -> None: self.api = api def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.fuel == "gas": - return GasProduction(self.production, self.year, self.api) + return _GasProduction(self.production, self.year, self.api) else: - raise InputException( + raise InputPropertyError( property="Production", valid_options=["gas"], recieved_option=self.fuel, @@ -258,7 +262,7 @@ def __init__( sector: str, year: int, api: str, - scenario: Optional[str] = None, + scenario: str | None = None, ) -> None: self.sector = sector # (residential, commercial, transport, industry) self.year = year @@ -266,15 +270,16 @@ def __init__( self.scenario = scenario # only for AEO scenario def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.year < 2024: if self.scenario: logger.warning("Can not apply AEO scenario to historical demand") - return HistoricalSectorEnergyDemand(self.sector, self.year, self.api) + return _HistoricalSectorEnergyDemand(self.sector, self.year, self.api) elif self.year >= 2024: aeo = "reference" if not self.scenario else self.scenario - return ProjectedSectorEnergyDemand(self.sector, self.year, aeo, self.api) + return _ProjectedSectorEnergyDemand(self.sector, self.year, aeo, self.api) else: - raise InputException( + raise InputPropertyError( propery="EnergyDemand", valid_options="year", recived_option=self.year, @@ -296,7 +301,7 @@ def __init__( year: int, api: str, units: str = "travel", # travel | btu - scenario: Optional[str] = None, + scenario: str | None = None, ) -> None: self.vehicle = vehicle self.year = year @@ -305,46 +310,47 @@ def __init__( self.scenario = scenario def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.units == "travel": if self.year < 2024: - return HistoricalTransportTravelDemand( + return _HistoricalTransportTravelDemand( self.vehicle, self.year, self.api, ) elif self.year >= 2024: aeo = "reference" if not self.scenario else self.scenario - return ProjectedTransportTravelDemand( + return _ProjectedTransportTravelDemand( self.vehicle, self.year, aeo, self.api, ) else: - raise InputException( + raise InputPropertyError( propery="TransportationTravelDemand", valid_options=range(2017, 2051), recived_option=self.year, ) elif self.units == "btu": if self.year < 2024: - return HistoricalTransportBtuDemand(self.vehicle, self.year, self.api) + return _HistoricalTransportBtuDemand(self.vehicle, self.year, self.api) elif self.year >= 2024: aeo = "reference" if not self.scenario else self.scenario - return ProjectedTransportBtuDemand( + return _ProjectedTransportBtuDemand( self.vehicle, self.year, aeo, self.api, ) else: - raise InputException( + raise InputPropertyError( propery="TransportationBtuDemand", valid_options=range(2017, 2051), recived_option=self.year, ) else: - raise InputException( + raise InputPropertyError( propery="TransportationDemand", valid_options=("travel", "btu"), recived_option=self.units, @@ -365,7 +371,7 @@ def __init__( vehicle: str, year: int, api: str, - scenario: Optional[str] = None, + scenario: str | None = None, ) -> None: self.vehicle = vehicle self.year = year @@ -374,15 +380,16 @@ def __init__( self.aeo = "reference" if not self.scenario else self.scenario def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.year > 2016: - return HistoricalProjectedTransportFuelUse( + return _HistoricalProjectedTransportFuelUse( self.vehicle, self.year, self.aeo, self.api, ) else: - raise InputException( + raise InputPropertyError( propery="TransportationFuelUse", valid_options=range(2017, 2051), recived_option=self.year, @@ -391,6 +398,7 @@ def data_creator(self) -> pd.DataFrame: # concrete creator class Storage(EiaData): + """Primary energy storage data.""" def __init__(self, fuel: str, storage: str, year: int, api: str) -> None: self.fuel = fuel @@ -399,10 +407,11 @@ def __init__(self, fuel: str, storage: str, year: int, api: str) -> None: self.api = api def data_creator(self) -> pd.DataFrame: + """Initializes data extractor.""" if self.fuel == "gas": - return GasStorage(self.storage, self.year, self.api) + return _GasStorage(self.storage, self.year, self.api) else: - raise InputException( + raise InputPropertyError( propery="Storage", valid_options=["gas"], recived_option=self.fuel, @@ -411,21 +420,27 @@ def data_creator(self) -> pd.DataFrame: # concrete creator class Emissions(EiaData): + """State level emissions data.""" - def __init__(self, sector: str, year: int, api: str, fuel: str = None) -> None: + def __init__( + self, + sector: str, + year: int, + api: str, + fuel: str | None = None, + ) -> None: self.sector = sector # (power|residential|commercial|industry|transport|total) self.year = year # 1970 - 2021 self.api = api self.fuel = "all" if not fuel else fuel # (coal|oil|gas|all) def data_creator(self): - return StateEmissions(self.sector, self.fuel, self.year, self.api) + """Initializes data extractor.""" + return _StateEmissions(self.sector, self.fuel, self.year, self.api) class Seds(EiaData): - """ - State Energy Demand System. - """ + """State level energy demand.""" def __init__(self, metric: str, sector: str, year: int, api: str) -> None: self.metric = metric # (consumption) @@ -434,10 +449,11 @@ def __init__(self, metric: str, sector: str, year: int, api: str) -> None: self.api = api def data_creator(self): + """Initializes data extractor.""" if self.metric == "consumption": - return SedsConsumption(self.sector, self.year, self.api) + return _SedsConsumption(self.sector, self.year, self.api) else: - raise InputException( + raise InputPropertyError( propery="SEDS", valid_options=["consumption"], recived_option=self.metric, @@ -445,6 +461,7 @@ def data_creator(self): class ElectricPowerData(EiaData): + """Power system operational data.""" def __init__(self, sector: str, year: int, api_key: str) -> None: self.sector = sector @@ -452,16 +469,15 @@ def __init__(self, sector: str, year: int, api_key: str) -> None: self.api_key = api_key def data_creator(self): - return ElectricPowerOperationalData(self.sector, self.year, self.api_key) + """Initializes data extractor.""" + return _ElectricPowerOperationalData(self.sector, self.year, self.api_key) # product class DataExtractor(ABC): - """ - Extracts and formats data. - """ + """Extracts and formats data.""" - def __init__(self, year: int, api_key: str = None): + def __init__(self, year: int, api_key: str | None = None): self.api_key = api_key # self.year = self._set_year(year) self.year = year @@ -480,12 +496,11 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: @abstractmethod def build_url(self) -> str: - """ - Builds API url. - """ + """Builds API url.""" pass def retrieve_data(self) -> pd.DataFrame: + """Retrieves and converts API data into dataframe.""" url = self.build_url() data = self._request_eia_data(url) return pd.DataFrame.from_dict(data["response"]["data"]) @@ -508,17 +523,16 @@ def _request_eia_data(url: str) -> dict[str, dict | str]: url in the form of "https://api.eia.gov/v2/" followed by api key and facets """ - # sometimes running into HTTPSConnectionPool error. adding in retries helped session = requests.Session() retries = Retry( total=3, - backoff_factor=0.1, + backoff_factor=0.5, status_forcelist=[500, 502, 503, 504], ) session.mount("https://", HTTPAdapter(max_retries=retries)) - response = session.get(url, timeout=30) + response = session.get(url, timeout=60) if response.status_code == 200: return response.json() # Assumes the response is in JSON format else: @@ -527,9 +541,7 @@ def _request_eia_data(url: str) -> dict[str, dict | str]: @staticmethod def _format_period(dates: pd.Series) -> pd.Series: - """ - Parses dates into a standard monthly format. - """ + """Parses dates into a standard monthly format.""" try: # try to convert to YYYY-MM-DD format return pd.to_datetime(dates, format="%Y-%m-%d") except ValueError: @@ -540,9 +552,7 @@ def _format_period(dates: pd.Series) -> pd.Series: @staticmethod def _pivot_data(df: pd.DataFrame) -> pd.DataFrame: - """ - Pivots data on period and state. - """ + """Pivots data on period and state.""" df = df.reset_index() try: return df.pivot( @@ -569,9 +579,8 @@ def _assign_dtypes(df: pd.DataFrame) -> pd.DataFrame: # concrete product -class GasCosts(DataExtractor): - - industry_codes = { +class _GasCosts(DataExtractor): + industry_codes: ClassVar[dict[str, str]] = { "power": "PEU", "residential": "PRS", "commercial": "PCS", @@ -583,7 +592,7 @@ class GasCosts(DataExtractor): def __init__(self, industry: str, year: int, api_key: str) -> None: self.industry = industry if industry not in self.industry_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Gas Costs", valid_options=list(self.industry_codes), recived_option=industry, @@ -592,14 +601,11 @@ def __init__(self, industry: str, year: int, api_key: str) -> None: def build_url(self) -> str: base_url = "natural-gas/pri/sum/data/" - facets = f"frequency=monthly&data[0]=value&facets[process][]={self.industry_codes[self.industry]}&start={self.year}-01&end={self.year+1}-01&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + facets = f"frequency=monthly&data[0]=value&facets[process][]={self.industry_codes[self.industry]}&start={self.year}-01&end={self.year + 1}-01&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - """ - Formats natural gas cost data. - """ - + """Formats natural gas cost data.""" # format dates df["period"] = self._format_period(df.period) df = df.set_index("period").copy() @@ -636,16 +642,15 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: # concrete product -class CoalCosts(DataExtractor): - - industry_codes = { +class _CoalCosts(DataExtractor): + industry_codes: ClassVar[dict[str, str]] = { "power": "PEU", } def __init__(self, industry: str, year: int, api_key: str) -> None: self.industry = industry if industry != "power": - raise InputException( + raise InputPropertyError( propery="Coal Costs", valid_options=list(self.industry_codes), recived_option=industry, @@ -654,11 +659,10 @@ def __init__(self, industry: str, year: int, api_key: str) -> None: def build_url(self) -> str: base_url = "coal/shipments/receipts/data/" - facets = f"frequency=quarterly&data[0]=price&facets[coalRankId][]=TOT&start={self.year}-Q1&end={self.year+1}-Q1&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + facets = f"frequency=quarterly&data[0]=price&facets[coalRankId][]=TOT&start={self.year}-Q1&end={self.year + 1}-Q1&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df = df[ (df.coalRankId.isin(["TOT"])) & ~(df.price == "w") @@ -724,14 +728,10 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(final) -class LpgCosts(DataExtractor): - """ - This is motor gasoline! +class _LpgCosts(DataExtractor): + """The cost is motor gasoline. Not heating fuel.""" - Not heating fuel! - """ - - grade_codes = { + grade_codes: ClassVar[dict[str, str]] = { "total": "EPM0", "regular": "EPMR", "premium": "EPMP", @@ -740,7 +740,7 @@ class LpgCosts(DataExtractor): } # https://en.wikipedia.org/wiki/Petroleum_Administration_for_Defense_Districts - padd_2_state = { + padd_2_state: ClassVar[dict[str, str]] = { "PADD 1A": ["CT", "ME", "MA", "NH", "RI", "VT"], "PADD 1B": ["DE", "DC", "MD", "NJ", "NY", "PA"], "PADD 1C": ["FL", "GA", "NC", "SC", "VA", "WV"], @@ -768,8 +768,8 @@ class LpgCosts(DataExtractor): def __init__(self, grade: str, year: int, api_key: str) -> None: self.grade = grade - if not grade in self.grade_codes: - raise InputException( + if grade not in self.grade_codes: + raise InputPropertyError( propery="Lpg Costs", valid_options=list(self.grade_codes), recived_option=grade, @@ -782,7 +782,6 @@ def build_url(self) -> str: return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - data = df[["period", "area-name", "series-description", "value", "units"]].copy() data["state"] = data["area-name"].map(self.padd_2_state) @@ -795,17 +794,15 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(final) -class HeatingFuelCosts(DataExtractor): - """ - Note, only returns data from October to March! - """ +class _HeatingFuelCosts(DataExtractor): + """Note, only returns data from October to March.""" - heating_fuel_codes = {"fuel_oil": "No 2 Fuel Oil", "propane": "Propane"} + heating_fuel_codes: ClassVar[dict[str, str]] = {"fuel_oil": "No 2 Fuel Oil", "propane": "Propane"} def __init__(self, heating_fuel: str, year: int, api_key: str) -> None: self.heating_fuel = heating_fuel - if not heating_fuel in self.heating_fuel_codes: - raise InputException( + if heating_fuel not in self.heating_fuel_codes: + raise InputPropertyError( propery="Heating Fuel Costs", valid_options=list(self.heating_fuel_codes), recived_option=heating_fuel, @@ -818,7 +815,6 @@ def build_url(self) -> str: return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - data = df[ ( df["product-name"].str.startswith( @@ -862,7 +858,7 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: # def __init__(self, sector: str, year: int, api: str) -> None: # self.sector = sector # if sector not in self.sector_codes.keys(): -# raise InputException( +# raise InputPropertyError( # propery="Historical Energy Demand", # valid_options=list(self.sector_codes), # recived_option=sector, @@ -884,7 +880,7 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: # return self._assign_dtypes(df) -class HistoricalSectorEnergyDemand(DataExtractor): +class _HistoricalSectorEnergyDemand(DataExtractor): """ Extracts historical energy demand at a yearly national level. @@ -893,7 +889,7 @@ class HistoricalSectorEnergyDemand(DataExtractor): - https://www.eia.gov/outlooks/aeo/pdf/AEO2023_Release_Presentation.pdf (pg 17) """ - sector_codes = { + sector_codes: ClassVar[dict[str, str]] = { "residential": "TNR", "commercial": "TNC", "industry": "TNI", @@ -904,7 +900,7 @@ class HistoricalSectorEnergyDemand(DataExtractor): def __init__(self, sector: str, year: int, api: str) -> None: self.sector = sector if sector not in self.sector_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Historical Energy Demand", valid_options=list(self.sector_codes), recived_option=sector, @@ -932,17 +928,15 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class ProjectedSectorEnergyDemand(DataExtractor): - """ - Extracts projected energy demand at a national level from AEO 2023. - """ +class _ProjectedSectorEnergyDemand(DataExtractor): + """Extracts projected energy demand at a national level from AEO 2023.""" # https://www.eia.gov/outlooks/aeo/assumptions/case_descriptions.php scenario_codes = AEO_SCENARIOS # note, these are all "total energy use by end use - total gross end use consumption" # https://www.eia.gov/totalenergy/data/flow-graphs/electricity.php - sector_codes = { + sector_codes: ClassVar[dict[str, str]] = { "residential": "cnsm_enu_resd_NA_dele_NA_NA_qbtu", "commercial": "cnsm_enu_comm_NA_dele_NA_NA_qbtu", "industry": "cnsm_enu_idal_NA_dele_NA_NA_qbtu", @@ -954,13 +948,13 @@ def __init__(self, sector: str, year: int, scenario: str, api: str): self.scenario = scenario self.sector = sector if scenario not in self.scenario_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Energy Demand Scenario", valid_options=list(self.scenario_codes), recived_option=scenario, ) if sector not in self.sector_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Energy Demand Sector", valid_options=list(self.sector_codes), recived_option=sector, @@ -980,16 +974,14 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class HistoricalTransportTravelDemand(DataExtractor): - """ - Gets Transport demand in units of travel. - """ +class _HistoricalTransportTravelDemand(DataExtractor): + """Gets Transport demand in units of travel.""" # https://www.eia.gov/outlooks/aeo/assumptions/case_descriptions.php scenario_codes = AEO_SCENARIOS # units will be different umong these! - vehicle_codes = { + vehicle_codes: ClassVar[dict[str, str]] = { "light_duty": "kei_trv_trn_NA_ldv_NA_NA_blnvehmls", "med_duty": "kei_trv_trn_NA_cml_NA_NA_blnvehmls", "heavy_duty": "kei_trv_trn_NA_fght_NA_NA_blnvehmls", @@ -1003,7 +995,7 @@ class HistoricalTransportTravelDemand(DataExtractor): def __init__(self, vehicle: str, year: int, api: str) -> None: self.vehicle = vehicle if vehicle not in self.vehicle_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Historical Transport Travel Demand", valid_options=list(self.vehicle_codes), recived_option=vehicle, @@ -1048,16 +1040,14 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class ProjectedTransportTravelDemand(DataExtractor): - """ - Gets Transport demand in units of travel. - """ +class _ProjectedTransportTravelDemand(DataExtractor): + """Gets Transport demand in units of travel.""" # https://www.eia.gov/outlooks/aeo/assumptions/case_descriptions.php scenario_codes = AEO_SCENARIOS # units will be different umong these! - vehicle_codes = { + vehicle_codes: ClassVar[dict[str, str]] = { "light_duty": "kei_trv_trn_NA_ldv_NA_NA_blnvehmls", "med_duty": "kei_trv_trn_NA_cml_NA_NA_blnvehmls", "heavy_duty": "kei_trv_trn_NA_fght_NA_NA_blnvehmls", @@ -1072,13 +1062,13 @@ def __init__(self, vehicle: str, year: int, scenario: str, api: str) -> None: self.vehicle = vehicle self.scenario = scenario if scenario not in self.scenario_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Transport Travel Demand Scenario", valid_options=list(self.scenario_codes), recived_option=scenario, ) if vehicle not in self.vehicle_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Transport Travel Demand", valid_options=list(self.vehicle_codes), recived_option=vehicle, @@ -1104,13 +1094,11 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class HistoricalTransportBtuDemand(DataExtractor): - """ - Gets Transport demand in units of btu. - """ +class _HistoricalTransportBtuDemand(DataExtractor): + """Gets Transport demand in units of btu.""" # units will be different umong these! - vehicle_codes = { + vehicle_codes: ClassVar[dict[str, str]] = { "light_duty": "cnsm_NA_trn_ldv_use_NA_NA_qbtu", "med_duty": "cnsm_NA_trn_cml_use_NA_NA_qbtu", "heavy_duty": "cnsm_NA_trn_fght_use_NA_NA_qbtu", @@ -1129,7 +1117,7 @@ class HistoricalTransportBtuDemand(DataExtractor): def __init__(self, vehicle: str, year: int, api: str) -> None: self.vehicle = vehicle if vehicle not in self.vehicle_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Historical BTU Transport Demand", valid_options=list(self.vehicle_codes), recived_option=vehicle, @@ -1174,16 +1162,14 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class ProjectedTransportBtuDemand(DataExtractor): - """ - Gets Transport demand in units of quads. - """ +class _ProjectedTransportBtuDemand(DataExtractor): + """Gets Transport demand in units of quads.""" # https://www.eia.gov/outlooks/aeo/assumptions/case_descriptions.php scenario_codes = AEO_SCENARIOS # units will be different umong these! - vehicle_codes = { + vehicle_codes: ClassVar[dict[str, str]] = { "light_duty": "cnsm_NA_trn_ldv_use_NA_NA_qbtu", "med_duty": "cnsm_NA_trn_cml_use_NA_NA_qbtu", "heavy_duty": "cnsm_NA_trn_fght_use_NA_NA_qbtu", @@ -1203,13 +1189,13 @@ def __init__(self, vehicle: str, year: int, scenario: str, api: str) -> None: self.vehicle = vehicle self.scenario = scenario if scenario not in self.scenario_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Transport BTU Demand Scenario", valid_options=list(self.scenario_codes), recived_option=scenario, ) if vehicle not in self.vehicle_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Transport BTU Demand", valid_options=list(self.vehicle_codes), recived_option=vehicle, @@ -1235,16 +1221,14 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class HistoricalProjectedTransportFuelUse(DataExtractor): - """ - Gets Transport Energy Use by fuel. - """ +class _HistoricalProjectedTransportFuelUse(DataExtractor): + """Gets Transport Energy Use by fuel.""" # https://www.eia.gov/outlooks/aeo/assumptions/case_descriptions.php scenario_codes = AEO_SCENARIOS # units will be different umong these! - vehicle_codes = { + vehicle_codes: ClassVar[dict[str, list[str]]] = { "light_duty": [ f"&facets[seriesId][]=cnsm_NA_trn_ldty_{x}_NA_NA_trlbtu" for x in ("NA", "dfo", "elc", "eth", "hdg", "mgs", "ng", "prop") @@ -1280,13 +1264,13 @@ def __init__(self, vehicle: str, year: int, scenario: str, api: str) -> None: self.vehicle = vehicle self.scenario = scenario if vehicle not in self.vehicle_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Transport Energy Use by Fuel", valid_options=list(self.vehicle_codes), recived_option=vehicle, ) if scenario not in self.scenario_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Transport Energy Use by Fuel", valid_options=list(self.scenario_codes), recived_option=scenario, @@ -1346,7 +1330,7 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: # def __init__(self, direction: str, year: int, api_key: str) -> None: # self.direction = direction # if self.direction not in list(self.direction_codes): -# raise InputException( +# raise InputPropertyError( # propery="Natural Gas International Imports and Exports", # valid_options=list(self.direction_codes), # recived_option=direction, @@ -1396,15 +1380,13 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: # return "-".join(connections) -class ProjectedGasCosts(DataExtractor): - """ - Extracts projected energy demand at a national level from AEO 2023. - """ +class _ProjectedGasCosts(DataExtractor): + """Extracts projected energy demand at a national level from AEO 2023.""" # https://www.eia.gov/outlooks/aeo/assumptions/case_descriptions.php scenario_codes = AEO_SCENARIOS - industry_codes = { + industry_codes: ClassVar[dict[str, str]] = { "residential": "prce_NA_resd_NA_ng_NA_usa_y13dlrpmcf", "commercial": "prce_NA_comm_NA_ng_NA_usa_y13dlrpmcf", "industry": "prce_NA_idal_NA_ng_NA_usa_y13dlrpmcf", @@ -1416,13 +1398,13 @@ def __init__(self, industry: str, year: int, scenario: str, api: str): self.scenario = scenario self.industry = industry if scenario not in self.scenario_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Natural Gas Costs Scenario", valid_options=list(self.scenario_codes), recived_option=scenario, ) if industry not in self.industry_codes.keys(): - raise InputException( + raise InputPropertyError( propery="Projected Natural Gas Costs Industry", valid_options=list(self.industry_codes), recived_option=industry, @@ -1442,14 +1424,14 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class InternationalGasTrade(DataExtractor): +class _InternationalGasTrade(DataExtractor): """ Gets imports/exports by point of entry. This filters for ONLY canada and mexico imports/exports """ - direction_codes = { + direction_codes: ClassVar[dict[str, str]] = { "imports": "IMI", "exports": "EEI", } @@ -1459,7 +1441,7 @@ class InternationalGasTrade(DataExtractor): def __init__(self, direction: str, year: int, api_key: str) -> None: self.direction = direction if self.direction not in list(self.direction_codes): - raise InputException( + raise InputPropertyError( propery="Natural Gas International Imports and Exports", valid_options=list(self.direction_codes), recived_option=direction, @@ -1467,12 +1449,11 @@ def __init__(self, direction: str, year: int, api_key: str) -> None: super().__init__(year, api_key) def build_url(self) -> str: - base_url = f"natural-gas/move/ist/data/" - facets = f"frequency=annual&data[0]=value&facets[process][]={self.direction_codes[self.direction]}&start={self.year-1}&end={self.year}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + base_url = "natural-gas/move/ist/data/" + facets = f"frequency=annual&data[0]=value&facets[process][]={self.direction_codes[self.direction]}&start={self.year - 1}&end={self.year}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df["period"] = pd.to_datetime(df.period).map(lambda x: x.year) # extract only canada and mexico trade @@ -1510,7 +1491,7 @@ def extract_state(description: str) -> str: return description.split(" Natural Gas Pipeline")[0] -class DomesticGasTrade(DataExtractor): +class _DomesticGasTrade(DataExtractor): """ Gets imports/exports by state. @@ -1518,7 +1499,7 @@ class DomesticGasTrade(DataExtractor): example, "CA-OR" will represent from California to Oregon """ - direction_codes = { + direction_codes: ClassVar[dict[str, str]] = { "imports": "MIR", "exports": "MID", } @@ -1526,7 +1507,7 @@ class DomesticGasTrade(DataExtractor): def __init__(self, direction: str, year: int, api_key: str) -> None: self.direction = direction if self.direction not in list(self.direction_codes): - raise InputException( + raise InputPropertyError( propery="Natural Gas Domestic Imports and Exports", valid_options=list(self.direction_codes), recived_option=direction, @@ -1534,12 +1515,11 @@ def __init__(self, direction: str, year: int, api_key: str) -> None: super().__init__(year, api_key) def build_url(self) -> str: - base_url = f"natural-gas/move/ist/data/" - facets = f"frequency=annual&data[0]=value&facets[process][]={self.direction_codes[self.direction]}&start={self.year-1}&end={self.year}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + base_url = "natural-gas/move/ist/data/" + facets = f"frequency=annual&data[0]=value&facets[process][]={self.direction_codes[self.direction]}&start={self.year - 1}&end={self.year}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df["period"] = pd.to_datetime(df.period).map(lambda x: x.year) # drop Federal Offshore--Gulf of Mexico Natural Gas Interstate Receipts @@ -1576,13 +1556,11 @@ def extract_state(description: str) -> str: return description.split(" Natural Gas Pipeline")[0] -class GasStorage(DataExtractor): - """ - Underground storage facilites for natural gas. - """ +class _GasStorage(DataExtractor): + """Underground storage facilites for natural gas.""" # https://www.eia.gov/naturalgas/storage/basics/ - storage_codes = { + storage_codes: ClassVar[dict[str, str]] = { "base": "SAB", "working": "SAO", "total": "SAT", @@ -1592,7 +1570,7 @@ class GasStorage(DataExtractor): def __init__(self, storage: str, year: int, api_key: str) -> None: self.storage = storage if self.storage not in list(self.storage_codes): - raise InputException( + raise InputPropertyError( propery="Natural Gas Underground Storage", valid_options=list(self.storage_codes), recived_option=storage, @@ -1601,11 +1579,10 @@ def __init__(self, storage: str, year: int, api_key: str) -> None: def build_url(self) -> str: base_url = "natural-gas/stor/sum/data/" - facets = f"frequency=monthly&data[0]=value&facets[process][]={self.storage_codes[self.storage]}&start={self.year}-01&end={self.year+1}-01&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + facets = f"frequency=monthly&data[0]=value&facets[process][]={self.storage_codes[self.storage]}&start={self.year}-01&end={self.year + 1}-01&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df = df[~(df["area-name"] == "NA")].copy() df["period"] = self._format_period(df.period) df["state"] = df["series-description"].map(self.extract_state).map(self.map_state_names) @@ -1620,25 +1597,19 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: @staticmethod def extract_state(description: str) -> str: - """ - Extracts state from series descripion. - """ + """Extracts state from series descripion.""" return description.split(" Natural ")[0] @staticmethod def map_state_names(state: str) -> str: - """ - Maps state name to code. - """ + """Maps state name to code.""" return "U.S." if state == "U.S. Total" else STATE_CODES[state] -class GasProduction(DataExtractor): - """ - Dry natural gas production. - """ +class _GasProduction(DataExtractor): + """Dry natural gas production.""" - production_codes = { + production_codes: ClassVar[dict[str, str]] = { "market": "VGM", "gross": "FGW", # gross withdrawls } @@ -1646,7 +1617,7 @@ class GasProduction(DataExtractor): def __init__(self, production: str, year: int, api_key: str) -> None: self.production = production if self.production not in list(self.production_codes): - raise InputException( + raise InputPropertyError( propery="Natural Gas Production", valid_options=list(self.production_codes), recived_option=production, @@ -1655,11 +1626,10 @@ def __init__(self, production: str, year: int, api_key: str) -> None: def build_url(self) -> str: base_url = "natural-gas/prod/sum/data/" - facets = f"frequency=monthly&data[0]=value&facets[process][]={self.production_codes[self.production]}&start={self.year}-01&end={self.year+1}-01&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + facets = f"frequency=monthly&data[0]=value&facets[process][]={self.production_codes[self.production]}&start={self.year}-01&end={self.year + 1}-01&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df = df[~(df["area-name"] == "NA")].copy() df["period"] = self._format_period(df.period) df["state"] = df["series-description"].map(self.extract_state).map(self.map_state_names) @@ -1685,18 +1655,14 @@ def extract_state(description: str) -> str: @staticmethod def map_state_names(state: str) -> str: - """ - Maps state name to code. - """ + """Maps state name to code.""" return "U.S." if state == "U.S." else STATE_CODES[state] -class StateEmissions(DataExtractor): - """ - State Level CO2 Emissions. - """ +class _StateEmissions(DataExtractor): + """State Level CO2 Emissions.""" - sector_codes = { + sector_codes: ClassVar[dict[str, str]] = { "commercial": "CC", "power": "EC", "industrial": "IC", @@ -1705,7 +1671,7 @@ class StateEmissions(DataExtractor): "total": "TT", } - fuel_codes = { + fuel_codes: ClassVar[dict[str, str]] = { "coal": "CO", "gas": "NG", "oil": "PE", @@ -1716,13 +1682,13 @@ def __init__(self, sector: str, fuel: str, year: int, api_key: str) -> None: self.sector = sector self.fuel = fuel if self.sector not in list(self.sector_codes): - raise InputException( + raise InputPropertyError( propery="State Level Emissions", valid_options=list(self.sector_codes), recived_option=sector, ) if self.fuel not in list(self.fuel_codes): - raise InputException( + raise InputPropertyError( propery="State Level Emissions", valid_options=list(self.fuel_codes), recived_option=fuel, @@ -1738,7 +1704,6 @@ def build_url(self) -> str: return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df = df[~(df["state-name"] == "NA")].copy() df = df.rename( columns={ @@ -1761,12 +1726,10 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class SedsConsumption(DataExtractor): - """ - State Level End-Use Consumption. - """ +class _SedsConsumption(DataExtractor): + """State Level End-Use Consumption.""" - sector_codes = { + sector_codes: ClassVar[dict[str, str]] = { "commercial": "TNCCB", "industrial": "TNICB", "residential": "TNRCB", @@ -1777,7 +1740,7 @@ class SedsConsumption(DataExtractor): def __init__(self, sector: str, year: int, api_key: str) -> None: self.sector = sector if self.sector not in list(self.sector_codes): - raise InputException( + raise InputPropertyError( propery="State Level Consumption", valid_options=list(self.sector_codes), recived_option=sector, @@ -1793,7 +1756,6 @@ def build_url(self) -> str: return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: - df = df.rename( columns={ "unit": "units", @@ -1811,12 +1773,10 @@ def format_data(self, df: pd.DataFrame) -> pd.DataFrame: return self._assign_dtypes(df) -class ElectricPowerOperationalData(DataExtractor): - """ - Electric Power Operational Data. - """ +class _ElectricPowerOperationalData(DataExtractor): + """Electric Power Operational Data.""" - sector_codes = { + sector_codes: ClassVar[dict[str, int]] = { "electric_utility": 1, "ipp_non_chp": 2, "ipp_chp": 3, @@ -1843,7 +1803,7 @@ def __init__(self, sector: str, year: int, api_key: str) -> None: ) self.year = 2023 if self.sector not in list(self.sector_codes): - raise InputException( + raise InputPropertyError( propery="Electric Power Operational Data", valid_options=list(self.sector_codes), recived_option=sector, @@ -1851,7 +1811,7 @@ def __init__(self, sector: str, year: int, api_key: str) -> None: def build_url(self) -> str: base_url = "electricity/electric-power-operational-data/data/" - facets = f"frequency=annual&data[0]=generation&facets[sectorid][]={self.sector_codes[self.sector]}&start={self.year-1}&end={self.year}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" + facets = f"frequency=annual&data[0]=generation&facets[sectorid][]={self.sector_codes[self.sector]}&start={self.year - 1}&end={self.year}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000" return f"{API_BASE}{base_url}?api_key={self.api_key}&{facets}" def format_data(self, df: pd.DataFrame) -> pd.DataFrame: diff --git a/workflow/scripts/eulp.py b/workflow/scripts/eulp.py index ec0dae6d..0d507293 100644 --- a/workflow/scripts/eulp.py +++ b/workflow/scripts/eulp.py @@ -6,10 +6,10 @@ See `retrieve_eulp` rule for the data extraction """ -import logging -from typing import Optional +from typing import ClassVar import pandas as pd +from matplotlib.axes import Axes class Eulp: @@ -24,7 +24,7 @@ class Eulp: - water_heat -> end use water heating """ - _elec_group = [ + _elec_group: ClassVar[list[str]] = [ # residential "out.electricity.ceiling_fan.energy_consumption.kwh", "out.electricity.clothes_dryer.energy_consumption.kwh", @@ -56,7 +56,7 @@ class Eulp: "out.electricity.water_systems.energy_consumption.kwh", ] - _heat_group = [ + _heat_group: ClassVar[list[str]] = [ # residential "out.electricity.heating.energy_consumption.kwh", "out.electricity.heating_fans_pumps.energy_consumption.kwh", @@ -92,7 +92,7 @@ class Eulp: "out.electricity.heating.energy_consumption.kwh", ] - _space_heat_group = [ + _space_heat_group: ClassVar[list[str]] = [ # residential "out.electricity.heating.energy_consumption.kwh", "out.electricity.heating_fans_pumps.energy_consumption.kwh", @@ -121,7 +121,7 @@ class Eulp: "out.electricity.heating.energy_consumption.kwh", ] - _water_heat_group = [ + _water_heat_group: ClassVar[list[str]] = [ # residential "out.electricity.hot_water.energy_consumption.kwh", "out.electricity.pool_heater.energy_consumption.kwh", @@ -136,7 +136,7 @@ class Eulp: "out.other_fuel.water_systems.energy_consumption.kwh", ] - _cool_group = [ + _cool_group: ClassVar[list[str]] = [ # residential "out.electricity.cooling.energy_consumption.kwh", "out.electricity.cooling_fans_pumps.energy_consumption.kwh", @@ -149,8 +149,8 @@ class Eulp: def __init__( self, - filepath: Optional[str] = None, - df: Optional[pd.DataFrame] = None, + filepath: str | None = None, + df: pd.DataFrame | None = None, ) -> None: if filepath: df = self._read_data(filepath) @@ -171,7 +171,7 @@ def __init__( ) else: raise TypeError( - f"missing 1 required positional argument: 'filepath' or 'df'", + "missing 1 required positional argument: 'filepath' or 'df'", ) def __add__(self, other): @@ -190,23 +190,23 @@ def __repr__(self): return f"\n{self.data.head(3)}\n\n from {self.data.index[0]} to {self.data.index[-1]}" @property - def electric(self): + def electric(self): # noqa: D102 return self.data["electricity"] @property - def heating(self): + def heating(self): # noqa: D102 return self.data["heating"] @property - def space_heating(self): + def space_heating(self): # noqa: D102 return self.data["space_heating"] @property - def water_heating(self): + def water_heating(self): # noqa: D102 return self.data["water_heating"] @property - def cooling(self): + def cooling(self): # noqa: D102 return self.data["cooling"] @staticmethod @@ -217,9 +217,7 @@ def _read_data(filepath: str) -> pd.DataFrame: @staticmethod def _resample_data(df: pd.DataFrame) -> pd.DataFrame: - """ - Locked to resampling at 1hr. - """ + """Locked to resampling at 1hr.""" if not isinstance(df.index, pd.DatetimeIndex): df.index = pd.to_datetime(df.index) df.index = df.index.map(lambda x: x.replace(year=2018)) @@ -228,7 +226,6 @@ def _resample_data(df: pd.DataFrame) -> pd.DataFrame: return resampled.sort_index() def _aggregate_data(self, df: pd.DataFrame) -> pd.DataFrame: - def aggregate_sector(df: pd.DataFrame, columns: list[str]) -> pd.Series: sector_columns = [x for x in columns if x in df.columns.to_list()] return df[sector_columns].sum(axis=1) @@ -250,16 +247,16 @@ def aggregate_sector(df: pd.DataFrame, columns: list[str]) -> pd.Series: def plot( self, - sectors: Optional[list[str] | str] = [ + sectors: list[str] | str | None = [ "electricity", "heating", "cooling", "space_heating", "water_heating", ], - resample: Optional[str] = None, - ): - + resample: str | None = None, + ) -> Axes: + """Plot load profiles.""" if isinstance(sectors, str): sectors = [sectors] @@ -271,26 +268,25 @@ def plot( return df.plot(xlabel="", ylabel="MW") def to_csv(self, path_or_buf: str, **kwargs): + """Save load data as a csv.""" self.data.to_csv(path_or_buf=path_or_buf, **kwargs) class EulpTotals: - """ - End use by fuel. - """ + """End use by fuel.""" - _elec_group = ["out.electricity.total.energy_consumption.kwh"] + _elec_group: ClassVar[list[str]] = ["out.electricity.total.energy_consumption.kwh"] - _ng_group = ["out.natural_gas.total.energy_consumption.kwh"] + _ng_group: ClassVar[list[str]] = ["out.natural_gas.total.energy_consumption.kwh"] - _oil_group = ["out.fuel_oil.total.energy_consumption.kwh"] + _oil_group: ClassVar[list[str]] = ["out.fuel_oil.total.energy_consumption.kwh"] - _propane_group = ["out.propane.total.energy_consumption.kwh"] + _propane_group: ClassVar[list[str]] = ["out.propane.total.energy_consumption.kwh"] def __init__( self, - filepath: Optional[str] = None, - df: Optional[pd.DataFrame] = None, + filepath: str | None = None, + df: pd.DataFrame | None = None, ) -> None: if filepath: df = self._read_data(filepath) @@ -301,7 +297,7 @@ def __init__( assert (self.data.columns == ["electricity", "gas", "oil", "propane"]).all() else: raise TypeError( - f"missing 1 required positional argument: 'filepath' or 'df'", + "missing 1 required positional argument: 'filepath' or 'df'", ) def __add__(self, other): @@ -320,19 +316,19 @@ def __repr__(self): return f"\n{self.data.head(3)}\n\n from {self.data.index[0]} to {self.data.index[-1]}" @property - def electric(self): + def electric(self): # noqa: D102 return self.data["electricity"] @property - def gas(self): + def gas(self): # noqa: D102 return self.data["gas"] @property - def oil(self): + def oil(self): # noqa: D102 return self.data["oil"] @property - def propane(self): + def propane(self): # noqa: D102 return self.data["propane"] @staticmethod @@ -343,9 +339,7 @@ def _read_data(filepath: str) -> pd.DataFrame: @staticmethod def _resample_data(df: pd.DataFrame) -> pd.DataFrame: - """ - Locked to resampling at 1hr. - """ + """Locked to resampling at 1hr.""" if not isinstance(df.index, pd.DatetimeIndex): df.index = pd.to_datetime(df.index) df.index = df.index.map(lambda x: x.replace(year=2018)) @@ -354,7 +348,6 @@ def _resample_data(df: pd.DataFrame) -> pd.DataFrame: return resampled.sort_index() def _aggregate_data(self, df: pd.DataFrame) -> pd.DataFrame: - def aggregate_sector(df: pd.DataFrame, columns: list[str]) -> pd.Series: sector_columns = [x for x in columns if x in df.columns.to_list()] return df[sector_columns].sum(axis=1) @@ -375,9 +368,9 @@ def aggregate_sector(df: pd.DataFrame, columns: list[str]) -> pd.Series: def plot( self, - sectors: Optional[list[str] | str] = ["electricity", "gas", "oil", "propane"], - ): - + sectors: list[str] | str | None = ["electricity", "gas", "oil", "propane"], + ) -> Axes: + """Plot load profiles.""" if isinstance(sectors, str): sectors = [sectors] @@ -386,6 +379,7 @@ def plot( return df.plot(xlabel="", ylabel="MWh") def to_csv(self, path_or_buf: str, **kwargs): + """Save load data as a csv.""" self.data.to_csv(path_or_buf=path_or_buf, **kwargs) diff --git a/workflow/scripts/generate_stochastic_samples.py b/workflow/scripts/generate_stochastic_samples.py deleted file mode 100644 index 742ea3b7..00000000 --- a/workflow/scripts/generate_stochastic_samples.py +++ /dev/null @@ -1,712 +0,0 @@ -# Written by Kamran Tehranchi (Stanford University) -""" -This scripts stochastic samples for power systems models based on the Mean-Reversion Stochastic Process Method presented here: XXX placeholder for paper link XXX - -""" -# %% Imports and functions - - -import glob -import os -import time -from pathlib import Path - -import numpy as np -import pandas as pd -import xarray as xr - - -def import_profiles_from_folder(PATH_FILES): - filelist = [] - for file in glob.glob(os.path.join(PATH_FILES, f"*.csv")): - filelist.append(os.path.join(file)) - load_base = pd.read_csv([s for s in filelist if "loads" in s][0], index_col=0) - solar_base = pd.read_csv([s for s in filelist if "solar" in s][0], index_col=0) - wind_base = pd.read_csv([s for s in filelist if "wind" in s][0], index_col=0) - return load_base, solar_base, wind_base - - -def import_profiles_from_network(PATH_NETWORK, num_clusters): - """ - Imports the profiles from a pypsa network. - - Args: - network_path (str): Path to the pypsa network. - num_clusters (int): Number of clusters to be used in the network. - - Returns: - pandas.DataFrame: Base load profile. - pandas.DataFrame: Base solar profile. - pandas.DataFrame: Base wind profile. - """ - import pypsa - - network = pypsa.Network(PATH_NETWORK) - # Export network to csv to be run in NodalStochastic Profile Generator - network.loads_t.p_set.to_csv( - os.path.join("resources/pypsa", f"loads_t_p_set_{num_clusters}.csv"), - ) - - # filter columns with solar in name - solar_df = network.generators_t.p_max_pu.loc[ - :, - network.generators_t.p_max_pu.columns.str.contains("solar"), - ] - solar_df.to_csv( - os.path.join("resources/pypsa", f"solar_profiles_{num_clusters}.csv"), - ) - - # filter columns with wind in name and export as csv - wind_df = network.generators_t.p_max_pu.loc[ - :, - network.generators_t.p_max_pu.columns.str.contains("wind"), - ] - wind_df.to_csv(os.path.join("resources/pypsa", f"wind_profiles_{num_clusters}.csv")) - - load_base, solar_base, wind_base = import_profiles_from_folder("resources/pypsa") - - return load_base, solar_base, wind_base - - -def resample_and_group(base_data, area_mapping): - """ - Resamples the input base data from hourly to daily, grouped by area id. - - Args: - base_data (pandas.DataFrame): Input data to be resampled. - area_mapping (dict): Dictionary mapping column names to area ids. - - Returns: - pandas.DataFrame: Resampled data, grouped by day of year and area id. - """ - base_area = base_data.groupby( - base_data.columns.map(area_mapping.area_id), - axis=1, - ).mean() - base_area["doy"] = timestamp_reference.day_of_year - base_area_daily = base_area.groupby("doy").mean() - base_area.drop(columns=["doy"], inplace=True) - return base_area_daily, base_area - - -def create_allocation(base, mapping): - """ - Creates an allocation of generation based on the mean of the base data. - - Args: - base (pandas.DataFrame): Input data to be resampled. - mapping (pandas.DataFrame): Dictionary mapping column names to area ids. - - Returns: - pandas.DataFrame: Hourly allocation of generation based on the mean of the base data. - """ - base_ = base.copy().reset_index(drop=True) - total_area_hourly = base_.groupby( - base_.columns.map(mapping.to_dict()["area_id"]), - axis=1, - ).sum() - base_.columns = base.columns.map(mapping.to_dict()["area_id"]) - base_[base_ < 0.0001] = 0 - allocation = base_.apply(lambda x: x / total_area_hourly.loc[:, x.name], axis=0) - allocation.fillna(0, inplace=True) - return allocation - - -def define_solar_hours(solar_profile, timestamps): - """ - Defines the first and last hour of the day for solar generation. - - Args: - solar_profile (pandas.DataFrame): Solar generation profile. - timestamps (pandas.DataFrame): Timestamps for the solar generation profile. - - Returns: - pandas.DataFrame: First and last hour of the day for solar generation. - """ - first_hour, last_hour, yesterday_last_hour = np.zeros((3, len(solar_profile))) - last_selected_index = 0 - timestamps = timestamps.copy(deep=True) - timestamps["solar_profile"] = pd.Series(solar_profile, name="solar_profile") - - for _, day_of_year_df in timestamps.groupby("day_of_year"): - first_hour_idx = day_of_year_df.solar_profile.idxmax() - last_hour_idx = day_of_year_df.solar_profile[::-1].idxmax() - start_hour = day_of_year_df.solar_profile.idxmin() - first_hour[first_hour_idx] = 1 - yesterday_last_hour[first_hour_idx] = 0 if start_hour < 23 else last_selected_index - last_hour[last_hour_idx] = 1 - last_selected_index = last_hour_idx - - return first_hour, last_hour, yesterday_last_hour - - -def assign_stochastic_mu(df_params, timestamp_reference, column_name="profile_type"): - """ - Assigns a stochastic mu to each hour of the year based on the season and - profile type. - - Args: - df_params (pandas.DataFrame): Dataframe containing the parameters for the stochastic mu. - timestamp_reference (pandas.DataFrame): Dataframe containing the timestamp reference. - column_name (str): Column name to be used for the merge. - - Returns: - pandas.DataFrame: Dataframe containing the stochastic mu for each hour of the year. - """ - df_mu_hourly = pd.merge( - left=timestamp_reference, - right=df_params[[column_name, "area_id", "season", "mu"]], - left_on="season_num", - right_on="season", - how="outer", - ) - order = df_mu_hourly["area_id"].unique() - df_mu_hourly_unstack = df_mu_hourly.set_index(["timestamp", column_name, "area_id"])["mu"].unstack().reset_index() - df_mu_hourly_unstack.columns = df_mu_hourly_unstack.columns.map(str) - df_mu_hourly_unstack = df_mu_hourly_unstack[np.append("timestamp", order)] - return df_mu_hourly_unstack - - -def sampling_warmup(df, thresholds, rng, min_steps=50): - """ - Performs a warmup of the sampling. - - Args: - df (pandas.DataFrame): Dataframe containing the parameters for the ratio sample. - thresholds (pandas.DataFrame): Dataframe containing the thresholds for the ratio sample. - rng (numpy.random.Generator): Random number generator. - min_steps (int): Minimum number of steps to be performed. - - Returns: - pandas.DataFrame: Dataframe containing the first sample of the ratio and epsilon. - """ - winter_params = df.query("season == 1") - ratio = winter_params.mu - for _ in range(min_steps): - eps = rng_eps(winter_params, rng) - ratio += winter_params.kai * (winter_params.mu - ratio) + eps - ratio, eps, na = resample_ratio( - ratio, - winter_params, - thresholds, - eps, - rng, - True, - ) - return ratio, eps - - -# idea: to better replicate inverter curtailment, i should retain out of threshold samples but maintain a seperate 'ratio' df that is the max(sample, 0) or min(sample, threshold))... this simplifies the need for re-sampling but retains proper distributional properties -def resample_ratio( - original_ratio, - params, - thresholds, - original_epsilon, - rng, - initialization, -): - resample_count = 0 - param_dict = params.sampling_id.to_dict() - while np.any( - np.logical_or(original_ratio > thresholds, original_ratio < 0), - ): # if any values are out of bounds - resampled_ratio = original_ratio.copy(deep=True) - mask_to_resample = np.logical_or( - original_ratio > thresholds, - original_ratio < 0, - ) # mask of values to resample - resampled_epsilon = rng_eps( - params[mask_to_resample.values], - rng, - ) # resample epsilon for values to resample - resampled_ratio[mask_to_resample] = ( - original_ratio[mask_to_resample] - original_epsilon[mask_to_resample] + resampled_epsilon.values - ) # resample ratio. subtract original epsilon and add new epsilon - resample_count += 1 - - if np.any( - np.logical_or(resampled_ratio > thresholds, resampled_ratio < 0), - ): # if any values are still out of bounds - - in_bounds_mask = np.logical_and( - mask_to_resample, - np.logical_and(resampled_ratio < thresholds, resampled_ratio > 0), - ) - - if np.any( - in_bounds_mask, - ): # if any values are in bounds (i.e. resampling was successful), then update original ratio and epsilon so that we reduce the number of resampled values in the next iteration - if not initialization: - resampled_epsilon.index = resampled_epsilon.index.map(param_dict) - original_ratio.loc[in_bounds_mask] = resampled_ratio[in_bounds_mask] - original_epsilon.loc[in_bounds_mask] = resampled_epsilon[in_bounds_mask].values - - else: # if no values are out of bounds, then set original ratio to resampled ratio, and we are done. - original_ratio = resampled_ratio.copy(deep=True) - original_epsilon[mask_to_resample] = resampled_epsilon.values - - if resample_count > 200: - print(resampled_ratio[in_bounds_mask]) - raise ValueError("Max number of iterations reached") - - return original_ratio, original_epsilon, resample_count - - -def rng_eps(params, rng): - return rng.standard_normal(len(params)) * params.sigma - - -################### Import Parameters ################### -area_mapping_solar = pd.read_csv("parameters/pypsa_area_mapping_solar.csv", index_col=0) -area_mapping_wind = pd.read_csv("parameters/pypsa_area_mapping_wind.csv", index_col=0) -load_parameters = pd.read_csv("parameters/pypsa_load_parameters.csv", index_col=0) -solar_parameters = pd.read_csv("parameters/pypsa_solar_parameters.csv", index_col=0) -wind_parameters = pd.read_csv("parameters/pypsa_wind_parameters.csv", index_col=0) - -################### Parameters ################### -num_samples = 10 -load_ratio_threshold = 5 -solar_ratio_threshold = 5 -wind_ratio_threshold = 100000 -year = 2016 -NETWORK_PATH = ( - "/Users/kamrantehranchi/Local_Documents/pypsa-breakthroughenergy-usa/workflow/notebooks/elec_s_96_offwind_2.nc" -) -num_clusters = 96 - -################### Sampling ################### -# %% -load_base, solar_base, wind_base = import_profiles_from_network( - NETWORK_PATH, - num_clusters, -) -num_zones = { - "load": load_base.shape[1], - "solar": len(area_mapping_solar.area_id.unique()), - "wind": len(area_mapping_wind.area_id.unique()), -} - -Path("sampled_data").mkdir(parents=True, exist_ok=True) -PATH_SAMPLE = Path("sampled_data") -num_hours = load_base.shape[0] - -solar_parameters = solar_parameters[solar_parameters.area_id.isin(area_mapping_solar.area_id.unique())] -wind_parameters = wind_parameters[wind_parameters.area_id.isin(area_mapping_wind.area_id.unique())] - -# Define Sampling IDs -load_parameters["sampling_id"] = ( - load_parameters.index + "_" + load_parameters.timescale + "_" + load_parameters.area_id.astype(str) -) -solar_parameters["sampling_id"] = ( - solar_parameters.index + "_" + solar_parameters.timescale + "_" + solar_parameters.area_id.astype(str) -) -wind_parameters["sampling_id"] = ( - wind_parameters.index + "_" + wind_parameters.timescale + "_" + wind_parameters.area_id.astype(str) -) -parameters_concat = pd.concat( - [load_parameters, solar_parameters, wind_parameters], -).reset_index() - -# Create a timeseries index dataframe to reference when sampling -timestamp_reference = pd.DataFrame( - {"timestamp": pd.period_range(year, periods=num_hours, freq="h")}, -) -timestamp_reference = timestamp_reference.assign( - month=timestamp_reference["timestamp"].dt.month, - day=timestamp_reference["timestamp"].dt.day, - hour=timestamp_reference["timestamp"].dt.hour, - day_of_year=timestamp_reference["timestamp"].dt.dayofyear, -) -timestamp_reference["season"] = timestamp_reference["month"].map( - { - 12: "winter", - 1: "winter", - 2: "winter", - 3: "spring", - 4: "spring", - 5: "spring", - 6: "summer", - 7: "summer", - 8: "summer", - 9: "fall", - 10: "fall", - 11: "fall", - }, -) -timestamp_reference["season_num"] = timestamp_reference["season"].map( - {"winter": 1, "spring": 2, "summer": 3, "fall": 4}, -) - -load_base.reset_index(inplace=True, drop=True) -solar_base.reset_index(inplace=True, drop=True) -wind_base.reset_index(inplace=True, drop=True) - -# resample load, solar, and wind to daily and area level values. -solar_base_area_daily, solar_base_area = resample_and_group( - solar_base, - area_mapping_solar, -) -wind_base_area_daily, wind_base_area = resample_and_group(wind_base, area_mapping_wind) - -# %% #Create Generation-Plant Allocations to Map from Area Stochastic Profiles to Plant level Profiles. -solar_allocation = create_allocation(solar_base, area_mapping_solar) -wind_allocation = create_allocation(wind_base, area_mapping_wind) - -# %% #Define Solar Hours -daytime_mask = solar_base_area >= 0.0001 -daytime_mask = daytime_mask.apply(lambda x: x.astype(int)) -df_daytime_solar_tracking = pd.DataFrame( - np.zeros_like(solar_base_area), - index=solar_base_area.index, - columns=solar_base_area.columns, -) -df_daytime_solar_tracking = df_daytime_solar_tracking.apply( - lambda x: define_solar_hours(daytime_mask[x.name], timestamp_reference)[2], -) - -# %%#Define Stochastic Mu Dataframes -cols_to_use = timestamp_reference.columns.difference(load_parameters.columns) -df_mu_load_hourly_unstack = assign_stochastic_mu( - load_parameters.reset_index(), - timestamp_reference[cols_to_use], -) -df_mu_solar_hourly_unstack = assign_stochastic_mu( - solar_parameters.query("timescale == 'hourly'").reset_index(), - timestamp_reference[cols_to_use], -) -df_mu_solar_daily_unstack = assign_stochastic_mu( - solar_parameters.query(" timescale == 'daily' ").reset_index(), - timestamp_reference, -) -df_mu_wind_hourly_unstack = assign_stochastic_mu( - wind_parameters.query(" timescale == 'daily' ").reset_index(), - timestamp_reference[cols_to_use], -) -df_mu_wind_daily_unstack = assign_stochastic_mu( - wind_parameters.query(" timescale == 'daily' ").reset_index(), - timestamp_reference[cols_to_use], -) - -# %% Create Output NP Arrays -load_zones_samples = np.zeros([num_hours, num_zones["load"], num_samples]) -solar_zones_samples = np.zeros([num_hours, num_zones["solar"], num_samples]) -wind_zones_samples = np.zeros([num_hours, num_zones["wind"], num_samples]) -solar_gen_samples = np.zeros([num_hours, solar_base.columns.shape[0], num_samples]) -wind_gen_samples = np.zeros([num_hours, wind_base.columns.shape[0], num_samples]) -ratio_samples_combined = np.zeros( - [num_hours, parameters_concat.sampling_id.unique().shape[0], num_samples], -) - -# %% Sampling Process -for sample_num in range(0, num_samples): - print(f"Sample {sample_num}") - rng = np.random.default_rng(seed=sample_num) - start_time = time.time() - resample_count = 0 - n_hours = timestamp_reference.shape[0] - sampling_profile_names = parameters_concat.sampling_id.unique() - solar_sampling_id_dict = dict( - parameters_concat[parameters_concat.sampling_id.str.contains("solar")] - .reset_index()[["sampling_id", "index"]] - .values, - ) - ratio_samples = pd.DataFrame( - 0, - index=np.arange(n_hours), - columns=sampling_profile_names, - ) - epsilon_samples = pd.DataFrame( - 0, - index=np.arange(n_hours), - columns=sampling_profile_names, - ) - - thresholds = np.concatenate( - [ - [load_ratio_threshold] * ratio_samples.columns.str.contains("load").sum(), - [solar_ratio_threshold] * ratio_samples.columns.str.contains("solar").sum(), - [wind_ratio_threshold] * ratio_samples.columns.str.contains("wind").sum(), - ], - ) - - ratio_samples.iloc[0, :], epsilon_samples.iloc[0, :] = sampling_warmup( - parameters_concat, - thresholds, - rng, - ) - - for i in range(1, n_hours): - - season_df = parameters_concat[parameters_concat.season == timestamp_reference.iloc[i].season_num] - p_eps = rng_eps(season_df, rng) - ratio_samples.iloc[i, :] = ( - ratio_samples.iloc[i - 1, :] - + season_df.kai.values * (season_df.mu.values - ratio_samples.iloc[i - 1, :]) - + p_eps.values - ) - epsilon_samples.iloc[i, :] = p_eps.values - - if i % 24 != 0: - ratio_samples.loc[i, ratio_samples.columns.str.contains("daily")] = ratio_samples.loc[ - i - 1, - ratio_samples.columns.str.contains("daily"), - ] - epsilon_samples.loc[i, epsilon_samples.columns.str.contains("daily")] = epsilon_samples.loc[ - i - 1, - epsilon_samples.columns.str.contains("daily"), - ] - - previous_sunset_idx = df_daytime_solar_tracking.iloc[i].astype(int) - if (previous_sunset_idx > 0).any(): - area_sunset_dict = dict( - zip( - [ - solar_sampling_id_dict.get(param_code) - for param_code in ratio_samples.columns - if "solar" in param_code - ], - previous_sunset_idx[previous_sunset_idx > 0].index, - ), - ) - previous_mu_vals = ratio_samples.loc[ - :, - ratio_samples.columns.str.contains("solar"), - ].iloc[i - 1] - # previous_mu_vals = ratio_samples.loc[:,ratio_samples.columns.str.contains('solar')].iloc[i - 1].rename(index=solar_sampling_id_dict).loc[area_sunset_dict.keys()] - solar_season = season_df[season_df.sampling_id.str.contains("solar")] - solar_mu_vals, solar_kai_vals = solar_season[["mu", "kai"]][ - solar_season.sampling_id.isin(previous_mu_vals.index) - ].values.T - eps_filtered = ( - p_eps[solar_season.index] - .rename(index=season_df.sampling_id.to_dict()) - .loc[previous_mu_vals.index] - .values - ) - ratio_samples.loc[i, previous_mu_vals.index] = ( - previous_mu_vals.values + solar_kai_vals * (solar_mu_vals - previous_mu_vals.values) + eps_filtered - ) - - if (ratio_samples.iloc[i] > thresholds).any() or (ratio_samples.iloc[i] < 0).any(): - r0, eps = ratio_samples.iloc[i], epsilon_samples.iloc[i, :] - ratios_new, eps_new, resample_count = resample_ratio( - r0, - season_df, - thresholds, - eps, - rng, - False, - ) - ratio_samples.iloc[i], epsilon_samples.iloc[i, :], resample_count = ( - ratios_new, - eps_new, - resample_count, - ) - print(f"Sampling time : {time.time() - start_time}") - - ratio_samples_combined[:, :, sample_num] = ratio_samples.values - - # Load Calculation - sampled_load_ratio = ratio_samples.filter(like="load") - sampled_load = load_base * sampled_load_ratio.values / df_mu_load_hourly_unstack.iloc[:, 1:].values - sampled_load["timestamp"] = timestamp_reference.timestamp - sampled_load.set_index("timestamp", inplace=True) - sampled_load.columns = load_base.columns - load_zones_samples[:, :, sample_num] = sampled_load.values - - # Solar Calculation - sampled_hourly_solar_ratio = ratio_samples.filter(regex="solar.*hourly") - sampled_daily_solar_ratio = ratio_samples.filter(regex="solar.*daily") - sampled_solar = ( - solar_base_area.values - * (0.333 * sampled_hourly_solar_ratio.values + 0.667 * sampled_daily_solar_ratio.values) - / (df_mu_solar_hourly_unstack.iloc[:, 1:] * 0.333 + df_mu_solar_daily_unstack.iloc[:, 1:] * 0.667) - ) - sampled_solar[sampled_solar > 1] = 1 # capacity factor cannot be greater than 1 - - sampled_solar_generatorlvl = np.ones_like(solar_base.values) * solar_allocation.values - sampled_solar_generatorlvl = pd.DataFrame( - sampled_solar_generatorlvl, - index=sampled_solar.index, - columns=solar_allocation.columns, - ) - sampled_solar_generatorlvl = sampled_solar_generatorlvl.apply( - lambda x: x * sampled_solar.loc[:, str(x.name)], - axis=0, - ) - - solar_zones_samples[:, :, sample_num] = sampled_solar.values - solar_gen_samples[:, :, sample_num] = sampled_solar_generatorlvl.values - - # Wind Calculation - sampled_hourly_wind_ratio = ratio_samples.filter(regex="wind.*hourly") - sampled_daily_wind_ratio = ratio_samples.filter(regex="wind.*daily") - sampled_wind = ( - wind_base_area.values - * (0.333 * sampled_hourly_wind_ratio.values + 0.667 * sampled_daily_wind_ratio.values) - / (df_mu_wind_hourly_unstack.iloc[:, 1:] * 0.333 + df_mu_wind_daily_unstack.iloc[:, 1:] * 0.667) - ) - sampled_wind[sampled_wind > 1] = 1 # capacity factor cannot be greater than 1 - - sampled_wind_generatorlvl = np.ones_like(wind_base.values) * wind_allocation.values - sampled_wind_generatorlvl = pd.DataFrame( - sampled_wind_generatorlvl, - index=sampled_wind.index, - columns=wind_allocation.columns, - ) - sampled_wind_generatorlvl = sampled_wind_generatorlvl.apply( - lambda x: x * sampled_wind.loc[:, str(x.name)], - axis=0, - ) - - wind_zones_samples[:, :, sample_num] = sampled_wind.values - wind_gen_samples[:, :, sample_num] = sampled_wind_generatorlvl.values - -# %% Combining into Xarray Dataset -# Match headers across datasets -solar_cols = area_mapping_solar.drop("area_id", axis=1) -wind_cols = area_mapping_wind.drop("area_id", axis=1) -# remove words solar/wind/offwind from values in index to match column headers from load data. Used to match buses with eachother -solar_cols.index = solar_cols.index.str.replace(" solar", "") -wind_cols.index = wind_cols.index.str.replace(" wind", "") -wind_cols.index = wind_cols.index.str.replace(" offwind", "") - -solar_cols["np_ind_solar"] = np.arange(0, len(solar_cols)) -wind_cols["np_ind_wind"] = np.arange(0, len(wind_cols)) -df_ind_match = pd.DataFrame(load_base.columns, columns=["load"]) -df_ind_match["np_ind_load"] = np.arange(0, len(load_base.columns)) -df_ind_match = df_ind_match.merge( - solar_cols, - left_on="load", - right_index=True, - how="outer", -).merge(wind_cols, left_on="load", right_index=True, how="outer") -df_ind_match.index = np.arange(0, len(df_ind_match)) -df_bus_coordinates = df_ind_match["load"] -df_ind_match = df_ind_match.drop(columns=["load"]) -df_ind_match_combinedarr = df_ind_match.where( - df_ind_match.isnull(), - np.column_stack([df_ind_match.index.values] * 3), -) - -# Create index references for each dataset -solar_inds_combined = df_ind_match_combinedarr.np_ind_solar.values[ - ~np.isnan(df_ind_match_combinedarr.np_ind_solar.values) -].astype(int) -wind_inds_combined = df_ind_match_combinedarr.np_ind_wind.values[ - ~np.isnan(df_ind_match_combinedarr.np_ind_wind.values) -].astype(int) -load_inds_combined = df_ind_match_combinedarr.np_ind_load.values[ - ~np.isnan(df_ind_match_combinedarr.np_ind_load.values) -].astype(int) - -wind_inds_orig = df_ind_match.np_ind_wind.dropna().astype(int).values -solar_inds_orig = df_ind_match.np_ind_solar.dropna().astype(int).values -load_inds_orig = df_ind_match.np_ind_load.dropna().astype(int).values - -# Combine load solar wind data into one array for each sample -combined_gen_samples = np.zeros( - [8784, 97, 3, num_samples], -) # Dimensions are (t, node, profile type, samples) -combined_gen_samples[:, load_inds_combined, 0, :] = load_zones_samples[ - :, - load_inds_orig, - :, -] -combined_gen_samples[:, solar_inds_combined, 1, :] = solar_gen_samples[ - :, - solar_inds_orig, - :, -] -combined_gen_samples[:, wind_inds_combined, 2, :] = wind_gen_samples[ - :, - wind_inds_orig, - :, -] - -# Create xarray dataset -da_bus_data = xr.DataArray( - combined_gen_samples, - coords={ - "timestamp": timestamp_reference.timestamp.dt.to_timestamp(), - "bus": df_bus_coordinates.values, - "profile_type": ["load", "solar", "wind"], - "sample_num": np.arange(0, num_samples), - }, - dims=["timestamp", "bus", "profile_type", "sample_num"], -) - -################Combining zonal data into one array for each profile type ############################# -# remove numeric from wind and solar columns -base_zones_solar = pd.DataFrame( - solar_cols.index.str.replace("[0-9]", "").drop_duplicates(), - columns=["solar"], -) -base_zones_wind = pd.DataFrame( - wind_cols.index.str.replace("[0-9]", "").drop_duplicates(), - columns=["wind"], -) - -base_zones_wind = base_zones_wind[~base_zones_wind.wind.str.contains("SDGE")].reset_index( - drop=True, -) # temporary fix -df_zone_ind_match = base_zones_solar.reset_index(names="solar_ind").merge( - base_zones_wind.reset_index(names="wind_ind"), - left_on="solar", - right_on="wind", - how="outer", -) -# combine non nan values into new column -zone_coords = df_zone_ind_match.solar.combine_first(df_zone_ind_match.wind) -solar_zone_inds_combined = df_zone_ind_match.solar_ind.values[~np.isnan(df_zone_ind_match.solar_ind.values)].astype(int) -wind_zone_inds_combined = df_zone_ind_match.wind_ind.values[~np.isnan(df_zone_ind_match.wind_ind.values)].astype(int) -wind_zone_inds_orig = df_zone_ind_match.wind_ind.dropna().astype(int).values -solar_zone_inds_orig = df_zone_ind_match.solar_ind.dropna().astype(int).values - -combined_zone_data = np.zeros( - [8784, 22, 2, num_samples], -) # Dimensions are (t, node, profile type, samples) -combined_zone_data[:, solar_zone_inds_combined, 0, :] = solar_zones_samples[ - :, - solar_zone_inds_orig, - :, -] -combined_zone_data[:, wind_zone_inds_combined, 1, :] = wind_zones_samples[ - :, - wind_zone_inds_orig, - :, -] - -da_zone_data = xr.DataArray( - combined_zone_data, - coords={ - "timestamp": timestamp_reference.timestamp.dt.to_timestamp(), - "zone": zone_coords.values, - "profile_type": ["solar", "wind"], - "sample_num": np.arange(0, num_samples), - }, - dims=["timestamp", "zone", "profile_type", "sample_num"], -) - -da_ratios = xr.DataArray( - ratio_samples_combined, - coords={ - "timestamp": timestamp_reference.timestamp.dt.to_timestamp(), - "ratio_sample": parameters_concat.sampling_id.unique(), - "sample_num": np.arange(0, num_samples), - }, - dims=["timestamp", "ratio_sample", "sample_num"], -) - -# # Saving files -da_zone_data.to_netcdf(os.path.join(os.getcwd(), PATH_SAMPLE, "sampled_zone_data.nc")) -da_bus_data.to_netcdf(os.path.join(os.getcwd(), PATH_SAMPLE, "sampled_bus_data.nc")) -da_ratios.to_netcdf(os.path.join(os.getcwd(), PATH_SAMPLE, "sampled_ratio_data.nc")) -np.save( - os.path.join(os.getcwd(), PATH_SAMPLE, "combined_gen_samples.npy"), - combined_gen_samples, -) -np.save( - os.path.join(os.getcwd(), PATH_SAMPLE, "combined_ratio_samples.npy"), - ratio_samples_combined, -) diff --git a/workflow/scripts/log.py b/workflow/scripts/log.py index f125b16e..b1ba7a1d 100644 --- a/workflow/scripts/log.py +++ b/workflow/scripts/log.py @@ -1,3 +1,5 @@ +"""Set up for custom logging.""" + import logging diff --git a/workflow/scripts/plot_natural_gas.py b/workflow/scripts/plot_natural_gas.py index 438843a7..ffeed7cd 100644 --- a/workflow/scripts/plot_natural_gas.py +++ b/workflow/scripts/plot_natural_gas.py @@ -1,8 +1,11 @@ +"""Plotting for natural gas networks.""" + import logging -import sys -from dataclasses import dataclass, field +from dataclasses import dataclass from functools import partial from pathlib import Path + +# Optional used as 'arg: callable | None = None' gives TypeError with py3.11 from typing import Any, Optional import matplotlib.pyplot as plt @@ -30,15 +33,17 @@ @dataclass class PlottingData: + """Class for ploting sector network data.""" + name: str getter: callable plotter: callable - nice_name: Optional[str] = None - unit: Optional[str] = None - converter: Optional[float] = 1.0 - resample: Optional[str] = None # "D", "W", "12h" for example - resample_func: Optional[callable] = None # pd.Series.sum for example - plot_by_month: Optional[bool] = False # not resampled + nice_name: str | None = None + unit: str | None = None + converter: float | None = 1.0 + resample: str | None = None # "D", "W", "12h" for example + resample_func: Optional[callable] = None # pd.Series.sum for example # noqa: UP007 + plot_by_month: bool | None = False # not resampled def _get_month_name(month: Month) -> str: @@ -46,9 +51,7 @@ def _get_month_name(month: Month) -> str: def _resample_data(df: pd.DataFrame, freq: str, agg_func: callable) -> pd.DataFrame: - """ - Helper for resampling data based on input function. - """ + """Helper for resampling data based on input function.""" if df.empty: return df else: @@ -60,9 +63,7 @@ def _group_data(df: pd.DataFrame) -> pd.DataFrame: def _sum_state_data(data: dict[str, pd.DataFrame]) -> pd.DataFrame: - """ - Sums state data together. - """ + """Sums state data together.""" if not data: return pd.DataFrame() @@ -73,10 +74,7 @@ def _sum_state_data(data: dict[str, pd.DataFrame]) -> pd.DataFrame: def _sum_state_trade_data( data: dict[dict[str, pd.DataFrame]], ) -> dict[str, pd.DataFrame]: - """ - Sums state data together. - """ - + """Sums state data together.""" import_data = {} export_data = {} @@ -108,10 +106,7 @@ def plot_gas( units: str, **kwargs, ) -> tuple[plt.Figure, plt.Axes]: - """ - General gas plotting function. - """ - + """General gas plotting function.""" df = data.copy() if df.empty: @@ -148,19 +143,20 @@ def plot_gas_trade( units: str, **kwargs, ) -> tuple[plt.Figure, plt.Axes]: - """ - General gas trade plotting function. - """ - + """General gas trade plotting function.""" # periods will be the same for imports or exports periods = data["imports"].index.get_level_values("period").unique() n_rows = len(periods) - fig, axs = plt.subplots(n_rows, 2, sharey=True, figsize=(FIG_WIDTH, FIG_HEIGHT * n_rows)) + fig, axs = plt.subplots( + n_rows, + 2, + sharey=True, + figsize=(FIG_WIDTH, FIG_HEIGHT * n_rows), + ) for i, period in enumerate(periods): - # plot imports imports = data["imports"].copy() @@ -285,7 +281,6 @@ def plot_gas_trade( ] if __name__ == "__main__": - if "snakemake" not in globals(): from _helpers import mock_snakemake @@ -312,7 +307,8 @@ def plot_gas_trade( plotting_metadata = [PlottingData(**x) for x in PLOTTING_META] # hack to only read in the network once, but get images to all states independently - # ie. "interconnect}/figures/s{{simpl}}_c{{clusters}}/l{{ll}}_{{opts}}_{{sector}}/system/natural_gas/%s.png" + # ie. + # "interconnect}/figures/s{{simpl}}_c{{clusters}}/l{{ll}}_{{opts}}_{{sector}}/system/natural_gas/%s.png" # {result_name: {state: save_path.png}} expected_figures = {} @@ -323,13 +319,12 @@ def plot_gas_trade( result = p.stem # ie. 'demand' state_paths = {} for state in states: - full_path = root_path + [state] + figure_name + full_path = [*root_path, state, *figure_name] full_path = Path("/".join(full_path)) state_paths[state] = full_path expected_figures[result] = state_paths for meta in plotting_metadata: - if meta.name not in expected_figures: logger.warning(f"Not expecting {meta.name} natural gas chart") continue @@ -337,7 +332,6 @@ def plot_gas_trade( data = meta.getter(n) for state in states: - if state == "system": if _is_trade_data(data): state_data = _sum_state_trade_data(data) @@ -364,11 +358,19 @@ def plot_gas_trade( if meta.resample: title = f"{state} {meta.nice_name} resampled to {meta.resample}" if isinstance(state_data, pd.DataFrame): - state_data_resampled = _resample_data(state_data, meta.resample, meta.resample_func) + state_data_resampled = _resample_data( + state_data, + meta.resample, + meta.resample_func, + ) elif isinstance(state_data, dict): state_data_resampled = {} for k, v in state_data.items(): - state_data_resampled[k] = _resample_data(v, meta.resample, meta.resample_func) + state_data_resampled[k] = _resample_data( + v, + meta.resample, + meta.resample_func, + ) else: title = f"{state} {meta.nice_name}" state_data_resampled = state_data @@ -390,7 +392,6 @@ def plot_gas_trade( months = {month.value: _get_month_name(month) for month in Month} for month_i, month_name in months.items(): - if isinstance(state_data, pd.DataFrame): if not state_data.empty: state_data_month = state_data[state_data.index.get_level_values("timestep").month == month_i] @@ -407,7 +408,11 @@ def plot_gas_trade( fig.tight_layout() # this is ugly, but just create subdir of name and index by month - save_path = Path(expected_figures[meta.name][state].parent, meta.name, f"{month_name}.png") + save_path = Path( + expected_figures[meta.name][state].parent, + meta.name, + f"{month_name}.png", + ) if not save_path.parent.exists(): save_path.parent.mkdir(parents=True, exist_ok=True) fig.savefig(str(save_path)) diff --git a/workflow/scripts/plot_network_maps.py b/workflow/scripts/plot_network_maps.py index e862bd15..62fc0974 100644 --- a/workflow/scripts/plot_network_maps.py +++ b/workflow/scripts/plot_network_maps.py @@ -32,12 +32,10 @@ import pandas as pd import pypsa import seaborn as sns -from cartopy import crs as ccrs -from pypsa.plot import add_legend_circles, add_legend_lines, add_legend_patches - -logger = logging.getLogger(__name__) from _helpers import configure_logging from add_electricity import sanitize_carriers +from cartopy import crs as ccrs +from pypsa.plot import add_legend_circles, add_legend_lines, add_legend_patches from summary import ( get_capacity_base, get_capacity_brownfield, @@ -45,14 +43,14 @@ get_node_emissions_timeseries, ) +logger = logging.getLogger(__name__) + # Global Plotting Settings TITLE_SIZE = 16 def get_color_palette(n: pypsa.Network) -> pd.Series: - """ - Returns colors based on nice name. - """ + """Returns colors based on nice name.""" colors = (n.carriers.reset_index().set_index("nice_name")).color # additional = { @@ -89,9 +87,7 @@ def get_color_palette(n: pypsa.Network) -> pd.Series: def get_bus_scale(interconnect: str) -> float: - """ - Scales lines based on interconnect size. - """ + """Scales lines based on interconnect size.""" if interconnect != "usa": return 1e5 else: @@ -99,9 +95,7 @@ def get_bus_scale(interconnect: str) -> float: def get_line_scale(interconnect: str) -> float: - """ - Scales lines based on interconnect size. - """ + """Scales lines based on interconnect size.""" if interconnect != "usa": return 2e3 else: @@ -135,9 +129,7 @@ def create_title(title: str, **wildcards) -> str: def remove_sector_buses(df: pd.DataFrame) -> pd.DataFrame: - """ - Removes buses for sector coupling. - """ + """Removes buses for sector coupling.""" num_levels = df.index.nlevels if num_levels > 1: @@ -160,7 +152,6 @@ def plot_emissions_map( save: str, **wildcards, ) -> None: - # get data emissions = ( @@ -227,9 +218,7 @@ def plot_capacity_map( line_cmap="viridis", line_norm=None, ) -> tuple[plt.figure, plt.axes]: - """ - Generic network plotting function for capacity pie charts at each node. - """ + """Generic network plotting function for capacity pie charts at each node.""" fig, ax = plt.subplots( figsize=(10, 10), subplot_kw={"projection": ccrs.EqualEarth(n.buses.x.mean())}, @@ -304,14 +293,12 @@ def plot_demand_map( save: str, **wildcards, ) -> None: - """ - Plots map of network nodal demand. - """ + """Plots map of network nodal demand.""" # get data bus_values = get_demand_base(n).mul(1e-3) line_values = n.lines.s_nom - link_values = n.links.p_nom.replace(to_replace={pd.NA: 0}) + link_values = n.links[n.links.carrier == "AC"].p_nom.replace(to_replace={pd.NA: 0}) # plot data title = create_title("Network Demand", **wildcards) @@ -389,9 +376,7 @@ def plot_base_capacity_map( save: str, **wildcards, ) -> None: - """ - Plots map of base network capacities. - """ + """Plots map of base network capacities.""" # get data bus_values = get_capacity_base(n) @@ -399,7 +384,7 @@ def plot_base_capacity_map( bus_values = remove_sector_buses(bus_values).groupby(by=["bus", "carrier"]).sum() line_values = n.lines.s_nom - # link_values = n.links.p_nom.replace(0, None) + link_values = n.links[n.links.carrier == "AC"].p_nom.replace(to_replace={pd.NA: 0}) # plot data @@ -412,7 +397,7 @@ def plot_base_capacity_map( n=n, bus_values=bus_values, line_values=line_values, - link_values=n.links.p_nom.replace(to_replace={pd.NA: 0}), + link_values=link_values, regions=regions, line_scale=line_scale, bus_scale=bus_scale, @@ -429,9 +414,7 @@ def plot_opt_capacity_map( save: str, **wildcards, ) -> None: - """ - Plots map of optimal network capacities. - """ + """Plots map of optimal network capacities.""" # get data # capacity = n.statistics()[['Optimal Capacity']] # capacity = capacity[capacity.index.get_level_values(0).isin(['Generator', 'StorageUnit'])] @@ -441,6 +424,9 @@ def plot_opt_capacity_map( bus_values = bus_values[bus_values.index.get_level_values("carrier").isin(carriers)] bus_values = remove_sector_buses(bus_values).reset_index().groupby(by=["bus", "carrier"]).sum().squeeze() line_values = n.lines.s_nom_opt + link_values = n.links[n.links.carrier == "AC"].p_nom_opt.replace( + to_replace={pd.NA: 0}, + ) # plot data title = create_title("Optimal Network Capacities", **wildcards) @@ -452,7 +438,7 @@ def plot_opt_capacity_map( n=n, bus_values=bus_values, line_values=line_values, - link_values=n.links.p_nom_opt.replace(to_replace={pd.NA: 0}), + link_values=link_values, regions=regions, line_scale=line_scale, bus_scale=bus_scale, @@ -469,14 +455,7 @@ def plot_new_capacity_map( save: str, **wildcards, ) -> None: - """ - Plots map of new capacity. - """ - # get data - # expanded_capacity = n.statistics.expanded_capacity() - # expanded_capacity = expanded_capacity[expanded_capacity.index.get_level_values(0).isin(['Generator', 'StorageUnit'])] - # expanded_capacity.index = expanded_capacity.index.droplevel(0) - + """Plots map of new capacity.""" bus_pnom = get_capacity_base(n) bus_pnom_opt = get_capacity_brownfield(n) @@ -488,8 +467,8 @@ def plot_new_capacity_map( line_snom_opt = n.lines.s_nom_opt line_values = line_snom_opt - line_snom - link_pnom = n.links.p_nom - link_pnom_opt = n.links.p_nom_opt + link_pnom = n.links[n.links.carrier == "AC"].p_nom + link_pnom_opt = n.links[n.links.carrier == "AC"].p_nom_opt link_values = link_pnom_opt - link_pnom # plot data @@ -518,9 +497,7 @@ def plot_renewable_potential( save: str, **wildcards, ) -> None: - """ - Plots wind and solar resource potential by node. - """ + """Plots wind and solar resource potential by node.""" # get data renew = n.generators[ (n.generators.p_nom_max != np.inf) @@ -534,10 +511,6 @@ def plot_renewable_potential( bus_values = renew.groupby(["bus", "carrier"]).p_nom_max.sum() - # bus_pnom_opt = get_capacity_brownfield(n) - # bus_pnom_opt = bus_pnom_opt.loc[bus_values.index] - # print((bus_values - bus_pnom_opt)/bus_values) - # do not show lines or links line_values = pd.Series(0, index=n.lines.s_nom.index) link_values = pd.Series(0, index=n.links.p_nom.index) @@ -611,10 +584,11 @@ def plot_lmp_map(network: pypsa.Network, save: str, **wildcards): snakemake = mock_snakemake( "plot_network_maps", - interconnect="texas", - clusters=7, - ll="v1.00", - opts="REM-400SEG", + interconnect="western", + clusters="4m", + simpl="70", + ll="v1.0", + opts="1h-TCT", sector="E", ) configure_logging(snakemake) diff --git a/workflow/scripts/plot_sankey_carbon.py b/workflow/scripts/plot_sankey_carbon.py index 611b6a1e..d744e2c4 100644 --- a/workflow/scripts/plot_sankey_carbon.py +++ b/workflow/scripts/plot_sankey_carbon.py @@ -6,7 +6,6 @@ """ from pathlib import Path -from typing import Optional import pandas as pd import plotly.graph_objects as go @@ -81,7 +80,6 @@ def get_pwr_flows(n: pypsa.Network, investment_period: int, state: str) -> pd.DataFrame: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -124,7 +122,6 @@ def get_sector_flows( investment_period: int, state: str, ) -> pd.DataFrame: - weights = n.snapshot_weightings.objective if state: @@ -162,7 +159,7 @@ def get_sector_flows( def get_sankey_dataframe( n: pypsa.Network, investment_period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: dfs = [ get_pwr_flows(n, investment_period, state), @@ -181,7 +178,6 @@ def format_sankey_data( name_mapper: dict[str, str], sankey_codes: dict[str, int], ) -> pd.DataFrame: - def map_sankey_name(name: str): try: return name_mapper[name] @@ -222,10 +218,7 @@ def assign_link_color(row: pd.Series) -> str: ### if __name__ == "__main__": - if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake( "plot_sankey_energy", simpl="70", @@ -261,7 +254,6 @@ def assign_link_color(row: pd.Series) -> str: # plot state level for state in states: - df = get_sankey_dataframe( n=n, investment_period=investment_period, @@ -308,7 +300,7 @@ def assign_link_color(row: pd.Series) -> str: fig_name_html.parent.mkdir(parents=True) fig.write_html(str(fig_name_html)) - fig.write_image(str(fig_name_png)) + # fig.write_image(str(fig_name_png)) # plot system level @@ -357,4 +349,4 @@ def assign_link_color(row: pd.Series) -> str: fig_name_html.parent.mkdir(parents=True) fig.write_html(str(fig_name_html)) - fig.write_image(str(fig_name_png)) + # fig.write_image(str(fig_name_png)) diff --git a/workflow/scripts/plot_sankey_energy.py b/workflow/scripts/plot_sankey_energy.py index e95093ec..5ff33136 100644 --- a/workflow/scripts/plot_sankey_energy.py +++ b/workflow/scripts/plot_sankey_energy.py @@ -6,10 +6,8 @@ """ from pathlib import Path -from typing import Optional import pandas as pd -import plotly import plotly.graph_objects as go import pypsa from _helpers import configure_logging, mock_snakemake @@ -102,9 +100,8 @@ def _get_consumption_generators( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - if state: generators = _get_gens_in_state(n, state) else: @@ -123,9 +120,8 @@ def _get_consumption_generators( def _get_rejected_generators( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - if state: generators = _get_gens_in_state(n, state) else: @@ -147,7 +143,7 @@ def _get_rejected_generators( def _get_consumption_links( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: if state: links = _get_links_in_state(n, state) @@ -164,9 +160,8 @@ def _get_consumption_links( def _get_rejected_links( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - if state: links = _get_links_in_state(n, state) else: @@ -191,7 +186,7 @@ def get_electricity_consumption( n: pypsa.Network, carriers: list[str], period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: df = pd.concat( [ @@ -210,7 +205,7 @@ def get_electricity_rejected( n: pypsa.Network, carriers: list[str], period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: df = pd.concat( [ @@ -235,9 +230,8 @@ def _get_sector_consumption( sector: str, fuel: str, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if fuel == "elec": fuel = "AC" @@ -262,9 +256,8 @@ def _get_service_supply( n: pypsa.Network, sector: str, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -292,9 +285,8 @@ def _get_service_rejected( n: pypsa.Network, sector: str, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -319,9 +311,8 @@ def _get_service_rejected( def _get_industry_supply( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -340,9 +331,8 @@ def _get_industry_supply( def _get_industry_rejected( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -367,9 +357,8 @@ def _get_industry_rejected( def _get_transport_supply( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -402,9 +391,8 @@ def _get_transport_supply( def _get_transport_rejected( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> float: - if state: links_in_state = _get_links_in_state(n, state) else: @@ -439,9 +427,8 @@ def _get_transport_rejected( def get_energy_flow_res( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - elec_consumption = _get_sector_consumption(n, "res", "elec", period, state) lpg_consumption = _get_sector_consumption(n, "res", "oil", period, state) gas_consumption = _get_sector_consumption(n, "res", "gas", period, state) @@ -466,9 +453,8 @@ def get_energy_flow_res( def get_energy_flow_com( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - elec_consumption = _get_sector_consumption(n, "com", "elec", period, state) lpg_consumption = _get_sector_consumption(n, "com", "oil", period, state) gas_consumption = _get_sector_consumption(n, "com", "gas", period, state) @@ -493,9 +479,8 @@ def get_energy_flow_com( def get_energy_flow_ind( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - elec_consumption = _get_sector_consumption(n, "ind", "elec", period, state) coal_consumption = _get_sector_consumption(n, "ind", "coal", period, state) gas_consumption = _get_sector_consumption(n, "ind", "gas", period, state) @@ -520,9 +505,8 @@ def get_energy_flow_ind( def get_energy_flow_trn( n: pypsa.Network, period: int, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - elec_consumption = _get_sector_consumption(n, "trn", "elec", period, state) oil_consumption = _get_sector_consumption(n, "trn", "oil", period, state) @@ -551,7 +535,7 @@ def get_sankey_dataframe( n: pypsa.Network, investment_period: int, pwr_carriers: list[str], - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: dfs = [ get_electricity_consumption(n, pwr_carriers, investment_period, state), @@ -571,7 +555,6 @@ def format_sankey_data( name_mapper: dict[str, str], sankey_codes: dict[str, int], ) -> pd.DataFrame: - def map_sankey_name(name: str): try: return name_mapper[name] @@ -612,10 +595,7 @@ def assign_link_color(row: pd.Series) -> str: ### if __name__ == "__main__": - if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake( "plot_sankey_energy", simpl="70", @@ -653,7 +633,6 @@ def assign_link_color(row: pd.Series) -> str: # plot state level for state in states: - df = get_sankey_dataframe( n=n, pwr_carriers=power_carriers, @@ -703,7 +682,7 @@ def assign_link_color(row: pd.Series) -> str: fig_name_html.parent.mkdir(parents=True) fig.write_html(str(fig_name_html)) - fig.write_image(str(fig_name_png)) + # fig.write_image(str(fig_name_png)) # plot system level @@ -755,4 +734,4 @@ def assign_link_color(row: pd.Series) -> str: fig_name_html.parent.mkdir(parents=True) fig.write_html(str(fig_name_html)) - fig.write_image(str(fig_name_png)) + # fig.write_image(str(fig_name_png)) diff --git a/workflow/scripts/plot_statistics.py b/workflow/scripts/plot_statistics.py index d39e5209..4b98a295 100644 --- a/workflow/scripts/plot_statistics.py +++ b/workflow/scripts/plot_statistics.py @@ -39,8 +39,6 @@ import pandas as pd import pypsa import seaborn as sns - -logger = logging.getLogger(__name__) from _helpers import configure_logging from add_electricity import sanitize_carriers from plot_network_maps import get_color_palette @@ -53,6 +51,8 @@ get_tech_emissions_timeseries, ) +logger = logging.getLogger(__name__) + # Global Plotting Settings TITLE_SIZE = 16 @@ -93,7 +93,7 @@ def stacked_bar_horizons( colors_ = carriers["color"] carriers_legend = carriers # to track which carriers have non-zero values # Create subplots - planning_horizons = stats[list(stats.keys())[0]].columns + planning_horizons = stats[next(iter(stats.keys()))].columns fig, axes = plt.subplots( nrows=len(planning_horizons), ncols=1, @@ -168,9 +168,7 @@ def plot_capacity_additions_bar( save: str, **wildcards, ) -> None: - """ - Plots base capacity vs optimal capacity as a bar chart. - """ + """Plots base capacity vs optimal capacity as a bar chart.""" existing_capacity = n.generators.groupby("carrier").p_nom.sum().round(0) existing_capacity = existing_capacity.to_frame(name="Existing Capacity") storage_units = n.storage_units.groupby("carrier").p_nom.sum().round(0) @@ -181,10 +179,10 @@ def plot_capacity_additions_bar( optimal_capacity = n.statistics.optimal_capacity() optimal_capacity = optimal_capacity[optimal_capacity.index.get_level_values(0).isin(["Generator", "StorageUnit"])] optimal_capacity.index = optimal_capacity.index.droplevel(0) - optimal_capacity.reset_index(inplace=True) - optimal_capacity.rename(columns={"index": "carrier"}, inplace=True) + optimal_capacity = optimal_capacity.reset_index() + optimal_capacity = optimal_capacity.rename(columns={"index": "carrier"}) - optimal_capacity.set_index("carrier", inplace=True) + optimal_capacity = optimal_capacity.set_index("carrier") optimal_capacity.insert(0, "Existing", existing_capacity["Existing Capacity"]) optimal_capacity = optimal_capacity.fillna(0) @@ -202,9 +200,7 @@ def plot_production_bar( save: str, **wildcards, ) -> None: - """ - Plot diaptch per carrier. - """ + """Plot diaptch per carrier.""" energy_mix = n.statistics.supply().round(0) energy_mix = energy_mix[ energy_mix.index.get_level_values("component").isin( @@ -227,9 +223,7 @@ def plot_global_constraint_shadow_prices( save: str, **wildcards, ) -> None: - """ - Plots shadow prices on global constraints. - """ + """Plots shadow prices on global constraints.""" shadow_prices = n.global_constraints.mu.round(3).reset_index() # plot data @@ -252,9 +246,7 @@ def plot_global_constraint_shadow_prices( def get_currently_installed_capacity(n: pypsa.Network) -> pd.DataFrame: - """ - Returns a DataFrame with the currently installed capacity for each carrier and nerc region. - """ + """Returns a DataFrame with the currently installed capacity for each carrier and nerc region.""" n.generators["nerc_reg"] = n.generators.bus.map(n.buses.nerc_reg) existing_capacity = n.generators.groupby(["nerc_reg", "carrier"]).p_nom.sum().round(0) existing_capacity = existing_capacity.to_frame(name="Existing") @@ -271,11 +263,11 @@ def get_currently_installed_capacity(n: pypsa.Network) -> pd.DataFrame: index=existing_capacity.index, ) existing_capacity = existing_capacity.drop(columns="index") - existing_capacity.set_index(["Region", "Carrier"], inplace=True) + existing_capacity = existing_capacity.set_index(["Region", "Carrier"]) nn_carriers = existing_capacity.index.get_level_values(1).map(n.carriers.nice_name) existing_capacity = existing_capacity.droplevel(1) - existing_capacity.set_index(nn_carriers, append=True, inplace=True) + existing_capacity = existing_capacity.set_index(nn_carriers, append=True) return existing_capacity @@ -283,11 +275,13 @@ def get_statistics(n, column_name): """ Prepare the statistics data for plotting by extracting and grouping by region and carrier. - Parameters: + Parameters + ---------- - n: pypsa.Network - column_name: str, the name of the column to extract from statistics (e.g., 'Optimal Capacity', 'Supply') - Returns: + Returns + ------- - pd.DataFrame: Prepared and grouped data """ groupers = n.statistics.groupers @@ -301,11 +295,11 @@ def get_statistics(n, column_name): su_reg = su.map(n.storage_units.bus.map(n.buses.nerc_reg)).to_series() nerc_reg = pd.concat([gens_reg, su_reg]) - df.set_index(nerc_reg, append=True, inplace=True) + df = df.set_index(nerc_reg, append=True) df = df.droplevel([0, 1, 2]) - df.reset_index(inplace=True) - df.rename(columns={"level_0": "carrier", "level_1": "region"}, inplace=True) - df.set_index(["region", "carrier"], inplace=True) + df = df.reset_index() + df = df.rename(columns={"level_0": "carrier", "level_1": "region"}) + df = df.set_index(["region", "carrier"]) df_selected = df[column_name] df_selected = df_selected.groupby(df_selected.index).sum() @@ -315,7 +309,7 @@ def get_statistics(n, column_name): index=df_selected.index, ) df_selected = df_selected.drop(columns="index") - df_selected.set_index(["Region", "Carrier"], inplace=True) + df_selected = df_selected.set_index(["Region", "Carrier"]) return df_selected @@ -324,7 +318,8 @@ def plot_bar(data, n, save, title, ylabel, is_capacity=False): """ Plot the data in a bar chart with subplots by region and carrier. - Parameters: + Parameters + ---------- - data: pd.DataFrame, data to plot - n: pypsa.Network - save: str, file path to save the plot @@ -338,7 +333,7 @@ def plot_bar(data, n, save, title, ylabel, is_capacity=False): data = data[["Existing"] + [col for col in data.columns if col != "Existing"]] retirements = data.diff(axis=1).clip(upper=0) retirements = retirements[(retirements < -0.001).any(axis=1)] - retirements.fillna(0, inplace=True) + retirements = retirements.fillna(0) data = pd.concat([data, retirements]) data = data / 1e3 # Convert to GW @@ -352,8 +347,19 @@ def plot_bar(data, n, save, title, ylabel, is_capacity=False): rows = math.ceil(num_regions / columns) # Set up the figure and axes - fig, axes = plt.subplots(rows, columns, figsize=(columns * 2.5, rows * 5), sharex=True, sharey=True) - axes = axes.flatten() + fig, axes = plt.subplots( + rows, + columns, + figsize=(columns * 2.5, rows * 5), + sharex=True, + sharey=True, + ) + + # Ensure axes is a flattened array for consistent indexing + if num_regions == 1: + axes = [axes] # Wrap single Axes object in a list + else: + axes = axes.flatten() for i, region in enumerate(regions): region_data = data.loc[region] @@ -369,9 +375,12 @@ def plot_bar(data, n, save, title, ylabel, is_capacity=False): axes[i].set_ylabel(ylabel) axes[i].set_xlabel("") - for j in range(i + 1, len(axes)): - fig.delaxes(axes[j]) + # Remove unused subplots + if num_regions > 1: + for j in range(i + 1, len(axes)): + fig.delaxes(axes[j]) + # Create legend handles, labels = [], [] for carrier in data.reset_index().Carrier.unique(): handle = plt.Rectangle((0, 0), 1, 1, color=palette[carrier]) @@ -387,18 +396,14 @@ def plot_bar(data, n, save, title, ylabel, is_capacity=False): def plot_regional_capacity_additions_bar(n, save): - """ - Plot capacity evolution by NERC region in a stacked bar plot. - """ + """Plot capacity evolution by NERC region in a stacked bar plot.""" data = get_statistics(n, "Optimal Capacity") data.to_csv(f"{Path(save).parent.parent}/statistics/bar_regional_capacity.csv") plot_bar(data, n, save, "", "Capacity (GW)", is_capacity=True) def plot_regional_production_bar(n, save): - """ - Plot production evolution by NERC region in a stacked bar plot. - """ + """Plot production evolution by NERC region in a stacked bar plot.""" data = get_statistics(n, "Supply") data.to_csv(f"{Path(save).parent.parent}/statistics/bar_regional_production.csv") plot_bar(data, n, save, "", "Production (GWh)") @@ -408,9 +413,7 @@ def plot_regional_emissions_bar( n: pypsa.Network, save: str, ) -> None: - """ - PLOT OF CO2 EMISSIONS BY NERC REGION AND INVESTMENT PERIOD. - """ + """PLOT OF CO2 EMISSIONS BY NERC REGION AND INVESTMENT PERIOD.""" regional_emisssions_ts = get_node_emissions_timeseries(n).T.groupby(n.buses.nerc_reg).sum().T / 1e6 regional_emissions = ( regional_emisssions_ts.groupby(regional_emisssions_ts.index.get_level_values(0)).sum().round(3).T @@ -423,8 +426,19 @@ def plot_regional_emissions_bar( rows = math.ceil(num_regions / columns) # Set up the figure and axes - fig, axes = plt.subplots(rows, columns, figsize=(columns * 2.5, rows * 5), sharex=True, sharey=True) - axes = axes.flatten() + fig, axes = plt.subplots( + rows, + columns, + figsize=(columns * 2.5, rows * 5), + sharex=True, + sharey=True, + ) + + # Ensure axes is a flattened array for consistent indexing + if num_regions == 1: + axes = [axes] # Wrap single Axes object in a list + else: + axes = axes.flatten() for i, region in enumerate(regions): region_data = regional_emissions.loc[region] @@ -457,9 +471,7 @@ def plot_emissions_bar( n: pypsa.Network, save: str, ) -> None: - """ - PLOT OF CO2 EMISSIONS BY INVESTMENT PERIOD. - """ + """PLOT OF CO2 EMISSIONS BY INVESTMENT PERIOD.""" emisssions_ts = get_node_emissions_timeseries(n).T.sum().T / 1e6 emissions = emisssions_ts.groupby(emisssions_ts.index.get_level_values(0)).sum().round(3).T @@ -523,7 +535,7 @@ def plot_production_area( num_periods = len(n.investment_periods) base_plot_size = 4 - for month in ["all"] + months.to_list(): + for month in ["all", *months.to_list()]: figsize = (14, (base_plot_size * num_periods)) fig, axs = plt.subplots(figsize=figsize, ncols=1, nrows=num_periods) if not isinstance(axs, np.ndarray): # only one horizon @@ -562,9 +574,7 @@ def plot_production_area( def plot_hourly_emissions(n: pypsa.Network, save: str, **wildcards) -> None: - """ - Plots snapshot emissions by technology. - """ + """Plots snapshot emissions by technology.""" # get data emissions = get_tech_emissions_timeseries(n).mul(1e-6) # T -> MT zeros = emissions.columns[(np.abs(emissions) < 1e-7).all()] @@ -592,9 +602,7 @@ def plot_hourly_emissions(n: pypsa.Network, save: str, **wildcards) -> None: def plot_accumulated_emissions_tech(n: pypsa.Network, save: str, **wildcards) -> None: - """ - Creates area plot of accumulated emissions by technology. - """ + """Creates area plot of accumulated emissions by technology.""" # get data emissions = get_tech_emissions_timeseries(n).cumsum().mul(1e-6) # T -> MT @@ -624,9 +632,7 @@ def plot_accumulated_emissions_tech(n: pypsa.Network, save: str, **wildcards) -> def plot_accumulated_emissions(n: pypsa.Network, save: str, **wildcards) -> None: - """ - Plots accumulated emissions. - """ + """Plots accumulated emissions.""" # get data emissions = get_tech_emissions_timeseries(n).mul(1e-6).sum(axis=1) # T -> MT @@ -654,22 +660,29 @@ def plot_accumulated_emissions(n: pypsa.Network, save: str, **wildcards) -> None def plot_capacity_factor_heatmap(n: pypsa.Network, save: str, **wildcards) -> None: - """ - HEATMAP OF RENEWABLE CAPACITY FACTORS BY CARRIER. - """ - df_long = n.generators_t.p.loc[n.investment_periods[0]].melt(var_name="bus", value_name="p", ignore_index=False) + """HEATMAP OF RENEWABLE CAPACITY FACTORS BY CARRIER.""" + df_long = n.generators_t.p.loc[n.investment_periods[0]].melt( + var_name="bus", + value_name="p", + ignore_index=False, + ) df_long["region"] = df_long["bus"].map(n.generators.bus.map(n.buses.country)) df_long["carrier"] = df_long["bus"].map(n.generators.carrier) df_long["hour"] = df_long.index.hour df_long["month"] = df_long.index.month - df_long.drop(columns="bus", inplace=True) + df_long = df_long.drop(columns="bus") df_long = df_long.drop(columns="region").groupby(["carrier", "month", "hour"]).mean().reset_index() # Get unique months for separate panels unique_months = df_long["month"].unique() # Prepare figure and axes - fig, axs = plt.subplots(len(unique_months), 1, figsize=(12, len(unique_months) * 4), sharex=True) + fig, axs = plt.subplots( + len(unique_months), + 1, + figsize=(12, len(unique_months) * 4), + sharex=True, + ) # Iterate over each month to create a panel for idx, month in enumerate(sorted(unique_months)): @@ -697,7 +710,6 @@ def plot_generator_data_panel( save: str, **wildcards, ): - df_capex_expand = n.generators.loc[ n.generators.p_nom_extendable & ~n.generators.index.str.contains("existing"), :, @@ -805,9 +817,7 @@ def plot_region_lmps( save: str, **wildcards, ) -> None: - """ - Plots a box plot of LMPs for each region. - """ + """Plots a box plot of LMPs for each region.""" df_lmp = n.buses_t.marginal_price df_long = pd.melt( df_lmp.reset_index(), @@ -817,7 +827,7 @@ def plot_region_lmps( ) df_long["season"] = df_long["timestep"].dt.quarter df_long["hour"] = df_long["timestep"].dt.hour - df_long.drop(columns="timestep", inplace=True) + df_long = df_long.drop(columns="timestep") df_long["region"] = df_long.bus.map(n.buses.country) plt.figure(figsize=(10, 10)) @@ -839,7 +849,7 @@ def plot_region_lmps( plt.close() -#### Fuel costs +# Fuel costs def plot_fuel_costs( @@ -847,7 +857,6 @@ def plot_fuel_costs( save: str, **wildcards, ) -> None: - fuel_costs = get_fuel_costs(n) fuels = set(fuel_costs.index.get_level_values("carrier")) @@ -867,9 +876,9 @@ def plot_fuel_costs( legend=True, palette=color_palette, ) - axs[0].set_title("Daily Average Fuel Costs [$/MWh]"), - axs[0].set_xlabel(""), - axs[0].set_ylabel("$/MWh"), + (axs[0].set_title("Daily Average Fuel Costs [$/MWh]"),) + (axs[0].set_xlabel(""),) + (axs[0].set_ylabel("$/MWh"),) # plot bus fuel prices for each fuel for i, fuel in enumerate(fuels): @@ -882,9 +891,9 @@ def plot_fuel_costs( dashes=False, ax=axs[i + 1], ) - axs[i + 1].set_title(f"Daily Average {nice_name} Fuel Costs per Bus [$/MWh]"), - axs[i + 1].set_xlabel(""), - axs[i + 1].set_ylabel("$/MWh"), + (axs[i + 1].set_title(f"Daily Average {nice_name} Fuel Costs per Bus [$/MWh]"),) + (axs[i + 1].set_xlabel(""),) + (axs[i + 1].set_ylabel("$/MWh"),) fig.savefig(save) plt.close() @@ -928,7 +937,9 @@ def plot_fuel_costs( # Export Statistics Tables groupers = n.statistics.groupers - n.statistics(groupby=groupers.get_name_bus_and_carrier).round(3).to_csv(snakemake.output.statistics_dissaggregated) + n.statistics(groupby=groupers.get_name_bus_and_carrier).round(3).to_csv( + snakemake.output.statistics_dissaggregated, + ) n.statistics().round(2).to_csv(snakemake.output.statistics_summary) n.generators.to_csv(snakemake.output.generators) n.storage_units.to_csv(snakemake.output.storage_units) diff --git a/workflow/scripts/plot_statistics_sector.py b/workflow/scripts/plot_statistics_sector.py index ad830cb1..da6cdcd8 100644 --- a/workflow/scripts/plot_statistics_sector.py +++ b/workflow/scripts/plot_statistics_sector.py @@ -1,13 +1,14 @@ -""" -Plots Sector Coupling Statistics. -""" +"""Plots Sector Coupling Statistics.""" import logging +from collections.abc import Callable from dataclasses import dataclass from enum import Enum from math import ceil from pathlib import Path -from typing import Any, Callable, Optional + +# Optional used as 'arg: callable | None = None' gives TypeError with py3.11 +from typing import Any, Optional import matplotlib.pyplot as plt import pandas as pd @@ -15,7 +16,7 @@ import seaborn as sns from _helpers import configure_logging, mock_snakemake from add_electricity import sanitize_carriers -from constants import STATE_2_CODE, Month +from constants import Month from constants_sector import ( AirTransport, AirTransportUnits, @@ -36,11 +37,8 @@ get_end_use_load_timeseries_carrier, get_hp_cop, get_load_factor_timeseries, - get_load_per_sector_per_fuel, - get_sector_production_timeseries, get_sector_production_timeseries_by_carrier, get_storage_level_timeseries_carrier, - get_transport_consumption_by_mode, ) logger = logging.getLogger(__name__) @@ -76,10 +74,7 @@ def _get_month_name(month: Month) -> str: def is_urban_rural_split(n: pypsa.Network) -> bool: - """ - Checks for urban/rural split based on com/res load names. - """ - + """Checks for urban/rural split based on com/res load names.""" com_res_load = n.loads[(n.loads.index.str.contains("res-")) | (n.loads.index.str.contains("com-"))].index.to_list() rural_urban_loads = ["res-urban-", "res-rural-", "com-urban-", "com-rural-"] @@ -91,7 +86,6 @@ def is_urban_rural_split(n: pypsa.Network) -> bool: def get_plotting_colors(n: pypsa.Network, nice_name: bool) -> dict[str, str]: - if nice_name: return n.carriers.set_index("nice_name")["color"].to_dict() else: @@ -110,11 +104,8 @@ def get_sectors(n: pypsa.Network) -> list[str]: ### -def plot_hp_cop(n: pypsa.Network, state: Optional[str] = None, **kwargs) -> tuple: - """ - Plots gshp and ashp cops. - """ - +def plot_hp_cop(n: pypsa.Network, state: str | None = None, **kwargs) -> tuple: + """Plots gshp and ashp cops.""" investment_period = n.investment_periods[0] cops = get_hp_cop(n, state).loc[investment_period] @@ -127,7 +118,6 @@ def plot_hp_cop(n: pypsa.Network, state: Optional[str] = None, **kwargs) -> tupl ) for i, hp in enumerate(["ashp", "gshp"]): - df = cops[[x for x in cops if x.endswith(hp)]] avg = df.mean(axis=1) @@ -138,7 +128,6 @@ def plot_hp_cop(n: pypsa.Network, state: Optional[str] = None, **kwargs) -> tupl palette = sns.color_palette(["lightgray"], df.shape[1]) try: - sns.lineplot( df, color="lightgray", @@ -161,18 +150,15 @@ def plot_hp_cop(n: pypsa.Network, state: Optional[str] = None, **kwargs) -> tupl def plot_sector_production_timeseries( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, remove_sns_weights: bool = True, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, - month: Optional[int] = None, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 + month: int | None = None, **kwargs, ) -> tuple: - """ - Plots timeseries production as area chart. - """ - + """Plots timeseries production as area chart.""" y_label = kwargs.get("ylabel", "MWh") assert sector in ("res", "com", "ind", "pwr") @@ -199,7 +185,6 @@ def plot_sector_production_timeseries( ) for row, period in enumerate(investment_periods): - df = df_all.loc[period] if month: @@ -213,9 +198,7 @@ def plot_sector_production_timeseries( df = df.rename(columns=n.carriers.nice_name.to_dict()) try: - if nrows > 1: - df.plot(kind="area", ax=axs[row], color=colors) axs[row].set_xlabel("") axs[row].set_ylabel(y_label) @@ -223,7 +206,6 @@ def plot_sector_production_timeseries( axs[row].tick_params(axis="x", labelrotation=45) else: - df.plot(kind="area", ax=axs, color=colors) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -243,18 +225,15 @@ def plot_transportation_production_timeseries( vehicle: str, # veh, air, rail, ect.. . modes: Enum, # AirTransport, RoadTransport, ect.. units: Enum, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, remove_sns_weights: bool = True, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, - month: Optional[int] = None, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 + month: int | None = None, **kwargs, ) -> tuple: - """ - Plots timeseries production as area chart. - """ - + """Plots timeseries production as area chart.""" assert sector == "trn" def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: @@ -293,14 +272,12 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: return fig, axs for row, period in enumerate(investment_periods): - df_veh_period = df_veh.loc[period] if month: df_veh_period = df_veh_period[df_veh_period.index.get_level_values("timestep").month == month_i].copy() for i, unit in enumerate(diff_units): - all_modes = [x.name for x in modes] modes_per_unit = [modes[x].value for x in all_modes if units[x].value == unit] @@ -310,16 +287,13 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df = df.rename(columns=n.carriers.nice_name.to_dict()) try: - if nrows > 1: - df.plot(kind="area", ax=axs[row + i], color=colors) axs[row + i].set_xlabel("") axs[row + i].set_ylabel(f"{unit}") axs[row + i].tick_params(axis="x", labelrotation=45) else: - df.plot(kind="area", ax=axs, color=colors) axs.set_xlabel("") axs.set_ylabel(f"{unit}") @@ -336,14 +310,11 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: def plot_sector_production( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Plots model period production as bar chart. - """ - + """Plots model period production as bar chart.""" y_label = kwargs.get("ylabel", "MWh") assert sector in ("res", "com", "ind", "pwr", "trn") @@ -361,7 +332,6 @@ def plot_sector_production( df_all = get_sector_production_timeseries_by_carrier(n, sector=sector, state=state) for row, period in enumerate(investment_periods): - df = df_all.loc[period].sum(axis=0) if df.empty: @@ -372,9 +342,7 @@ def plot_sector_production( df.index = df.index.map(n.carriers.nice_name) try: - if nrows > 1: - df.plot.bar(ax=axs[row]) axs[row].set_xlabel("") axs[row].set_ylabel(y_label) @@ -382,7 +350,6 @@ def plot_sector_production( axs[row].tick_params(axis="x", labelrotation=45) else: - df.plot.bar(ax=axs) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -396,13 +363,10 @@ def plot_sector_production( def plot_sector_emissions( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, **kwargws, ) -> tuple: - """ - Plots model period emissions by sector. - """ - + """Plots model period emissions by sector.""" investment_period = n.investment_periods[0] sectors = ("res", "com", "ind", "trn", "pwr", "ch4") @@ -410,7 +374,6 @@ def plot_sector_emissions( data = [] for sector in sectors: - df = get_emission_timeseries_by_sector(n, sector, state=state) if df.empty: @@ -446,13 +409,10 @@ def plot_sector_emissions( def plot_state_emissions( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, **kwargws, ) -> tuple: - """ - Plots stacked bar plot of state level emissions. - """ - + """Plots stacked bar plot of state level emissions.""" investment_period = n.investment_periods[0] fig, axs = plt.subplots( @@ -478,14 +438,11 @@ def plot_state_emissions( def plot_capacity_by_carrier( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Bar plot of capacity by carrier. - """ - + """Bar plot of capacity by carrier.""" investment_periods = n.investment_periods nrows = len(investment_periods) @@ -500,7 +457,6 @@ def plot_capacity_by_carrier( df_all = df_all.reset_index()[["carrier", "p_nom_opt"]] for row, _ in enumerate(investment_periods): - df = df_all.copy() if df.empty: @@ -513,9 +469,7 @@ def plot_capacity_by_carrier( df = df.groupby("carrier").sum() try: - if nrows > 1: - df.plot(kind="bar", stacked=False, ax=axs[row]) axs[row].set_xlabel("") axs[row].set_ylabel("Capacity (MW)") @@ -523,7 +477,6 @@ def plot_capacity_by_carrier( axs[row].tick_params(axis="x", labelrotation=45) else: - df.plot(kind="bar", stacked=False, ax=axs) axs.set_xlabel("") axs.set_ylabel("Capacity (MW)") @@ -542,13 +495,11 @@ def plot_transportation_capacity_by_carrier( vehicle: str, # veh, air, rail, ect.. . modes: Enum, # AirTransport, RoadTransport, ect.. units: Enum, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Bar plot of capacity by carrier. - """ + """Bar plot of capacity by carrier.""" def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df["vehicle"] = df.index.get_level_values("carrier").map( @@ -577,7 +528,6 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: ) for row, _ in enumerate(investment_periods): - df = df_veh.copy() if df.empty: @@ -587,7 +537,6 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df["mode"] = df.carrier.map(lambda x: x.split("-")[-1]) for i, unit in enumerate(diff_units): - all_modes = [x.name for x in modes] modes_per_unit = [modes[x].value for x in all_modes if units[x].value == unit] @@ -599,9 +548,7 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df_mode = df_mode.groupby("carrier").sum() try: - if nrows > 1: - df_mode.plot(kind="bar", stacked=False, ax=axs[row + i]) axs[row + i].set_xlabel("") axs[row + i].set_ylabel(f"Capacity ({unit})") @@ -609,7 +556,6 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: axs[row + i].tick_params(axis="x", labelrotation=45) else: - df_mode.plot(kind="bar", stacked=False, ax=axs) axs.set_xlabel("") axs.set_ylabel(f"Capacity ({unit})") @@ -626,14 +572,11 @@ def plot_capacity_per_node( n: pypsa.Network, sharey: bool = True, percentage: bool = True, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Plots capacity percentage per node. - """ - + """Plots capacity percentage per node.""" sectors = get_sectors(n) nrows = len(sectors) @@ -651,7 +594,6 @@ def plot_capacity_per_node( colors = get_plotting_colors(n, nice_name) for i, sector in enumerate(sectors): - df = get_capacity_per_node(n, sector=sector, state=state) df = df.reset_index()[["node", "carrier", data_col]] @@ -661,16 +603,13 @@ def plot_capacity_per_node( df = df.pivot(columns="carrier", index="node", values=data_col) try: - if nrows > 1: - df.plot(kind="bar", stacked=True, ax=axs[i], color=colors) axs[i].set_xlabel("") axs[i].set_ylabel(y_label) axs[i].set_title(f"{sector} Capacity") else: - df.plot(kind="bar", stacked=True, ax=axs, color=colors) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -685,14 +624,11 @@ def plot_capacity_per_node( def plot_capacity_brownfield( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Plots old and new capacity at a state level by carrier. - """ - + """Plots old and new capacity at a state level by carrier.""" investment_periods = n.investment_periods nrows = len(investment_periods) @@ -706,7 +642,6 @@ def plot_capacity_brownfield( y_label = "Capacity (MW)" for row, _ in enumerate(investment_periods): - df = get_capacity_per_node(n, sector, state) if nice_name: @@ -717,9 +652,7 @@ def plot_capacity_brownfield( df = df.reset_index()[["carrier", "existing", "new"]].groupby("carrier").sum() try: - if nrows > 1: - df.plot(kind="bar", ax=axs[row]) axs[row].set_xlabel("") axs[row].set_ylabel(y_label) @@ -727,7 +660,6 @@ def plot_capacity_brownfield( axs.tick_params(axis="x", labelrotation=45) else: - df.plot(kind="bar", ax=axs) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -746,13 +678,11 @@ def plot_transportation_capacity_brownfield( vehicle: str, # veh, air, rail, ect.. . modes: Enum, # AirTransport, RoadTransport, ect.. units: Enum, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Plots old and new capacity at a state level by carrier. - """ + """Plots old and new capacity at a state level by carrier.""" def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df["vehicle"] = df.index.get_level_values("carrier").map( @@ -781,7 +711,6 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: ) for row, _ in enumerate(investment_periods): - df = df_veh.copy() if df.empty: @@ -791,7 +720,6 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df["mode"] = df.carrier.map(lambda x: x.split("-")[-1]) for i, unit in enumerate(diff_units): - all_modes = [x.name for x in modes] modes_per_unit = [modes[x].value for x in all_modes if units[x].value == unit] @@ -803,9 +731,7 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: df_mode = df_mode.groupby("carrier").sum() try: - if nrows > 1: - df_mode.plot(kind="bar", stacked=False, ax=axs[row + i]) axs[row + i].set_xlabel("") axs[row + i].set_ylabel(f"Capacity ({unit})") @@ -813,7 +739,6 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: axs[row + i].tick_params(axis="x", labelrotation=45) else: - df_mode.plot(kind="bar", stacked=False, ax=axs) axs.set_xlabel("") axs.set_ylabel(f"Capacity ({unit})") @@ -829,13 +754,10 @@ def _filter_vehicle_type(df: pd.DataFrame, vehicle: str) -> pd.DataFrame: def plot_sector_load_factor_timeseries( n: pypsa.Network, sharey: bool = True, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - """ - Plots timeseries of load factor resampled to days. - """ - + """Plots timeseries of load factor resampled to days.""" investment_period = n.investment_periods[0] sectors = ("res", "com", "ind") @@ -853,23 +775,19 @@ def plot_sector_load_factor_timeseries( col = 0 for i, sector in enumerate(sectors): - row = i // 2 col = i % 2 df = get_load_factor_timeseries(n, sector, state=state).loc[investment_period].resample("d").mean().dropna() try: - if nrows > 1: - df.plot(ax=axs[row, col]) axs[row, col].set_xlabel("") axs[row, col].set_ylabel("Load Factor (%)") axs[row, col].set_title(f"{sector}") else: - df.plot(ax=axs[i]) axs[i].set_xlabel("") axs[i].set_ylabel("Load Factor (%)") @@ -884,14 +802,11 @@ def plot_sector_load_factor_timeseries( def plot_sector_load_factor_boxplot( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - """ - Plots boxplot of load factors. - """ - + """Plots boxplot of load factors.""" assert sector in ("res", "com", "ind") investment_periods = n.investment_periods @@ -907,7 +822,6 @@ def plot_sector_load_factor_boxplot( df_all = get_load_factor_timeseries(n, sector, state=state) for row, period in enumerate(investment_periods): - df = df_all.loc[period] if nice_name: @@ -917,9 +831,7 @@ def plot_sector_load_factor_boxplot( ) try: - if nrows > 1: - sns.boxplot(df, ax=axs[row]) axs[row].set_xlabel("") axs[row].set_ylabel("Load Factor (%)") @@ -927,7 +839,6 @@ def plot_sector_load_factor_boxplot( axs[row].tick_params(axis="x", labelrotation=45) else: - sns.boxplot(df, ax=axs) axs.set_xlabel("") axs.set_ylabel("Load Factor (%)") @@ -944,10 +855,9 @@ def plot_sector_load_timeseries( n: pypsa.Network, sector: str, sharey: bool = False, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - investment_period = n.investment_periods[0] df = get_end_use_load_timeseries(n, sector, sns_weight=False, state=state).loc[investment_period].T @@ -967,19 +877,17 @@ def plot_sector_load_timeseries( ) for i, load in enumerate(loads): - - l = df[load] + load_ = df[load] # sns.lineplot(l, ax=axs[i], legend=False) - avg = l.mean(axis=1) + avg = load_.mean(axis=1) # palette = sns.color_palette(["lightgray"]) try: - sns.lineplot( - l, + load_, color="lightgray", legend=False, # palette=palette, @@ -1000,10 +908,9 @@ def plot_sector_load_timeseries( def plot_sector_load_bar( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - investment_period = n.investment_periods[0] sectors = ("res", "com", "ind") @@ -1022,7 +929,6 @@ def plot_sector_load_bar( title = state if state else "System" for i, sector in enumerate(sectors): - row = i // 2 col = i % 2 @@ -1033,20 +939,17 @@ def plot_sector_load_bar( continue try: - if nrows > 1: - df.T.plot.bar(ax=axs[row, col]) axs[row, col].set_xlabel("") - axs[row, col].set_ylabel(f"Load (MWh)") + axs[row, col].set_ylabel("Load (MWh)") axs[row, col].set_title(f"{title} {SECTOR_MAPPER[sector]}") axs[row, col].tick_params(axis="x", labelrotation=0) else: - df.T.plot.bar(ax=axs[i]) axs[i].set_xlabel("") - axs[i].set_ylabel(f"Load (MWh)") + axs[i].set_ylabel("Load (MWh)") axs[i].set_title(f"{title} {SECTOR_MAPPER[sector]}") axs[i].tick_params(axis="x", labelrotation=0) @@ -1059,21 +962,26 @@ def plot_sector_load_bar( def plot_sector_dr_timeseries( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, - month: Optional[int] = None, + state: str | None = None, + nice_name: bool | None = True, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 + month: int | None = None, **kwargs, ) -> tuple: + if sector == "pwr": + sec = "demand_response" # hack to use same function + else: + sec = sector e = get_storage_level_timeseries_carrier( - n, - sector, - True, - state, - resample, - resample_fn, + n=n, + sector=sec, + remove_sns_weights=True, + state=state, + resample=resample, + resample_fn=resample_fn, + make_positive=True, ) e = e[[x for x in e if "-water-" not in x]] @@ -1090,23 +998,20 @@ def plot_sector_dr_timeseries( ) for row, period in enumerate(investment_periods): - df = e.loc[period] if month: df = df[df.index.get_level_values("timestep").month == month_i] if df.empty: - logger.warning(f"No Demand Response data to plot for {state}") + # logger.warning(f"No Demand Response data to plot for {state}") continue if nice_name: df = df.rename(columns=n.carriers.nice_name.to_dict()) try: - if nrows > 1: - df.plot.line(ax=axs[row]) axs[row].set_xlabel("") axs[row].set_ylabel(y_label) @@ -1114,7 +1019,6 @@ def plot_sector_dr_timeseries( axs[row].tick_params(axis="x", labelrotation=45) else: - df.plot.line(ax=axs) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -1129,11 +1033,10 @@ def plot_sector_dr_timeseries( def plot_consumption( n: pypsa.Network, sector: str, - state: Optional[str] = None, - nice_name: Optional[bool] = True, + state: str | None = None, + nice_name: bool | None = True, **kwargs, ) -> tuple: - assert sector in ("res", "com", "ind", "trn") investment_periods = n.investment_periods @@ -1151,7 +1054,6 @@ def plot_consumption( df_all = get_end_use_consumption(n, sector, state) for row, period in enumerate(investment_periods): - df = df_all.loc[period] if nice_name: @@ -1160,16 +1062,13 @@ def plot_consumption( df = df.sum(axis=0).to_frame() try: - if nrows > 1: - df.plot(kind="bar", ax=axs[row], legend=False) axs[row].set_xlabel("") axs[row].set_ylabel(y_label) axs[row].tick_params(axis="x", labelrotation=45) else: - df.plot(kind="bar", ax=axs) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -1191,13 +1090,10 @@ def save_fig( n: pypsa.Network, save: str, title: str, - wildcards: dict[str, Any] = None, + wildcards: dict[str, Any] | None = None, **kwargs, ) -> None: - """ - Saves the result figure. - """ - + """Saves the result figure.""" fig, _ = fn(n, **kwargs) if not wildcards: @@ -1248,12 +1144,14 @@ def save_fig( @dataclass class PlottingData: + """Describe data to plot.""" + name: str # snakemake name fn: callable - sector: Optional[str] = None # None = 'system' - fn_kwargs: Optional[dict[str, Any]] = None - nice_name: Optional[str] = None - plot_by_month: Optional[bool] = False + sector: str | None = None # None = 'system' + fn_kwargs: dict[str, Any] | None = None + nice_name: str | None = None + plot_by_month: bool | None = False EMISSIONS_PLOTS = [ @@ -1354,6 +1252,17 @@ class PlottingData: "units": RoadTransportUnits, }, }, + { + "name": "production_demand_response", + "fn": plot_sector_dr_timeseries, + "nice_name": "Residential Demand Response", + "sector": "pwr", + "plot_by_month": False, + "fn_kwargs": { + # "resample": "D", + # "resample_fn": pd.Series.mean, + }, + }, { "name": "production_demand_response", "fn": plot_sector_dr_timeseries, @@ -1561,17 +1470,14 @@ def _initialize_metadata(data: dict[str, Any]) -> list[PlottingData]: if __name__ == "__main__": if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake( "plot_sector_production", simpl="70", - opts="3h", + opts="3h-TCT", clusters="4m", ll="v1.0", - sector_opts="", sector="E-G", - planning_horizons="2018", + planning_horizons="2030", interconnect="western", ) rootpath = ".." @@ -1606,7 +1512,6 @@ def _initialize_metadata(data: dict[str, Any]) -> list[PlottingData]: # plot at system level for plot_data in plotting_data: - fn = plot_data.fn title = plot_data.nice_name if plot_data.nice_name else plot_data.name @@ -1649,7 +1554,6 @@ def _initialize_metadata(data: dict[str, Any]) -> list[PlottingData]: months = {month.value: _get_month_name(month) for month in Month} for month_i, month_name in months.items(): - if plot_data.sector: f_path = Path( results_dir, @@ -1678,12 +1582,10 @@ def _initialize_metadata(data: dict[str, Any]) -> list[PlottingData]: # plot each state for plot_data in plotting_data: - fn = plot_data.fn title = plot_data.nice_name if plot_data.nice_name else plot_data.name for state in states: - if plot_data.fn_kwargs: fn_kwargs = plot_data.fn_kwargs else: @@ -1724,7 +1626,6 @@ def _initialize_metadata(data: dict[str, Any]) -> list[PlottingData]: months = {month.value: _get_month_name(month) for month in Month} for month_i, month_name in months.items(): - if plot_data.sector: f_path = Path( results_dir, diff --git a/workflow/scripts/plot_validation_production.py b/workflow/scripts/plot_validation_production.py index 92488f9d..8559b2c8 100644 --- a/workflow/scripts/plot_validation_production.py +++ b/workflow/scripts/plot_validation_production.py @@ -1,3 +1,5 @@ +"""Plotting script for electricity sector validation studies.""" + import logging from collections import OrderedDict from pathlib import Path @@ -8,14 +10,12 @@ import pandas as pd import pypsa import seaborn as sns - -logger = logging.getLogger(__name__) from _helpers import configure_logging, get_snapshots from constants import ( + CODE_2_STATE, EIA_930_REGION_MAPPER, EIA_BA_2_REGION, EIA_FUEL_MAPPER_2, - STATE_2_CODE, ) from eia import Emissions from plot_network_maps import ( @@ -27,6 +27,8 @@ from plot_statistics import plot_fuel_costs, plot_generator_data_panel, plot_region_lmps from summary import get_node_emissions_timeseries +logger = logging.getLogger(__name__) + sns.set_theme("paper", style="whitegrid") DPI = 300 @@ -65,48 +67,6 @@ def get_regions(n): return regions -def get_state_generation_mix(n: pypsa.Network, var="p"): - storage_devices = n.storage_units.copy() - storage_devices["state"] = storage_devices.bus.map(n.buses.reeds_state) - storage_devices["state_carrier"] = storage_devices["state"] + "_" + storage_devices["carrier"] - # Group by state and carrier - storage = n.storage_units_t[var].clip(lower=0).copy() - storage = storage.T.groupby(storage_devices["state_carrier"]).sum().T - storage.index = storage.index.droplevel(1) - storage = storage.groupby("period").sum().T.mul(1e-3) # convert to GW - - gens = n.generators.copy() - gens["state"] = gens.bus.map(n.buses.reeds_state) - gens["state_carrier"] = gens["state"] + "_" + gens["carrier"] - # Group by state and carrier - generation = n.generators_t[var].copy() - generation = generation.T.groupby(gens["state_carrier"]).sum().T - generation.index = generation.index.droplevel(1) - generation = generation.groupby("period").sum().T - generation = generation / 1e3 # convert to GWh - - production = pd.concat([generation, storage], axis=0) - production = production.reset_index() - production.columns = ["state_carrier", "generation"] - production["state"] = production["state_carrier"].str.split("_").str[0] - production["carrier"] = production["state_carrier"].str.split("_").str[1:].str.join("_") - production_pivot = production.pivot( - index="state", - columns="carrier", - values="generation", - ) - if "load" in production_pivot.columns: - production_pivot.load = production_pivot.load.mul(1e-3) - return production_pivot - - -def get_state_loads(n: pypsa.Network): - loads = n.loads_t.p - n.loads["state"] = n.loads.bus.map(n.buses.reeds_state) - loads = loads.T.groupby(n.loads.state).sum().T - loads = loads / 1e3 # convert to GW - - def add_missing_carriers(df1, df2): # Create new columns for historic for missing carriers in optimized for carrier in df1.columns: @@ -126,9 +86,7 @@ def plot_timeseries_comparison( title="Electricity Production by Carrier", **wildcards, ): - """ - plots a stacked plot for seasonal production for snapshots: January 2 - December 30 (inclusive) - """ + """Plots a stacked plot for seasonal production for snapshots: January 2 - December 30 (inclusive).""" historic, optimized = add_missing_carriers(historic, optimized) kwargs = dict(color=colors, ylabel="Production [GW]", xlabel="", linewidth=0) @@ -174,10 +132,10 @@ def plot_timeseries_comparison( top=max(upper_lim, diff_lim_upper), ) - h, l = axes[0].get_legend_handles_labels() + h, label_ = axes[0].get_legend_handles_labels() fig.legend( h[::-1], - l[::-1], + label_[::-1], loc="lower right", bbox_to_anchor=(1, 0), ncol=1, @@ -210,9 +168,7 @@ def plot_bar_carrier_production( def create_optimized_by_carrier(n, order, region_buses=None): - """ - Create a DataFrame from the model output/optimized. - """ + """Create a DataFrame from the model output/optimized.""" if region_buses is not None: gen_p = n.generators_t["p"].loc[ :, @@ -222,13 +178,17 @@ def create_optimized_by_carrier(n, order, region_buses=None): # Pos = exports from region 0 # Neg = imports to region 0 interface_lines_b0 = n.lines[(n.lines.bus0.isin(region_buses) & ~n.lines.bus1.isin(region_buses))] - interface_links_b0 = n.links[(n.links.bus0.isin(region_buses) & ~n.links.bus1.isin(region_buses))] + interface_links_b0 = n.links[ + (n.links.bus0.isin(region_buses) & ~n.links.bus1.isin(region_buses)) & n.links.carrier == "AC" + ] # bus1 branch flow (pos if branch is withdrawing from region 1) # Pos = imports to region 0 # Neg = exports from region 0 interface_lines_b1 = n.lines[(n.lines.bus1.isin(region_buses) & ~n.lines.bus0.isin(region_buses))] - interface_links_b1 = n.links[(n.links.bus1.isin(region_buses) & ~n.links.bus0.isin(region_buses))] + interface_links_b1 = n.links[ + (n.links.bus1.isin(region_buses) & ~n.links.bus0.isin(region_buses)) & n.links.carrier == "AC" + ] # imports positive, exports negative flows = n.lines_t.p1.loc[:, interface_lines_b0.index].sum(axis=1) @@ -327,9 +287,7 @@ def plot_regional_comparisons( order=None, **wildcards, ): - """ - Plot regional comparison of results. - """ + """Plot regional comparison of results.""" Path.mkdir( Path(snakemake.output[0]).parents[0] / "regional_timeseries", exist_ok=True, @@ -337,7 +295,6 @@ def plot_regional_comparisons( buses = n.buses.copy() if snakemake.config["model_topology"]["topological_boundaries"] == "reeds_zone": - regions = n.buses.reeds_ba.unique() regions = list(OrderedDict.fromkeys(regions)) buses["region"] = buses.reeds_ba @@ -418,13 +375,13 @@ def plot_load_shedding_map( regions: gpd.GeoDataFrame, **wildcards, ): - load_curtailment = n.generators_t.p.filter(regex="^(.*load).*$") load_curtailment_sum = load_curtailment.sum() / 1e3 # convert to MW - # split the generator name into a multi index where the first level is the bus and the second level is the carrier name + # split the generator name into a multi index where the first level is the + # bus and the second level is the carrier name multi_index = load_curtailment_sum.index.str.rsplit(" ", n=1, expand=True) - multi_index.rename({0: "bus", 1: "carrier"}, inplace=True) + multi_index = multi_index.rename({0: "bus", 1: "carrier"}) load_curtailment_sum.index = multi_index bus_values = load_curtailment_sum @@ -436,12 +393,13 @@ def plot_load_shedding_map( interconnect = wildcards.get("interconnect", None) bus_scale = get_bus_scale(interconnect) if interconnect else 1 line_scale = get_line_scale(interconnect) if interconnect else 1 + link_values = n.links[n.links.carrier == "AC"].p_nom.replace(to_replace={pd.NA: 0}) fig, _ = plot_capacity_map( n=n, bus_values=bus_values, line_values=line_values, - link_values=n.links.p_nom.replace(to_replace={pd.NA: 0}), + link_values=link_values, regions=regions, line_scale=line_scale, bus_scale=bus_scale, @@ -470,12 +428,14 @@ def plot_line_loading_map( link_loading = n.links_t.p0.abs().mean() / n.links.p_nom / n.links.p_max_pu * 100 norm = plt.Normalize(vmin=0, vmax=100) + link_values = n.links[n.links.carrier == "AC"].p_nom.replace(to_replace={pd.NA: 0}) + n.carriers.loc["AC_exp", "color"] = "#dd2e23" fig, _ = plot_capacity_map( n=n, bus_values=gen / 5e3, line_values=line_values, - link_values=n.links.p_nom.replace(to_replace={pd.NA: 0}), + link_values=link_values, regions=regions, flow="mean", line_scale=line_scale, @@ -510,7 +470,12 @@ def plot_generator_cost_stack( # Get unique NERC regions unique_regions = df_sorted["nerc_reg"].unique() - fig, axs = plt.subplots(len(unique_regions), 1, figsize=(10, 5 * len(unique_regions)), constrained_layout=True) + fig, axs = plt.subplots( + len(unique_regions), + 1, + figsize=(10, 5 * len(unique_regions)), + constrained_layout=True, + ) colors = n.carriers.color.to_dict() @@ -565,9 +530,7 @@ def plot_state_emissions_historical_bar( eia_api: str, **wildcards, ) -> None: - """ - Compares regional annual emissions to the year. - """ + """Compares regional annual emissions to the year.""" year = snapshots[0].year sectors = wildcards["sector"].split("-") @@ -606,11 +569,10 @@ def plot_state_emissions_historical_bar( region_mapper = n.buses[["country", "reeds_state"]].drop_duplicates().set_index("country")["reeds_state"].to_dict() optimized["region"] = optimized.index.map(region_mapper) optimized = optimized.groupby("region").sum() - CODE_2_STATE = {v: k for k, v in STATE_2_CODE.items()} optimized.index = optimized.index.map(CODE_2_STATE) optimized.index.name = "state" - optimized.sort_index(inplace=True) + optimized = optimized.sort_index() historical = historical.loc[optimized.index] final = optimized.join(historical).reset_index() @@ -644,9 +606,7 @@ def plot_ba_emissions_historical_bar( eia_api: str, **wildcards, ) -> None: - """ - Compares regional annual emissions to the year. - """ + """Compares regional annual emissions to the year.""" # year = snapshots[0].year # sectors = wildcards["sector"].split("-") @@ -660,9 +620,7 @@ def plot_ba_emissions_historical_bar( None, region, emissions=True, - ).sum( - axis=0, - )["Net Generation"] + ).sum(axis=0)["Net Generation"] region_em = region_em.sum() / 1e9 historical.loc[region] = region_em historical.name = "Historical" @@ -676,9 +634,8 @@ def plot_ba_emissions_historical_bar( if snakemake.config["model_topology"]["topological_boundaries"] == "balancing_area": optimized.loc["CISO"] = optimized.loc[["CISO-PGAE", "CISO-SCE", "CISO-SDGE", "CISO-VEA"]].sum() - optimized.drop( + optimized = optimized.drop( index=["CISO-PGAE", "CISO-SCE", "CISO-SDGE", "CISO-VEA"], - inplace=True, ) elif snakemake.config["model_topology"]["topological_boundaries"] == "reeds_zone": region_mapper = n.buses[["country", "reeds_ba"]].drop_duplicates().set_index("country")["reeds_ba"].to_dict() @@ -687,7 +644,7 @@ def plot_ba_emissions_historical_bar( optimized = optimized.groupby("region").sum() optimized.index.name = "country" - optimized.sort_index(inplace=True) + optimized = optimized.sort_index() historical = historical.loc[optimized.index] final = optimized.join(historical).reset_index() @@ -734,13 +691,6 @@ def get_state_generation_mix(n: pypsa.Network, var="p"): return generation_pivot -def get_state_loads(n: pypsa.Network): - loads = n.loads_t.p - n.loads["state"] = n.loads.bus.map(n.buses.reeds_state) - loads = loads.T.groupby(n.loads.state).sum().T - loads = loads / 1e3 # convert to GW - - def plot_state_generation_mix( n: pypsa.Network, snapshots: pd.date_range, @@ -749,9 +699,7 @@ def plot_state_generation_mix( save_carrier: str, **wildcards, ): - """ - Creates a stacked bar chart for each state's generation mix. - """ + """Creates a stacked bar chart for each state's generation mix.""" year = snapshots[0].year optimized = get_state_generation_mix(n) @@ -761,13 +709,12 @@ def plot_state_generation_mix( historical_gen = historical_gen[historical_gen.YEAR == year] historical_gen = historical_gen[historical_gen["TYPE OF PRODUCER"] == "Total Electric Power Industry"] historical_gen = historical_gen[historical_gen["ENERGY SOURCE"] != "Total"] - historical_gen.drop(columns=["YEAR", "TYPE OF PRODUCER"], inplace=True) - historical_gen.rename( + historical_gen = historical_gen.drop(columns=["YEAR", "TYPE OF PRODUCER"]) + historical_gen = historical_gen.rename( columns={ "ENERGY SOURCE": "carrier", "GENERATION (Megawatthours)": "Historical", }, - inplace=True, ) historical_gen["carrier"] = historical_gen.carrier.map(EIA_FUEL_MAPPER_2) historical_gen.carrier = historical_gen.carrier.str.lower() @@ -824,9 +771,7 @@ def plot_state_generation_capacities( save: str, **wildcards, ): - """ - Creates a stacked bar chart for each state's generation mix. - """ + """Creates a stacked bar chart for each state's generation mix.""" n.generators["state"] = n.generators.bus.map(n.buses.reeds_state) n.generators["state_carrier"] = n.generators["state"] + "_" + n.generators["carrier"] @@ -842,7 +787,7 @@ def plot_state_generation_capacities( columns="carrier", values="capacity", ) - generation_pivot.drop(columns=["load"], inplace=True) + generation_pivot = generation_pivot.drop(columns=["load"]) # Create Stacked Bar Plot for each State's Generation Mix colors = n.carriers.color.to_dict() @@ -861,8 +806,8 @@ def plot_lmp_distribution_comparison( **wildcards, ): lmps = n.buses_t.marginal_price.copy() - ISOs = ["CISO", "MISO", "ERCO", "ISNE", "NYIS", "PJM", "SWPP"] - iso_buses = n.buses[n.buses.reeds_ba.isin(ISOs)] + iso_list = ["CISO", "MISO", "ERCO", "ISNE", "NYIS", "PJM", "SWPP"] + iso_buses = n.buses[n.buses.reeds_ba.isin(iso_list)] lmps_iso = lmps.loc[:, iso_buses.index] lmps_iso.index = lmps_iso.index.get_level_values(1) @@ -918,7 +863,7 @@ def main(snakemake): ge_all = ge_all.loc[ge_all.period.isin(snapshots), :] ge_all = ge_all.rename(columns=lambda x: x[2:] if x.startswith("E_") else x) - ge_all.set_index("period", inplace=True) + ge_all = ge_all.set_index("period") ge_all.columns = pd.MultiIndex.from_tuples( ge_all.columns.str.split("_", expand=True).tolist(), ) @@ -944,7 +889,7 @@ def main(snakemake): ge_co2.period = pd.to_datetime(ge_co2.period) ge_co2 = ge_co2.loc[ge_co2.period.isin(snapshots), :] ge_co2 = ge_co2.rename(columns=lambda x: x[4:] if x.startswith("CO2_") else x) - ge_co2.set_index("period", inplace=True) + ge_co2 = ge_co2.set_index("period") ge_co2.columns = pd.MultiIndex.from_tuples( ge_co2.columns.str.split("_", expand=True).tolist(), ) diff --git a/workflow/scripts/plot_validation_sector.py b/workflow/scripts/plot_validation_sector.py index 423899a9..6fda6970 100644 --- a/workflow/scripts/plot_validation_sector.py +++ b/workflow/scripts/plot_validation_sector.py @@ -1,21 +1,17 @@ -""" -Plots sector validation plots. -""" +"""Plots sector validation plots.""" import logging +from collections.abc import Callable from dataclasses import dataclass -from enum import Enum -from math import ceil from pathlib import Path -from typing import Any, Callable, Optional +from typing import Any import matplotlib.pyplot as plt import pandas as pd import pypsa -import seaborn as sns from _helpers import configure_logging, mock_snakemake from add_electricity import sanitize_carriers -from constants import STATE_2_CODE, Month +from constants import STATE_2_CODE from plot_statistics import create_title from summary_natural_gas import get_historical_ng_prices, get_ng_price from summary_sector import ( @@ -42,7 +38,6 @@ "pwr": "power", "ind": "industrial", "trn": "transport", - "pwr": "power", "ch4": "methane", } @@ -54,22 +49,17 @@ def percent_difference(col_1: pd.Series, col_2: pd.Series) -> pd.Series: - """ - Calculates percent difference between two columns of numbers. - """ + """Calculates percent difference between two columns of numbers.""" return abs(col_1 - col_2).div((col_1 + col_2).div(2)).mul(100) def plot_sector_emissions_validation( n: pypsa.Network, eia_api: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - """ - Plots state by state sector emission comparison. - """ - + """Plots state by state sector emission comparison.""" investment_period = n.investment_periods[0] historical = get_historical_emissions( @@ -98,7 +88,7 @@ def plot_sector_emissions_validation( historical = historical.T for sector in modelled.columns: - if not sector in historical.columns: + if sector not in historical.columns: historical[sector] = 0 assert set(historical.columns) == set(modelled.columns) @@ -106,23 +96,20 @@ def plot_sector_emissions_validation( historical = historical.T if state: # plot at state level - historical = historical[state].to_frame("Actual") modelled = modelled[state].to_frame("Modelled") else: # plot at system level - historical = historical[modelled.columns].sum(axis=1).to_frame("Actual") modelled = modelled.sum(axis=1).to_frame("Modelled") df = historical.join(modelled) try: - df.plot.bar(ax=axs, stacked=False) axs.set_xlabel("") axs.set_ylabel("Emissions (MT)") - axs.set_title(f"Emissions by Sector") + axs.set_title("Emissions by Sector") axs.tick_params(axis="x", labelrotation=0) except TypeError: # no numeric data to plot @@ -134,13 +121,10 @@ def plot_sector_emissions_validation( def plot_state_emissions_validation( n: pypsa.Network, eia_api: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - """ - Plots total state emission comparison. - """ - + """Plots total state emission comparison.""" investment_period = n.investment_periods[0] historical = get_historical_emissions( @@ -192,10 +176,7 @@ def plot_system_emissions_validation_by_state( eia_api: str, **kwargs, ) -> tuple: - """ - Plots all states modelled and historcal. - """ - + """Plots all states modelled and historcal.""" investment_period = n.investment_periods[0] historical = get_historical_emissions( @@ -233,13 +214,10 @@ def plot_system_emissions_validation_by_state( def plot_sector_consumption_validation( n: pypsa.Network, eia_api: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - """ - Plots sector energy consumption comparison. - """ - + """Plots sector energy consumption comparison.""" investment_period = n.investment_periods[0] historical = get_historical_end_use_consumption( @@ -281,9 +259,7 @@ def plot_sector_consumption_validation( def _get_annual_generation(n: pypsa.Network, year: int, state) -> pd.DataFrame: - """ - Only for comparing agaist EIA data. - """ + """Only for comparing agaist EIA data.""" df = get_power_production_timeseries(n, False, state) df = df.T df.index = df.index.map(pd.concat([n.links.carrier, n.generators.carrier])) @@ -300,10 +276,9 @@ def _get_annual_generation(n: pypsa.Network, year: int, state) -> pd.DataFrame: def plot_power_generation_validation( n: pypsa.Network, eia_api: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - investment_period = n.investment_periods[0] modelled = _get_annual_generation(n, investment_period, state) @@ -340,10 +315,9 @@ def plot_power_generation_validation( def plot_ng_price_validation( n: pypsa.Network, eia_api: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - investment_period = n.investment_periods[0] modelled = get_ng_price(n) @@ -407,10 +381,9 @@ def plot_ng_price_validation( def plot_transportation_by_mode_validation( n: pypsa.Network, eia_api: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> tuple: - # to pull in from snakemake inputs transport_ratios = { "Alabama": 2.05, @@ -504,10 +477,9 @@ def plot_transportation_by_mode_validation( data = data.join(modelled.to_frame(name="modelled")).fillna(0) try: - data.plot.bar(ax=axs) axs.set_xlabel("") - axs.set_ylabel(f"Energy Consumption by Transport Mode (MWh)") + axs.set_ylabel("Energy Consumption by Transport Mode (MWh)") axs.tick_params(axis="x", labelrotation=45) except TypeError: # no numeric data to plot @@ -521,7 +493,6 @@ def plot_system_consumption_validation_by_state( eia_api: str, **kwargs, ) -> tuple: - states = [x for x in n.buses.STATE.unique() if x] # remove non-classified buses sectors = ("res", "com", "ind", "trn") @@ -537,7 +508,6 @@ def plot_system_consumption_validation_by_state( y_label = "Energy (MWh)" for i, sector in enumerate(sectors): - historical = get_historical_end_use_consumption( SECTOR_MAPPER[sector], 2020, @@ -556,16 +526,13 @@ def plot_system_consumption_validation_by_state( ) try: - if nrows > 1: - df.plot(kind="bar", ax=axs[i]) axs[i].set_xlabel("") axs[i].set_ylabel(y_label) axs[i].set_title(f"{sector} Production") else: - df.plot(kind="bar", ax=axs) axs.set_xlabel("") axs.set_ylabel(y_label) @@ -579,12 +546,14 @@ def plot_system_consumption_validation_by_state( @dataclass class PlottingData: + """Describe data to plot.""" + name: str # snakemake name fn: callable system_only: bool - sector: Optional[str] = None # None = 'system' - fn_kwargs: Optional[dict[str, Any]] = None - nice_name: Optional[str] = None + sector: str | None = None # None = 'system' + fn_kwargs: dict[str, Any] | None = None + nice_name: str | None = None VALIDATION_PLOTS = [ @@ -648,13 +617,10 @@ def save_fig( n: pypsa.Network, save: str, title: str, - wildcards: dict[str, Any] = None, + wildcards: dict[str, Any] | None = None, **kwargs, ) -> None: - """ - Saves the result figure. - """ - + """Saves the result figure.""" fig, _ = fn(n, **kwargs) if not wildcards: @@ -673,8 +639,6 @@ def save_fig( if __name__ == "__main__": if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake( "plot_sector_validation", simpl="11", @@ -708,7 +672,6 @@ def save_fig( plotting_data = _initialize_metadata(VALIDATION_PLOTS) for plot_data in plotting_data: - fn = plot_data.fn title = plot_data.nice_name if plot_data.nice_name else plot_data.name @@ -749,7 +712,6 @@ def save_fig( continue for state in states: - if plot_data.fn_kwargs: fn_kwargs = plot_data.fn_kwargs else: diff --git a/workflow/scripts/prepare_network.py b/workflow/scripts/prepare_network.py index ee964dfc..8f1161e7 100644 --- a/workflow/scripts/prepare_network.py +++ b/workflow/scripts/prepare_network.py @@ -1,8 +1,3 @@ -# SPDX-FileCopyrightText: : 2017-2024 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: MIT - -# coding: utf-8 """ Prepare PyPSA network for solving according to :ref:`opts` and :ref:`ll`, such as. @@ -14,46 +9,6 @@ - specifying an expansion limit on the **volume** of transmission expansion, and - reducing the **temporal** resolution by averaging over multiple hours or segmenting time series into chunks of varying lengths using ``tsam``. - -Relevant Settings ------------------ - -.. code:: yaml - - costs: - year: - version: - fill_values: - emission_prices: - marginal_cost: - capital_cost: - - electricity: - co2limit: - max_hours: - -.. seealso:: - Documentation of the configuration file ``config/config.yaml`` at - :ref:`costs_cf`, :ref:`electricity_cf` - -Inputs ------- - -- ``resources/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. -- ``networks/elec_s{simpl}_{clusters}.nc``: confer :ref:`cluster` - -Outputs -------- - -- ``networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc``: Complete PyPSA network that will be handed to the ``solve_network`` rule. - -Description ------------ - -.. tip:: - The rule :mod:`prepare_elec_networks` runs - for all ``scenario`` s in the configuration file - the rule :mod:`prepare_network`. """ import logging @@ -67,8 +22,6 @@ set_scenario_config, update_config_from_wildcards, ) -from add_electricity import update_transmission_costs -from pypsa.descriptors import expand_series idx = pd.IndexSlice @@ -98,17 +51,17 @@ def get_investment_weighting(time_weighting, r=0.01): ) -def add_co2limit(n, co2limit, Nyears=1.0): +def add_co2limit(n, co2limit, num_years=1.0): n.add( "GlobalConstraint", "CO2Limit", carrier_attribute="co2_emissions", sense="<=", - constant=co2limit * Nyears, + constant=co2limit * num_years, ) -def add_gaslimit(n, gaslimit, Nyears=1.0): +def add_gaslimit(n, gaslimit, num_years=1.0): sel = n.carriers.index.intersection(["OCGT", "CCGT", "CHP"]) n.carriers.loc[sel, "gas_usage"] = 1.0 @@ -117,7 +70,7 @@ def add_gaslimit(n, gaslimit, Nyears=1.0): "GasLimit", carrier_attribute="gas_usage", sense="<=", - constant=gaslimit * Nyears, + constant=gaslimit * num_years, ) @@ -233,9 +186,7 @@ def resample_multi_index(df, offset, func): def is_leap_year(year: int) -> bool: - """ - Check if a given year is a leap year. - """ + """Check if a given year is a leap year.""" if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): return True else: @@ -247,7 +198,7 @@ def apply_time_segmentation(n, segments, solver_name="cbc"): import tsam.timeseriesaggregation as tsam except ImportError: raise ModuleNotFoundError( - "Optional dependency 'tsam' not found." "Install via 'pip install tsam'", + "Optional dependency 'tsam' not found.Install via 'pip install tsam'", ) # get all time-dependent data @@ -358,7 +309,7 @@ def set_line_nom_max( transport_model = is_transport_model(params.transmission_network) n = pypsa.Network(snakemake.input[0]) - Nyears = n.snapshot_weightings.loc[n.investment_periods[0]].objective.sum() / 8760.0 + num_years = n.snapshot_weightings.loc[n.investment_periods[0]].objective.sum() / 8760.0 costs = pd.read_csv(snakemake.input.tech_costs) costs = costs.pivot(index="pypsa-name", columns="parameter", values="value") # Set Investment Period Year Weightings @@ -389,10 +340,10 @@ def set_line_nom_max( n = apply_time_segmentation(n, segments, solver_name) if params.co2limit_enable: - add_co2limit(n, params.co2limit, Nyears) + add_co2limit(n, params.co2limit, num_years) if params.gaslimit_enable: - add_gaslimit(n, params.gaslimit, Nyears) + add_gaslimit(n, params.gaslimit, num_years) emission_prices = params.costs["emission_prices"] if emission_prices["enable"]: diff --git a/workflow/scripts/retrieve_caiso_data.py b/workflow/scripts/retrieve_caiso_data.py index 35de7d6c..b89d6c9f 100644 --- a/workflow/scripts/retrieve_caiso_data.py +++ b/workflow/scripts/retrieve_caiso_data.py @@ -31,7 +31,6 @@ import pandas as pd import requests -import seaborn as sns def download_oasis_report( @@ -53,7 +52,8 @@ def download_oasis_report( - node: Specific fuel region ID or 'ALL' for all regions. - resultformat: Format of the result ('6' for CSV, '5' for XML). - Returns: + Returns + ------- - None. Downloads the file to the current directory. """ base_url = "http://oasis.caiso.com/oasisapi/SingleZip" @@ -79,9 +79,7 @@ def download_oasis_report( def generate_monthly_intervals(year): - """ - Generate monthly start and end datetime strings for a given year. - """ + """Generate monthly start and end datetime strings for a given year.""" intervals = [] for month in range(1, 13): start_date = datetime(year, month, 1) @@ -125,9 +123,7 @@ def step_download_oasis_reports( def combine_reports(file_names, year): - """ - Combine all reports into a single DataFrame. - """ + """Combine all reports into a single DataFrame.""" all_data_frames = [] for file in file_names: file = file.replace(":", "_") @@ -135,7 +131,7 @@ def combine_reports(file_names, year): all_data_frames.append(df) combined_data = pd.concat(all_data_frames, ignore_index=True) - combined_data.sort_values(by="INTERVALSTARTTIME_GMT", inplace=True) + combined_data = combined_data.sort_values(by="INTERVALSTARTTIME_GMT") return combined_data @@ -147,7 +143,8 @@ def get_files_starting_with(folder_path, prefix): - folder_path: Path to the folder. - prefix: The string that the file names should start with. - Returns: + Returns + ------- - A list of file names that start with the specified prefix. """ file_names = [] @@ -158,9 +155,7 @@ def get_files_starting_with(folder_path, prefix): def merge_fuel_regions_data(combined_data, year): - """ - Merge the fuel regions with the combined data. - """ + """Merge the fuel regions with the combined data.""" df = pd.read_excel(snakemake.input.fuel_regions, sheet_name="GPI_Fuel_Region") df = df[["Fuel Region", "Balancing Authority"]] df["Fuel Region"] = df["Fuel Region"].str.strip(" ") @@ -172,9 +167,8 @@ def merge_fuel_regions_data(combined_data, year): right_on="Fuel Region", how="left", ) - combined_data_merged.drop( + combined_data_merged = combined_data_merged.drop( columns=["Fuel Region", "FUEL_REGION_ID_XML"], - inplace=True, ) return combined_data_merged @@ -199,7 +193,6 @@ def reduce_select_pricing_nodes(combined_data_merged): def main(snakemake): - fuel_year = snakemake.params.fuel_year file_names = step_download_oasis_reports( @@ -219,4 +212,9 @@ def main(snakemake): if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("retrieve_caiso_data") + main(snakemake) diff --git a/workflow/scripts/retrieve_databundles.py b/workflow/scripts/retrieve_databundles.py index 8e3b3e6f..95921ea3 100644 --- a/workflow/scripts/retrieve_databundles.py +++ b/workflow/scripts/retrieve_databundles.py @@ -1,12 +1,11 @@ -import io +"""Script retrieves data from various zenodo repositories specified by the snakemake rule. Used by multiple snakemake rules.""" + import logging -import os import platform import subprocess import zipfile from pathlib import Path -import requests from _helpers import configure_logging, progress_retrieve logger = logging.getLogger(__name__) diff --git a/workflow/scripts/retrieve_egs.py b/workflow/scripts/retrieve_egs.py index b96fdf5c..60259d24 100644 --- a/workflow/scripts/retrieve_egs.py +++ b/workflow/scripts/retrieve_egs.py @@ -1,12 +1,9 @@ -import io +"""Retreives data for Enhanced Geothermal supply curves and capacity factor profiles.""" + import logging -import os -import platform -import subprocess import zipfile from pathlib import Path -import requests from _helpers import configure_logging, progress_retrieve logger = logging.getLogger(__name__) diff --git a/workflow/scripts/retrieve_eia_demand.py b/workflow/scripts/retrieve_eia_demand.py new file mode 100644 index 00000000..934f5afd --- /dev/null +++ b/workflow/scripts/retrieve_eia_demand.py @@ -0,0 +1,136 @@ +"""Retrieves data from the EIA API.""" + +from _helpers import configure_logging +from demand_scalers import AeoEnergyScalerApi, AeoVmtScalerApi + +# def get_energy_demand(api: str, years: int, scenario: str = "reference") -> pd.DataFrame: +# """ +# Get sector yearly END-USE ENERGY growth rates from AEO at a NATIONAL +# level. + +# | | residential | commercial | industrial | transport | units | +# |----- |-------------|-------------|-------------|------------|-------| +# | 2018 | ### | ### | ### | ### | ### | +# | 2019 | ### | ### | ### | ### | ### | +# | 2020 | ### | ### | ### | ### | ### | +# | ... | | | | | | +# | 2049 | ### | ### | ### | ### | ### | +# | 2050 | ### | ### | ### | ### | ### | +# """ + +# def get_sector_data(years: list[int], sector: str) -> pd.DataFrame: +# """Function to piece togehter historical and projected values.""" +# start_year = min(years) +# end_year = max(years) + +# data = [] + +# if start_year < 2024: +# data.append( +# EnergyDemand(sector=sector, year=start_year, api=api).get_data(), +# ) +# if end_year >= 2024: +# data.append( +# EnergyDemand(sector=sector, year=end_year, api=api, scenario=scenario).get_data(), +# ) +# return pd.concat(data) + +# sectors = ("residential", "commercial", "industry", "transport") + +# df = pd.DataFrame( +# index=years, +# ) + +# for sector in sectors: +# sector_data = get_sector_data(years, sector).sort_index() +# df[sector] = sector_data.value + +# df["units"] = "quads" +# return df + + +# def get_transport_demand(api: str, years: int, scenario: str = "reference") -> pd.DataFrame: +# """ +# Get sector yearly END-USE ENERGY growth rates from AEO at a NATIONAL +# level. + +# | | light_duty | med_duty | heavy_duty | bus | units | +# |----- |------------|-----------|-------------|------|-------| +# | 2018 | ### | ### | ### | ### | ### | +# | 2019 | ### | ### | ### | ### | ### | +# | 2020 | ### | ### | ### | ### | ### | +# | ... | | | | | | +# | 2049 | ### | ### | ### | ### | ### | +# | 2050 | ### | ### | ### | ### | ### | +# """ + +# def get_historical_value(year: int, sector: str) -> float: +# """Returns single year value at a time.""" +# return TransportationDemand(vehicle=sector, year=year, api=api).get_data(pivot=True).values[0][0] + +# def get_future_values( +# year: int, +# sector: str, +# scenario: str, +# ) -> pd.DataFrame: +# """Returns all values from 2024 onwards.""" +# return TransportationDemand( +# vehicle=sector, +# year=year, +# api=api, +# scenario=scenario, +# ).get_data() + +# vehicles = ("light_duty", "med_duty", "heavy_duty", "bus") + +# df = pd.DataFrame( +# columns=["light_duty", "med_duty", "heavy_duty", "bus"], +# index=years, +# ) + +# for year in sorted(YEARS): +# if year < 2024: +# for vehicle in vehicles: +# df.at[year, vehicle] = get_historical_value( +# year, +# vehicle, +# ) + +# for vehicle in vehicles: +# aeo = get_future_values(max(YEARS), vehicle, scenario) +# for year in YEARS: +# if year < 2024: +# continue +# df.at[year, vehicle] = aeo.at[year, "value"] + +# df["units"] = "thousand VMT" +# return df + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "retrieve_eia_demand", + scenario="reference", + source="transport", + ) + configure_logging(snakemake) + + source = snakemake.wildcards.source + scenario = snakemake.wildcards.scenario + api = snakemake.params.api + save = snakemake.output + + if source == "energy": + df = AeoEnergyScalerApi(api, scenario).get_projections() + elif source == "transport": + df = AeoVmtScalerApi(api, scenario).get_projections() + elif source == "electricity": + raise NotImplementedError + else: + raise ValueError + + df = df.reset_index(names="YEAR") + + df.to_csv(save, index=False) diff --git a/workflow/scripts/retrieve_eulp.py b/workflow/scripts/retrieve_eulp.py index 4efc2c73..0d190676 100644 --- a/workflow/scripts/retrieve_eulp.py +++ b/workflow/scripts/retrieve_eulp.py @@ -1,7 +1,8 @@ """ Module to download end use load profiles (eulp) for comstock and restock data. -Notes: +Notes +----- - Downloaded at state level - Multisector 15-min load profiles for a year (ie. lots of data) - Locked to 2018 Amy Weather data @@ -10,26 +11,21 @@ import logging from pathlib import Path -from typing import List, Optional +from typing import ClassVar -import constants -import pandas as pd import requests from _helpers import configure_logging +from eulp import Eulp logger = logging.getLogger(__name__) -from eulp import Eulp - class OediDownload: - """ - Downlaods Oedi restock or comstock data at a state level. - """ + """Downlaods Oedi restock or comstock data at a state level.""" root = "https://oedi-data-lake.s3.amazonaws.com/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2024" - res_files = [ + res_files: ClassVar[list[str]] = [ "mobile_home", "multi-family_with_2_-_4_units", "multi-family_with_5plus_units", @@ -37,7 +33,7 @@ class OediDownload: "single-family_detached", ] - com_files = [ + com_files: ClassVar[list[str]] = [ "fullservicerestaurant", "hospital", "largehotel", @@ -59,11 +55,8 @@ def __init__(self, stock: str) -> None: self.stock = stock self.release = 2 if self.stock == "res" else 1 - def _get_html_folder(self, state: str, upgrade: Optional[int] = 0) -> str: - """ - Gets html of folder. - """ - + def _get_html_folder(self, state: str, upgrade: int | None = 0) -> str: + """Gets html of folder.""" if self.stock == "res": data_folder = f"resstock_amy2018_release_{self.release}" elif self.stock == "com": @@ -77,7 +70,6 @@ def _get_htmls( buildings: str | list[str], upgrade: int = 0, ) -> list[str]: - folder = self._get_html_folder(state) if isinstance(buildings, str): @@ -92,7 +84,6 @@ def _get_htmls( return htmls def _request_data(self, url: str, save: str) -> dict[str, dict | str]: - response = requests.get(url) if response.status_code == 200: logger.info(f"Writing {save}") @@ -112,13 +103,10 @@ def _create_save_dir(self, directory: str) -> None: def download_data( self, state: str, - buildings: Optional[str | list[str]] = None, - directory: Optional[str] = None, + buildings: str | list[str] | None = None, + directory: str | None = None, ) -> None: - """ - Public method to interface with. - """ - + """Public method to interface with.""" if not directory: directory = f"{state}" else: @@ -141,7 +129,6 @@ def download_data( if __name__ == "__main__": - if "snakemake" not in globals(): from _helpers import mock_snakemake diff --git a/workflow/scripts/retrieve_gridemissions_data.py b/workflow/scripts/retrieve_gridemissions_data.py index 6acf35da..7e2bd2ff 100644 --- a/workflow/scripts/retrieve_gridemissions_data.py +++ b/workflow/scripts/retrieve_gridemissions_data.py @@ -1,5 +1,5 @@ """ -**Description** +**Description**. Historical electrical generation, demand, interchange, and emissions data are retrieved from the `GridEmissions `_. Data is downloaded at hourly temporal resolution and at a spatial resolution of balancing authority region. @@ -10,13 +10,11 @@ """ import glob -import gzip import logging import os import re import tarfile import warnings -from io import BytesIO from pathlib import Path import pandas as pd @@ -59,20 +57,20 @@ def download_and_extract(url, extract_path): print(f"File extracted to {extract_path}") -def prepare_historical_data(PATH_DOWNLOAD: str, suffix: str = "elec") -> None: +def prepare_historical_data(path_download: str, suffix: str = "elec") -> None: """ Combines and filters Data Files from GridEmissions files. Returns single dataframe of all demand data. """ - file_paths = glob.glob(f"{PATH_DOWNLOAD}/processed/*_{suffix}.csv") + file_paths = glob.glob(f"{path_download}/processed/*_{suffix}.csv") dfs = [] for file_path in file_paths: df = pd.read_csv(file_path) dfs.append(df) df = pd.concat(dfs) df["period"] = pd.to_datetime(df["period"]) - df.sort_values(by="period", inplace=True) + df = df.sort_values(by="period") return df @@ -103,7 +101,7 @@ def filter_demand_data(df: pd.DataFrame) -> pd.DataFrame: grid_emissions_data_url = "https://gridemissions.s3.us-east-2.amazonaws.com/processed.tar.gz" - PATH_DOWNLOAD = Path(f"data/GridEmissions") + PATH_DOWNLOAD = Path("data/GridEmissions") PATH_DOWNLOAD.mkdir(parents=True, exist_ok=True) download_and_extract(grid_emissions_data_url, PATH_DOWNLOAD) df_elec = prepare_historical_data(PATH_DOWNLOAD, suffix="elec") diff --git a/workflow/scripts/retrieve_pudl.py b/workflow/scripts/retrieve_pudl.py index 9cfe8897..d1ba8d22 100644 --- a/workflow/scripts/retrieve_pudl.py +++ b/workflow/scripts/retrieve_pudl.py @@ -1,28 +1,22 @@ -""" -Retrieves PUDL data. -""" +"""Retrieves PUDL data.""" import logging import zipfile -import zlib from pathlib import Path -import requests from _helpers import mock_snakemake, progress_retrieve -from tqdm import tqdm logger = logging.getLogger(__name__) if __name__ == "__main__": if "snakemake" not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake("retrieve_pudl") rootpath = ".." else: rootpath = "." - # Recommended to use the stable version of PUDL documented here: https://catalystcoop-pudl.readthedocs.io/en/latest/data_access.html#stable-builds + # Recommended to use the stable version of PUDL documented here: + # https://catalystcoop-pudl.readthedocs.io/en/latest/data_access.html#stable-builds url_pudl = "https://zenodo.org/records/13346011/files/pudl.sqlite.zip?download=1" url_census = "https://zenodo.org/records/13346011/files/censusdp1tract.sqlite.zip?download=1" @@ -40,7 +34,7 @@ zip_ref.extractall(Path(save_pudl).parent) # Get PUDL FERC Form 714 Parquet - parquet = f"https://zenodo.org/records/11292273/files/out_ferc714__hourly_estimated_state_demand.parquet?download=1" + parquet = "https://zenodo.org/records/11292273/files/out_ferc714__hourly_estimated_state_demand.parquet?download=1" save_ferc = snakemake.output.pudl_ferc714 diff --git a/workflow/scripts/scenario_comparison.py b/workflow/scripts/scenario_comparison.py index 4783c0a5..008a4c76 100644 --- a/workflow/scripts/scenario_comparison.py +++ b/workflow/scripts/scenario_comparison.py @@ -1,71 +1,11 @@ -""" -This script facilitates comparison of scenarios run in PyPSA-USA. It loads data from multiple scenarios, processes it for analysis, and generates comparative plots for system metrics such as optimal capacities, supply, and costs. The script is designed for users working with PyPSA networks and scenario data stored in a specific YAML configuration format. - -Usage: ------- - -1. **Setup Configuration File**: - - Create a YAML configuration file containing details about the scenarios, aliases, order of scenarios, and network data path. An example structure for the configuration file: - ```yaml - scenarios: - - name: "Scenario 1" - path: "path/to/scenario1/" - - name: "Scenario 2" - path: "path/to/scenario2/" - alias_dict: - "Scenario 1": "S1" - "Scenario 2": "S2" - new_order: - - "S1" - - "S2" - reference_scenario: "S1" - output_folder_name: "folder_name" - network: - path: "path/to/network/file.nc" - ``` - -2. **Prepare Directory Structure**: - - Place the YAML configuration file in the parent directory of the current working directory under `config/scenario_comparison.yaml`. - - Ensure the scenario data contains statistics files (`statistics/statistics*.csv`). - -3. **Execution**: - - Run the script from its directory using a Python environment with the required libraries (`yaml`, `pandas`, `pypsa`, `matplotlib`, `numpy`, `seaborn`). - -4. **Outputs**: - - Plots will be saved in the `results/{output_folder_name}` directory in the parent of the current working directory. These include: - - Bar charts comparing system metrics like "Optimal Capacity" or "System Costs." - - Comparative percentage charts, if a reference scenario is specified. - -5. **Adjusting Variables**: - - Modify variables such as `variable`, `variable_units`, and `title` in the script to customize the metrics and plot titles. - -Functions: ----------- -- `get_carriers(n)`: Processes the carrier data from the PyPSA network for plotting. -- `load_yaml_config(yaml_path)`: Loads the YAML configuration file. -- `load_scenario_data(scenarios)`: Reads scenario CSV data from paths specified in the configuration. -- `process_data(data, alias_dict=None, new_order=None)`: Processes raw scenario data, applying aliases and ordering. -- `scenario_comparison(...)`: Generates horizontal bar charts comparing scenario data for a specific variable. -- `plot_cost_comparison(...)`: Plots a cost comparison across scenarios and optionally a percentage comparison relative to a reference scenario. - -Dependencies: -------------- -- Libraries: `yaml`, `pandas`, `pypsa`, `matplotlib`, `numpy`, `seaborn`. -- Ensure all dependencies are installed in your Python environment before running the script. - -Example: --------- -Run the script to generate comparison plots for energy system scenarios defined in the configuration file: -```bash -python script_name.py -""" +"""Script used to compare outputs from multiple snakemake scenarios.""" +import argparse from pathlib import Path import numpy as np import pandas as pd import pypsa -import seaborn as sns import yaml from matplotlib import pyplot as plt @@ -76,8 +16,8 @@ def get_carriers(n): carriers.loc["DC", "legend_name"] = "Transmission" carriers.loc["DC", "color"] = "#cf1dab" carriers.loc["battery", "legend_name"] = "Existing BESS" - carriers.set_index("nice_name", inplace=True) - carriers.sort_values(by="co2_emissions", ascending=False, inplace=True) + carriers = carriers.set_index("nice_name") + carriers = carriers.sort_values(by="co2_emissions", ascending=False) return carriers @@ -119,16 +59,224 @@ def process_data(data, alias_dict=None, new_order=None): return stats +def prepare_combined_dataframe( + stats, + variable, + carriers, + include_link=False, + as_pct=False, + variable_units=None, +): + factor_units = {"GW": 1e3, "GWh": 1e3, "%": 1}.get(variable_units, 1e9) + + data = [] + for scenario, df in stats.items(): + df = df["statistics"].fillna(0) + + tech_filter = ["Generator", "StorageUnit", "Link"] + + df = df.loc[df.index.get_level_values(0).isin(tech_filter), variable] + df.index = df.index.get_level_values(1) + df = df.reindex(carriers.index).dropna() + + if as_pct: + df = ((df / df.sum()) * 100).round(2) + + for horizon in df.columns: + df_horizon = df[horizon] / factor_units + df_horizon = df_horizon.reset_index() + df_horizon["Scenario"] = scenario + df_horizon["horizon"] = horizon + data.append(df_horizon.rename(columns={horizon: "statistics"})) + + combined_df = pd.concat(data, ignore_index=True) + combined_df["scenario_name"] = combined_df["Scenario"].apply( + lambda x: x.split("_")[0], + ) + combined_df["trans_expansion"] = combined_df["Scenario"].apply( + lambda x: x.split("_")[1], + ) + combined_df.to_csv(figures_path / f"{variable}_comparison.csv") + return combined_df + + +def plot_scenario_comparison( + combined_df, + carriers, + variable, + variable_units, + title, + figures_path, + colors, + include_link=False, + reference_scenario=None, +): + planning_horizons = combined_df["horizon"].unique() + scenarios = combined_df["Scenario"].unique() + if not include_link: + combined_df = combined_df[~combined_df["nice_name"].isin(["Link", "Ac"])] + + fig, axes = plt.subplots( + nrows=len(planning_horizons), + ncols=1, + figsize=(8, 1.2 * len(planning_horizons) + 0.2 * len(scenarios)), + sharex=True, + ) + axes = np.atleast_1d(axes) # Ensure axes is iterable for single horizon + + for ax, horizon in zip(axes, planning_horizons): + horizon_df = combined_df[combined_df["horizon"] == horizon] + y_positions = np.arange(len(scenarios)) + + for j, scenario in enumerate(scenarios): + scenario_df = horizon_df[horizon_df["Scenario"] == scenario] + bottoms = np.zeros(len(y_positions)) + for tech in scenario_df["nice_name"].unique(): + values = scenario_df[scenario_df["nice_name"] == tech]["statistics"].values[0] + ax.barh( + y_positions[j], + values, + left=bottoms[j], + color=colors[tech], + label=tech if j == 0 else "", + ) + bottoms[j] += values + + ax.text( + 1.01, + 0.5, + horizon, + transform=ax.transAxes, + va="center", + rotation="vertical", + ) + ax.set_yticks(y_positions) + ax.set_yticklabels(scenarios) + ax.grid(True, axis="x", linestyle="--", alpha=0.5) + + plt.xlabel(f"{variable} [{variable_units}]") + plt.subplots_adjust(hspace=0.5) + + carriers_plotted = carriers.loc[carriers.index.intersection(combined_df["nice_name"].unique())] + legend_handles = [plt.Rectangle((0, 0), 1, 1, color=colors[tech]) for tech in carriers_plotted.index] + fig.legend( + handles=legend_handles, + labels=carriers_plotted.legend_name.tolist(), + loc="lower center", + bbox_to_anchor=(0.5, -0.4), + ncol=4, + title="Technologies", + ) + fig.suptitle(title, fontsize=12, fontweight="bold") + plt.tight_layout() + plt.savefig( + figures_path / f"{variable}_comparison.png", + dpi=300, + bbox_inches="tight", + ) + + if reference_scenario: + _plot_reference_comparison( + combined_df, + reference_scenario, + carriers, + colors, + figures_path, + variable, + horizon, + ) + + return + + +def _plot_reference_comparison( + combined_df, + reference_scenario, + carriers, + colors, + figures_path, + variable, + horizon, +): + combined_df = combined_df.set_index("Scenario") + combined_df = combined_df.loc[combined_df.horizon == horizon] + ref = combined_df.loc[reference_scenario].set_index("nice_name") + combined_df = combined_df.reset_index().set_index("nice_name") + for carrier in combined_df.index.unique(): + combined_df.loc[carrier, "statistics"] = ( + (combined_df.loc[carrier, "statistics"] - ref.loc[carrier, "statistics"]) / ref.statistics.sum() * 100 + ) + combined_df = combined_df.reset_index().set_index("Scenario") + stacked_data = combined_df.reset_index().pivot( + index="Scenario", + columns="nice_name", + values="statistics", + ) + stacked_data.plot( + kind="bar", + stacked=True, + figsize=(10, 7), + color=[colors[tech] for tech in stacked_data.columns], + legend=False, + ) + plt.ylabel("∆ Capacity[%]") + plt.savefig( + figures_path / f"{variable}_pct_comparison.png", + dpi=300, + bbox_inches="tight", + ) + combined_df.to_csv(figures_path / f"{variable}_pct_comparison.csv") + + # combined_df = combined_df.set_index(["Scenario", "horizon"]) + # ref = combined_df.loc[(reference_scenario, slice(None))] + # combined_df = combined_df.reset_index() + + # for horizon in ref.index.get_level_values(0).unique(): + # ref_stats = ref.loc[tech]["statistics"] + # combined_df["pct_diff"] = combined_df["statistics"] / ref_stats.sum() * 100 - 100 + + # pivoted_data = combined_df.pivot(index="Scenario", columns="nice_name", values="pct_diff") + # pivoted_data.plot( + # kind="bar", + # stacked=True, + # figsize=(10, 7), + # color=[colors[tech] for tech in pivoted_data.columns], + # legend=False, + # ) + # plt.ylabel("∆ Capacity [%]") + # plt.savefig(figures_path / f"{variable}_pct_comparison.png", dpi=300, bbox_inches="tight") + + # Plot comparison -def scenario_comparison(stats, variable, variable_units, carriers, title, figures_path, include_link=False): +def scenario_comparison( + stats, + variable, + variable_units, + carriers, + title, + figures_path, + include_link=False, + as_pct=False, + reference_scenario=None, +): + combined_df = pd.DataFrame( + columns=["Scenario", "horizon", "nice_name", "statistics"], + index=[], + ) colors = carriers["color"] planning_horizons = stats[next(iter(stats.keys()))]["statistics"][variable].columns fig, axes = plt.subplots( nrows=len(planning_horizons), ncols=1, - figsize=(8, 4.2 * len(planning_horizons)), + figsize=(8, 1.5 * len(planning_horizons) + 0.2 * len(stats)), sharex=True, ) + if variable_units in ["GW", "GWh"]: + factor_units = 1e3 + elif variable_units in ["%"]: + factor_units = 1 + else: + factor_units = 1e9 if len(planning_horizons) == 1: axes = [axes] @@ -137,20 +285,50 @@ def scenario_comparison(stats, variable, variable_units, carriers, title, figure y_positions = np.arange(len(stats)) for j, (scenario, df) in enumerate(stats.items()): df = df["statistics"].fillna(0) - bottoms = np.zeros(len(df.columns)) + bottoms = np.zeros(len(y_positions)) if include_link: - df = df.loc[df.index.get_level_values(0).isin(["Generator", "StorageUnit", "Link"]), variable] + df = df.loc[ + df.index.get_level_values(0).isin( + ["Generator", "StorageUnit", "Link"], + ), + variable, + ] df = df.loc[~(df.index.get_level_values(1) == "Ac")] else: - df = df.loc[df.index.get_level_values(0).isin(["Generator", "StorageUnit"]), variable] + df = df.loc[ + df.index.get_level_values(0).isin(["Generator", "StorageUnit"]), + variable, + ] df.index = df.index.get_level_values(1) df = df.reindex(carriers.index).dropna() + if as_pct: + df = ((df / df.sum()) * 100).round(2) for i, tech in enumerate(df.index.unique()): - values = df.loc[tech, horizon] / (1e3 if variable_units in ["GW", "GWh"] else 1e9) - ax.barh(y_positions[j], values, left=bottoms[j], color=colors[tech], label=tech if j == 0 else "") + values = df.loc[tech, horizon] / factor_units + ax.barh( + y_positions[j], + values, + left=bottoms[j], + color=colors[tech], + label=tech if j == 0 else "", + ) bottoms[j] += values - ax.text(1.01, 0.5, f"{horizon}", transform=ax.transAxes, va="center", rotation="vertical") + df[["Scenario", "horizon"]] = scenario, horizon + df = df.reset_index() + df = df.rename(columns={horizon: "statistics"}) + combined_df = pd.concat( + [combined_df, df[["Scenario", "nice_name", "statistics", "horizon"]]], + ) + + ax.text( + 1.01, + 0.5, + f"{horizon}", + transform=ax.transAxes, + va="center", + rotation="vertical", + ) ax.set_yticks(y_positions) ax.set_yticklabels(stats.keys()) ax.grid(True, axis="x", linestyle="--", alpha=0.5) @@ -169,11 +347,63 @@ def scenario_comparison(stats, variable, variable_units, carriers, title, figure ) fig.suptitle(title, fontsize=12, fontweight="bold") plt.tight_layout() - plt.savefig(figures_path / f"{variable}_comparison.png", dpi=300, bbox_inches="tight") - return fig, axes + plt.savefig( + figures_path / f"{variable}_comparison.png", + dpi=300, + bbox_inches="tight", + ) + combined_df["scenario_name"] = combined_df["Scenario"].apply( + lambda x: x.split("_")[0], + ) + combined_df["trans_expansion"] = combined_df["Scenario"].apply( + lambda x: x.split("_")[1], + ) + combined_df.to_csv(figures_path / f"{variable}_comparison.csv") -def plot_cost_comparison(stats, n, variable, variable_units, title, figures_path, reference_scenario=None): + if reference_scenario: + combined_df = combined_df.set_index("Scenario") + combined_df = combined_df.query("horizon == @horizon").drop( + columns="horizon", + ) # only plot last horizon + ref = combined_df.loc[reference_scenario].set_index("nice_name") + combined_df = combined_df.reset_index().set_index("nice_name") + for scenario in combined_df.index.unique(): + combined_df.loc[scenario, "statistics"] = ( + (combined_df.loc[scenario, "statistics"] - ref.loc[scenario, "statistics"]) / ref.statistics.sum() * 100 + ) + combined_df = combined_df.reset_index().set_index("Scenario") + stacked_data = combined_df.reset_index().pivot( + index="Scenario", + columns="nice_name", + values="statistics", + ) + stacked_data.plot( + kind="bar", + stacked=True, + figsize=(10, 7), + color=[colors[tech] for tech in stacked_data.columns], + legend=False, + ) + plt.ylabel("∆ Capacity[%]") + plt.savefig( + figures_path / f"{variable}_pct_comparison.png", + dpi=300, + bbox_inches="tight", + ) + combined_df.to_csv(figures_path / f"{variable}_pct_comparison.csv") + return combined_df + + +def plot_cost_comparison( + stats, + n, + variable, + variable_units, + title, + figures_path, + reference_scenario=None, +): combined_df = pd.DataFrame(columns=["Scenario", "statistics"], index=[]) for j, (scenario, stat) in enumerate(stats.items()): stat = stat["statistics"] @@ -194,22 +424,53 @@ def plot_cost_comparison(stats, n, variable, variable_units, title, figures_path ], ) - combined_df.plot(kind="bar", x="Scenario", y="statistics", title="Total System Costs", legend=False) + combined_df.plot( + kind="bar", + x="Scenario", + y="statistics", + title="Total System Costs", + legend=False, + ) plt.ylabel("Annualized System Costs [B$]") - plt.savefig(figures_path / f"{variable}_comparison.png", dpi=300, bbox_inches="tight") + plt.savefig( + figures_path / f"{variable}_comparison.png", + dpi=300, + bbox_inches="tight", + ) if reference_scenario: combined_df = combined_df.set_index("Scenario") ref = combined_df.loc[reference_scenario] pct_df = (combined_df - ref) / combined_df * 100 - pct_df.plot(kind="bar", y="statistics", title="Total System Costs", legend=False) - plt.ylabel(" Reduction in Annualized System Costs [%]") - plt.savefig(figures_path / f"{variable}_pct_comparison.png", dpi=300, bbox_inches="tight") + pct_df.plot( + kind="bar", + y="statistics", + title="Total System Costs", + legend=False, + ) + plt.ylabel("∆ Annualized System Costs [%]") + plt.savefig( + figures_path / f"{variable}_pct_comparison.png", + dpi=300, + bbox_inches="tight", + ) + pct_df.to_csv(figures_path / f"{variable}_pct_comparison.csv") + combined_df.to_csv(figures_path / f"{variable}_comparison.csv") # Main execution if __name__ == "__main__": - yaml_path = Path.cwd().parent / "config/scenario_comparison.yaml" # Path to the YAML file + # Parse command line arguments + parser = argparse.ArgumentParser(description="Run scenario comparison script.") + parser.add_argument( + "yaml_name", + type=str, + help="Name of the YAML configuration file.", + ) + args = parser.parse_args() + + yaml_name = args.yaml_name # Name of the YAML file from command line argument + yaml_path = Path.cwd() / yaml_name # Path to the YAML file # Load and process data config = load_yaml_config(yaml_path) @@ -221,7 +482,7 @@ def plot_cost_comparison(stats, n, variable, variable_units, title, figures_path reference_scenario = config.get("reference_scenario", None) figures_path = ( - Path.cwd().parent / f"results/{config.get('output_folder_name', 'scenario_comparison')}" + Path.cwd() / f"results/{config.get('output_folder_name', 'scenario_comparison')}" ) # Directory to save the figures in the parent of cwd figures_path.mkdir(exist_ok=True) @@ -231,25 +492,90 @@ def plot_cost_comparison(stats, n, variable, variable_units, title, figures_path n = pypsa.Network(config["network"]["path"]) # Example carrier setup carriers = get_carriers(n) + carriers.to_csv(figures_path / "carriers.csv") # Example variable and title variable = "Optimal Capacity" variable_units = "GW" - title = "Capacity Evolution Comparison" + title = "Capacity Comparison" # Generate plots - scenario_comparison(processed_data, variable, variable_units, carriers, title, figures_path) + combined_df = prepare_combined_dataframe( + processed_data, + variable, + carriers, + as_pct=False, + variable_units=variable_units, + ) + plot_scenario_comparison( + combined_df, + carriers, + variable, + variable_units, + title, + figures_path, + colors=carriers["color"], + reference_scenario=reference_scenario, + ) # Example variable and title variable = "Supply" - variable_units = "GWh" - title = "Supply Evolution Comparison" + variable_units = "%" + title = "Supply Comparison" + + # Generate plots + scenario_comparison( + processed_data, + variable, + variable_units, + carriers, + title, + figures_path, + as_pct=True, + ) + + # Example variable and title + variable = "Capital Expenditure" + variable_units = "$B" + title = "CAPEX Comparison" + + # Generate plots + scenario_comparison( + processed_data, + variable, + variable_units, + carriers, + title, + figures_path, + as_pct=False, + ) + + # Example variable and title + variable = "Operational Expenditure" + variable_units = "$B" + title = "OPEX Comparison" # Generate plots - scenario_comparison(processed_data, variable, variable_units, carriers, title, figures_path) + scenario_comparison( + processed_data, + variable, + variable_units, + carriers, + title, + figures_path, + as_pct=False, + ) # Example variable and title variable = "System Costs" variable_units = "$B" title = "Scenario Comparison" - plot_cost_comparison(processed_data, n, variable, variable_units, title, figures_path, reference_scenario) + plot_cost_comparison( + processed_data, + n, + variable, + variable_units, + title, + figures_path, + reference_scenario, + ) diff --git a/workflow/scripts/simplify_network.py b/workflow/scripts/simplify_network.py index d3efc779..aec8e6a6 100644 --- a/workflow/scripts/simplify_network.py +++ b/workflow/scripts/simplify_network.py @@ -1,8 +1,5 @@ # BY PyPSA-USA Authors -""" -Aggregates network to substations and simplifies to a single voltage level. -""" - +"""Aggregates network to substations and simplifies to a single voltage level.""" import logging from functools import reduce @@ -30,7 +27,7 @@ def convert_to_per_unit(df): df["susceptance_pu"] = df["b"] / df["base_susceptance"] # Dropping intermediate columns (optional) - df.drop(["base_impedance", "base_susceptance"], axis=1, inplace=True) + df = df.drop(["base_impedance", "base_susceptance"], axis=1) return df @@ -39,7 +36,8 @@ def convert_to_voltage_level(n, new_voltage): """ Converts network.lines parameters to a given voltage. - Parameters: + Parameters + ---------- n (pypsa.Network): Network new_voltage (float): New voltage level """ @@ -55,10 +53,9 @@ def convert_to_voltage_level(n, new_voltage): df.v_nom = new_voltage # Dropping intermediate column - df.drop( + df = df.drop( ["new_base_impedance", "resistance_pu", "reactance_pu", "susceptance_pu"], axis=1, - inplace=True, ) # Update network lines @@ -101,7 +98,6 @@ def aggregate_to_substations( First step in clusterings, if use_ba_zones is True, then the network retains balancing Authority zones in clustering. """ - logger.info("Aggregating buses to substation level...") generator_strategies = aggregation_strategies.get("generators", dict()) @@ -173,9 +169,8 @@ def aggregate_to_substations( else: cols2drop = ["balancing_area", "substation_off", "sub_id", "state"] - network_s.buses.drop( + network_s.buses = network_s.buses.drop( columns=cols2drop, - inplace=True, ) return network_s, clustering.busmap @@ -221,9 +216,8 @@ def assign_line_lengths(n, line_length_factor): # n = pypsa.Network(snakemake.input.network) n = pickle.load(open(snakemake.input.network, "rb")) - n.generators.drop( + n.generators = n.generators.drop( columns=["ba_eia", "ba_ads"], - inplace=True, ) # temp added these columns and need to drop for workflow n = convert_to_voltage_level(n, 230) @@ -238,7 +232,8 @@ def assign_line_lengths(n, line_length_factor): busmaps = [trafo_map, busmap_to_sub.sub_id] busmaps = reduce(lambda x, y: x.map(y), busmaps[1:], busmaps[0]) - # TODO: WHEN WE REPLACE NETWORK WITH NEW NETWORK WE SHOULD CALACULATE LINE LENGTHS BASED ON THE actual GIS line files. + # TODO: WHEN WE REPLACE NETWORK WITH NEW NETWORK WE SHOULD CALACULATE LINE + # LENGTHS BASED ON THE actual GIS line files. n = assign_line_lengths(n, 1.25) n.links["underwater_fraction"] = 0 # TODO: CALULATE UNDERWATER FRACTIONS. @@ -251,7 +246,7 @@ def assign_line_lengths(n, line_length_factor): ) if topological_boundaries == "reeds_zone": - n.buses.drop(columns=["county"], inplace=True) + n.buses = n.buses.drop(columns=["county"]) if snakemake.wildcards.simpl: n.set_investment_periods(periods=snakemake.params.planning_horizons) @@ -281,6 +276,7 @@ def assign_line_lengths(n, line_length_factor): algorithm=params.simplify_network["algorithm"], feature=params.simplify_network["feature"], aggregation_strategies=params.aggregation_strategies, + weighting_strategy=params.simplify_network.get("weighting_strategy", None), ) n = clustering.network diff --git a/workflow/scripts/solve_network.py b/workflow/scripts/solve_network.py index 4dc9b570..1d1215bb 100644 --- a/workflow/scripts/solve_network.py +++ b/workflow/scripts/solve_network.py @@ -25,7 +25,7 @@ import logging import re -from typing import Optional +from typing import Any import numpy as np import pandas as pd @@ -50,6 +50,7 @@ def get_region_buses(n, region_list): return n.buses[ ( n.buses.country.isin(region_list) + | n.buses.reeds_zone.isin(region_list) | n.buses.reeds_state.isin(region_list) | n.buses.interconnect.str.lower().isin(region_list) | n.buses.nerc_reg.isin(region_list) @@ -58,11 +59,19 @@ def get_region_buses(n, region_list): ] -def filter_components(n, component_type, planning_horizon, carrier_list, region_buses, extendable): +def filter_components( + n: pypsa.Network, + component_type: str, + planning_horizon: str | int, + carrier_list: list[str], + region_buses: pd.Index, + extendable: bool, +): """ Filter components based on common criteria. - Parameters: + Parameters + ---------- - n: pypsa.Network The PyPSA network object. - component_type: str @@ -76,7 +85,8 @@ def filter_components(n, component_type, planning_horizon, carrier_list, region_ - extendable: bool, optional If specified, filters by extendable or non-extendable assets. - Returns: + Returns + ------- - pd.DataFrame Filtered assets. """ @@ -108,7 +118,9 @@ def add_land_use_constraints(n): constraints. """ model = n.model - generators = n.generators.query("p_nom_extendable & land_region != '' ").rename_axis(index="Generator-ext") + generators = n.generators.query( + "p_nom_extendable & land_region != '' ", + ).rename_axis(index="Generator-ext") if generators.empty: return @@ -125,15 +137,15 @@ def add_land_use_constraints(n): if not index.empty: logger.info("Adding land-use constraints") - model.add_constraints(lhs.sel(group=index) <= rhs.loc[index], name="land_use_constraint") + model.add_constraints( + lhs.sel(group=index) <= rhs.loc[index], + name="land_use_constraint", + ) def prepare_network( n, solve_opts=None, - config=None, - foresight=None, - planning_horizons=None, ): if "clip_p_max_pu" in solve_opts: for df in ( @@ -141,7 +153,7 @@ def prepare_network( n.generators_t.p_min_pu, n.storage_units_t.inflow, ): - df.where(df > solve_opts["clip_p_max_pu"], other=0.0, inplace=True) + df = df.where(df > solve_opts["clip_p_max_pu"], other=0.0) load_shedding = solve_opts.get("load_shedding") if load_shedding: @@ -183,11 +195,12 @@ def prepare_network( def add_technology_capacity_target_constraints(n, config): """ - Add Technology Capacaity Target (TCT) constraint to the network. + Add Technology Capacity Target (TCT) constraint to the network. - Add minimum or maximum levels of generator nominal capacity per carrier for individual regions. Each constraint can be designated for a specified planning horizon in multi-period models. Opts and path for technology_capacity_targets.csv must be defined in config.yaml. Default file is available at config/policy_constraints/technology_capacity_targets.csv. - - *** Review to subtract the non-extensible capacity from the rhs? *** + Add minimum or maximum levels of generator nominal capacity per carrier for individual regions. + Each constraint can be designated for a specified planning horizon in multi-period models. + Opts and path for technology_capacity_targets.csv must be defined in config.yaml. + Default file is available at config/policy_constraints/technology_capacity_targets.csv. Parameters ---------- @@ -206,13 +219,13 @@ def add_technology_capacity_target_constraints(n, config): if tct_data.empty: return - for idx, target in tct_data.iterrows(): + for _, target in tct_data.iterrows(): planning_horizon = target.planning_horizon region_list = [region_.strip() for region_ in target.region.split(",")] carrier_list = [carrier_.strip() for carrier_ in target.carrier.split(",")] region_buses = get_region_buses(n, region_list) - lhs_gens = filter_components( + lhs_gens_ext = filter_components( n=n, component_type="Generator", planning_horizon=planning_horizon, @@ -220,17 +233,16 @@ def add_technology_capacity_target_constraints(n, config): region_buses=region_buses.index, extendable=True, ) + lhs_gens_existing = filter_components( + n=n, + component_type="Generator", + planning_horizon=planning_horizon, + carrier_list=carrier_list, + region_buses=region_buses.index, + extendable=False, + ) - # rhs_g_non_extendable = filter_components( - # n=n, - # component_type="Generator", - # planning_horizon=planning_horizon, - # carrier_list=carrier_list, - # region_buses=region_buses.index, - # extendable=False, - # ).p_nom.sum() - - lhs_storage = filter_components( + lhs_storage_ext = filter_components( n=n, component_type="StorageUnit", planning_horizon=planning_horizon, @@ -238,32 +250,37 @@ def add_technology_capacity_target_constraints(n, config): region_buses=region_buses.index, extendable=True, ) + lhs_storage_existing = filter_components( + n=n, + component_type="StorageUnit", + planning_horizon=planning_horizon, + carrier_list=carrier_list, + region_buses=region_buses.index, + extendable=False, + ) - # rhs_s_non_extendable = filter_components( - # n=n, - # component_type="StorageUnit", - # planning_horizon=planning_horizon, - # carrier_list=carrier_list, - # region_buses=region_buses.index, - # extendable=False, - # ).p_nom.sum() - - if region_buses.empty or (lhs_gens.empty and lhs_storage.empty): + if region_buses.empty or (lhs_gens_ext.empty and lhs_storage_ext.empty): continue - if not lhs_gens.empty: - grouper_g = pd.concat([lhs_gens.bus.map(n.buses.country), lhs_gens.carrier], axis=1).rename_axis( + if not lhs_gens_ext.empty: + grouper_g = pd.concat( + [lhs_gens_ext.bus.map(n.buses.country), lhs_gens_ext.carrier], + axis=1, + ).rename_axis( "Generator-ext", ) - lhs_g = p_nom.loc[lhs_gens.index].groupby(grouper_g).sum().rename(bus="country") + lhs_g = p_nom.loc[lhs_gens_ext.index].groupby(grouper_g).sum().rename(bus="country") else: lhs_g = None - if not lhs_storage.empty: - grouper_s = pd.concat([lhs_storage.bus.map(n.buses.country), lhs_storage.carrier], axis=1).rename_axis( + if not lhs_storage_ext.empty: + grouper_s = pd.concat( + [lhs_storage_ext.bus.map(n.buses.country), lhs_storage_ext.carrier], + axis=1, + ).rename_axis( "StorageUnit-ext", ) - lhs_s = n.model["StorageUnit-p_nom"].loc[lhs_storage.index].groupby(grouper_s).sum() + lhs_s = n.model["StorageUnit-p_nom"].loc[lhs_storage_ext.index].groupby(grouper_s).sum() else: lhs_s = None @@ -276,51 +293,56 @@ def add_technology_capacity_target_constraints(n, config): else: lhs = (lhs_g + lhs_s).sum() - lhs_extendable = lhs_gens.p_nom.sum() + lhs_storage.p_nom.sum() - # rhs_non_extendable = rhs_g_non_extendable + rhs_s_non_extendable + lhs_existing = lhs_gens_existing.p_nom.sum() + lhs_storage_existing.p_nom.sum() if target["max"] == "existing": - target["max"] = lhs_extendable + target["max"] = round(lhs_existing, 2) + 0.01 + else: + target["max"] = float(target["max"]) + if target["min"] == "existing": - target["min"] = lhs_extendable + target["min"] = round(lhs_existing, 2) - 0.01 + else: + target["min"] = float(target["min"]) if not np.isnan(target["min"]): + rhs = target["min"] - round(lhs_existing, 2) n.model.add_constraints( - lhs >= (target["min"]), + lhs >= rhs, name=f"GlobalConstraint-{target.name}_{target.planning_horizon}_min", ) + logger.info( "Adding TCT Constraint:\n" - "Name: %s\n" - "Planning Horizon: %s\n" - "Region: %s\n" - "Carrier: %s\n" - "Min Value: %s", - target.name, - target.planning_horizon, - target.region, - target.carrier, - (target["min"]), + f"Name: {target.name}\n" + f"Planning Horizon: {target.planning_horizon}\n" + f"Region: {target.region}\n" + f"Carrier: {target.carrier}\n" + f"Min Value: {target['min']}\n" + f"Min Value Adj: {rhs}", ) if not np.isnan(target["max"]): + assert ( + target["max"] >= lhs_existing + ), f"TCT constraint of {target['max']} MW for {target['carrier']} must be at least {lhs_existing}" + + rhs = target["max"] - round(lhs_existing, 2) + n.model.add_constraints( - lhs <= (target["max"]), + lhs <= rhs, name=f"GlobalConstraint-{target.name}_{target.planning_horizon}_max", ) + logger.info( "Adding TCT Constraint:\n" - "Name: %s\n" - "Planning Horizon: %s\n" - "Region: %s\n" - "Carrier: %s\n" - "Max Value: %s", - target.name, - target.planning_horizon, - target.region, - target.carrier, - (target["max"]), + f"Name: {target.name}\n" + f"Planning Horizon: {target.planning_horizon}\n" + f"Region: {target.region}\n" + f"Carrier: {target.carrier}\n" + f"Max Value: {target['max']}\n" + f"Max Value Adj: {rhs}", ) @@ -345,25 +367,32 @@ def add_RPS_constraints(n, config): """ def process_reeds_data(filepath, carriers, value_col): - """ - Helper function to process RPS or CES REEDS data. - """ + """Helper function to process RPS or CES REEDS data.""" reeds = pd.read_csv(filepath) # Handle both wide and long formats if "rps_all" not in reeds.columns: - reeds = reeds.melt(id_vars="st", var_name="planning_horizon", value_name=value_col) + reeds = reeds.melt( + id_vars="st", + var_name="planning_horizon", + value_name=value_col, + ) # Standardize column names - reeds.rename(columns={"st": "region", "t": "planning_horizon", "rps_all": "pct"}, inplace=True) + reeds = reeds.rename( + columns={"st": "region", "t": "planning_horizon", "rps_all": "pct"}, + ) reeds["carrier"] = [", ".join(carriers)] * len(reeds) # Extract and create new rows for `rps_solar` and `rps_wind` additional_rows = [] - for carrier_col, carrier_name in [("rps_solar", "solar"), ("rps_wind", "onwind, offwind, offwind_floating")]: + for carrier_col, carrier_name in [ + ("rps_solar", "solar"), + ("rps_wind", "onwind, offwind, offwind_floating"), + ]: if carrier_col in reeds.columns: temp = reeds[["region", "planning_horizon", carrier_col]].copy() - temp.rename(columns={carrier_col: "pct"}, inplace=True) + temp = temp.rename(columns={carrier_col: "pct"}) temp["carrier"] = carrier_name additional_rows.append(temp) @@ -382,8 +411,17 @@ def process_reeds_data(filepath, carriers, value_col): portfolio_standards = pd.read_csv(config["electricity"]["portfolio_standards"]) # Define carriers for RPS and CES - rps_carriers = ["onwind", "offwind", "offwind_floating", "solar", "hydro", "geothermal", "biomass", "EGS"] - ces_carriers = rps_carriers + ["nuclear", "SMR"] + rps_carriers = [ + "onwind", + "offwind", + "offwind_floating", + "solar", + "hydro", + "geothermal", + "biomass", + "EGS", + ] + ces_carriers = [*rps_carriers, "nuclear", "SMR"] # Process RPS and CES REEDS data rps_reeds = process_reeds_data( @@ -401,7 +439,11 @@ def process_reeds_data(filepath, carriers, value_col): portfolio_standards = pd.concat([portfolio_standards, rps_reeds, ces_reeds]) portfolio_standards = portfolio_standards[ (portfolio_standards.pct > 0.0) - & (portfolio_standards.planning_horizon.isin(snakemake.params.planning_horizons)) + & ( + portfolio_standards.planning_horizon.isin( + snakemake.params.planning_horizons, + ) + ) & (portfolio_standards.region.isin(n.buses.reeds_state.unique())) ] @@ -444,7 +486,9 @@ def process_reeds_data(filepath, carriers, value_col): lhs >= rhs, name=f"GlobalConstraint-{constraint_row.name}_{constraint_row.planning_horizon}_rps_limit", ) - logger.info(f"Added RPS {constraint_row.name} for {constraint_row.planning_horizon}.") + logger.info( + f"Added RPS {constraint_row.name} for {constraint_row.planning_horizon}.", + ) def add_EQ_constraints(n, o, scaling=1e-1): @@ -587,7 +631,8 @@ def add_interface_limits(n, sns, config): if ( not (pd.concat([interface_links_b0, interface_links_b1]).empty) and ("RESOLVE" in interface.interface or transport_model) - # Apply link constraints if RESOLVE constraint or if zonal model. ITLs should usually only apply to AC lines if DC PF is used. + # Apply link constraints if RESOLVE constraint or if zonal model. ITLs + # should usually only apply to AC lines if DC PF is used. ): link_flows = n.model["Link-p"].loc[:, interface_links_b1.index].sum( dims="Link", @@ -607,10 +652,7 @@ def add_interface_limits(n, sns, config): def add_regional_co2limit(n, sns, config): - """ - Adding regional regional CO2 Limits Specified in the config.yaml. - """ - + """Adding regional regional CO2 Limits Specified in the config.yaml.""" regional_co2_lims = pd.read_csv( config["electricity"]["regional_Co2_limits"], index_col=[0], @@ -677,7 +719,6 @@ def add_regional_co2limit(n, sns, config): # lhs -= (p_store_discharge * EF_imports).sum() # # Internal Demand - # breakpoint() # region_loads = n.loads[n.loads.bus.isin(region_buses.index)] # region_demand = ( # n.loads_t.p_set.loc[planning_horizon,region_loads.index].sum().sum() @@ -749,14 +790,13 @@ def add_SAFER_constraints(n, config): snakemake.input.safer_reeds, index_col=[0], ) - NERC_memberships = n.buses.groupby("nerc_reg")["reeds_zone"].apply(lambda x: ", ".join(x)).to_dict() - reeds_prm["region"] = reeds_prm.index.map(NERC_memberships) - reeds_prm.dropna(subset="region", inplace=True) - reeds_prm.drop( + nerc_memberships = n.buses.groupby("nerc_reg")["reeds_zone"].apply(lambda x: ", ".join(x)).to_dict() + reeds_prm["region"] = reeds_prm.index.map(nerc_memberships) + reeds_prm = reeds_prm.dropna(subset="region") + reeds_prm = reeds_prm.drop( columns=["none", "ramp2025_20by50", "ramp2025_25by50", "ramp2025_30by50"], - inplace=True, ) - reeds_prm.rename(columns={"static": "prm", "t": "planning_horizon"}, inplace=True) + reeds_prm = reeds_prm.rename(columns={"static": "prm", "t": "planning_horizon"}) regional_prm = pd.concat([regional_prm, reeds_prm]) regional_prm = regional_prm[regional_prm.planning_horizon.isin(snakemake.params.planning_horizons)] @@ -816,9 +856,9 @@ def add_operational_reserve_margin(n, sns, config): contingency: 400000 # MW """ reserve_config = config["electricity"]["operational_reserve"] - EPSILON_LOAD = reserve_config["epsilon_load"] - EPSILON_VRES = reserve_config["epsilon_vres"] - CONTINGENCY = reserve_config["contingency"] + eps_load = reserve_config["epsilon_load"] + eps_vres = reserve_config["epsilon_vres"] + contingency = reserve_config["contingency"] # Reserve Variables n.model.add_variables( @@ -836,7 +876,7 @@ def add_operational_reserve_margin(n, sns, config): if not ext_i.empty and not vres_i.empty: capacity_factor = n.generators_t.p_max_pu[vres_i.intersection(ext_i)] p_nom_vres = n.model["Generator-p_nom"].loc[vres_i.intersection(ext_i)].rename({"Generator-ext": "Generator"}) - lhs = summed_reserve + (p_nom_vres * (-EPSILON_VRES * capacity_factor)).sum( + lhs = summed_reserve + (p_nom_vres * (-eps_vres * capacity_factor)).sum( "Generator", ) else: # if no extendable VRES @@ -851,7 +891,7 @@ def add_operational_reserve_margin(n, sns, config): potential = (capacity_factor * renewable_capacity).sum(axis=1) # Right-hand-side - rhs = EPSILON_LOAD * demand + EPSILON_VRES * potential + CONTINGENCY + rhs = eps_load * demand + eps_vres * potential + contingency n.model.add_constraints(lhs >= rhs, name="reserve_margin") @@ -880,24 +920,87 @@ def add_operational_reserve_margin(n, sns, config): n.model.add_constraints(lhs <= rhs, name="Generator-p-reserve-upper") -def add_battery_constraints(n): - """ - Add constraint ensuring that charger = discharger, i.e. - 1 * charger_size - efficiency * discharger_size = 0 - """ - if not n.links.p_nom_extendable.any(): - return +def add_demand_response_constraint(n, config, sector_study): + """Add demand response capacity constraint.""" + + def add_capacity_constraint( + n: pypsa.Network, + shift: float, # per_unit + ): + """Add limit on deferable load. No need for snapshot weights.""" + dr_links = n.links[n.links.carrier == "demand_response"].copy() + + if dr_links.empty: + logger.info("No demand response links identified.") + return + + deferrable_links = dr_links[dr_links.index.str.endswith("-discharger")] + deferrable_loads = n.loads[n.loads.bus.isin(deferrable_links.bus1)] + + lhs = n.model["Link-p"].loc[:, deferrable_links.index].groupby(deferrable_links.bus1).sum() + rhs = n.loads_t["p_set"][deferrable_loads.index].mul(shift).round(2) + rhs.columns.name = "bus1" + rhs = rhs.rename(columns={x: x.strip(" AC") for x in rhs}) + + # force rhs to be same order as lhs + # idk why but coordinates were not aligning and this gets around that + bus_order = lhs.vars.bus1.data + rhs = rhs[bus_order.tolist()] + + n.model.add_constraints(lhs <= rhs.T, name="demand_response_capacity") + + def add_sector_capacity_constraint( + n: pypsa.Network, + shift: float, # per_unit + ): + """Add limit on deferable load. No need for snapshot weights.""" + dr_links = n.links[n.links.carrier == "demand_response"].copy() + + if dr_links.empty: + logger.info("No demand response links identified.") + return + + inflow_links = dr_links[dr_links.index.str.endswith("-discharger")] + inflow = n.model["Link-p"].loc[:, inflow_links.index].groupby(inflow_links.bus1).sum() + inflow = inflow.rename({"bus1": "Bus"}) # align coordinate names + + outflow_links = n.links[n.links.bus0.isin(inflow_links.bus1) & ~n.links.carrier.str.endswith("-dr")] + outflow = n.model["Link-p"].loc[:, outflow_links.index].groupby(outflow_links.bus0).sum() + outflow = outflow.rename({"bus0": "Bus"}) # align coordinate names - discharger_bool = n.links.index.str.contains("battery discharger") - charger_bool = n.links.index.str.contains("battery charger") + lhs = outflow.mul(shift) - inflow + rhs = 0 - dischargers_ext = n.links[discharger_bool].query("p_nom_extendable").index - chargers_ext = n.links[charger_bool].query("p_nom_extendable").index + n.model.add_constraints( + lhs >= rhs, + name="demand_response_capacity", + ) - eff = n.links.efficiency[dischargers_ext].values - lhs = n.model["Link-p_nom"].loc[chargers_ext] - n.model["Link-p_nom"].loc[dischargers_ext] * eff + dr_config = config["electricity"].get("demand_response", {}) - n.model.add_constraints(lhs == 0, name="Link-charger_ratio") + shift = dr_config.get("shift", 0) + + # seperate, as the electrical constraint can directly apply to the load, + # while the sector constraint has to apply to the power flows out of the bus + if sector_study: + fn = add_sector_capacity_constraint + else: + fn = add_capacity_constraint + + if isinstance(shift, str): + if shift == "inf": + pass + else: + logger.error(f"Unknown arguement of {shift} for DR") + raise ValueError(shift) + elif isinstance(shift, int | float): + if shift < 0.001: + logger.info("Demand response not enabled") + else: + fn(n, shift) + else: + logger.error(f"Unknown arguement of {shift} for DR") + raise ValueError(shift) def add_sector_co2_constraints(n, config): @@ -911,7 +1014,6 @@ def add_sector_co2_constraints(n, config): """ def apply_total_state_limit(n, year, state, value): - sns = n.snapshots snapshot = sns[sns.get_level_values("period") == year][-1] @@ -927,11 +1029,10 @@ def apply_total_state_limit(n, year, state, value): n.model.add_constraints(lhs <= rhs, name=f"co2_limit-{year}-{state}") logger.info( - f"Adding {state} co2 Limit in {year} of {rhs* 1e-6} MMT CO2", + f"Adding {state} co2 Limit in {year} of {rhs * 1e-6} MMT CO2", ) def apply_sector_state_limit(n, year, state, sector, value): - sns = n.snapshots snapshot = sns[sns.get_level_values("period") == year][-1] @@ -947,11 +1048,10 @@ def apply_sector_state_limit(n, year, state, sector, value): n.model.add_constraints(lhs <= rhs, name=f"co2_limit-{year}-{state}-{sector}") logger.info( - f"Adding {state} co2 Limit for {sector} in {year} of {rhs* 1e-6} MMT CO2", + f"Adding {state} co2 Limit for {sector} in {year} of {rhs * 1e-6} MMT CO2", ) def apply_total_national_limit(n, year, value): - sns = n.snapshots snapshot = sns[sns.get_level_values("period") == year][-1] @@ -964,11 +1064,10 @@ def apply_total_national_limit(n, year, value): n.model.add_constraints(lhs <= rhs, name=f"co2_limit-{year}") logger.info( - f"Adding national co2 Limit in {year} of {rhs* 1e-6} MMT CO2", + f"Adding national co2 Limit in {year} of {rhs * 1e-6} MMT CO2", ) def apply_sector_national_limit(n, year, sector, value): - sns = n.snapshots snapshot = sns[sns.get_level_values("period") == year][-1] @@ -983,7 +1082,7 @@ def apply_sector_national_limit(n, year, sector, value): n.model.add_constraints(lhs <= rhs, name=f"co2_limit-{year}-{sector}") logger.info( - f"Adding national co2 Limit for {sector} sector in {year} of {rhs* 1e-6} MMT CO2", + f"Adding national co2 Limit for {sector} sector in {year} of {rhs * 1e-6} MMT CO2", ) try: @@ -1001,12 +1100,10 @@ def apply_sector_national_limit(n, year, sector, value): sectors = df.sector.unique() for sector in sectors: - df_sector = df[df.sector == sector] states = df_sector.state.unique() for state in states: - df_state = df_sector[df_sector.state == state] years = [x for x in df_state.year.unique() if x in n.investment_periods] @@ -1017,7 +1114,6 @@ def apply_sector_national_limit(n, year, sector, value): continue for year in years: - df_limit = df_state[df_state.year == year].reset_index(drop=True) assert df_limit.shape[0] == 1 @@ -1025,14 +1121,12 @@ def apply_sector_national_limit(n, year, sector, value): value = df_limit.loc[0, "co2_limit_mmt"] * 1e6 if state.upper() == "USA": - if sector == "all": apply_total_national_limit(n, year, value) else: apply_sector_national_limit(n, year, sector, value) else: - if sector == "all": apply_total_state_limit(n, year, state, value) else: @@ -1057,7 +1151,6 @@ def add_cooling_heat_pump_constraints(n, config): """ def add_hp_capacity_constraint(n, hp_type): - assert hp_type in ("ashp", "gshp") heating_hps = n.links[n.links.index.str.endswith(hp_type)].index @@ -1073,7 +1166,6 @@ def add_hp_capacity_constraint(n, hp_type): n.model.add_constraints(lhs == rhs, name=f"Link-{hp_type}_cooling_capacity") def add_hp_generation_constraint(n, hp_type): - heating_hps = n.links[n.links.index.str.endswith(hp_type)].index if heating_hps.empty: return @@ -1116,7 +1208,6 @@ def add_gshp_capacity_constraint(n, config): - The constraint is: [ASHP - (urban / rural) * GSHP >= 0] - ie. for every unit of GSHP, we need to install 3 units of ASHP """ - pop = pd.read_csv(snakemake.input.pop_layout) pop["urban_rural_fraction"] = (pop.urban_fraction / pop.rural_fraction).round(2) fraction = pop.set_index("name")["urban_rural_fraction"].to_dict() @@ -1137,20 +1228,18 @@ def add_gshp_capacity_constraint(n, config): lhs = ashp_capacity - gshp_capacity.mul(gshp_multiplier.values) rhs = 0 - n.model.add_constraints(lhs >= rhs, name=f"Link-gshp_capacity_ratio") + n.model.add_constraints(lhs >= rhs, name="Link-gshp_capacity_ratio") def add_ng_import_export_limits(n, config): - def _format_link_name(s: str) -> str: states = s.split("-") return f"{states[0]} {states[1]} gas" def _format_data( prod: pd.DataFrame, - link_suffix: Optional[str] = None, + link_suffix: str | None = None, ) -> pd.DataFrame: - df = prod.copy() df["link"] = df.state.map(_format_link_name) if link_suffix: @@ -1162,10 +1251,7 @@ def _format_data( return df[["link", "value"]].rename(columns={"value": "rhs"}).set_index("link") def add_import_limits(n, data, constraint, multiplier=None): - """ - Sets gas import limit over each year. - """ - + """Sets gas import limit over each year.""" assert constraint in ("max", "min") if not multiplier: @@ -1196,10 +1282,7 @@ def add_import_limits(n, data, constraint, multiplier=None): ) def add_export_limits(n, data, constraint, multiplier=None): - """ - Sets maximum export limit over the year. - """ - + """Sets maximum export limit over the year.""" assert constraint in ("max", "min") if not multiplier: @@ -1288,17 +1371,13 @@ def add_export_limits(n, data, constraint, multiplier=None): def add_water_heater_constraints(n, config): - """ - Adds constraint so energy to meet water demand must flow through store. - """ - + """Adds constraint so energy to meet water demand must flow through store.""" links = n.links[(n.links.index.str.contains("-water-")) & (n.links.index.str.contains("-discharger"))] link_names = links.index store_names = [x.replace("-discharger", "") for x in links.index] for period in n.investment_periods: - # first snapshot does not respect constraint e_previous = n.model["Store-e"].loc[period, store_names] e_previous = e_previous.roll(timestep=1) @@ -1313,30 +1392,35 @@ def add_water_heater_constraints(n, config): n.model.add_constraints(lhs >= rhs, name=f"water_heater-{period}") -def add_demand_response_constraints(n, config): +def add_sector_demand_response_constraints(n, config): """ - Adds demand response equations + Add demand response equations for individual sectors. - Applies the p_nom_max here, as easier to iterate over different configs + These constraints are applied at the sector/carrier level. They are + fundamentally the same as the power sector constraints, tho. """ def add_capacity_constraint( n: pypsa.Network, sector: str, shift: float, # as a percentage + carrier: str | None = None, ): - """Adds limit on deferable load + """Adds limit on deferable load. No need to multiply out snapshot weights here """ + dr_links = n.links[n.links.carrier.str.endswith("-dr") & n.links.carrier.str.startswith(f"{sector}-")].copy() + constraint_name = f"demand_response_capacity-{sector}" - dr_links = n.links[n.links.carrier.str.endswith("-dr") & n.links.carrier.str.startswith(f"{sector}-")] + if carrier: + dr_links = dr_links[dr_links.carrier.str.contains(f"-{carrier}-")].copy() + constraint_name = f"demand_response_capacity-{sector}-{carrier}" if dr_links.empty: return if sector != "trn": - deferrable_links = dr_links[dr_links.index.str.endswith("-dr-discharger")] deferrable_loads = deferrable_links.bus1.unique().tolist() @@ -1350,12 +1434,11 @@ def add_capacity_constraint( bus_order = lhs.vars.bus1.data rhs = rhs[bus_order] - n.model.add_constraints(lhs <= rhs, name=f"demand_response_capacity-{sector}") + n.model.add_constraints(lhs <= rhs, name=constraint_name) # transport dr is at the aggregation bus # sum all outgoing capacity and apply the capacity limit to that else: - inflow_links = dr_links[dr_links.index.str.endswith("-dr-discharger")] inflow = n.model["Link-p"].loc[:, inflow_links.index].groupby(inflow_links.bus1).sum() inflow = inflow.rename({"bus1": "Bus"}) # align coordinate names @@ -1369,15 +1452,39 @@ def add_capacity_constraint( n.model.add_constraints( lhs >= rhs, - name=f"demand_response_capacity-trn", + name=constraint_name, ) + # helper to manage capacity constraint between non-carrier and carrier + + def _apply_constraint( + n: pypsa.Network, + sector: str, + cfg: dict[str, Any], + carrier: str | None = None, + ): + shift = cfg.get("shift", 0) + + if isinstance(shift, str): + if shift == "inf": + pass + else: + logger.info(f"Unknown arguement of {shift} for {sector} DR") + raise ValueError(shift) + elif isinstance(shift, int | float): + if shift < 0.001: + logger.info(f"Demand response not enabled for {sector}") + else: + add_capacity_constraint(n, sector, shift, carrier) + else: + logger.info(f"Unknown arguement of {shift} for {sector} DR") + raise ValueError(shift) + # demand response addition starts here sectors = ["res", "com", "ind", "trn"] for sector in sectors: - if sector in ["res", "com"]: dr_config = config["sector"]["service_sector"].get("demand_response", {}) elif sector == "trn": @@ -1387,21 +1494,19 @@ def add_capacity_constraint( else: raise ValueError - shift = dr_config.get("shift", 0) - - if not dr_config or shift < 0.001: - logger.info(f"Demand response not enabled for {sector}") + if not dr_config: continue - # capacity constraint + by_carrier = dr_config.get("by_carrier", False) - if shift == "inf": - pass - elif shift >= 0.001: # for tolerance - add_capacity_constraint(n, sector, shift) + if by_carrier: + for carrier, carrier_config in dr_config.items(): + # hacky check to make sure only carriers get passed in + # the actual constraint should check this as well + if carrier in ("elec", "heat", "space-heat", "water-heat", "cool"): + _apply_constraint(n, sector, carrier_config, carrier) else: - logger.info(f"Unknown arguement of {shift} for {sector} DR") - raise ValueError(shift) + _apply_constraint(n, sector, dr_config) def extra_functionality(n, snapshots): @@ -1433,6 +1538,10 @@ def extra_functionality(n, snapshots): interface_limits = config["lines"].get("interface_transmission_limits", {}) if interface_limits: add_interface_limits(n, snapshots, config) + dr_config = config["electricity"].get("demand_response", {}) + if dr_config: + sector = True if "sector" in opts else False + add_demand_response_constraint(n, config, sector) if "sector" in opts: add_cooling_heat_pump_constraints(n, config) if not config["sector"]["service_sector"].get("split_urban_rural", False): @@ -1444,12 +1553,11 @@ def extra_functionality(n, snapshots): water_config = config["sector"]["service_sector"].get("water_heating", {}) if not water_config.get("simple_storage", True): add_water_heater_constraints(n, config) - add_demand_response_constraints(n, config) + add_sector_demand_response_constraints(n, config) for o in opts: if "EQ" in o: add_EQ_constraints(n, o) - add_battery_constraints(n) add_land_use_constraints(n) @@ -1510,17 +1618,15 @@ def solve_network(n, config, solving, opts="", **kwargs): if "snakemake" not in globals(): from _helpers import mock_snakemake - print("") - snakemake = mock_snakemake( "solve_network", interconnect="western", simpl="70", clusters="4m", ll="v1.0", - opts="3h", + opts="1h-TCT", sector="E-G", - planning_horizons="2019", + planning_horizons="2030", ) configure_logging(snakemake) update_config_from_wildcards(snakemake.config, snakemake.wildcards) @@ -1549,9 +1655,6 @@ def solve_network(n, config, solving, opts="", **kwargs): n = prepare_network( n, solve_opts, - config=snakemake.config, - foresight=snakemake.params.foresight, - planning_horizons=snakemake.params.planning_horizons, ) n = solve_network( diff --git a/workflow/scripts/summary.py b/workflow/scripts/summary.py index b9adfbf0..46d75d4a 100644 --- a/workflow/scripts/summary.py +++ b/workflow/scripts/summary.py @@ -21,10 +21,7 @@ def get_primary_energy_use(n: pypsa.Network) -> pd.DataFrame: - """ - Gets timeseries primary energy use by bus and carrier. - """ - + """Gets timeseries primary energy use by bus and carrier.""" link_energy_use = ( StatisticsAccessor(n) .withdrawal( @@ -53,14 +50,13 @@ def get_primary_energy_use(n: pypsa.Network) -> pd.DataFrame: return ( pd.concat([gen_energy_use, link_energy_use]) # .reset_index() commenting this out seems to fix issue in multi-horizon indexing - .groupby(["bus", "carrier"]).sum() + .groupby(["bus", "carrier"]) + .sum() ) def get_energy_total(n: pypsa.Network): - """ - Gets energy production totals. - """ + """Gets energy production totals.""" def _get_energy_one_port(n: pypsa.Network, c: str) -> pd.DataFrame: return ( @@ -97,9 +93,7 @@ def _get_energy_multi_port(n: pypsa.Network, c: str) -> pd.DataFrame: def get_energy_timeseries(n: pypsa.Network) -> pd.DataFrame: - """ - Gets timeseries energy production. - """ + """Gets timeseries energy production.""" def _get_energy_one_port(n: pypsa.Network, c: str) -> pd.DataFrame: return ( @@ -151,9 +145,7 @@ def _get_energy_multi_port(n: pypsa.Network, c: str) -> pd.DataFrame: def get_demand_timeseries(n: pypsa.Network) -> pd.DataFrame: - """ - Gets timeseries energy demand. - """ + """Gets timeseries energy demand.""" return pd.DataFrame(n.loads_t.p.sum(1)).rename(columns={0: "Demand"}) @@ -185,9 +177,11 @@ def get_capacity_base(n: pypsa.Network) -> pd.DataFrame: if c.name in ("Generator", "StorageUnit"): totals.append((c.df.p_nom).groupby(by=[c.df.bus, c.df.carrier]).sum()) elif c.name == "Link": - totals.append( - (c.df.p_nom).groupby(by=[c.df.bus0, c.df.carrier]).sum().rename_axis(index={"bus0": "bus"}), - ), + ( + totals.append( + (c.df.p_nom).groupby(by=[c.df.bus0, c.df.carrier]).sum().rename_axis(index={"bus0": "bus"}), + ), + ) totals.append( (c.df.p_nom).groupby(by=[c.df.bus1, c.df.carrier]).sum().rename_axis(index={"bus1": "bus"}), ) @@ -229,8 +223,9 @@ def _economic_retirement(c: str) -> pd.DataFrame: totals = [] if retirement_method == "technical": - if c.name in ("Generator", "StorageUnit", "Link"): - totals.append(_technical_retirement(c)) + for c in n.iterate_components(n.one_port_components | n.branch_components): + if c.name in ("Generator", "StorageUnit", "Link"): + totals.append(_technical_retirement(c)) return pd.concat(totals) elif retirement_method == "economic": for c in n.iterate_components(n.one_port_components | n.branch_components): @@ -250,6 +245,7 @@ def _economic_retirement(c: str) -> pd.DataFrame: def get_capital_costs(n: pypsa.Network) -> pd.DataFrame: + """Returns statistics capex - installed_capex.""" return n.statistics.capex() - n.statistics.installed_capex() @@ -283,7 +279,6 @@ def get_fuel_costs(n: pypsa.Network) -> pd.DataFrame: Units are $/MWh """ - # approximates for 2030 fixed_voms = { "coal": 8.18, @@ -323,19 +318,14 @@ def get_fuel_costs(n: pypsa.Network) -> pd.DataFrame: def get_node_carrier_emissions_timeseries(n: pypsa.Network) -> pd.DataFrame: - """ - Gets timeseries emissions by bus and carrier. - """ + """Gets timeseries emissions by bus and carrier.""" energy = get_primary_energy_use(n) co2 = n.carriers[["nice_name", "co2_emissions"]].reset_index().set_index("nice_name")[["co2_emissions"]].squeeze() return energy.mul(co2, level="carrier", axis=0) def get_node_emissions_timeseries(n: pypsa.Network) -> pd.DataFrame: - """ - Gets timeseries emissions per node. - """ - + """Gets timeseries emissions per node.""" return ( get_node_carrier_emissions_timeseries(n) .droplevel("carrier") @@ -347,10 +337,7 @@ def get_node_emissions_timeseries(n: pypsa.Network) -> pd.DataFrame: def get_tech_emissions_timeseries(n: pypsa.Network) -> pd.DataFrame: - """ - Gets timeseries emissions per technology. - """ - + """Gets timeseries emissions per technology.""" return ( get_node_carrier_emissions_timeseries(n) .droplevel("bus") diff --git a/workflow/scripts/summary_natural_gas.py b/workflow/scripts/summary_natural_gas.py index 1394d5cc..a001dd16 100644 --- a/workflow/scripts/summary_natural_gas.py +++ b/workflow/scripts/summary_natural_gas.py @@ -1,24 +1,18 @@ -""" -Module for summarizing natural gas results. -""" - -from typing import List +"""Module for summarizing natural gas results.""" import constants import pandas as pd import pypsa from eia import FuelCosts -CODE_2_STATE = {v: k for k, v in constants.STATE_2_CODE.items()} +CODE_2_STATE = constants.CODE_2_STATE MMBTU_2_MWH = constants.MMBTU_MWHthemal MWH_2_MMCF = constants.NG_MWH_2_MMCF STATE_2_CODE = constants.STATE_2_CODE def _rename_columns(n: pypsa.Network, df: pd.DataFrame) -> pd.DataFrame: - """ - Renames columns to carrier nicenames. - """ + """Renames columns to carrier nicenames.""" return df.rename(columns=n.carriers.nice_name) @@ -30,7 +24,6 @@ def get_gas_demand( This in input energy required (ie. not applying efficiency losses) """ - data = {} buses = n.buses[n.buses.index.str.endswith(" gas")].index @@ -53,17 +46,12 @@ def get_imports_exports( n: pypsa.Network, international: bool = True, ) -> dict[str, dict[str, pd.DataFrame]]: - """ - Gets gas flow into and out of the state. - """ - + """Gets gas flow into and out of the state.""" # catches any of the following codes at the start of the string regex = "(?:^|.{2})(?:MX|AB|BC|MB|NB|NL|NT|NS|NU|ON|PE|QC|SK|YT)" def get_import_export(df: pd.DataFrame, direction: str) -> pd.DataFrame: - """ - Input data must be stores dataframe. - """ + """Input data must be stores dataframe.""" if direction == "import": return df[(df.carrier == "gas trade") & (df.bus0.str.endswith(" gas trade"))] elif direction == "export": @@ -72,15 +60,11 @@ def get_import_export(df: pd.DataFrame, direction: str) -> pd.DataFrame: raise NotImplementedError def get_international(df: pd.DataFrame) -> pd.DataFrame: - """ - Input data must be stores dataframe. - """ + """Input data must be stores dataframe.""" return df[(df.bus0.str.contains(regex)) | (df.bus1.str.contains(regex))] def get_domestic(df: pd.DataFrame) -> pd.DataFrame: - """ - Input data must be stores dataframe. - """ + """Input data must be stores dataframe.""" return df[~((df.bus0.str.contains(regex)) | (df.bus1.str.contains(regex)))] df = n.links.copy() @@ -104,7 +88,6 @@ def get_domestic(df: pd.DataFrame) -> pd.DataFrame: data = {} for state in states: - data[state] = {} import_cols = [x for x in imports_t.columns if f"{state} " in x] @@ -117,9 +100,7 @@ def get_domestic(df: pd.DataFrame) -> pd.DataFrame: def get_gas_processing(n: pypsa.Network) -> dict[str, pd.DataFrame]: - """ - Gets timeseries gas processing. - """ + """Gets timeseries gas processing.""" processing = n.links[n.links.carrier == "gas production"] processing = n.links_t.p1[processing.index].mul(-1) @@ -133,9 +114,7 @@ def get_gas_processing(n: pypsa.Network) -> dict[str, pd.DataFrame]: def get_linepack(n: pypsa.Network) -> dict[str, pd.DataFrame]: - """ - Gets linepack data. - """ + """Gets linepack data.""" stores = n.stores[n.stores.carrier == "gas pipeline"] stores = n.stores_t.e[stores.index] @@ -149,9 +128,7 @@ def get_linepack(n: pypsa.Network) -> dict[str, pd.DataFrame]: def get_underground_storage(n: pypsa.Network) -> dict[str, pd.DataFrame]: - """ - Gets underground storage data. - """ + """Gets underground storage data.""" stores = n.stores[n.stores.carrier == "gas storage"] stores = n.stores_t.e[stores.index] @@ -165,10 +142,7 @@ def get_underground_storage(n: pypsa.Network) -> dict[str, pd.DataFrame]: def get_ng_price(n: pypsa.Network) -> dict[str, pd.DataFrame]: - """ - Gets state level natural gas price. - """ - + """Gets state level natural gas price.""" buses = n.buses[n.buses.carrier == "gas"] buses = n.buses_t.marginal_price[buses.index] @@ -182,11 +156,13 @@ def get_ng_price(n: pypsa.Network) -> dict[str, pd.DataFrame]: def get_historical_ng_prices(year: int, industry: str, api: str) -> pd.DataFrame: - """ - Gets hourly fuel price per state. - """ + """Gets hourly fuel price per state.""" df = FuelCosts("gas", year, api, industry).get_data(pivot=True) - idx = pd.date_range(start=df.index.min(), end=(df.index.max() + pd.offsets.MonthEnd(1)).replace(hour=23), freq="h") + idx = pd.date_range( + start=df.index.min(), + end=(df.index.max() + pd.offsets.MonthEnd(1)).replace(hour=23), + freq="h", + ) df = df.reindex(idx).ffill().bfill() # convert $/MCF to $/MWh df = df.mul(1000).div(MWH_2_MMCF).div(MMBTU_2_MWH).round(3) diff --git a/workflow/scripts/summary_sector.py b/workflow/scripts/summary_sector.py index 9bc07c15..00cb775e 100644 --- a/workflow/scripts/summary_sector.py +++ b/workflow/scripts/summary_sector.py @@ -1,8 +1,8 @@ -""" -Calcualtes summary statistics for sector coupling studies. -""" +"""Calcualtes summary statistics for sector coupling studies.""" import logging + +# Optional used as 'arg: callable | None = None' gives TypeError with py3.11 from typing import Optional import pandas as pd @@ -30,7 +30,7 @@ # case _: # raise NotImplementedError -# todo - pull this from config +# TODO: Pull PWR_CARRIES from the configuration file PWR_CARRIERS = [ "nuclear", "oil", @@ -52,48 +52,36 @@ def _get_buses_in_state(n: pypsa.Network, state: str) -> list[str]: - """ - Returns buses in a specified state. - """ + """Returns buses in a specified state.""" return n.buses[n.buses.STATE == state].index.to_list() def _get_loads_in_state(n: pypsa.Network, state: str) -> list[str]: - """ - Returns buses in a specified state. - """ + """Returns buses in a specified state.""" buses = _get_buses_in_state(n, state) return n.loads[n.loads.bus.isin(buses)].index.to_list() def _get_links_in_state(n: pypsa.Network, state: str) -> list[str]: - """ - Returns links in a specified state. - """ + """Returns links in a specified state.""" buses = _get_buses_in_state(n, state) return n.links[n.links.bus0.isin(buses) | n.links.bus1.isin(buses)].index.to_list() def _get_gens_in_state(n: pypsa.Network, state: str) -> list[str]: - """ - Returns buses in a specified state. - """ + """Returns buses in a specified state.""" buses = _get_buses_in_state(n, state) return n.generators[n.generators.bus.isin(buses)].index.to_list() def _get_stores_in_state(n: pypsa.Network, state: str) -> list[str]: - """ - Returns buses in a specified state. - """ + """Returns buses in a specified state.""" buses = _get_buses_in_state(n, state) return n.stores[n.stores.bus.isin(buses)].index.to_list() def _filter_link_on_sector(n: pypsa.Network, sector: str) -> pd.DataFrame: - """ - Filters network links to exclude dummy links. - """ + """Filters network links to exclude dummy links.""" match sector: case "res" | "res-urban" | "res-rural" | "res-total" | "com" | "com-urban" | "com-rural" | "com-total": return n.links[ @@ -129,7 +117,7 @@ def _filter_gens_on_sector(n: pypsa.Network, sector: str) -> pd.DataFrame: def _resample_data(df: pd.DataFrame, freq: str, agg_fn: callable) -> pd.DataFrame: if not callable(agg_fn): - f"Must provide resampling function in the form of 'pd.Series.sum'" + "Must provide resampling function in the form of 'pd.Series.sum'" return df else: return df.groupby("period").resample(freq, level="timestep").apply(agg_fn) @@ -141,17 +129,13 @@ def _resample_data(df: pd.DataFrame, freq: str, agg_fn: callable) -> pd.DataFram def get_load_per_sector_per_fuel(n: pypsa.Network, sector: str, fuel: str, period: int): - """ - Time series load per bus per fuel per sector. - """ + """Time series load per bus per fuel per sector.""" loads = n.loads[(n.loads.carrier.str.startswith(sector)) & (n.loads.carrier.str.endswith(fuel))] return n.loads_t.p[loads.index].loc[period] -def get_hp_cop(n: pypsa.Network, state: Optional[str] = None) -> pd.DataFrame: - """ - Com and res hps have the same cop. - """ +def get_hp_cop(n: pypsa.Network, state: str | None = None) -> pd.DataFrame: + """Com and res hps have the same cop.""" cops = n.links_t.efficiency if state: @@ -168,10 +152,9 @@ def _get_opt_capacity_per_node( n: pypsa.Network, sector: str, include_elec: bool = False, - state: Optional[str] = None, + state: str | None = None, ) -> pd.Series: - - assert not sector in ["pwr"] + assert sector not in ["pwr"] df = _filter_link_on_sector(n, sector) @@ -200,10 +183,9 @@ def _get_opt_capacity_per_node( def _get_opt_pwr_capacity_per_node( n: pypsa.Network, group_existing: bool = True, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> pd.Series: - links = _filter_link_on_sector(n, "pwr") gens = _filter_gens_on_sector(n, "pwr") @@ -229,10 +211,9 @@ def _get_total_capacity_per_node( n: pypsa.Network, sector: str, include_elec: bool = False, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - - assert not sector in ["pwr"] + assert sector not in ["pwr"] df = _filter_link_on_sector(n, sector) @@ -259,10 +240,9 @@ def _get_total_capacity_per_node( def _get_total_pwr_capacity_per_node( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> pd.DataFrame: - links = _filter_link_on_sector(n, "pwr") gens = _filter_gens_on_sector(n, "pwr") @@ -283,10 +263,9 @@ def _get_total_pwr_capacity_per_node( def _get_brownfield_pwr_capacity_per_node( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> pd.DataFrame: - links = _filter_link_on_sector(n, "pwr") gens = _filter_gens_on_sector(n, "pwr") @@ -315,11 +294,10 @@ def _get_brownfield_capacity_per_node( n: pypsa.Network, sector: str, include_elec: bool = False, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> pd.DataFrame: - - assert not sector in ["pwr"] + assert sector not in ["pwr"] df = _filter_link_on_sector(n, sector) @@ -354,10 +332,9 @@ def _get_brownfield_capacity_per_node( def get_capacity_per_node( n: pypsa.Network, sector: str, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> pd.DataFrame: - if sector == "pwr": total = _get_total_pwr_capacity_per_node( n, @@ -386,9 +363,9 @@ def get_sector_production_timeseries( n: pypsa.Network, sector: str, remove_sns_weights: bool = False, - state: Optional[str] = None, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, + state: str | None = None, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 ) -> pd.DataFrame: """ Gets timeseries production to meet sectoral demand. @@ -398,7 +375,6 @@ def get_sector_production_timeseries( Note: can not use statistics module as multi-output links for co2 tracking > n.statistics.supply("Link", nice_names=False, aggregate_time=False).T """ - links = _filter_link_on_sector(n, sector).index.to_list() if remove_sns_weights: @@ -419,9 +395,9 @@ def get_sector_production_timeseries( def get_power_production_timeseries( n: pypsa.Network, remove_sns_weights: bool = False, - state: Optional[str] = None, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, + state: str | None = None, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 ) -> pd.DataFrame: """ Gets power timeseries production to meet sectoral demand. @@ -431,7 +407,6 @@ def get_power_production_timeseries( Note: can not use statistics module as multi-output links for co2 tracking > n.statistics.supply("Link", nice_names=False, aggregate_time=False).T """ - links = _filter_link_on_sector(n, "pwr").index.to_list() gens = _filter_gens_on_sector(n, "pwr").index.to_list() @@ -460,14 +435,11 @@ def get_sector_production_timeseries_by_carrier( n: pypsa.Network, sector: str, remove_sns_weights: bool = False, - state: Optional[str] = None, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, + state: str | None = None, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 ) -> pd.DataFrame: - """ - Gets timeseries production by carrier. - """ - + """Gets timeseries production by carrier.""" if sector == "pwr": df = get_power_production_timeseries( n, @@ -495,11 +467,9 @@ def get_sector_production_timeseries_by_carrier( def get_sector_max_production_timeseries( n: pypsa.Network, sector: str, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - """ - Max production timeseries at a carrier level. - """ + """Max production timeseries at a carrier level.""" eff = n.get_switchable_as_dense("Link", "efficiency") if state: @@ -518,9 +488,8 @@ def get_load_factor_timeseries( n: pypsa.Network, sector: str, include_elec: bool = False, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - max_prod = get_sector_max_production_timeseries(n, sector, state=state) act_prod = get_sector_production_timeseries(n, sector, state=state) @@ -541,16 +510,14 @@ def get_load_factor_timeseries( def get_emission_timeseries_by_sector( n: pypsa.Network, - sector: Optional[str] = None, - state: Optional[str] = None, + sector: str | None = None, + state: str | None = None, **kwargs, ) -> pd.DataFrame: - """ - Cummulative emissions by sector in MT. - """ + """Cummulative emissions by sector in MT.""" if sector: if sector == "ch4": - stores_in_sector = [x for x in n.stores.index if f"gas-ch4" in x] + stores_in_sector = [x for x in n.stores.index if "gas-ch4" in x] else: stores_in_sector = [x for x in n.stores.index if f"{sector}-co2" in x] else: @@ -569,10 +536,7 @@ def get_historical_emissions( year: int, api: str, ) -> pd.DataFrame: - """ - Emissions by state/sector in units of million metric tons. - """ - + """Emissions by state/sector in units of million metric tons.""" dfs = [] if isinstance(sectors, str): @@ -593,10 +557,7 @@ def get_historical_end_use_consumption( year: int, api: str, ) -> pd.DataFrame: - """ - End-Use consumption by state/sector in units of MWh. - """ - + """End-Use consumption by state/sector in units of MWh.""" dfs = [] if isinstance(sectors, str): @@ -616,7 +577,6 @@ def get_historical_end_use_consumption( def get_historical_power_production(year: int, api: str) -> pd.DataFrame: - fuel_mapper = { "BIO": "biomass", "COW": "coal", @@ -645,7 +605,7 @@ def get_historical_power_production(year: int, api: str) -> pd.DataFrame: def get_end_use_consumption( n: pypsa.Network, sector: str, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: """ Gets timeseries energy consumption in MWh. @@ -657,13 +617,13 @@ def get_end_use_consumption( def get_service_consumption( n: pypsa.Network, sector: str, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: assert sector in ("res", "com", "ind") loads = n.loads[n.loads.carrier.str.startswith(sector)] if state: - l = _get_loads_in_state(n, state) - loads = loads[loads.index.isin(l)] + load_ = _get_loads_in_state(n, state) + loads = loads[loads.index.isin(load_)] df = n.loads_t.p[loads.index].mul(n.snapshot_weightings["objective"], axis=0).T df.index = df.index.map(n.loads.carrier).map(lambda x: x.split("-")[1:]) df.index = df.index.map(lambda x: "-".join(x)) @@ -671,11 +631,9 @@ def get_service_consumption( def get_transport_consumption( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: - """ - Takes load from p0 link as loads are in kVMT or similar. - """ + """Takes load from p0 link as loads are in kVMT or similar.""" loads = n.links[ (n.links.carrier.str.startswith("trn-")) & ~(n.links.carrier.str.endswith("-veh")) @@ -684,8 +642,8 @@ def get_transport_consumption( & ~(n.links.carrier == ("trn-boat")) ] if state: - l = _get_links_in_state(n, state) - loads = loads[loads.index.isin(l)] + load_ = _get_links_in_state(n, state) + loads = loads[loads.index.isin(load_)] df = n.links_t.p0[loads.index].mul(n.snapshot_weightings["objective"], axis=0).T df.index = df.index.map(lambda x: x.split("trn-")[1]) return df.groupby(level=0).sum().T @@ -703,14 +661,13 @@ def get_end_use_load_timeseries( n: pypsa.Network, sector: str, sns_weight: bool = True, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: """ Gets timeseries load per node. - Residential, Commercial, Industrial are in untis of MWh """ - assert sector in ("res", "com", "ind") loads = n.loads[n.loads.carrier.str.startswith(sector)] @@ -729,10 +686,9 @@ def get_storage_level_timeseries( n: pypsa.Network, sector: str, remove_sns_weights: bool = True, - state: Optional[str] = None, + state: str | None = None, **kwargs, ) -> pd.DataFrame: - stores = n.stores[n.stores.carrier.str.startswith(sector)] if state: @@ -749,14 +705,18 @@ def get_storage_level_timeseries_carrier( n: pypsa.Network, sector: str, remove_sns_weights: bool = True, - state: Optional[str] = None, - resample: Optional[str] = None, - resample_fn: Optional[callable] = None, + state: str | None = None, + resample: str | None = None, + resample_fn: Optional[callable] = None, # noqa: UP007 + make_positive: bool | None = False, **kwargs, ) -> pd.DataFrame: - df = get_storage_level_timeseries(n, sector, remove_sns_weights, state) df = df.rename(columns=n.stores.carrier) + + if make_positive: + df = df.abs() + df = df.T.groupby(level=0).sum().T if not (resample or resample_fn): @@ -769,14 +729,13 @@ def get_end_use_load_timeseries_carrier( n: pypsa.Network, sector: str, sns_weight: bool = True, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: """ Gets timeseries load per node per carrier. - Residential, Commercial, Industrial are in untis of MWh """ - df = get_end_use_load_timeseries(n, sector, sns_weight).T if state: buses = _get_loads_in_state(n, state) @@ -789,7 +748,7 @@ def get_end_use_load_timeseries_carrier( def get_transport_consumption_by_mode( n: pypsa.Network, - state: Optional[str] = None, + state: str | None = None, ) -> pd.DataFrame: df = get_end_use_consumption(n, "trn", state) df = df.rename(columns={x: "-".join(x.split("-")[1:]) for x in df.columns}) @@ -798,10 +757,7 @@ def get_transport_consumption_by_mode( def get_historical_transport_consumption_by_mode(api: str) -> pd.DataFrame: - """ - Will return data in units of MWh. - """ - + """Will return data in units of MWh.""" vehicles = [ "light_duty", "med_duty", diff --git a/workflow/snakemake_profiles/slurm/config.yaml b/workflow/snakemake_profiles/slurm/config.yaml index d3146598..0a0a814b 100644 --- a/workflow/snakemake_profiles/slurm/config.yaml +++ b/workflow/snakemake_profiles/slurm/config.yaml @@ -1,4 +1,4 @@ -cluster: sbatch --partition=serc --cpus-per-task={threads} --mem={resources.mem_mb} --job-name=smk-{rule}-{wildcards} --output=logs/{rule}/{rule}-{wildcards}-%j.out --error=logs/{rule}/{rule}-{wildcards}-.%j.err --mail-type ALL --mail-user ktehranchi@stanford.edu --account=iazevedo --ntasks=1 --nodes=1 --time={resources.walltime} +cluster: sbatch --partition= --cpus-per-task={threads} --mem={resources.mem_mb} --job-name=smk-{rule}-{wildcards} --output=logs/{rule}/{rule}-{wildcards}-%j.out --error=logs/{rule}/{rule}-{wildcards}-.%j.err --account= --ntasks=1 --nodes=1 --time={resources.walltime} default-resources: - mem_mb=5000 - walltime=00:30:00