├── .DS_Store ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Carbon_Aware_API ├── README.md ├── __pycache__ │ ├── constant_definitions.cpython-39.pyc │ └── wsgi.cpython-37.pyc ├── app-reference.py ├── app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── data.cpython-38.pyc │ │ ├── data.cpython-39.pyc │ │ ├── utils.cpython-37.pyc │ │ ├── utils.cpython-38.pyc │ │ └── utils.cpython-39.pyc │ ├── caches │ │ ├── AzureDataCenter.py │ │ └── __pycache__ │ │ │ └── AzureDataCenter.cpython-39.pyc │ ├── cluster.py │ ├── data.py │ ├── routes │ │ ├── __pycache__ │ │ │ ├── ci_data.cpython-37.pyc │ │ │ ├── ci_data.cpython-38.pyc │ │ │ ├── ci_data.cpython-39.pyc │ │ │ ├── shift.cpython-37.pyc │ │ │ ├── shift.cpython-38.pyc │ │ │ ├── shift.cpython-39.pyc │ │ │ ├── static.cpython-37.pyc │ │ │ ├── static.cpython-38.pyc │ │ │ └── static.cpython-39.pyc │ │ ├── ci_data.py │ │ ├── shift.py │ │ └── static.py │ ├── services │ │ └── cron_service.py │ ├── static │ │ ├── GPU_Energy.csv │ │ ├── Region-SKU-Tags.csv │ │ ├── az_regions.json │ │ ├── azure_mlsetup_cost.csv │ │ ├── azure_network_latency.csv │ │ ├── css │ │ │ └── main.css │ │ ├── display_to_name.json │ │ ├── login_creds.json │ │ ├── name_to_display.json │ │ ├── swagger5.yaml │ │ └── yearly_region_avg.csv │ ├── templates │ │ ├── api_docs.html │ │ ├── api_use.html │ │ ├── appendix.html │ │ ├── az_error.html │ │ ├── az_find.html │ │ ├── ba_error.html │ │ ├── bad_loc.html │ │ ├── case_study.html │ │ ├── ci_error.html │ │ ├── ci_find.html │ │ ├── data_error.html │ │ ├── datachoice_combo.html │ │ ├── deck.html │ │ ├── docs_page.html │ │ ├── footprint.html │ │ ├── kb_cite.html │ │ ├── kb_summary.html │ │ ├── load_shift_eval.html │ │ ├── load_shift_eval_2.html │ │ ├── load_shift_eval_2_master.html │ │ ├── load_shift_eval_geotime.html │ │ ├── load_shift_eval_master.html │ │ ├── load_shift_geo_eval.html │ │ ├── loc_error.html │ │ ├── miro.html │ │ ├── monitor_docs.html │ │ ├── monitor_docs2.html │ │ ├── monitor_setup.html │ │ ├── overview.html │ │ ├── pred_error.html │ │ ├── pred_shift_find.html │ │ ├── pred_shift_find_hidden.html │ │ ├── prediction_made.html │ │ ├── region.html │ │ ├── region_bad_freq.html │ │ ├── report_final.html │ │ ├── report_final_util.html │ │ ├── start.html │ │ └── template.html │ └── utils.py ├── constant_definitions.py ├── historical_zipfiles │ ├── CAISO_NORTH_historical.zip │ ├── None_historical.zip │ └── Placeholder_zip.zip ├── local_files │ ├── all_regions_forecasts.json │ ├── data_for_table.json │ ├── time_series_table_data.csv │ └── usage_data.json ├── requirements.txt ├── target │ └── pylist.json ├── uploads │ └── Metrics_energy.xlsx └── wsgi.py ├── Carbon_Aware_Core_UI ├── .DS_Store ├── README.html ├── README.md └── React_Interface │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── green-icon.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── footer │ │ ├── Footer.css │ │ └── Footer.js │ └── nav │ │ ├── Nav.css │ │ └── Nav.js │ ├── img │ ├── accept.png │ ├── desc_img.jpeg │ ├── error.png │ ├── home_title.png │ ├── intensity.jpg │ ├── logo.png │ ├── logo2.png │ ├── shifting.png │ └── split.png │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ ├── accept │ │ ├── Accept.css │ │ └── Accept.js │ ├── carbon_intensity │ │ ├── CarbonIntensity.css │ │ └── CarbonIntensity.js │ ├── documentation │ │ ├── Documentation.css │ │ ├── Documentation.js │ │ └── resources │ │ │ ├── DocumentationContent.css │ │ │ ├── api_docs │ │ │ ├── ApiDocs.css │ │ │ └── ApiDocs.js │ │ │ ├── api_use │ │ │ ├── ApiUse.css │ │ │ └── ApiUse.js │ │ │ ├── case_study │ │ │ ├── CaseStudy.css │ │ │ └── CaseStudy.js │ │ │ ├── deck │ │ │ ├── Deck.css │ │ │ └── Deck.js │ │ │ ├── kb_cite │ │ │ ├── KbCite.css │ │ │ └── KbCite.js │ │ │ ├── kb_summary │ │ │ ├── KbSummary.css │ │ │ └── KbSummary.js │ │ │ ├── miro │ │ │ ├── Miro.css │ │ │ └── Miro.js │ │ │ └── monitor │ │ │ ├── Monitor.css │ │ │ └── Monitor.js │ ├── home │ │ ├── Home.css │ │ └── Home.js │ └── shifting │ │ ├── Shifting.css │ │ └── Shifting.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ └── fade-in-out.js ├── Documentation ├── Appendices.md ├── Case Studies │ ├── Carbon_trigger │ │ ├── README.md │ │ ├── carbon_trigger_eval.py │ │ └── time_shifting_eval_1P-2.py │ ├── Organizational_Shifting │ │ ├── README.md │ │ ├── geo_shifting_eval_1P.py │ │ └── time_shifting_eval_1P.py │ └── README.md ├── Methods.md ├── References.md └── Validation │ └── README.md ├── LICENSE ├── README.md └── Retrieve_Energy_Metrics ├── AzureMonitorQuery ├── AzureMonitorFileDownload.md ├── README.md ├── query.py ├── requirements.txt └── unpack.py └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Carbon_Aware_API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/README.md -------------------------------------------------------------------------------- /Carbon_Aware_API/__pycache__/constant_definitions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/__pycache__/constant_definitions.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app-reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app-reference.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__init__.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/data.cpython-38.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/data.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/caches/AzureDataCenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/caches/AzureDataCenter.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/caches/__pycache__/AzureDataCenter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/caches/__pycache__/AzureDataCenter.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/cluster.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/data.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/ci_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/ci_data.cpython-37.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/ci_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/ci_data.cpython-38.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/ci_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/ci_data.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/shift.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/shift.cpython-37.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/shift.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/shift.cpython-38.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/shift.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/shift.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/static.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/static.cpython-37.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/static.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/static.cpython-38.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/__pycache__/static.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/__pycache__/static.cpython-39.pyc -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/ci_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/ci_data.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/shift.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/routes/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/routes/static.py -------------------------------------------------------------------------------- /Carbon_Aware_API/app/services/cron_service.py: -------------------------------------------------------------------------------- 1 | # this will hold cron-service files -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/GPU_Energy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/GPU_Energy.csv -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/Region-SKU-Tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/Region-SKU-Tags.csv -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/az_regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/az_regions.json -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/azure_mlsetup_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/azure_mlsetup_cost.csv -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/azure_network_latency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/azure_network_latency.csv -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/css/main.css -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/display_to_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/display_to_name.json -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/login_creds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/login_creds.json -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/name_to_display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/name_to_display.json -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/swagger5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/swagger5.yaml -------------------------------------------------------------------------------- /Carbon_Aware_API/app/static/yearly_region_avg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/static/yearly_region_avg.csv -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/api_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/api_docs.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/api_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/api_use.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/appendix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/appendix.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/az_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/az_error.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/az_find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/az_find.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/ba_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/ba_error.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/bad_loc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/bad_loc.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/case_study.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/case_study.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/ci_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/ci_error.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/ci_find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/ci_find.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/data_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/data_error.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/datachoice_combo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/datachoice_combo.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/deck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/deck.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/docs_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/docs_page.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/footprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/footprint.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/kb_cite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/kb_cite.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/kb_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/kb_summary.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/load_shift_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/load_shift_eval.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/load_shift_eval_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/load_shift_eval_2.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/load_shift_eval_2_master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/load_shift_eval_2_master.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/load_shift_eval_geotime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/load_shift_eval_geotime.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/load_shift_eval_master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/load_shift_eval_master.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/load_shift_geo_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/load_shift_geo_eval.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/loc_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/loc_error.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/miro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/miro.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/monitor_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/monitor_docs.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/monitor_docs2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/monitor_docs2.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/monitor_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/monitor_setup.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/overview.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/pred_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/pred_error.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/pred_shift_find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/pred_shift_find.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/pred_shift_find_hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/pred_shift_find_hidden.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/prediction_made.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/prediction_made.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/region.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/region_bad_freq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/region_bad_freq.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/report_final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/report_final.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/report_final_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/report_final_util.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/start.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/templates/template.html -------------------------------------------------------------------------------- /Carbon_Aware_API/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/app/utils.py -------------------------------------------------------------------------------- /Carbon_Aware_API/constant_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/constant_definitions.py -------------------------------------------------------------------------------- /Carbon_Aware_API/historical_zipfiles/CAISO_NORTH_historical.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/historical_zipfiles/CAISO_NORTH_historical.zip -------------------------------------------------------------------------------- /Carbon_Aware_API/historical_zipfiles/None_historical.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/historical_zipfiles/None_historical.zip -------------------------------------------------------------------------------- /Carbon_Aware_API/historical_zipfiles/Placeholder_zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/historical_zipfiles/Placeholder_zip.zip -------------------------------------------------------------------------------- /Carbon_Aware_API/local_files/all_regions_forecasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/local_files/all_regions_forecasts.json -------------------------------------------------------------------------------- /Carbon_Aware_API/local_files/data_for_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/local_files/data_for_table.json -------------------------------------------------------------------------------- /Carbon_Aware_API/local_files/time_series_table_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/local_files/time_series_table_data.csv -------------------------------------------------------------------------------- /Carbon_Aware_API/local_files/usage_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/local_files/usage_data.json -------------------------------------------------------------------------------- /Carbon_Aware_API/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/requirements.txt -------------------------------------------------------------------------------- /Carbon_Aware_API/target/pylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/target/pylist.json -------------------------------------------------------------------------------- /Carbon_Aware_API/uploads/Metrics_energy.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/uploads/Metrics_energy.xlsx -------------------------------------------------------------------------------- /Carbon_Aware_API/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_API/wsgi.py -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/.DS_Store -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/README.html -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/README.md -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /.gitignore -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /README.md -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /package-lock.json -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /package.json -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/favicon.ico -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/green-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/green-icon.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/index.html -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/logo192.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/logo512.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/manifest.json -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /public/robots.txt -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/App.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/App.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/App.test.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/components/footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/components/footer/Footer.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/components/footer/Footer.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/components/nav/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/components/nav/Nav.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/components/nav/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/components/nav/Nav.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/accept.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/desc_img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/desc_img.jpeg -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/error.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/home_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/home_title.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/intensity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/intensity.jpg -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/logo.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/logo2.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/shifting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/shifting.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/img/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/img/split.png -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/index.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/index.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/logo.svg -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/accept/Accept.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/accept/Accept.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/accept/Accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/accept/Accept.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/carbon_intensity/CarbonIntensity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/carbon_intensity/CarbonIntensity.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/carbon_intensity/CarbonIntensity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/carbon_intensity/CarbonIntensity.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/Documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/Documentation.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/Documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/Documentation.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/DocumentationContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/DocumentationContent.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_docs/ApiDocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_docs/ApiDocs.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_docs/ApiDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_docs/ApiDocs.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_use/ApiUse.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_use/ApiUse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/api_use/ApiUse.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/case_study/CaseStudy.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/case_study/CaseStudy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/case_study/CaseStudy.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/deck/Deck.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/deck/Deck.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/deck/Deck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/deck/Deck.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/kb_cite/KbCite.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/kb_cite/KbCite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/kb_cite/KbCite.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/kb_summary/KbSummary.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/kb_summary/KbSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/kb_summary/KbSummary.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/miro/Miro.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/miro/Miro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/miro/Miro.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/monitor/Monitor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/monitor/Monitor.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/monitor/Monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/documentation/resources/monitor/Monitor.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/home/Home.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/home/Home.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/shifting/Shifting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/shifting/Shifting.css -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/pages/shifting/Shifting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/pages/shifting/Shifting.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/reportWebVitals.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/setupTests.js -------------------------------------------------------------------------------- /Carbon_Aware_Core_UI/React_Interface /src/utils/fade-in-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Carbon_Aware_Core_UI/React_Interface /src/utils/fade-in-out.js -------------------------------------------------------------------------------- /Documentation/Appendices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Appendices.md -------------------------------------------------------------------------------- /Documentation/Case Studies/Carbon_trigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/Carbon_trigger/README.md -------------------------------------------------------------------------------- /Documentation/Case Studies/Carbon_trigger/carbon_trigger_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/Carbon_trigger/carbon_trigger_eval.py -------------------------------------------------------------------------------- /Documentation/Case Studies/Carbon_trigger/time_shifting_eval_1P-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/Carbon_trigger/time_shifting_eval_1P-2.py -------------------------------------------------------------------------------- /Documentation/Case Studies/Organizational_Shifting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/Organizational_Shifting/README.md -------------------------------------------------------------------------------- /Documentation/Case Studies/Organizational_Shifting/geo_shifting_eval_1P.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/Organizational_Shifting/geo_shifting_eval_1P.py -------------------------------------------------------------------------------- /Documentation/Case Studies/Organizational_Shifting/time_shifting_eval_1P.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/Organizational_Shifting/time_shifting_eval_1P.py -------------------------------------------------------------------------------- /Documentation/Case Studies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Case Studies/README.md -------------------------------------------------------------------------------- /Documentation/Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/Methods.md -------------------------------------------------------------------------------- /Documentation/References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Documentation/References.md -------------------------------------------------------------------------------- /Documentation/Validation/README.md: -------------------------------------------------------------------------------- 1 | # Tool Validation 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/README.md -------------------------------------------------------------------------------- /Retrieve_Energy_Metrics/AzureMonitorQuery/AzureMonitorFileDownload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Retrieve_Energy_Metrics/AzureMonitorQuery/AzureMonitorFileDownload.md -------------------------------------------------------------------------------- /Retrieve_Energy_Metrics/AzureMonitorQuery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Retrieve_Energy_Metrics/AzureMonitorQuery/README.md -------------------------------------------------------------------------------- /Retrieve_Energy_Metrics/AzureMonitorQuery/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Retrieve_Energy_Metrics/AzureMonitorQuery/query.py -------------------------------------------------------------------------------- /Retrieve_Energy_Metrics/AzureMonitorQuery/requirements.txt: -------------------------------------------------------------------------------- 1 | az==0.1.0.dev1 2 | pandas==1.2.4 3 | requests==2.25.1 4 | -------------------------------------------------------------------------------- /Retrieve_Energy_Metrics/AzureMonitorQuery/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Retrieve_Energy_Metrics/AzureMonitorQuery/unpack.py -------------------------------------------------------------------------------- /Retrieve_Energy_Metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaylorPrewitt/carbon-awareAPI/HEAD/Retrieve_Energy_Metrics/README.md --------------------------------------------------------------------------------