fklosowski

Results 4 comments of fklosowski

Well, thank you for your comment. And I want to say also thank you for your work. Yes, this workaround could be fine but after testing, I think that the...

I succefully added Leica DBX support to my GPS analytics application using printfpc and frt file. Trimble has very similar soultion as well, so at this point my python application...

I have many samples but only GPS survey inside, no TPS data. In regards of adding support for Leica DBX or Trimble job proprietary formats, it is possible only for...

```def trimble_job_to_csv(f): outpath = './_app_files/csv_outputs/jobcsv.txt' xslpath = './_app_files/WGS84 format.xsl' fpath = Path(f).suffix print os.path.abspath(f), os.path.abspath(xslpath), os.path.abspath(outpath) if fpath == '.jxl': print 'Trying to process Trimble Job JXL file' if fpath...