pygnss 0.2.0__py3-none-any.whl → 0.3.0__py3-none-any.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 CHANGED
@@ -1 +1 @@
1
- __version__ = "0.1.0"
1
+ __version__ = "0.3.0"
pygnss/constants.py ADDED
@@ -0,0 +1,4 @@
1
+ SPEED_OF_LIGHT = 299792458 # in vacuum [m/s]
2
+
3
+ EARTH_GRAVITATION_PARAM_MU = 3.986005e14
4
+ EARTH_ROTATION_RATE = 7.2921151466999996e-05
pygnss/gnss/types.py CHANGED
@@ -2,7 +2,7 @@ from enum import Enum
2
2
  from dataclasses import dataclass
3
3
  from typing import List
4
4
 
5
- from roktools.constants import SPEED_OF_LIGHT
5
+ from ..constants import SPEED_OF_LIGHT
6
6
  from roktools.decorator import deprecated
7
7
 
8
8
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pygnss
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Package with utilities for GNSS data processing
5
5
  Author: Miquel Garcia
6
6
  Author-email: miquel.garcia@rokubun.cat
@@ -0,0 +1,11 @@
1
+ pygnss/__init__.py,sha256=VrXpHDu3erkzwl_WXrqINBm9xWkcyUy53IQOj042dOs,22
2
+ pygnss/constants.py,sha256=1hF6K92X6E6Ofo0rAuCBCgrwln9jxio26RV2a6vyURk,133
3
+ pygnss/gnss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ pygnss/gnss/edit.py,sha256=YcCKJZyyDjR7iX8uJ5z7dmajNY6mNqrmDuX0N741tPs,1877
5
+ pygnss/gnss/observables.py,sha256=TsM6_u51PTZamat_dUysg6fchfVX9eJ3A3C27bbhEC0,1643
6
+ pygnss/gnss/types.py,sha256=AqnP6KKuEL-1pQgEP-rDg1xUf_kAoJVLg7A4gR6599Y,9498
7
+ pygnss/helpers.py,sha256=cXbogBg7U3QY06eR80FQ4DTEmeu-NH-BijIIbi0iX1Q,561
8
+ pygnss-0.3.0.dist-info/LICENSE,sha256=1zfF0G6hMAEdsZfmxhznzXDlfGfX8KXeEGIVvyhzbZQ,1064
9
+ pygnss-0.3.0.dist-info/METADATA,sha256=h6VcxC5RwpGcdEfxwzx_eKQBfKnkfiEpksbYkByIRCM,721
10
+ pygnss-0.3.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
11
+ pygnss-0.3.0.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- pygnss/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
2
- pygnss/gnss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- pygnss/gnss/edit.py,sha256=YcCKJZyyDjR7iX8uJ5z7dmajNY6mNqrmDuX0N741tPs,1877
4
- pygnss/gnss/observables.py,sha256=TsM6_u51PTZamat_dUysg6fchfVX9eJ3A3C27bbhEC0,1643
5
- pygnss/gnss/types.py,sha256=j782g6gl7sD4FLzX_UQydrXFBonHa0qVoZ9EIOJ_-7o,9505
6
- pygnss/helpers.py,sha256=cXbogBg7U3QY06eR80FQ4DTEmeu-NH-BijIIbi0iX1Q,561
7
- pygnss-0.2.0.dist-info/LICENSE,sha256=1zfF0G6hMAEdsZfmxhznzXDlfGfX8KXeEGIVvyhzbZQ,1064
8
- pygnss-0.2.0.dist-info/METADATA,sha256=S3YNmPa5XJsi_ghVn6Fb-fypT3zwZ7LftBaiLMuoc_U,721
9
- pygnss-0.2.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
10
- pygnss-0.2.0.dist-info/RECORD,,
File without changes