Skip to content

Commit 33ea7aa

Browse files
authored
Update main.py
1 parent 127aa79 commit 33ea7aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from gps_class import GPSVis
22

33
vis = GPSVis(data_path='data.csv',
4-
map_path='map.png',
5-
points=(45.8357, 15.9645, 45.6806, 16.1557))
4+
map_path='map.png', # Path to map downloaded from the OSM.
5+
points=(45.8357, 15.9645, 45.6806, 16.1557)) # Two coordinates of the map (upper left, lower right)
66

7-
vis.create_image(color=(0, 0, 255), width=3)
7+
vis.create_image(color=(0, 0, 255), width=3) # Set the color and the width of the GNSS tracks.
88
vis.plot_map(output='save')
99

10-
print()
10+
print()

0 commit comments

Comments
 (0)