Skip to content

Commit 3a37dcb

Browse files
author
fedora Cloud User
committed
Minor change in gnss module to account for numpy update
1 parent f76a6d2 commit 3a37dcb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

geodepy/gnss.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -884,8 +884,8 @@ def sinex2dataframe_solution_estimate(fp):
884884
refEpoch = list(zip(*lines))[5]
885885
unit = list(zip(*lines))[6]
886886
s = np.int_(list(zip(*lines))[7])
887-
est = np.float_(list(zip(*lines))[8])
888-
sigma = np.float_(list(zip(*lines))[9])
887+
est = np.float64(list(zip(*lines))[8])
888+
sigma = np.float64(list(zip(*lines))[9])
889889

890890
# Organise into DataFrame
891891
dict_temp = {
@@ -937,8 +937,8 @@ def sinex2dataframe_solution_apriori(fp):
937937
refEpoch = list(zip(*lines))[5]
938938
unit = list(zip(*lines))[6]
939939
s = np.int_(list(zip(*lines))[7])
940-
est = np.float_(list(zip(*lines))[8])
941-
sigma = np.float_(list(zip(*lines))[9])
940+
est = np.float64(list(zip(*lines))[8])
941+
sigma = np.float64(list(zip(*lines))[9])
942942

943943
# Organise into DataFrame
944944
dict_temp = {
@@ -994,9 +994,9 @@ def sinex2dataframe_solution_matrix_estimate(fp):
994994
# Isolate into vectors
995995
row = np.int_(list(zip(*lines))[0])
996996
col = np.int_(list(zip(*lines))[1])
997-
q1 = np.float_(list(zip(*lines))[2])
998-
q2 = np.float_(list(zip(*lines))[3])
999-
q3 = np.float_(list(zip(*lines))[4])
997+
q1 = np.float64(list(zip(*lines))[2])
998+
q2 = np.float64(list(zip(*lines))[3])
999+
q3 = np.float64(list(zip(*lines))[4])
10001000

10011001
# Organise into DataFrame
10021002
dict_temp = {

0 commit comments

Comments
 (0)