pygnss 0.0.0__cp312-cp312-musllinux_1_2_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pygnss might be problematic. Click here for more details.
- pygnss/__init__.py +1 -0
- pygnss/_c_ext/src/hatanaka.c +93 -0
- pygnss/_c_ext/src/helpers.c +17 -0
- pygnss/_c_ext/src/mtable_init.c +44 -0
- pygnss/_c_ext.cpython-312-x86_64-linux-musl.so +0 -0
- pygnss/cl.py +148 -0
- pygnss/constants.py +4 -0
- pygnss/decorator.py +14 -0
- pygnss/file.py +36 -0
- pygnss/geodetic.py +1169 -0
- pygnss/gnss/__init__.py +0 -0
- pygnss/gnss/edit.py +66 -0
- pygnss/gnss/observables.py +43 -0
- pygnss/gnss/residuals.py +43 -0
- pygnss/gnss/types.py +359 -0
- pygnss/hatanaka.py +35 -0
- pygnss/logger.py +70 -0
- pygnss/orbit/__init__.py +0 -0
- pygnss/orbit/kepler.py +63 -0
- pygnss/orbit/tle.py +186 -0
- pygnss/parsers/rtklib/stats.py +166 -0
- pygnss/rinex.py +2161 -0
- pygnss/sinex.py +121 -0
- pygnss/stats.py +75 -0
- pygnss/tensorial.py +50 -0
- pygnss/time.py +350 -0
- pygnss-0.0.0.dist-info/LICENSE +21 -0
- pygnss-0.0.0.dist-info/METADATA +67 -0
- pygnss-0.0.0.dist-info/RECORD +32 -0
- pygnss-0.0.0.dist-info/WHEEL +5 -0
- pygnss-0.0.0.dist-info/entry_points.txt +7 -0
- pygnss-0.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
pygnss/hatanaka.py,sha256=s8XnJ_ZEm3IknBcUQJU5vW5lKRFpLSlhWQDIsRjB3uo,1286
|
|
2
|
+
pygnss/file.py,sha256=kkMBWjoTPkxJD1UgH0mXJT2fxnhU8u7_l2Ph5Xz2-hY,933
|
|
3
|
+
pygnss/rinex.py,sha256=LsOOh3Fc263kkM8KOUBNeMeIAmbOn2ASSBO4rAUJWj8,68783
|
|
4
|
+
pygnss/sinex.py,sha256=nErOmGCFFmGSnmWGNTJhaj3yZ6IIB8GgtW5WPypJc6U,3057
|
|
5
|
+
pygnss/geodetic.py,sha256=gfVsOeEKLn2RaJYpaCk0OrQpYz6QiDPMX6PoJHEaP9Q,34029
|
|
6
|
+
pygnss/cl.py,sha256=ISmd2RjikUMmj3nLPN0VSjvQLG5rLizp2X2ajeBkoDE,4509
|
|
7
|
+
pygnss/tensorial.py,sha256=aA0-0WK2MXhDUg0_8HMbECOt9cXmp3EnKFQXjdYMBXA,1598
|
|
8
|
+
pygnss/time.py,sha256=YdMNs2xA43LrSgEOgB7jpEq0dCWv89fUBF5syDLjbu0,11178
|
|
9
|
+
pygnss/logger.py,sha256=4kvcTWXPoiG-MlyP6B330l4Fu7MfCuDjuIlIiLA8f1Y,1479
|
|
10
|
+
pygnss/decorator.py,sha256=ldlZuvwuIlJf2pkoWteyXyp5tLds8KRkphrPsrURw9U,491
|
|
11
|
+
pygnss/stats.py,sha256=mDiY0K-VTndlFEkbxTzq9PYxCOjYDYsY3ZQV0PuMREM,1924
|
|
12
|
+
pygnss/__init__.py,sha256=kqNjnl7YXGORXgTq6AGjciR3wyP40hUkDUUWEKArWg0,23
|
|
13
|
+
pygnss/_c_ext.cpython-312-x86_64-linux-musl.so,sha256=zvtFblNUzEfM1HWk6LGCodusNEoDeQ0eZr0xG1zDhPE,82584
|
|
14
|
+
pygnss/constants.py,sha256=1hF6K92X6E6Ofo0rAuCBCgrwln9jxio26RV2a6vyURk,133
|
|
15
|
+
pygnss/_c_ext/src/mtable_init.c,sha256=5w869E6PX-ca9UHhKBxLFRW694-VaNwGlMs0I5v99mk,1132
|
|
16
|
+
pygnss/_c_ext/src/hatanaka.c,sha256=IhQa7s2bwNCVb8ARxmhFDdJ8VzitN2-cpMlCMqRD8Wk,2445
|
|
17
|
+
pygnss/_c_ext/src/helpers.c,sha256=gINr73ktRgox_S7fYdFR58lLqAUACRpJfog4M5BW1-Q,364
|
|
18
|
+
pygnss/parsers/rtklib/stats.py,sha256=YV6yadxMeQMQYZvsUCaSf4ZTpK8Bbv3f2xgu0l4PekA,5449
|
|
19
|
+
pygnss/orbit/kepler.py,sha256=QORTgg5yBtsQXxLWSzoZ1pmh-CwPiZlFdIYqhQhv1a0,1745
|
|
20
|
+
pygnss/orbit/tle.py,sha256=6CIEielPgui3DXNv46XxOGlig31ROIwjH42xLGaeE5M,5905
|
|
21
|
+
pygnss/orbit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
pygnss/gnss/types.py,sha256=lmL15KRckRiTwVkYvGzF4c1BrojnQlegrYCXSz1hGaI,10377
|
|
23
|
+
pygnss/gnss/residuals.py,sha256=8qKGNOYkrqxHGOSjIfH21K82PAqEh2068kf78j5usL8,1244
|
|
24
|
+
pygnss/gnss/edit.py,sha256=T1r0WbJmt8tLJpG_IIsy4Atej6cy0IStBaSGxw0S5ho,1884
|
|
25
|
+
pygnss/gnss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
+
pygnss/gnss/observables.py,sha256=0x0NLkTjxf8cO9F_f_Q1b-1hEeoNjWB2x-53ecUEv0M,1656
|
|
27
|
+
pygnss-0.0.0.dist-info/LICENSE,sha256=Wwany6RAAZ9vVHjFLA9KBJ0HE77d52s2NOUA1CPAEug,1067
|
|
28
|
+
pygnss-0.0.0.dist-info/WHEEL,sha256=c9GU1jhDUn7S-APtjPhve05mT2FAOW_4NMGdpCIyIBM,112
|
|
29
|
+
pygnss-0.0.0.dist-info/RECORD,,
|
|
30
|
+
pygnss-0.0.0.dist-info/top_level.txt,sha256=oZRSR-qOv98VW2PRRMGCVNCJmewcJjyJYmxzxfeimtg,7
|
|
31
|
+
pygnss-0.0.0.dist-info/entry_points.txt,sha256=mCuKrljB_wh9ZQVROiId9m68EDbTiY1oef_L1N3IDDA,262
|
|
32
|
+
pygnss-0.0.0.dist-info/METADATA,sha256=YF7XWtna8m2cXXvvLI6FdUiXjZjUzpH9WTjPnsUqAns,2240
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
cl = pygnss.cl:entry_point
|
|
3
|
+
compute_cdf = pygnss.stats:cdf_cli
|
|
4
|
+
merge_rinex_nav = pygnss.rinex:merge_nav_cli
|
|
5
|
+
rinex_from_file = pygnss.rinex:rinex_from_file
|
|
6
|
+
rinex_to_parquet = pygnss.rinex:rinex_to_parquet
|
|
7
|
+
tensorial = pygnss.tensorial:entry_point
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pygnss
|