Coverage for pygeodesy/deprecated/bases.py: 100%
6 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-11-12 13:23 -0500
« prev ^ index » next coverage.py v7.2.2, created at 2023-11-12 13:23 -0500
2# -*- coding: utf-8 -*-
4u'''DEPRECATED, use module L{latlonBase} instead.
5'''
7from pygeodesy.iters import points2 # PYCHOK exported
8from pygeodesy.latlonBase import LatLonBase as LatLonHeightBase # PYCHOK exported
9from pygeodesy.lazily import _ALL_DOCS
10# from pygeodesy.props import _deprecated_module
12__all__ = _ALL_DOCS(LatLonHeightBase, points2)
13__version__ = '21.02.10'
15# _deprecated_module(__name__)
17# **) MIT License
18#
19# Copyright (C) 2016-2023 -- mrJean1 at Gmail -- All Rights Reserved.
20#
21# Permission is hereby granted, free of charge, to any person obtaining a
22# copy of this software and associated documentation files (the "Software"),
23# to deal in the Software without restriction, including without limitation
24# the rights to use, copy, modify, merge, publish, distribute, sublicense,
25# and/or sell copies of the Software, and to permit persons to whom the
26# Software is furnished to do so, subject to the following conditions:
27#
28# The above copyright notice and this permission notice shall be included
29# in all copies or substantial portions of the Software.
30#
31# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
32# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
34# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
35# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
36# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
37# OTHER DEALINGS IN THE SOFTWARE.