Skip to content

Commit c319442

Browse files
author
Cloud User
committed
Refine doc string for writeSINEX()
1 parent dab9b3c commit c319442

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

geodepy/gnss.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,15 +1334,12 @@ def writeSINEX(fp,
13341334
siteEccentricity=None,
13351335
solutionApriori=None,
13361336
solutionMatrixApriori=None):
1337-
"""This function writes out SINEX blocks to new SINEX file. The
1337+
"""This function writes out SINEX blocks to a new SINEX file. The
13381338
SINEX blocks can be obtained from many of the read_sinex_...()
13391339
functions when writing the same input to output. Or can use the
13401340
dataframe2sinex_...() functions when SINEX manipulations have
1341-
occurred on that specific block. An argument can be set to 'None'
1342-
if user does not want to write that block to file. This helps when
1343-
user has used read_sinex_custom() which may have included multiple
1344-
blocks and prevents writing the same block out twice, by skipping
1345-
that input argument.
1341+
occurred on that specific block. Input arguments are set to 'None'
1342+
by default. This allows user to only write out the required blocks.
13461343
13471344
Parameters:
13481345
fp (string): Full filepath to output SINEX.
@@ -1921,4 +1918,4 @@ def remove_matrixzeros_sinex(sinex):
19211918
# Write out the trailer line
19221919
out.write('%ENDSNX\n')
19231920

1924-
return
1921+
return

0 commit comments

Comments
 (0)