Replies: 1 comment 1 reply
-
For some reason the It's not exactly the same thing, but you might try using the SELECT
plant_id_eia,
plant_name_eia,
report_date,
balancing_authority_code_eia,
iso_rto_code,
nerc_region
FROM out_eia__yearly_plants
USING SAMPLE 20
ORDER BY report_date;
Looking just at the records where there is a value for
|
Beta Was this translation helpful? Give feedback.
-
Hello,
I'm trying to associate plant IDs in CEMS dataset from year 2017 with their respective ISO/RTO and NERC codes by merging it with the information from
![Screen Shot 2024-08-07 at 12 52 41 PM](https://private-user-images.githubusercontent.com/119073758/355969280-fd53fb74-2c80-4d63-bf67-1be96c570802.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxNTkzMjYsIm5iZiI6MTczOTE1OTAyNiwicGF0aCI6Ii8xMTkwNzM3NTgvMzU1OTY5MjgwLWZkNTNmYjc0LTJjODAtNGQ2My1iZjY3LTFiZTk2YzU3MDgwMi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMFQwMzQzNDZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lMWRlMTg1NjJlOTNmNzA2NTAzNTUyNzZiMjZmMDg3NThmNzNjODU1Y2ExNTIzMWY0MGY0Y2E3OTI2MTdjZTk3JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.xMf-k8jkvnVKb-PxAomf8ygW1KKbaimoFKN1QLJhLRQ)
![Screen Shot 2024-08-07 at 12 53 03 PM](https://private-user-images.githubusercontent.com/119073758/355969288-9e38a389-043e-4ca2-a954-d02ed9a480e2.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxNTkzMjYsIm5iZiI6MTczOTE1OTAyNiwicGF0aCI6Ii8xMTkwNzM3NTgvMzU1OTY5Mjg4LTllMzhhMzg5LTA0M2UtNGNhMi1hOTU0LWQwMmVkOWE0ODBlMi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMFQwMzQzNDZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1mZjQxYmJkNzY3ZTc3ZDQ5YTU3ZGM3OTRhYTE0YjYyMzAwODVkN2JjMGFiNTIxNzQ1MTA1NDkxY2E0YjFiNGY1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.Txgq3n_FoeN5Onuq5v7y66Iz2XpyjmwJjO2kBciwQFE)
out_eia__yearly_plants
table. However, when I set the report date to 2017-01-01, the resulting query contains no information of iso_rto_code but 10,127 rows have nerc_region information (see screenshot attached).Is there another table that contains more complete ISO/RTO, NERC region names for plant IDs in CEMS data?
Beta Was this translation helpful? Give feedback.
All reactions