Coverage for pyrdnap/v2grid/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2026-05-09 18:20 -0400

1 

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

3 

4u'''Variant 2 grid files, but B{only} columns C{NAP_h_...}, C{lat_corr_} and 

5C{lon_corr_} of the original C{RDNAPTRANS2018_v220627/...2/naptrans2018.txt} 

6and C{...2/rdtrans2018.txt} grid files and encoded into Python as 3 row-order 

7matrices, each a 481-tuple of 301-arrays of floats. 

8 

9The combined size of these 3 grid files is 4 MB vs 9.8 MB for the original 2. 

10''' 

11from pyrdnap.v2grid.naptrans2018_txt_NAP_h import _NAP_h # noqa: F401 

12from pyrdnap.v2grid.rdtrans2018_txt_lat_corr import _lat_corr # noqa: F401 

13from pyrdnap.v2grid.rdtrans2018_txt_lon_corr import _lon_corr # noqa: F401 

14 

15__all__ = () 

16__version__ = '26.05.08'