Skip to content

Commit

Permalink
added empty frequency field
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Feb 25, 2024
1 parent f66fe92 commit df70061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyo2/ssm2/lib/formats/writers/asvp.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _convert_body(self, fmt):
lon_min = int(60 * math.fabs(longitude - int(longitude)))
lon_decimal_min = int(100 * (60 * math.fabs(longitude - int(longitude)) - lon_min))
body += "{0:02d}{1:02d}.{2:02d},{3:s},".format(int(math.fabs(longitude)), lon_min, lon_decimal_min, hem)
body += "0.0,"
body += "0.0,,"
body += "Source: hyo2.soundspeed,"

# calculate checksum, XOR of all bytes after the $
Expand Down

0 comments on commit df70061

Please sign in to comment.