Skip to content

Commit 5b659b8

Browse files
authored
Merge pull request #117 from pgRouting/cayetanobv/rc_version
v3.0.0 - Release Candidate
2 parents 9de2011 + e48844c commit 5b659b8

File tree

216 files changed

+3119
-19494
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+3119
-19494
lines changed

.gitignore

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,118 @@
22
*.DS_Store
33
[Tt]humbs.db
44
.idea
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
111+
# VSCode
112+
.vscode
113+
114+
# Project
5115
py-env
6116
resources.py
117+
build
118+
*.swp
119+
.directory

README.md

100755100644
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,22 @@ PgRouting Layer is a plugin for QGIS that serves as a GUI for pgRouting - a popu
1313

1414
## What this plugin currently does
1515

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

1818
pgRoutingLayer currently supports the following functions:
1919

20-
- `pgr_alphaShape`
21-
- `pgr_astar`
20+
- `pgr_aStar`
21+
- `pgr_aStarCost`
2222
- `pgr_bdAstar`
23+
- `pgr_bdAstarCost`
2324
- `pgr_bdDijkstra`
25+
- `pgr_bdDijkstraCost`
2426
- `pgr_dijkstra`
25-
- `pgr_drivingDistance`
27+
- `pgr_dijkstraCost`
2628
- `pgr_KSP`
27-
- `pgr_trsp(edge)`
28-
- `pgr_trsp(vertex)`
29-
- `pgr_trspViaEdges`
30-
- `pgr_trspViaVertices`
29+
30+
Functions detailed descriptions: [http://docs.pgrouting.org](http://docs.pgrouting.org)
31+
3132

3233
## License
3334

__init__.py

100755100644
Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@
2121
This script initializes the plugin, making it known to QGIS.
2222
"""
2323

24-
def name():
25-
return "pgRouting Layer"
26-
def description():
27-
return "Dockable widget that adds pgRouting layers"
28-
def version():
29-
return "Version 0.1"
30-
def icon():
31-
return "icon.png"
32-
def qgisMinimumVersion():
33-
return "1.7"
3424

3525
def classFactory(iface):
3626
from pgRoutingLayer.pgRoutingLayer import PgRoutingLayer

builddoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
rm -fR site
33
mkdocs gh-deploy --clean
4-
rm -fR site
4+
#rm -fR site

0 commit comments

Comments
 (0)