This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
windows:export:export_revamp_2018_desktop [2018/03/27 22:47] mikeclapp [Interface Flow] |
windows:export:export_revamp_2018_desktop [2019/05/10 18:04] (current) mikeclapp [The Gory details of File types] |
||
---|---|---|---|
Line 90: | Line 90: | ||
This [[https://agtek.s3.amazonaws.com/Agtek/GvmUwAKTHCC9]] is an example of an ESW files and the corresponding Benchmarks | This [[https://agtek.s3.amazonaws.com/Agtek/GvmUwAKTHCC9]] is an example of an ESW files and the corresponding Benchmarks | ||
+ | === 3D Robotics === | ||
+ | Format appears to be id, N, E, Elev, description | ||
+ | Example file from Finn here | ||
+ | [[https://agtek.s3.amazonaws.com/Agtek/QoRG7negGHfp|Finn 3DR GCPs.csv]] | ||
+ | It looks like this and doesn't appear to have any units or epsg code denoted. | ||
- | === 3D Robotics === | + | <code> |
+ | id,y,x,z,desc | ||
+ | 1,2060782.351,6208986.530,686.085,2nd post front pasture | ||
+ | 2,2060876.751,6209378.817,685.938,back fence middle | ||
+ | 3,2060784.468,6209349.729,686.458,back corner pasture | ||
+ | 4,2060758.539,6209105.127,687.446,drive edge gcp | ||
+ | 5,2060990.909,6209069.614,683.929,garden spigot | ||
+ | 6,2060976.870,6208603.695,682.760,oak knoll | ||
+ | 7,2061015.191,6208258.803,662.535,front n wood post | ||
+ | 8,2060830.730,6208451.338,667.460,center high front s pasture | ||
+ | </code> | ||
+ | === DroneDeploy === | ||
+ | Format appears to be GCP label, N, E, Elevation with the units in the header as (ft) or (m) | ||
+ | Example file from Finn here | ||
+ | [[https://agtek.s3.amazonaws.com/Agtek/V6Ld5Q2r0urS|Finn DD GCP.csv]] | ||
- | + | <code> | |
- | === DroneDeploy === | + | GCP Label,Northing,Easting,Elevation (ft) |
+ | 1,2060782.351,6208986.530,686.085 | ||
+ | 2,2060876.751,6209378.817,685.938 | ||
+ | 3,2060784.468,6209349.729,686.458 | ||
+ | 4,2060758.539,6209105.127,687.446 | ||
+ | 5,2060990.909,6209069.614,683.929 | ||
+ | 6,2060976.870,6208603.695,682.760 | ||
+ | 7,2061015.191,6208258.803,662.535 | ||
+ | 8,2060830.730,6208451.338,667.460 | ||
+ | </code> | ||
Line 114: | Line 141: | ||
=== PhotoModeler === | === PhotoModeler === | ||
+ | Photomodeler appears like it's going to be the most difficult because LL is neither required or necessarily accurate depending on the source. They appear to use Lat, Long instead of NE specified in decimal degrees and the default delimiter is a space. We'll need to error check that we actually have LL on the benchmarks before allowing export but it does nothing to ensure they are correct. We could take it a step further and calculate LL on those BM based on what we know but I'm hesitant to do so. | ||
+ | [[https://agtek.s3.amazonaws.com/Agtek/FxhV7Z9V1PUY|Finn PM GCP.csv]] | ||
+ | |||
+ | <code> | ||
+ | 37.6482 -121.71821 686.085 | ||
+ | 37.64847 -121.71686 685.938 | ||
+ | 37.64822 -121.71696 686.458 | ||
+ | 37.64814 -121.7178 687.446 | ||
+ | 37.64878 -121.71793 683.929 | ||
+ | 37.64872 -121.71954 682.760 | ||
+ | 37.64881 -121.72073 662.535 | ||
+ | 37.64831 -121.72006 667.460 | ||
+ | </code> | ||
=== Pix 4D === | === Pix 4D === | ||
+ | |||
+ | Pix 4D can read files as x,y,z or y,x,z but the former is the default and what I'd suggest we write. | ||
+ | |||
+ | Format appears to be Easting, Northing, Elevation with no header or units | ||
+ | |||
+ | |||
+ | Example file from Finn here | ||
+ | |||
+ | [[https://agtek.s3.amazonaws.com/Agtek/LXAT8mIKeSdF|Finn pix GCP.csv]] | ||
+ | |||
+ | |||
+ | <code> | ||
+ | label1, 6208986.530,2060782.351,686.085 | ||
+ | label2,6209378.817,2060876.751,685.938 | ||
+ | label3,6209349.729,2060784.468,686.458 | ||
+ | label4,6209105.127,2060758.539,687.446 | ||
+ | label5,6209069.614,2060990.909,683.929 | ||
+ | label6,6208603.695,2060976.870,682.760 | ||
+ | label7,6208258.803,2061015.191,662.535 | ||
+ | label8,6208451.338,2060830.730,667.460 | ||
+ | </code> | ||
+ | |||
+ | In the event there is no label, start numbering as the label | ||