Skip to content

Commit

Permalink
Minor change in gnss module to account for numpy update
Browse files Browse the repository at this point in the history
  • Loading branch information
fedora Cloud User committed Sep 19, 2024
1 parent f76a6d2 commit 3a37dcb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions geodepy/gnss.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,8 +884,8 @@ def sinex2dataframe_solution_estimate(fp):
refEpoch = list(zip(*lines))[5]
unit = list(zip(*lines))[6]
s = np.int_(list(zip(*lines))[7])
est = np.float_(list(zip(*lines))[8])
sigma = np.float_(list(zip(*lines))[9])
est = np.float64(list(zip(*lines))[8])
sigma = np.float64(list(zip(*lines))[9])

# Organise into DataFrame
dict_temp = {
Expand Down Expand Up @@ -937,8 +937,8 @@ def sinex2dataframe_solution_apriori(fp):
refEpoch = list(zip(*lines))[5]
unit = list(zip(*lines))[6]
s = np.int_(list(zip(*lines))[7])
est = np.float_(list(zip(*lines))[8])
sigma = np.float_(list(zip(*lines))[9])
est = np.float64(list(zip(*lines))[8])
sigma = np.float64(list(zip(*lines))[9])

# Organise into DataFrame
dict_temp = {
Expand Down Expand Up @@ -994,9 +994,9 @@ def sinex2dataframe_solution_matrix_estimate(fp):
# Isolate into vectors
row = np.int_(list(zip(*lines))[0])
col = np.int_(list(zip(*lines))[1])
q1 = np.float_(list(zip(*lines))[2])
q2 = np.float_(list(zip(*lines))[3])
q3 = np.float_(list(zip(*lines))[4])
q1 = np.float64(list(zip(*lines))[2])
q2 = np.float64(list(zip(*lines))[3])
q3 = np.float64(list(zip(*lines))[4])

# Organise into DataFrame
dict_temp = {
Expand Down

0 comments on commit 3a37dcb

Please sign in to comment.