Skip to content

Commit

Permalink
Merge pull request #117 from pgRouting/cayetanobv/rc_version
Browse files Browse the repository at this point in the history
v3.0.0 - Release Candidate
  • Loading branch information
cayetanobv authored Feb 4, 2019
2 parents 9de2011 + e48844c commit 5b659b8
Show file tree
Hide file tree
Showing 216 changed files with 3,119 additions and 19,494 deletions.
113 changes: 113 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,118 @@
*.DS_Store
[Tt]humbs.db
.idea

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# VSCode
.vscode

# Project
py-env
resources.py
build
*.swp
.directory
17 changes: 9 additions & 8 deletions README.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,22 @@ PgRouting Layer is a plugin for QGIS that serves as a GUI for pgRouting - a popu

## What this plugin currently does

Please check the pgRouting documentation for detailed descriptons: [http://docs.pgrouting.org](http://docs.pgrouting.org)
Please check plugin documentation for detailed descriptions: [http://qgis.pgrouting.org](http://qgis.pgrouting.org)

pgRoutingLayer currently supports the following functions:

- `pgr_alphaShape`
- `pgr_astar`
- `pgr_aStar`
- `pgr_aStarCost`
- `pgr_bdAstar`
- `pgr_bdAstarCost`
- `pgr_bdDijkstra`
- `pgr_bdDijkstraCost`
- `pgr_dijkstra`
- `pgr_drivingDistance`
- `pgr_dijkstraCost`
- `pgr_KSP`
- `pgr_trsp(edge)`
- `pgr_trsp(vertex)`
- `pgr_trspViaEdges`
- `pgr_trspViaVertices`

Functions detailed descriptions: [http://docs.pgrouting.org](http://docs.pgrouting.org)


## License

Expand Down
10 changes: 0 additions & 10 deletions __init__.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,6 @@
This script initializes the plugin, making it known to QGIS.
"""

def name():
return "pgRouting Layer"
def description():
return "Dockable widget that adds pgRouting layers"
def version():
return "Version 0.1"
def icon():
return "icon.png"
def qgisMinimumVersion():
return "1.7"

def classFactory(iface):
from pgRoutingLayer.pgRoutingLayer import PgRoutingLayer
Expand Down
2 changes: 1 addition & 1 deletion builddoc.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
rm -fR site
mkdocs gh-deploy --clean
rm -fR site
#rm -fR site
Loading

0 comments on commit 5b659b8

Please sign in to comment.