Loop set up (RINEX / sp3 files) #132
-
Hello I am running the “Prepare Leo Data” script for a cubesat mission and have a question with regards to running the loop program and best way to set the script up. I have converted the RINEX files (see below example) with gfzrnx to daily files with some of them not having a 0000 time portion (i.e. 0100 time stamp) in the file name. So, if I run the loop program with 1 day I will miss the ones that are not 0000. Is there another way to run the loop program to find all the different files without having to do steps in seconds (like a wildcard option)? Txs for the help BR SP3 file structure RINEX file structure |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Dear Jean, Wildcard options are not supported as there is no system independent supporting c++ standard at the moment. But with a trick it is possible: Add in your temporal LoopProgram another LoopProgram with the loop->commandOutput. This command must return the filename. The Linux command looks like regards |
Beta Was this translation helpful? Give feedback.
-
Dear Torsten Txs for the feedback. I will try out your "trick" Cheers |
Beta Was this translation helpful? Give feedback.
Dear Jean,
Wildcard options are not supported as there is no system independent supporting c++ standard at the moment.
But with a trick it is possible: Add in your temporal LoopProgram another LoopProgram with the loop->commandOutput. This command must return the filename. The Linux command looks like
ls -1 Sat_{loopTime:%D}T*.sp3
, with Windows likedir /B Sat_{loopTime:%D}T*.sp3
.regards
Torsten