/image/src/image-metadata-geographic.adb

# · Ada · 158 lines · 85 code · 27 blank · 46 comment · 5 complexity · 76cba96f145b9fcb253d64f48e470db4 MD5 · raw file

  1. ------------------------------------------------------------------------------
  2. -- Vision2Pixels --
  3. -- --
  4. -- Copyright (C) 2007-2008 --
  5. -- Pascal Obry - Olivier Ramonat --
  6. -- --
  7. -- This library is free software; you can redistribute it and/or modify --
  8. -- it under the terms of the GNU General Public License as published by --
  9. -- the Free Software Foundation; either version 2 of the License, or (at --
  10. -- your option) any later version. --
  11. -- --
  12. -- This library is distributed in the hope that it will be useful, but --
  13. -- WITHOUT ANY WARRANTY; without even the implied warranty of --
  14. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
  15. -- General Public License for more details. --
  16. -- --
  17. -- You should have received a copy of the GNU General Public License --
  18. -- along with this library; if not, write to the Free Software Foundation, --
  19. -- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. --
  20. ------------------------------------------------------------------------------
  21. package body Image.Metadata.Geographic is
  22. ---------
  23. -- "=" --
  24. ---------
  25. function "=" (Left, Right : in Geo_Coordinate) return Boolean is
  26. begin
  27. return (abs (Left - Right) < 2 * Geo_Coordinate'Small);
  28. end "=";
  29. ------------
  30. -- Format --
  31. ------------
  32. procedure Format
  33. (Position : in out Geo_Position'Class;
  34. Coordinate : in Geo_Coordinate)
  35. is
  36. Diff : Geo_Coordinate;
  37. begin
  38. Position.Format_Direction (Coordinate);
  39. -- The sign information is in Formatted.C_Direction
  40. -- Then work only with positive coordinate
  41. if Coordinate < 0.0 then
  42. Diff := -Coordinate;
  43. else
  44. Diff := Coordinate;
  45. end if;
  46. Position.C_Degree := Degree (Float'Truncation (Float (Diff)));
  47. Diff := Diff - Geo_Coordinate (Position.C_Degree);
  48. Position.C_Minute := Minute (Float'Truncation (Float (Diff * 60.0)));
  49. Diff := Diff - Geo_Coordinate (Position.C_Minute) / 60.0;
  50. Position.C_Second := Second (Diff * 3600.0);
  51. end Format;
  52. ----------------------
  53. -- Format_Direction --
  54. ----------------------
  55. overriding procedure Format_Direction
  56. (Position : in out Latitude;
  57. Coordinate : in Geo_Coordinate) is
  58. begin
  59. if Coordinate > 0.0 then
  60. Position.C_Direction := N;
  61. else
  62. Position.C_Direction := S;
  63. end if;
  64. end Format_Direction;
  65. overriding procedure Format_Direction
  66. (Position : in out Longitude;
  67. Coordinate : in Geo_Coordinate) is
  68. begin
  69. if Coordinate > 0.0 then
  70. Position.C_Direction := E;
  71. else
  72. Position.C_Direction := W;
  73. end if;
  74. end Format_Direction;
  75. -----------
  76. -- Image --
  77. -----------
  78. function Image (Position : in Geo_Position) return String is
  79. begin
  80. return Degree'Image (Position.C_Degree) & "째"
  81. & Minute'Image (Position.C_Minute) & "'"
  82. & Second'Image (Position.C_Second);
  83. end Image;
  84. -----------
  85. -- Image --
  86. -----------
  87. function Image (Position : in Latitude) return String is
  88. begin
  89. return Latitude_Direction'Image (Position.C_Direction)
  90. & Image (Geo_Position (Position));
  91. end Image;
  92. -----------
  93. -- Image --
  94. -----------
  95. function Image (Position : in Longitude) return String is
  96. begin
  97. return Longitude_Direction'Image (Position.C_Direction)
  98. & Image (Geo_Position (Position));
  99. end Image;
  100. --------------
  101. -- Set_Sign --
  102. --------------
  103. overriding procedure Set_Sign
  104. (Coordinate : in out Geo_Coordinate; Position : in Latitude) is
  105. begin
  106. if Position.C_Direction = S then
  107. Coordinate := -Coordinate;
  108. end if;
  109. end Set_Sign;
  110. overriding procedure Set_Sign
  111. (Coordinate : in out Geo_Coordinate; Position : in Longitude) is
  112. begin
  113. if Position.C_Direction = W then
  114. Coordinate := -Coordinate;
  115. end if;
  116. end Set_Sign;
  117. -----------------------
  118. -- To_Geo_Coordinate --
  119. -----------------------
  120. function To_Geo_Coordinate
  121. (Position : in Geo_Position'Class) return Geo_Coordinate
  122. is
  123. Result : Geo_Coordinate;
  124. begin
  125. Result := Geo_Coordinate (Float (Position.C_Second) / 3600.0);
  126. Result := Result + Geo_Coordinate (Float (Position.C_Minute) / 60.0);
  127. Result := Result + Geo_Coordinate (Position.C_Degree);
  128. Set_Sign (Result, Position);
  129. return Result;
  130. end To_Geo_Coordinate;
  131. end Image.Metadata.Geographic;