├── .gitattributes ├── .gitignore ├── README.md ├── download_data.md ├── geo_json.md ├── nb ├── Geojson and Rasterio Demo.ipynb ├── _setup_git_config.sh └── _strip_output.py ├── requirements.txt ├── sample_data ├── README.md ├── pull_data.py ├── state_codes.txt └── us_counties_5m.json └── scripts ├── README.md ├── download_viirs_data.py ├── geojson_masking.py └── nightlight_stats_by_county.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb filter=stripoutput 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/README.md -------------------------------------------------------------------------------- /download_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/download_data.md -------------------------------------------------------------------------------- /geo_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/geo_json.md -------------------------------------------------------------------------------- /nb/Geojson and Rasterio Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/nb/Geojson and Rasterio Demo.ipynb -------------------------------------------------------------------------------- /nb/_setup_git_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/nb/_setup_git_config.sh -------------------------------------------------------------------------------- /nb/_strip_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/nb/_strip_output.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_data/README.md: -------------------------------------------------------------------------------- 1 | Upload sample data here 2 | -------------------------------------------------------------------------------- /sample_data/pull_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/sample_data/pull_data.py -------------------------------------------------------------------------------- /sample_data/state_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/sample_data/state_codes.txt -------------------------------------------------------------------------------- /sample_data/us_counties_5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/sample_data/us_counties_5m.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | Upload scripts here 2 | -------------------------------------------------------------------------------- /scripts/download_viirs_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/scripts/download_viirs_data.py -------------------------------------------------------------------------------- /scripts/geojson_masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/scripts/geojson_masking.py -------------------------------------------------------------------------------- /scripts/nightlight_stats_by_county.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonaire/tutorial_viirs_part2/HEAD/scripts/nightlight_stats_by_county.py --------------------------------------------------------------------------------