├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build_docs.yml │ ├── prerelease.yml │ ├── publish.yml │ ├── release_and_publish.yml │ └── testing.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── ci ├── 310-latest.yaml ├── 310-oldest.yaml ├── 311-latest.yaml ├── 312-dev.yaml └── 312-latest.yaml ├── docs ├── .nojekyll ├── Makefile ├── _static │ ├── auto │ │ └── references.el │ ├── images │ │ ├── nonplanar.png │ │ ├── prices.png │ │ ├── pysal_favicon.ico │ │ ├── pysal_favicon.png │ │ ├── pysal_logo.png │ │ ├── pysal_logo_light.png │ │ └── rose_conditional.png │ ├── pysal-styles.css │ ├── references.bib │ └── references_all.bib ├── api.rst ├── conf.py ├── index.rst ├── installation.rst ├── libpysal-inv.txt ├── references.rst └── releases.rst ├── environment.yml ├── figs ├── lisamaps.png ├── lisamaps7.png └── pysal_logo.png ├── pyproject.toml ├── pysal ├── __init__.py ├── base.py ├── explore │ ├── __init__.py │ ├── esda │ │ └── __init__.py │ ├── giddy │ │ └── __init__.py │ ├── inequality │ │ └── __init__.py │ ├── momepy │ │ └── __init__.py │ ├── pointpats │ │ └── __init__.py │ ├── segregation │ │ └── __init__.py │ └── spaghetti │ │ └── __init__.py ├── lib │ ├── __init__.py │ ├── common.py │ └── examples │ │ └── __init__.py ├── model │ ├── __init__.py │ ├── access │ │ └── __init__.py │ ├── mgwr │ │ └── __init__.py │ ├── spglm │ │ └── __init__.py │ ├── spint │ │ └── __init__.py │ ├── spopt │ │ └── __init__.py │ ├── spreg │ │ └── __init__.py │ └── tobler │ │ └── __init__.py ├── tests │ └── test_imports.py └── viz │ ├── __init__.py │ └── mapclassify │ └── __init__.py └── tools ├── Makefile ├── README.md ├── change_log.py ├── changelog.md ├── frozen.py ├── gitcount.py ├── release.yaml └── release_info.py /.gitattributes: -------------------------------------------------------------------------------- 1 | pysal/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/workflows/build_docs.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release_and_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/workflows/release_and_publish.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/README.md -------------------------------------------------------------------------------- /ci/310-latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/ci/310-latest.yaml -------------------------------------------------------------------------------- /ci/310-oldest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/ci/310-oldest.yaml -------------------------------------------------------------------------------- /ci/311-latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/ci/311-latest.yaml -------------------------------------------------------------------------------- /ci/312-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/ci/312-dev.yaml -------------------------------------------------------------------------------- /ci/312-latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/ci/312-latest.yaml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/auto/references.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/auto/references.el -------------------------------------------------------------------------------- /docs/_static/images/nonplanar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/nonplanar.png -------------------------------------------------------------------------------- /docs/_static/images/prices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/prices.png -------------------------------------------------------------------------------- /docs/_static/images/pysal_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/pysal_favicon.ico -------------------------------------------------------------------------------- /docs/_static/images/pysal_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/pysal_favicon.png -------------------------------------------------------------------------------- /docs/_static/images/pysal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/pysal_logo.png -------------------------------------------------------------------------------- /docs/_static/images/pysal_logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/pysal_logo_light.png -------------------------------------------------------------------------------- /docs/_static/images/rose_conditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/images/rose_conditional.png -------------------------------------------------------------------------------- /docs/_static/pysal-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/pysal-styles.css -------------------------------------------------------------------------------- /docs/_static/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/references.bib -------------------------------------------------------------------------------- /docs/_static/references_all.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/_static/references_all.bib -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/libpysal-inv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/libpysal-inv.txt -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/environment.yml -------------------------------------------------------------------------------- /figs/lisamaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/figs/lisamaps.png -------------------------------------------------------------------------------- /figs/lisamaps7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/figs/lisamaps7.png -------------------------------------------------------------------------------- /figs/pysal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/figs/pysal_logo.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pysal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/__init__.py -------------------------------------------------------------------------------- /pysal/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/base.py -------------------------------------------------------------------------------- /pysal/explore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/__init__.py -------------------------------------------------------------------------------- /pysal/explore/esda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/esda/__init__.py -------------------------------------------------------------------------------- /pysal/explore/giddy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/giddy/__init__.py -------------------------------------------------------------------------------- /pysal/explore/inequality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/inequality/__init__.py -------------------------------------------------------------------------------- /pysal/explore/momepy/__init__.py: -------------------------------------------------------------------------------- 1 | from momepy import * 2 | -------------------------------------------------------------------------------- /pysal/explore/pointpats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/pointpats/__init__.py -------------------------------------------------------------------------------- /pysal/explore/segregation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/segregation/__init__.py -------------------------------------------------------------------------------- /pysal/explore/spaghetti/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/explore/spaghetti/__init__.py -------------------------------------------------------------------------------- /pysal/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/lib/__init__.py -------------------------------------------------------------------------------- /pysal/lib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/lib/common.py -------------------------------------------------------------------------------- /pysal/lib/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/lib/examples/__init__.py -------------------------------------------------------------------------------- /pysal/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/__init__.py -------------------------------------------------------------------------------- /pysal/model/access/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/access/__init__.py -------------------------------------------------------------------------------- /pysal/model/mgwr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/mgwr/__init__.py -------------------------------------------------------------------------------- /pysal/model/spglm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/spglm/__init__.py -------------------------------------------------------------------------------- /pysal/model/spint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/spint/__init__.py -------------------------------------------------------------------------------- /pysal/model/spopt/__init__.py: -------------------------------------------------------------------------------- 1 | from spopt import region 2 | -------------------------------------------------------------------------------- /pysal/model/spreg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/spreg/__init__.py -------------------------------------------------------------------------------- /pysal/model/tobler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/model/tobler/__init__.py -------------------------------------------------------------------------------- /pysal/tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/tests/test_imports.py -------------------------------------------------------------------------------- /pysal/viz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/viz/__init__.py -------------------------------------------------------------------------------- /pysal/viz/mapclassify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/pysal/viz/mapclassify/__init__.py -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/change_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/change_log.py -------------------------------------------------------------------------------- /tools/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/changelog.md -------------------------------------------------------------------------------- /tools/frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/frozen.py -------------------------------------------------------------------------------- /tools/gitcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/gitcount.py -------------------------------------------------------------------------------- /tools/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/release.yaml -------------------------------------------------------------------------------- /tools/release_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjsrey/pysal/HEAD/tools/release_info.py --------------------------------------------------------------------------------