We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d6adf commit 538de36Copy full SHA for 538de36
geodepy/gnss.py
@@ -586,6 +586,7 @@ def remove_stns_sinex(sinex, sites):
586
num_stns_to_remove += 1
587
del solution_epochs
588
num_params = old_num_params - num_stn_params * num_stns_to_remove
589
+ num_params = '{:05d}'.format(num_params)
590
header = header.replace(str(old_num_params), str(num_params))
591
out.write(header)
592
out.write(separator)
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup
2
3
setup(name='geodepy',
4
- version='0.2.0',
+ version='0.2.1',
5
description='GA Geodesy Package',
6
long_description='A toolkit for Geodesy and Surveying in Python',
7
url='https://github.com/GeoscienceAustralia/GeodePy',
0 commit comments