├── .bumpversion.cfg ├── .gitattributes ├── .github └── workflows │ └── make-mkdocs.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── cookiecutter.json ├── docsrc ├── mkdocs.yml ├── mkdocs │ ├── assets │ │ └── basic_use.gif │ ├── getting_started.md │ ├── index.md │ ├── origins.md │ ├── tips_tricks.md │ └── why.md └── requirements.txt ├── environment.yml ├── hooks └── post_gen_project.py ├── make.bat ├── testing ├── sik-prj.yaml └── test_ck.cmd └── {{cookiecutter.project_name}} ├── .bumpversion.cfg ├── .github └── workflows │ └── make-mkdocs.yml ├── .gitignore ├── AGENTS.md ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── arcgis ├── README.md ├── cookiecutter.aprx ├── cookiecutter.tbx ├── layer_files │ └── .gitkeep ├── styles │ ├── Firefly.stylx │ ├── GlassyNorthArrows.stylx │ ├── PaperCut.stylx │ ├── PenAndInk.stylx │ ├── PhysicalGeographyAtlas.stylx │ ├── Sketch.stylx │ └── Watercolor.stylx └── {{cookiecutter.support_library}}.pyt ├── config ├── config.ini └── secrets_template.ini ├── docsrc ├── mkdocs.yml ├── mkdocs │ ├── api.md │ ├── cookiecutter_reference.md │ ├── index.md │ └── notebooks │ │ └── .gitkeep └── requirements.txt ├── environment.yml ├── make.cmd ├── models ├── .gitkeep └── emd │ └── example.emd ├── notebooks ├── .gitkeep └── notebook-template.ipynb ├── pyproject.toml ├── references └── .gitkeep ├── reports ├── .gitkeep ├── figures │ └── .gitkeep └── logs │ └── .gitkeep ├── scripts ├── config.ini ├── make_data.py ├── make_pyt_archive.py └── raster_functions │ └── .gitkeep ├── src └── {{cookiecutter.support_library}} │ ├── __init__.py │ ├── _main.py │ └── utils │ ├── __init__.py │ ├── _logging.py │ └── _main.py └── testing ├── conftest.py └── test_{{cookiecutter.support_library}}.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/make-mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/.github/workflows/make-mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.5.0 -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /docsrc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs.yml -------------------------------------------------------------------------------- /docsrc/mkdocs/assets/basic_use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs/assets/basic_use.gif -------------------------------------------------------------------------------- /docsrc/mkdocs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs/getting_started.md -------------------------------------------------------------------------------- /docsrc/mkdocs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs/index.md -------------------------------------------------------------------------------- /docsrc/mkdocs/origins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs/origins.md -------------------------------------------------------------------------------- /docsrc/mkdocs/tips_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs/tips_tricks.md -------------------------------------------------------------------------------- /docsrc/mkdocs/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/mkdocs/why.md -------------------------------------------------------------------------------- /docsrc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/docsrc/requirements.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/environment.yml -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/make.bat -------------------------------------------------------------------------------- /testing/sik-prj.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test_ck.cmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/.bumpversion.cfg -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.github/workflows/make-mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/.github/workflows/make-mkdocs.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/AGENTS.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/LICENSE -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/Makefile -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0 -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/README.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/cookiecutter.aprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/cookiecutter.aprx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/cookiecutter.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/cookiecutter.tbx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/layer_files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/Firefly.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/Firefly.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/GlassyNorthArrows.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/GlassyNorthArrows.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/PaperCut.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/PaperCut.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/PenAndInk.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/PenAndInk.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/PhysicalGeographyAtlas.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/PhysicalGeographyAtlas.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/Sketch.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/Sketch.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/styles/Watercolor.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/styles/Watercolor.stylx -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/arcgis/{{cookiecutter.support_library}}.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/arcgis/{{cookiecutter.support_library}}.pyt -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/config/config.ini: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | PROJECT_NAME = {{cookiecutter.project_name}} -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/config/secrets_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/config/secrets_template.ini -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docsrc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/docsrc/mkdocs.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docsrc/mkdocs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/docsrc/mkdocs/api.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docsrc/mkdocs/cookiecutter_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/docsrc/mkdocs/cookiecutter_reference.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docsrc/mkdocs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/docsrc/mkdocs/index.md -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docsrc/mkdocs/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/docsrc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/docsrc/requirements.txt -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/environment.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/make.cmd -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/models/emd/example.emd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/models/emd/example.emd -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/notebooks/notebook-template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/notebooks/notebook-template.ipynb -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/pyproject.toml -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/references/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/reports/figures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/reports/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/scripts/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/scripts/config.ini -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/scripts/make_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/scripts/make_data.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/scripts/make_pyt_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/scripts/make_pyt_archive.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/scripts/raster_functions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/__init__.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/_main.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/utils/__init__.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/utils/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/utils/_logging.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/utils/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/src/{{cookiecutter.support_library}}/utils/_main.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/testing/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/testing/conftest.py -------------------------------------------------------------------------------- /{{cookiecutter.project_name}}/testing/test_{{cookiecutter.support_library}}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/cookiecutter-spatial-data-science/HEAD/{{cookiecutter.project_name}}/testing/test_{{cookiecutter.support_library}}.py --------------------------------------------------------------------------------