├── .gitignore ├── D800_res.py ├── README.md ├── agisoft_all.py ├── bh_plot.py ├── cam_comparison_planning.py ├── dji_alt_adjust.py ├── dji_relalt2hae.sh ├── emlid_survey_instant2average.py ├── emlid_survey_update.py ├── exif2gpslog.sh ├── exif_msl2hae.sh ├── flytrex2gpslog.sh ├── flytrex_batch.sh ├── fmt ├── gpx.fmt └── kml.fmt ├── gps_msl2hae_csv.py ├── gpslog2exif.sh ├── mavic_proc.sh ├── movie_preview.sh ├── nex5_nadir.py ├── old ├── import_D800.csh ├── import_timelapse.sh ├── process_D800.sh └── timelapse.sh ├── px4_dflog_gps2utc.py ├── px4_get_sdlog.sh ├── px4_tlog_gps2utc.sh ├── rtklib_pos_stats.py ├── sdlog2_dump.py ├── sdlog2_dump_solo.py ├── sfm_shp2exif.csh └── solo_getlogs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /D800_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/D800_res.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/README.md -------------------------------------------------------------------------------- /agisoft_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/agisoft_all.py -------------------------------------------------------------------------------- /bh_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/bh_plot.py -------------------------------------------------------------------------------- /cam_comparison_planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/cam_comparison_planning.py -------------------------------------------------------------------------------- /dji_alt_adjust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/dji_alt_adjust.py -------------------------------------------------------------------------------- /dji_relalt2hae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/dji_relalt2hae.sh -------------------------------------------------------------------------------- /emlid_survey_instant2average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/emlid_survey_instant2average.py -------------------------------------------------------------------------------- /emlid_survey_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/emlid_survey_update.py -------------------------------------------------------------------------------- /exif2gpslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/exif2gpslog.sh -------------------------------------------------------------------------------- /exif_msl2hae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/exif_msl2hae.sh -------------------------------------------------------------------------------- /flytrex2gpslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/flytrex2gpslog.sh -------------------------------------------------------------------------------- /flytrex_batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/flytrex_batch.sh -------------------------------------------------------------------------------- /fmt/gpx.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/fmt/gpx.fmt -------------------------------------------------------------------------------- /fmt/kml.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/fmt/kml.fmt -------------------------------------------------------------------------------- /gps_msl2hae_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/gps_msl2hae_csv.py -------------------------------------------------------------------------------- /gpslog2exif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/gpslog2exif.sh -------------------------------------------------------------------------------- /mavic_proc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/mavic_proc.sh -------------------------------------------------------------------------------- /movie_preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/movie_preview.sh -------------------------------------------------------------------------------- /nex5_nadir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/nex5_nadir.py -------------------------------------------------------------------------------- /old/import_D800.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/old/import_D800.csh -------------------------------------------------------------------------------- /old/import_timelapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/old/import_timelapse.sh -------------------------------------------------------------------------------- /old/process_D800.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/old/process_D800.sh -------------------------------------------------------------------------------- /old/timelapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/old/timelapse.sh -------------------------------------------------------------------------------- /px4_dflog_gps2utc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/px4_dflog_gps2utc.py -------------------------------------------------------------------------------- /px4_get_sdlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/px4_get_sdlog.sh -------------------------------------------------------------------------------- /px4_tlog_gps2utc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/px4_tlog_gps2utc.sh -------------------------------------------------------------------------------- /rtklib_pos_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/rtklib_pos_stats.py -------------------------------------------------------------------------------- /sdlog2_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/sdlog2_dump.py -------------------------------------------------------------------------------- /sdlog2_dump_solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/sdlog2_dump_solo.py -------------------------------------------------------------------------------- /sfm_shp2exif.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/sfm_shp2exif.csh -------------------------------------------------------------------------------- /solo_getlogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshean/sfm_tools/HEAD/solo_getlogs.sh --------------------------------------------------------------------------------