|
1 | | -""" |
2 | | -/*************************************************************************** |
3 | | - pgRouting Layer |
4 | | - a QGIS plugin |
5 | | -
|
6 | | - based on "Fast SQL Layer" plugin Copyright 2011 Pablo Torres Carreira |
7 | | - ------------------- |
8 | | - begin : 2011-11-25 |
9 | | - copyright : (c) 2011 by Anita Graser |
10 | | - |
11 | | - ***************************************************************************/ |
12 | | -
|
13 | | -/*************************************************************************** |
14 | | - * * |
15 | | - * This program is free software; you can redistribute it and/or modify * |
16 | | - * it under the terms of the GNU General Public License as published by * |
17 | | - * the Free Software Foundation; either version 2 of the License, or * |
18 | | - * (at your option) any later version. * |
19 | | - * * |
20 | | - ***************************************************************************/ |
21 | | - This script initializes the plugin, making it known to QGIS. |
22 | | -""" |
23 | | - |
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# /*PGR-GNU***************************************************************** |
| 3 | +# File: __init__.py |
| 4 | +# |
| 5 | +# Copyright (c) 2011~2019 pgRouting developers |
| 6 | + |
| 7 | +# |
| 8 | +# Developer's GitHub nickname: |
| 9 | +# - AasheeshT |
| 10 | +# - cayetanobv |
| 11 | +# - cvvergara |
| 12 | +# - anitagraser |
| 13 | +# ------ |
| 14 | +# |
| 15 | +# This program is free software; you can redistribute it and/or modify |
| 16 | +# it under the terms of the GNU General Public License as published by |
| 17 | +# the Free Software Foundation; either version 2 of the License, or |
| 18 | +# (at your option) any later version. |
| 19 | +# This program is distributed in the hope that it will be useful, |
| 20 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | +# GNU General Public License for more details. |
| 23 | +# You should have received a copy of the GNU General Public License |
| 24 | +# along with this program; if not, write to the Free Software |
| 25 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 26 | +# ********************************************************************PGR-GNU*/ |
24 | 27 |
|
25 | 28 | def classFactory(iface): |
26 | 29 | from pgRoutingLayer.pgRoutingLayer import PgRoutingLayer |
|
0 commit comments