diff --git a/README.md b/README.md index 38553b36..919c6cfa 100644 --- a/README.md +++ b/README.md @@ -22,17 +22,16 @@ This package is part of a [refactoring of PySAL](https://github.com/pysal/pysal/ -------------------------------------- -Spaghetti is an open-source python library for the analysis of network-based spatial data. Originating from the `network` module in [PySAL (Python Spatial Analysis Library)](http://pysal.org), it is under active development for the inclusion of newly proposed methods for building graph-theoretic networks and the analysis of network events. +Spaghetti is an open-source Python library for the analysis of network-based spatial data. Originating from the `network` module in [PySAL (Python Spatial Analysis Library)](http://pysal.org), it is under active development for the inclusion of newly proposed methods for building graph-theoretic networks and the analysis of network events. ------------------------------- Examples -------- -* [Network Usage](https://github.com/pysal/spaghetti/blob/master/notebooks/Network_Usage.ipynb) -* [Spaghetti Pointpatterns Empirical](https://github.com/pysal/spaghetti/blob/master/notebooks/Spaghetti_Pointpatterns_Empirical.ipynb) -* [Snapping Demonstration](https://github.com/pysal/spaghetti/blob/master/notebooks/Snapping_Demonstration.ipynb) -* [Facility Location](https://github.com/pysal/spaghetti/blob/master/notebooks/Facility_Location.ipynb) +* [Network Representation](https://pysal.org/spaghetti/notebooks/Basic_spaghetti_tutorial.html) +* [Spatial Network Analysis](https://pysal.org/spaghetti/notebooks/Advanced_spaghetti_tutorial.html) +* [Optimal Facility Location](https://pysal.org/spaghetti/notebooks/Use_case-facility_location.html) Installation diff --git a/docs/.buildinfo b/docs/.buildinfo index b7e435c7..e732f203 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: f5c4a77394b3c40018a06a45147226e8 +config: 9914f7c728d0edd6caa6a3390f2ed9cf tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_modules/index.html b/docs/_modules/index.html index a8832c6d..c56fb0b9 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -3,7 +3,7 @@ - Overview: module code — spaghetti v1.3.1 Manual + Overview: module code — spaghetti v1.4.0 Manual @@ -40,7 +40,7 @@ spaghetti - 1.3.1 + 1.4.0 diff --git a/docsrc/conf.py b/docsrc/conf.py index 1fd588e7..8ac47106 100644 --- a/docsrc/conf.py +++ b/docsrc/conf.py @@ -268,7 +268,7 @@ def setup(app): # This is processed by Jinja2 and inserted before each notebook nbsphinx_prolog = r""" -{% set docname = env.doc2path(env.docname, base='doc') %} +{% set docname = env.doc2path(env.docname, base='notebooks') %} .. only:: html diff --git a/spaghetti/__init__.py b/spaghetti/__init__.py index f8bef573..1230ee15 100644 --- a/spaghetti/__init__.py +++ b/spaghetti/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.1" +__version__ = "1.4.0" """ :mod:`spaghetti` --- Spatial Graphs: Networks, Topology, & Inference ====================================================================