m.transform.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <h2>DESCRIPTION</h2>
  2. <em>m.transform</em> is an utility to compute transformation
  3. based upon GCPs and output error measurements.
  4. <h2>NOTES</h2>
  5. For coordinates given with the <b>input</b> file option or fed from
  6. <tt>stdin</tt>, the input format is "x y" with one coordinate pair per
  7. line.
  8. <p>The transformations are:
  9. <p>order=1:
  10. <div class="code"><pre>
  11. e = [E0 E1][1].[1]
  12. [E2 0][e] [n]
  13. n = [N0 N1][1].[1]
  14. [N2 0][e] [n]
  15. </pre></div>
  16. order=2:
  17. <div class="code"><pre>
  18. e = [E0 E1 E3][1 ] [1 ]
  19. [E2 E4 0][e ].[n ]
  20. [E5 0 0][e&sup2;] [n&sup2;]
  21. n = [N0 N1 N3][1 ] [1 ]
  22. [N2 N4 0][e ].[n ]
  23. [N5 0 0][e&sup2;] [n&sup2;]
  24. </pre></div>
  25. order=3:
  26. <div class="code"><pre>
  27. e = [E0 E1 E3 E6][1 ] [1 ]
  28. [E2 E4 E7 0][e ].[n ]
  29. [E5 E8 0 0][e&sup2;] [n&sup2;]
  30. [E9 0 0 0][e&sup3;] [n&sup3;]
  31. n = [N0 N1 N3 N6][1 ] [1 ]
  32. [N2 N4 N7 0][e ].[n ]
  33. [N5 N8 0 0][e&sup2;] [n&sup2;]
  34. [N9 0 0 0][e&sup3;] [n&sup3;]
  35. </pre></div>
  36. ["." = dot-product, (AE).N = N'EA.]
  37. <p>In other words, order=1 and order=2 are equivalent to order=3 with
  38. the higher coefficients equal to zero.
  39. <h2>SEE ALSO</h2>
  40. <em>
  41. <a href="i.rectify.html">i.rectify</a>,
  42. <a href="v.rectify.html">v.rectify</a>,
  43. <a href="v.transform.html">v.transform</a>
  44. </em>
  45. <h2>AUTHORS</h2>
  46. Brian J. Buckley<br>
  47. Glynn Clements<br>
  48. Hamish Bowman
  49. <p><i>Last changed: $Date$</i>