Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Hackathon dataset's metadata #514

Merged
merged 23 commits into from
Jan 22, 2025
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
37dccbb
add usgswtdb metadata draft
cmgosnell Jan 17, 2025
b3aebca
add usgs pv database metadata
cmgosnell Jan 17, 2025
60af162
add epa egrid metadata
cmgosnell Jan 17, 2025
ae81e6e
Add EIA CBECS metadata
cmgosnell Jan 17, 2025
1e8b61a
add EIA RECS metadata
cmgosnell Jan 17, 2025
c1dbee9
add metadata for DOE LEAD
cmgosnell Jan 17, 2025
218cc48
convert usgs wind partitions into mannually added (and actually corre…
cmgosnell Jan 22, 2025
a216bde
add NEMS metadata
cmgosnell Jan 22, 2025
09ce6da
Merge branch 'main' into hackathon-metadata
cmgosnell Jan 22, 2025
519e93d
Append spaces to end of multi-line concatenated strings.
zaneselvans Jan 22, 2025
67549fe
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
de69566
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
e948a7f
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
af70e55
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
4093423
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
01cb764
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
b1d624f
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
52045fe
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
fc449f0
Update src/pudl_archiver/metadata/sources.py
cmgosnell Jan 22, 2025
b356489
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 22, 2025
3ae3c39
fix recs keywords
cmgosnell Jan 22, 2025
0dbb81c
Merge branch 'hackathon-metadata' of github.com:catalyst-cooperative/…
cmgosnell Jan 22, 2025
a0aa688
Merge branch 'main' into hackathon-metadata
zaneselvans Jan 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions src/pudl_archiver/metadata/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from typing import Any

import pandas as pd
from pudl.metadata.constants import CONTRIBUTORS, LICENSES

# To add a new contributor, follow the following format to add an entry to the
Expand Down Expand Up @@ -44,4 +45,38 @@
"license_pudl": LICENSES["cc-by-4.0"],
"contributors": [CONTRIBUTORS["catalyst-cooperative"]],
},
"usgswtdb": {
"title": "USGS U.S. Wind Turbine Database",
"path": "https://energy.usgs.gov/uswtdb/data/",
"description": (
"The United States Wind Turbine Database (USWTDB) provides the locations"
"of land-based and offshore wind turbines in the United States,"
"corresponding wind project information, and turbine technical"
"specifications. Wind turbine records are collected and compiled from"
"various public and private sources, digitized and position-verified from"
"aerial imagery, and quality checked. The USWTDB is available for download"
"in a variety of tabular and geospatial file formats, to meet a range of"
"user/software needs. Dynamic web services are available for users that wish"
"to access the USWTDB as a Representational State Transfer Services (RESTful)"
"web service."
),
"working_partitions": {
"year_quarters": [
str(q).lower()
for q in pd.period_range(start="2018q2", end="2024q2", freq="Q")
] # Note: this looks mostly right but not always. maybe this should be year_month
# and we should just enumerate the months.
},
"keywords": sorted(
{
"usgs",
"wtdb",
"wind",
"wind turbines",
}
),
"license_raw": LICENSES["us-govt"],
"license_pudl": LICENSES["cc-by-4.0"],
"contributors": [CONTRIBUTORS["catalyst-cooperative"]],
},
}
Loading