Skip to content

Commit 3a868c0

Browse files
committed
GEarthView 1.0.5
1) vector layer with reprojection 2) OSRM link 3) new "PasteFromGE" function
0 parents  commit 3a868c0

17 files changed

+1983
-0
lines changed

README.txt

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Plugin Builder Results
2+
3+
Your plugin gearthview was created in:
4+
\.qgis2\python\plugins\gearthview
5+
6+
Your QGIS plugin directory is located at:
7+
/.qgis2/python/plugins
8+
9+
What's Next:
10+
11+
* Copy the entire directory containing your new plugin to the QGIS plugin
12+
directory
13+
14+
* Compile the ui file using pyuic4
15+
16+
* Compile the resources file using pyrcc4
17+
18+
* Test the plugin by enabling it in the QGIS plugin manager
19+
20+
* Customize it by editing the implementation file:
21+
gearthview.py
22+
23+
* Create your own custom icon, replacing the default icon.png
24+
25+
* Modify your user interface by opening gearthview.ui
26+
in Qt Designer (don't forget to compile it with pyuic4 after changing it)
27+
28+
* You can use the Makefile to compile your Ui and resource files when
29+
you make changes. This requires GNU make (gmake)
30+
31+
For more information, see the PyQGIS Developer Cookbook at:
32+
http://www.qgis.org/pyqgis-cookbook/index.html
33+
34+
(C) 2012 GeoApt LLC - geoapt.com

__init__.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
/***************************************************************************
4+
gearthview
5+
A QGIS plugin
6+
GEarth View
7+
-------------------
8+
begin : 2012-12-14
9+
copyright : (C) 2012 by geodrinx
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+
24+
25+
def name():
26+
return "GEarthView"
27+
28+
29+
def description():
30+
return "GEarth View"
31+
32+
33+
def version():
34+
return "Version 1.0.5"
35+
36+
37+
def icon():
38+
return "icon.png"
39+
40+
41+
def qgisMinimumVersion():
42+
return "2.0"
43+
44+
def author():
45+
return "geodrinx"
46+
47+
def email():
48+
49+
50+
def classFactory(iface):
51+
# load gearthview class from file gearthview
52+
from gearthview import gearthview
53+
return gearthview(iface)

about_icon.png

1.27 KB
Loading

0 commit comments

Comments
 (0)