Skip to content

Commit 865c4cc

Browse files
committed
update data update notebook
1 parent 83f3d1e commit 865c4cc

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

notebooks/data_updates/interconnection_fyi/interconnection-fyi-update.ipynb

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"metadata": {},
5858
"outputs": [],
5959
"source": [
60-
"old_fyi = dbcp.extract.fyi_queue.extract(\"gs://dgm-archive/interconnection.fyi/interconnection_fyi_dataset_2025-11-04.csv\")\n",
60+
"old_fyi = dbcp.extract.fyi_queue.extract(\"gs://dgm-archive/interconnection.fyi/interconnection_fyi_dataset_2026-01-01.csv\")\n",
6161
"old_fyi = old_fyi[\"fyi_queue\"]"
6262
]
6363
},
@@ -68,7 +68,7 @@
6868
"metadata": {},
6969
"outputs": [],
7070
"source": [
71-
"new_fyi = dbcp.extract.fyi_queue.extract(\"gs://dgm-archive/interconnection.fyi/interconnection_fyi_dataset_2025-12-01.csv\")\n",
71+
"new_fyi = dbcp.extract.fyi_queue.extract(\"gs://dgm-archive/interconnection.fyi/interconnection_fyi_dataset_2026-02-01.csv\")\n",
7272
"new_fyi = new_fyi[\"fyi_queue\"]"
7373
]
7474
},
@@ -82,6 +82,18 @@
8282
"* PJM: PJM [is working through a backlog of projects](https://www.utilitydive.com/news/pjm-fast-track-reliability-projects-interconnection-queue-invenergy/729311/) and isn't accepting new projects until mid 2026."
8383
]
8484
},
85+
{
86+
"cell_type": "code",
87+
"execution_count": null,
88+
"id": "eb728d95-ff03-464b-86ad-097bd2e80bc9",
89+
"metadata": {},
90+
"outputs": [],
91+
"source": [
92+
"# any new ISOs?\n",
93+
"print(set(new_fyi.power_market.unique()) - set(old_fyi.power_market.unique()))\n",
94+
"print(set(old_fyi.power_market.unique()) - set(new_fyi.power_market.unique()))"
95+
]
96+
},
8597
{
8698
"cell_type": "code",
8799
"execution_count": null,
@@ -94,8 +106,8 @@
94106
" old_df = old_fyi[old_fyi.power_market == power_market]\n",
95107
" new_df = new_fyi[new_fyi.power_market == power_market]\n",
96108
" \n",
97-
" old_df.loc[:, 'queue_date'] = pd.to_datetime(old_df.loc[:, 'queue_date'])\n",
98-
" new_df.loc[:, 'queue_date'] = pd.to_datetime(new_df.loc[:, 'queue_date'])\n",
109+
" old_df['queue_date'] = pd.to_datetime(old_df.loc[:, 'queue_date'])\n",
110+
" new_df['queue_date'] = pd.to_datetime(new_df.loc[:, 'queue_date'])\n",
99111
" \n",
100112
" print(f\" - Old max date {old_df['queue_date'].max()}\")\n",
101113
" print(f\" - New max date {new_df['queue_date'].max()}\")\n",

0 commit comments

Comments
 (0)