GeoscienceAustralia / ginan

The Australian Government, through Positioning Australia (part of Geoscience Australia), is funding the design, development and operational service of a Global Navigation Satellite System (GNSS) position correction system - the Ginan service and toolkit. The application of the Ginan correction service by a GNSS device has the potential to increase positioning accuracy from meters to centimetres across Australia. The suite of software systems in this repository (the Ginan toolkit) will be used to create the service. It is available now under an open source licence. Ginan will give individuals and organisations no-cost access to the Ginan software and service as a public good.
https://geoscienceaustralia.github.io/ginan/
Other
207 stars 95 forks source link

Add \n to SOLUTION/EPOCHS output in sinex file #70

Closed aclel closed 3 months ago

aclel commented 3 months ago

Without the newline char, the terminating "-SOLUTION/EPOCHS" ends up in the last epoch line, rather than a line of its own. This causes parsing to fail when importing with DynAdjust. With the addition of the newline char, DynAdjust is able to parse the sinex file without issue.

Before:

+SOLUTION/EPOCHS
 R591  A    0 -24: 63:84042 24: 64:84042 24: 64:40842-SOLUTION/EPOCHS

After:

+SOLUTION/EPOCHS
 R591  A    0 - 24: 63:84042 24: 64:84042 24: 64:40842
-SOLUTION/EPOCHS