Coverage for pygeodesy/auxilats/__init__.py: 100%
9 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-08-28 15:52 -0400
« prev ^ index » next coverage.py v7.2.2, created at 2023-08-28 15:52 -0400
2# -*- coding: utf-8 -*-
4u'''Classes L{AuxAngle}, L{AuxDLat}, L{AuxDST} and L{AuxLat} transcoded to Python from I{Karney}'s
5C++ class U{AuxAngle<https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1AuxAngle.html>},
6U{DAuxLatitude<https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1DAuxLatitude.html>},
7U{DST<https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1DST.html>}, repectively
8U{AuxLatitude<https://GeographicLib.SourceForge.io/C++/doc/classGeographicLib_1_1AuxLatitude.html>} all
9in I{GeographicLib version 2.2+}.
11Copyright (C) U{Charles Karney<mailto:Karney@Alum.MIT.edu>} (2022-2023) and licensed under the MIT/X11
12License. For more information, see the U{GeographicLib<https://GeographicLib.SourceForge.io>} documentation.
14@note: Class L{AuxDST} requires package U{numpy<https://PyPI.org/project/numpy>} to be installed,
15 version 1.16 or newer and needed for I{exact} area calculations.
17@see: U{Auxiliary latitudes<https:#GeographicLib.SourceForge.io/C++/doc/auxlat.html>}
18 U{On auxiliary latitudes<https:#ArXiv.org/abs/2212.05818>}.
19'''
21from pygeodesy.auxilats.auxAngle import AuxAngle, AuxBeta, AuxChi, AuxMu, \
22 AuxPhi, AuxTheta, AuxXi # PYCHOK exported
23from pygeodesy.auxilats.auxDLat import AuxDLat # PYCHOK exported
24from pygeodesy.auxilats.auxDST import AuxDST # PYCHOK exported
25from pygeodesy.auxilats.auxily import Aux # PYCHOK exported
26from pygeodesy.auxilats.auxLat import AuxLat # PYCHOK exported
27from pygeodesy.lazily import _ALL_OTHER
29__all__ = _ALL_OTHER(Aux, AuxAngle, AuxDLat, AuxDST, AuxLat,
30 AuxBeta, AuxChi, AuxMu, AuxPhi, AuxTheta, AuxXi)
31__version__ = '23.08.22'
33# **) MIT License
34#
35# Copyright (C) 2023-2023 -- mrJean1 at Gmail -- All Rights Reserved.
36#
37# Permission is hereby granted, free of charge, to any person obtaining a
38# copy of this software and associated documentation files (the "Software"),
39# to deal in the Software without restriction, including without limitation
40# the rights to use, copy, modify, merge, publish, distribute, sublicense,
41# and/or sell copies of the Software, and to permit persons to whom the
42# Software is furnished to do so, subject to the following conditions:
43#
44# The above copyright notice and this permission notice shall be included
45# in all copies or substantial portions of the Software.
46#
47# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
48# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
50# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
51# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
52# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
53# OTHER DEALINGS IN THE SOFTWARE.