Skip to content

Commit 4bcf825

Browse files
committed
row map not column map
1 parent b8a8954 commit 4bcf825

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

gnss_lib_py/parsers/android.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def filter_raw_measurements(self,t_rx_secs):
389389

390390
@staticmethod
391391
def _row_map():
392-
"""Map of column names from loaded to gnss_lib_py standard
392+
"""Map of row names from loaded to gnss_lib_py standard
393393
394394
Returns
395395
-------
@@ -489,7 +489,7 @@ def postprocess(self):
489489

490490
@staticmethod
491491
def _row_map():
492-
"""Map of column names from loaded to gnss_lib_py standard
492+
"""Map of row names from loaded to gnss_lib_py standard
493493
494494
Returns
495495
-------
@@ -601,7 +601,7 @@ def postprocess(self):
601601
self["gps_millis"] = unix_to_gps_millis(self["unix_millis"])
602602

603603
def _row_map(self):
604-
"""Map of column names from loaded to gnss_lib_py standard
604+
"""Map of row names from loaded to gnss_lib_py standard
605605
606606
Returns
607607
-------
@@ -638,7 +638,7 @@ def __init__(self, input_path):
638638
super().__init__(input_path, sensor_fields=sensor_fields)
639639

640640
def _row_map(self):
641-
"""Map of column names from loaded to gnss_lib_py standard
641+
"""Map of row names from loaded to gnss_lib_py standard
642642
643643
Returns
644644
-------
@@ -675,7 +675,7 @@ def __init__(self, input_path):
675675
super().__init__(input_path, sensor_fields=sensor_fields)
676676

677677
def _row_map(self):
678-
"""Map of column names from loaded to gnss_lib_py standard
678+
"""Map of row names from loaded to gnss_lib_py standard
679679
680680
Returns
681681
-------
@@ -712,7 +712,7 @@ def __init__(self, input_path):
712712
super().__init__(input_path, sensor_fields=sensor_fields)
713713

714714
def _row_map(self):
715-
"""Map of column names from loaded to gnss_lib_py standard
715+
"""Map of row names from loaded to gnss_lib_py standard
716716
717717
Returns
718718
-------

gnss_lib_py/parsers/navdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1456,7 +1456,7 @@ def _parse_key_idx(self, key_idx):
14561456

14571457
@staticmethod
14581458
def _row_map():
1459-
"""Map of column names from loaded to gnss_lib_py standard
1459+
"""Map of row names from loaded to gnss_lib_py standard
14601460
14611461
Initializes as an emptry dictionary, must be reimplemented for
14621462
custom parsers.

gnss_lib_py/parsers/smartloc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def postprocess(self):
7777

7878
@staticmethod
7979
def _row_map():
80-
"""Map of column names from loaded to gnss_lib_py standard
80+
"""Map of row names from loaded to gnss_lib_py standard
8181
8282
Returns
8383
-------

notebooks/tutorials/parsers.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@
893893
"\n",
894894
"@staticmethod\n",
895895
"def _row_map():\n",
896-
" \"\"\"Map of column names from loaded to gnss_lib_py standard\n",
896+
" \"\"\"Map of row names from loaded to gnss_lib_py standard\n",
897897
"\n",
898898
" Returns\n",
899899
" -------\n",
@@ -978,7 +978,7 @@
978978
"\n",
979979
" @staticmethod\n",
980980
" def _row_map():\n",
981-
" \"\"\"Map of column names from loaded to gnss_lib_py standard\n",
981+
" \"\"\"Map of row names from loaded to gnss_lib_py standard\n",
982982
"\n",
983983
" Returns\n",
984984
" -------\n",

0 commit comments

Comments
 (0)