├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Carbon_Explorer.ipynb ├── EIA_Energy_Data_Analysis.ipynb ├── LICENSE ├── README.md ├── imgs └── Carbon_Explorer_logo.png └── src ├── battery.py ├── cas.py ├── download_and_process.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carbon_Explorer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/Carbon_Explorer.ipynb -------------------------------------------------------------------------------- /EIA_Energy_Data_Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/EIA_Energy_Data_Analysis.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/README.md -------------------------------------------------------------------------------- /imgs/Carbon_Explorer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/imgs/Carbon_Explorer_logo.png -------------------------------------------------------------------------------- /src/battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/src/battery.py -------------------------------------------------------------------------------- /src/cas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/src/cas.py -------------------------------------------------------------------------------- /src/download_and_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/src/download_and_process.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/CarbonExplorer/HEAD/src/utils.py --------------------------------------------------------------------------------