Coverage for pygeodesy/deprecated/bases.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-04-25 13:15 -0400

1 

2# -*- coding: utf-8 -*- 

3 

4u'''DEPRECATED on 2021.02.10, use (INTERNAL) module L{pygeodesy.latlonBase} instead. 

5''' 

6 

7from pygeodesy.iters import points2 # PYCHOK exported 

8from pygeodesy.latlonBase import LatLonBase as _LatLonBase 

9from pygeodesy.lazily import _ALL_DEPRECATED 

10 

11__all__ = _ALL_DEPRECATED.deprecated_bases 

12__version__ = '25.04.09' 

13 

14 

15class LatLonHeightBase(_LatLonBase): # PYCHOK no cover 

16 '''DEPRECATED on 2021.02.10, use (INTERNAL) class L{pygeodesy.latlonBase.LatLonBase}.''' 

17 pass 

18 

19 

20# **) MIT License 

21# 

22# Copyright (C) 2016-2025 -- mrJean1 at Gmail -- All Rights Reserved. 

23# 

24# Permission is hereby granted, free of charge, to any person obtaining a 

25# copy of this software and associated documentation files (the "Software"), 

26# to deal in the Software without restriction, including without limitation 

27# the rights to use, copy, modify, merge, publish, distribute, sublicense, 

28# and/or sell copies of the Software, and to permit persons to whom the 

29# Software is furnished to do so, subject to the following conditions: 

30# 

31# The above copyright notice and this permission notice shall be included 

32# in all copies or substantial portions of the Software. 

33# 

34# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 

35# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 

36# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 

37# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 

38# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 

39# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 

40# OTHER DEALINGS IN THE SOFTWARE.