-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearthsunmoonprocessing.py
36 lines (32 loc) · 1.41 KB
/
earthsunmoonprocessing.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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* 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 *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from qgis.core import QgsApplication
# Check to see if the TimeZoneFinder and Skyfield libraries are installed
try:
from timezonefinder import TimezoneFinder
from skyfield.api import wgs84
from jplephem.spk import SPK
from .provider import EarthSunMoonProvider
except Exception:
# traceback.print_exc()
from .provider_limited import EarthSunMoonProvider
class EarthSunMoon(object):
def __init__(self):
self.provider = None
def initProcessing(self):
self.provider = EarthSunMoonProvider()
QgsApplication.processingRegistry().addProvider(self.provider)
def initGui(self):
self.initProcessing()
def unload(self):
if self.provider:
QgsApplication.processingRegistry().removeProvider(self.provider)