pyhardisp 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyhardisp/__init__.py
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""
|
|
2
|
+
HARDISP - Tidal Displacement Calculator
|
|
3
|
+
=========================================
|
|
4
|
+
|
|
5
|
+
Derived from IERS Conventions software (2008).
|
|
6
|
+
|
|
7
|
+
Original software:
|
|
8
|
+
Copyright (C) 2008 IERS Conventions Center
|
|
9
|
+
|
|
10
|
+
This file is a Python translation and modified version of the
|
|
11
|
+
original Fortran implementation.
|
|
12
|
+
|
|
13
|
+
Modifications include:
|
|
14
|
+
- Translation from Fortran to Python
|
|
15
|
+
- Refactoring and structural changes
|
|
16
|
+
- Interface redesign
|
|
17
|
+
|
|
18
|
+
See LICENSE_IERS.txt for full license terms.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
from .core import (
|
|
22
|
+
HardispComputer,
|
|
23
|
+
is_leap_year,
|
|
24
|
+
days_before_month,
|
|
25
|
+
julian_date,
|
|
26
|
+
doy_to_ymd,
|
|
27
|
+
earth_time_offset_seconds,
|
|
28
|
+
cublic_spline,
|
|
29
|
+
spline_eval,
|
|
30
|
+
spline_eval_batch,
|
|
31
|
+
calculate_tidal_arguments,
|
|
32
|
+
tidal_frequency_and_phase,
|
|
33
|
+
tidal_frequency_and_phase_batch,
|
|
34
|
+
recursion,
|
|
35
|
+
admittance,
|
|
36
|
+
load_ocean_loading_coefficients,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
__all__ = [
|
|
40
|
+
"HardispComputer",
|
|
41
|
+
"is_leap_year",
|
|
42
|
+
"days_before_month",
|
|
43
|
+
"julian_date",
|
|
44
|
+
"doy_to_ymd",
|
|
45
|
+
"earth_time_offset_seconds",
|
|
46
|
+
"cublic_spline",
|
|
47
|
+
"spline_eval",
|
|
48
|
+
"spline_eval_batch",
|
|
49
|
+
"calculate_tidal_arguments",
|
|
50
|
+
"tidal_frequency_and_phase",
|
|
51
|
+
"tidal_frequency_and_phase_batch",
|
|
52
|
+
"recursion",
|
|
53
|
+
"admittance",
|
|
54
|
+
"load_ocean_loading_coefficients",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
__version__ = "0.2.0"
|