├── .gitignore ├── Chapter03 └── B07333_03.py ├── Chapter04 └── Chapter4 Example Code.ipynb ├── Chapter05 └── Chapter5 Example Code.ipynb ├── Chapter06 └── B07333_06.py ├── Chapter07 └── B0333_07.py ├── Chapter08 ├── B07333_08.py └── Projected.zip ├── Chapter09 ├── Chapter9 Example 1.ipynb ├── Chapter9 Example 2.ipynb └── Chapter9 Example 3.ipynb ├── Chapter10 └── Scripts │ ├── Chapter10_1.py │ ├── Chapter10_2.py │ ├── Chapter10_3.py │ ├── Chapter10_4.py │ ├── Chapter10_5.py │ └── data │ ├── FloridaCountiesSingle.dbf │ ├── FloridaCountiesSingle.prj │ ├── FloridaCountiesSingle.qpj │ ├── FloridaCountiesSingle.shx │ ├── calaveras.csv │ └── city_of_juneau.csv ├── Chapter11 └── Scripts │ ├── Chapter11_0.py │ ├── Chapter11_1.py │ └── arenaapp │ ├── app.py │ └── application │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── views.cpython-36.pyc │ ├── forms.py │ ├── models.py │ ├── static │ ├── css │ │ ├── bootstrap-3.1.1.min.css │ │ ├── bootstrap-theme-3.1.1.css │ │ ├── bootstrap-theme-3.1.1.min.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap.css.map │ │ ├── font-awesome-4.1.0.min.css │ │ ├── layout.forms.css │ │ ├── layout.main.css │ │ ├── main.css │ │ ├── main.quickfix.css │ │ └── main.responsive.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ └── .gitkeep │ └── js │ │ ├── libs │ │ ├── bootstrap-3.1.1.min.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-1.11.1.min.map │ │ ├── modernizr-2.8.2.min.js │ │ └── respond-1.4.2.min.js │ │ ├── plugins.js │ │ └── script.js │ ├── templates │ └── index.html │ └── views.py ├── Chapter12 └── Scripts │ ├── Chapter12_0.py │ ├── chapter12 │ ├── Chapter12_0.py │ ├── arenas │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── forms.cpython-36.pyc │ │ │ ├── load.cpython-36.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ └── views.cpython-36.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── data │ │ │ ├── Arenas_NBA.dbf │ │ │ ├── Arenas_NBA.prj │ │ │ ├── Arenas_NBA.sbn │ │ │ ├── Arenas_NBA.sbx │ │ │ ├── Arenas_NBA.shp.xml │ │ │ ├── Arenas_NBA.shx │ │ │ ├── Congressional_Districts.dbf │ │ │ ├── Congressional_Districts.prj │ │ │ ├── Congressional_Districts.sbn │ │ │ ├── Congressional_Districts.sbx │ │ │ ├── Congressional_Districts.shp.xml │ │ │ ├── Congressional_Districts.shx │ │ │ ├── US_County_Boundaries.dbf │ │ │ ├── US_County_Boundaries.prj │ │ │ ├── US_County_Boundaries.sbn │ │ │ ├── US_County_Boundaries.sbx │ │ │ ├── US_County_Boundaries.shp.xml │ │ │ ├── US_County_Boundaries.shx │ │ │ ├── US_States.dbf │ │ │ ├── US_States.prj │ │ │ ├── US_States.sbn │ │ │ ├── US_States.sbx │ │ │ ├── US_States.shp.xml │ │ │ └── US_States.shx │ │ ├── forms.py │ │ ├── load.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── Chapter12_0.cpython-36.pyc │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── models.py │ │ ├── templates │ │ │ ├── arena │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── chapter12 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ └── wsgi.cpython-36.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── manage.py │ └── django-admin.py ├── Chapter13 └── Scripts │ ├── Chapter13_1.py │ └── arenaapp │ ├── app.py │ └── application │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── views.cpython-36.pyc │ ├── forms.py │ ├── models.py │ ├── static │ ├── css │ │ ├── bootstrap-3.1.1.min.css │ │ ├── bootstrap-theme-3.1.1.css │ │ ├── bootstrap-theme-3.1.1.min.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap.css.map │ │ ├── font-awesome-4.1.0.min.css │ │ ├── layout.forms.css │ │ ├── layout.main.css │ │ ├── main.css │ │ ├── main.quickfix.css │ │ └── main.responsive.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ └── .gitkeep │ └── js │ │ ├── libs │ │ ├── bootstrap-3.1.1.min.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-1.11.1.min.map │ │ ├── modernizr-2.8.2.min.js │ │ └── respond-1.4.2.min.js │ │ ├── plugins.js │ │ └── script.js │ ├── templates │ └── addarena.html │ └── views.py ├── Chapter14 └── Scripts │ ├── .ipynb_checkpoints │ └── Chapter14-checkpoint.ipynb │ ├── Chapter14.ipynb │ ├── cartoframes_analysis.py │ ├── cartoframes_creds.py │ ├── cartoframes_dataedit.py │ ├── cartoframes_test.py │ ├── cartoframes_write_csv.py │ ├── cartoframes_write_csv_geometry.py │ └── cartoframes_write_shp.py ├── Chapter15 ├── .ipynb_checkpoints │ └── Mapbox_Chapter-checkpoint.ipynb ├── Chapter15_1.py ├── Chapter15_2.py ├── Mapbox_Chapter.ipynb ├── index.html ├── tract_points2.geojson ├── tracts_bayarea.geojson ├── tracts_bayarea2.geojson └── ztca_bayarea.geojson ├── Chapter16 └── B07333_16.py ├── LICENSE ├── README.md └── gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | Chapter14/Scripts/cartoenv/ 3 | *.shp -------------------------------------------------------------------------------- /Chapter03/B07333_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter03/B07333_03.py -------------------------------------------------------------------------------- /Chapter04/Chapter4 Example Code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter04/Chapter4 Example Code.ipynb -------------------------------------------------------------------------------- /Chapter05/Chapter5 Example Code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter05/Chapter5 Example Code.ipynb -------------------------------------------------------------------------------- /Chapter06/B07333_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter06/B07333_06.py -------------------------------------------------------------------------------- /Chapter07/B0333_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter07/B0333_07.py -------------------------------------------------------------------------------- /Chapter08/B07333_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter08/B07333_08.py -------------------------------------------------------------------------------- /Chapter08/Projected.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter08/Projected.zip -------------------------------------------------------------------------------- /Chapter09/Chapter9 Example 1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter09/Chapter9 Example 1.ipynb -------------------------------------------------------------------------------- /Chapter09/Chapter9 Example 2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter09/Chapter9 Example 2.ipynb -------------------------------------------------------------------------------- /Chapter09/Chapter9 Example 3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter09/Chapter9 Example 3.ipynb -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/Chapter10_1.py -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/Chapter10_2.py -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/Chapter10_3.py -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/Chapter10_4.py -------------------------------------------------------------------------------- /Chapter10/Scripts/Chapter10_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/Chapter10_5.py -------------------------------------------------------------------------------- /Chapter10/Scripts/data/FloridaCountiesSingle.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/data/FloridaCountiesSingle.dbf -------------------------------------------------------------------------------- /Chapter10/Scripts/data/FloridaCountiesSingle.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/data/FloridaCountiesSingle.prj -------------------------------------------------------------------------------- /Chapter10/Scripts/data/FloridaCountiesSingle.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/data/FloridaCountiesSingle.qpj -------------------------------------------------------------------------------- /Chapter10/Scripts/data/FloridaCountiesSingle.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/data/FloridaCountiesSingle.shx -------------------------------------------------------------------------------- /Chapter10/Scripts/data/calaveras.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/data/calaveras.csv -------------------------------------------------------------------------------- /Chapter10/Scripts/data/city_of_juneau.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter10/Scripts/data/city_of_juneau.csv -------------------------------------------------------------------------------- /Chapter11/Scripts/Chapter11_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/Chapter11_0.py -------------------------------------------------------------------------------- /Chapter11/Scripts/Chapter11_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/Chapter11_1.py -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/app.py -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/__init__.py -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/forms.py -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/models.py -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/bootstrap-3.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/bootstrap-3.1.1.min.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.min.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/font-awesome-4.1.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/font-awesome-4.1.0.min.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/layout.forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/layout.forms.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/layout.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/layout.main.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/main.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/main.quickfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/main.quickfix.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/css/main.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/css/main.responsive.css -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/libs/bootstrap-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/js/libs/bootstrap-3.1.1.min.js -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.map -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/libs/modernizr-2.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/js/libs/modernizr-2.8.2.min.js -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/libs/respond-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/js/libs/respond-1.4.2.min.js -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/static/js/plugins.js -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/static/js/script.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | }).call(this); 4 | -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/templates/index.html -------------------------------------------------------------------------------- /Chapter11/Scripts/arenaapp/application/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter11/Scripts/arenaapp/application/views.py -------------------------------------------------------------------------------- /Chapter12/Scripts/Chapter12_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/Chapter12_0.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/Chapter12_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/Chapter12_0.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/load.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/load.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/admin.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/apps.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.dbf -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.prj -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.sbn -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.sbx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.shp.xml -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Arenas_NBA.shx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.dbf -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.prj -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.sbn -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.sbx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.shp.xml -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/Congressional_Districts.shx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.dbf -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.prj -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.sbn -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.sbx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.shp.xml -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_County_Boundaries.shx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_States.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_States.dbf -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_States.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_States.prj -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_States.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_States.sbn -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_States.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_States.sbx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_States.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_States.shp.xml -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/data/US_States.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/data/US_States.shx -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/forms.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/load.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/migrations/0001_initial.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/migrations/__pycache__/Chapter12_0.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/migrations/__pycache__/Chapter12_0.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/models.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/templates/arena/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/templates/arena/index.html -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/templates/index.html -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/tests.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/urls.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/arenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/arenas/views.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/settings.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/urls.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/chapter12/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/chapter12/wsgi.py -------------------------------------------------------------------------------- /Chapter12/Scripts/chapter12/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/chapter12/manage.py -------------------------------------------------------------------------------- /Chapter12/Scripts/django-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter12/Scripts/django-admin.py -------------------------------------------------------------------------------- /Chapter13/Scripts/Chapter13_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/Chapter13_1.py -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/app.py -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/__init__.py -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/forms.py -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/models.py -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/bootstrap-3.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/bootstrap-3.1.1.min.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/bootstrap-theme-3.1.1.min.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/font-awesome-4.1.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/font-awesome-4.1.0.min.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/layout.forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/layout.forms.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/layout.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/layout.main.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/main.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/main.quickfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/main.quickfix.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/css/main.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/css/main.responsive.css -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/libs/bootstrap-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/js/libs/bootstrap-3.1.1.min.js -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/js/libs/jquery-1.11.1.min.map -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/libs/modernizr-2.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/js/libs/modernizr-2.8.2.min.js -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/libs/respond-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/js/libs/respond-1.4.2.min.js -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/static/js/plugins.js -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/static/js/script.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | }).call(this); 4 | -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/templates/addarena.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/templates/addarena.html -------------------------------------------------------------------------------- /Chapter13/Scripts/arenaapp/application/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter13/Scripts/arenaapp/application/views.py -------------------------------------------------------------------------------- /Chapter14/Scripts/.ipynb_checkpoints/Chapter14-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/.ipynb_checkpoints/Chapter14-checkpoint.ipynb -------------------------------------------------------------------------------- /Chapter14/Scripts/Chapter14.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/Chapter14.ipynb -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_analysis.py -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_creds.py -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_dataedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_dataedit.py -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_test.py -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_write_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_write_csv.py -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_write_csv_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_write_csv_geometry.py -------------------------------------------------------------------------------- /Chapter14/Scripts/cartoframes_write_shp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter14/Scripts/cartoframes_write_shp.py -------------------------------------------------------------------------------- /Chapter15/.ipynb_checkpoints/Mapbox_Chapter-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/.ipynb_checkpoints/Mapbox_Chapter-checkpoint.ipynb -------------------------------------------------------------------------------- /Chapter15/Chapter15_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/Chapter15_1.py -------------------------------------------------------------------------------- /Chapter15/Chapter15_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/Chapter15_2.py -------------------------------------------------------------------------------- /Chapter15/Mapbox_Chapter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/Mapbox_Chapter.ipynb -------------------------------------------------------------------------------- /Chapter15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/index.html -------------------------------------------------------------------------------- /Chapter15/tract_points2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/tract_points2.geojson -------------------------------------------------------------------------------- /Chapter15/tracts_bayarea.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/tracts_bayarea.geojson -------------------------------------------------------------------------------- /Chapter15/tracts_bayarea2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/tracts_bayarea2.geojson -------------------------------------------------------------------------------- /Chapter15/ztca_bayarea.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter15/ztca_bayarea.geojson -------------------------------------------------------------------------------- /Chapter16/B07333_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/Chapter16/B07333_16.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Geospatial-Analysis-with-Python/HEAD/README.md -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | Chapter14/Scripts/cartoenv/ 3 | --------------------------------------------------------------------------------