-
Notifications
You must be signed in to change notification settings - Fork 0
/
_solpos.pyi
77 lines (75 loc) · 1.35 KB
/
_solpos.pyi
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from typing import TypedDict
class D(TypedDict):
year: int
month: int
day: int
hour: int
minute: int
second: float
timezone: float
interval: int
latitude: float
longitude: float
amass: float
ampress: float
aspect: float
azim: float
cosinc: float
coszen: float
dayang: float
declin: float
eclong: float
ecobli: float
ectime: float
elevetr: float
elevref: float
eqntim: float
erv: float
etr: float
etrn: float
etrtilt: float
gmst: float
hrang: float
julday: float
lmst: float
mnanom: float
mnlong: float
rascen: float
press: float
prime: float
sbcf: float
sbwid: float
sbrad: float
sbsky: float
solcon: float
ssha: float
sretr: float
ssetr: float
temp: float
tilt: float
tst: float
tstfix: float
unprime: float
utime: float
zenetr: float
zenref: float
def _solpos(
year: int,
month: int,
day: int,
hour: int,
minute: int,
second: int,
timezone: float,
latitude: float,
longitude: float,
interval: int,
aspect: float,
press: float,
sbwid: float,
sbrad: float,
sbsky: float,
solcon: float,
temp: float,
tilt: float,
) -> D: ...