demiangomez / Parallel.GAMIT

Python wrapper to parallelize GAMIT executions
BSD 3-Clause "New" or "Revised" License
37 stars 19 forks source link

ppp reporting no station info #29

Closed smalleyr closed 5 years ago

smalleyr commented 6 years ago

ppp reports no station info found when database says there is station info. problem arises when station info start/end is to second, or within a second of rinex start end.

demiangomez commented 6 years ago

Please check that you are running the latest version of the code.

demiangomez commented 6 years ago

Found that the problem is in pyScanArchive::hash_check. The station info object is invoked as stninfo = pyStationInfo.StationInfo(cnn, soln['NetworkCode'], soln['StationCode'], pyDate.Date(year=soln['Year'],doy=soln['DOY'])) but should include the time as well. This information is not available in the ppp_soln table so it might be necessary to include a join between ppp_soln and rinex.

demiangomez commented 6 years ago

We need to check all the code for this inconsistency. I think all problems were solved, but we should double check.

demiangomez commented 5 years ago

Mostly solved after new pyStationInfo module.