forked from All4Gis/EquirectangularViewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
39 lines (35 loc) · 1.57 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
"""
/***************************************************************************
PhotoViewer360
A QGIS plugin
Show local equirectangular images.
-------------------
begin : 2017-02-17
copyright : (C) 2016 All4Gis.
email : [email protected]
edited by : EnviroSolutions Sp z o.o.
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
# any later version. *
* *
***************************************************************************/
"""
import sys, os
try:
sys.path.append("C:\eclipse\plugins\org.python.pydev.core_8.3.0.202104101217\pysrc")
sys.path.append(
"/home/fragalop/eclipse/plugins/org.python.pydev.core_8.3.0.202104101217/pysrc"
)
from pydevd import *
except ImportError:
None
plugin_dir = os.path.dirname(__file__)
def classFactory(iface):
from .Geo360 import Geo360
return Geo360(iface)