Skip to content

Commit 48e6d6d

Browse files
committed
Modify scatter
1 parent 3fe25d2 commit 48e6d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Plot/plot_gnss_receiver_pseudorange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
for gps_idx in range(32):
5454
gps_str = 'GPS' + str(gps_idx)
5555
pseudorange = read_scalar_from_csv(read_file_name, gps_str + '_pseudorange[m]')
56-
plt.plot(time[0][1:], pseudorange[0][1:], marker=".", label=gps_str)
56+
plt.scatter(time[0][1:], pseudorange[0][1:], marker=".", label=gps_str)
5757

5858
plt.title("GPS Psuedorange")
5959
plt.xlabel("Time [s]")

0 commit comments

Comments
 (0)