-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 - [feat] Parse NYISO link from HTML (#43)
* [feat] use BeautifulSoup to parse for interconnection queue xlsx link from NYISO website * [chore] removed extra print statement * [fix] removed proposed_cod from nyserda large-scale database filters. added W to renewable energy map * [refactor] removed unused imports, added back date string formatting in database * [fix] changed Land Based Wind to Land-Based Wind
- Loading branch information
Showing
6 changed files
with
115 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,6 @@ yarn-error.log* | |
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
/ace-ny-venv | ||
__pycache__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,43 @@ | ||
renewable_energy_set = {'Hydroelectric', 'Land Based Wind', 'Offshore Wind', 'Solar', 'Geothermal', 'Energy Storage', 'Pumped Storage'} | ||
|
||
renewable_energy_map = { | ||
'H': 'Hydroelectric', | ||
'S': 'Solar', | ||
'ES': 'Energy Storage', | ||
'PS': 'Pumped Storage', | ||
'OSW': 'Offshore Wind', | ||
"Hydroelectric": "Hydroelectric", | ||
"Land Based Wind": "Land-Based Wind", | ||
"Offshore Wind": "Offshore Wind", | ||
"Solar": "Solar", | ||
"Geothermal": "Geothermal", | ||
"Energy Storage": "Energy Storage", | ||
"Pumped Storage": "Pumped Storage", | ||
} | ||
|
||
renewable_energy_abbreviations = { | ||
"H": "Hydroelectric", | ||
"S": "Solar", | ||
"ES": "Energy Storage", | ||
"PS": "Pumped Storage", | ||
"W": "Land-Based Wind", | ||
"OSW": "Offshore Wind", | ||
} | ||
|
||
initial_kdm_dict = [{ | ||
'milestoneTitle': 'Entry to NYISO Queue', | ||
'completed': False, | ||
'date': None | ||
}, | ||
{'milestoneTitle': 'Application for permit to ORES', | ||
'completed': False, | ||
'date': None | ||
}, | ||
{'milestoneTitle': 'Issuance of permit from ORES', | ||
'completed': False, | ||
'date': None | ||
}, | ||
{'milestoneTitle': 'Winning a contract award from NYSERDA', | ||
'completed': False, | ||
'date': None | ||
}, | ||
{'milestoneTitle': 'Execution of an Interconnection Agreement (IA)', | ||
'completed': False, | ||
'date': None | ||
}, | ||
{'milestoneTitle': 'Start of operations', | ||
'completed': False, | ||
'date': None | ||
}] | ||
initial_kdm_dict = [ | ||
{"milestoneTitle": "Entry to NYISO Queue", "completed": False, "date": None}, | ||
{ | ||
"milestoneTitle": "Application for permit to ORES", | ||
"completed": False, | ||
"date": None, | ||
}, | ||
{ | ||
"milestoneTitle": "Issuance of permit from ORES", | ||
"completed": False, | ||
"date": None, | ||
}, | ||
{ | ||
"milestoneTitle": "Winning a contract award from NYSERDA", | ||
"completed": False, | ||
"date": None, | ||
}, | ||
{ | ||
"milestoneTitle": "Execution of an Interconnection Agreement (IA)", | ||
"completed": False, | ||
"date": None, | ||
}, | ||
{"milestoneTitle": "Start of operations", "completed": False, "date": None}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.