Skip to content

Commit

Permalink
Add source metadata for vceregen (#3887)
Browse files Browse the repository at this point in the history
* Add source metadata for vceregen

* Add profiles to vceregen dataset name

* Remove blank line in description

* Add vibrant clean energy as a contributor

* Add license to data source description

* Update data source path and archive dataset description PDF
  • Loading branch information
aesharpe authored Oct 3, 2024
1 parent c37dffb commit 2ce5d76
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
Binary file not shown.
11 changes: 10 additions & 1 deletion src/pudl/metadata/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,17 @@
"organization": "Catalyst Cooperative",
"orcid": "0000-0001-9784-8531",
},
"vibrant-clean-energy": {
"title": "Vibrant Clean Energy",
"email": "[email protected]",
"path": "https://vibrantcleanenergy.com/",
"role": "author",
"zenodo_role": "producer",
"organization": "Vibrant Clean Energy",
},
}
"""PUDL Contributors for attribution."""
"""PUDL Contributors for attribution. See the Data Package metadata https://specs.frictionlessdata.io/data-package/#metadata
for examples. For zenodo_role, see the contributor types in the Zenodo documentation https://developers.zenodo.org/#representation."""

KEYWORDS: dict[str, list[str]] = {
"electricity": [
Expand Down
39 changes: 39 additions & 0 deletions src/pudl/metadata/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -835,5 +835,44 @@
"license_raw": LICENSES["us-govt"],
"license_pudl": LICENSES["cc-by-4.0"],
},
"vceregen": {
"title": "Vibrant Clean Energy Renewable Generation Profiles",
"path": "https://vibrantcleanenergy.com/wp-content/uploads/2020/08/VCE-Weather-Dataset-Overview_August2020.pdf",
"description": (
"This dataset was produced by Vibrant Clean Energy, and is licensed to "
"the public under the Creative Commons Attribution 4.0 International "
"license (CC-BY-4.0). The data consists of hourly, county-level renewable "
"generation profiles in the continental United States and was compiled "
"based on outputs from the NOAA HRRR weather model. Profiles are stated "
"as a capacity factor (a fraction of nameplate capacity) and exist for "
"onshore wind, offshore wind, and fixed-tilt solar generation types."
),
"source_file_dict": {
"sorce_format": "Comma Separated Value (.csv)",
},
"keywords": sorted(
{
"solar",
"wind",
"time series",
"energy",
"electricity",
"generation",
"weather",
"capacity factor",
"hourly",
"united states",
"usa",
"resource adequacy",
"gridpath",
"vibrant clean energy",
"county",
}
),
"license_raw": LICENSES["cc-by-4.0"],
"license_pudl": LICENSES["cc-by-4.0"],
"working_partitions": {"years": sorted(set(range(2019, 2024)))},
"contributors": [CONTRIBUTORS["vibrant-clean-energy"]],
},
}
"""Data source attributes by PUDL identifier."""

0 comments on commit 2ce5d76

Please sign in to comment.