Skip to content

Commit

Permalink
Comments in __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
facusapienza21 authored Oct 18, 2023
1 parent c0703e0 commit 646b0a9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions smpsite/smpsite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
"""
Set of tools for the sampling of paleomagnetic data
This includes:
-
This includes the following modules:
- .kappa : Calculation of parameters of the Fisher distribution
- .sampling : Random sampling of paleopoles and samples in the sphere simulating a paleomagnetic study
- .estimate : Estimation of paleopole using Fisher means and secular variation
- .theoretical : Theoretical calculations based on (Sapienza et al 2023)
"""

__version__ = "1.0.0"
__all__ = ["estimate", "sampling", "kappa"]
__all__ = ["estimate", "sampling", "kappa", "theoretical"]

from .kappa import *
from .sampling import *
Expand Down

0 comments on commit 646b0a9

Please sign in to comment.