/src/com/winterwell/jgeoplanet/GeoCodeQuery.java

http://github.com/winterstein/JTwitter · Java · 216 lines · 123 code · 29 blank · 64 comment · 64 complexity · 358eb6a3985b2b7adf4f228733d69e8a MD5 · raw file

  1. package com.winterwell.jgeoplanet;
  2. import winterwell.jtwitter.InternalUtils;
  3. /**
  4. * Describes a geocoding request.
  5. * Any aspect of this might be null.
  6. *
  7. * Common scenarios:
  8. *
  9. * 1. desc is set, all others are null
  10. * 2. locn is set (in which case ignore any other info as low-grade by comparison)
  11. * 3. desc, timezone and lang are set, all others are null
  12. * 4. timezone and lang are set, all others are null
  13. *
  14. * Alpha Version requirements: (1) and (2) -- don't bother with timezone yet.
  15. *
  16. * @author daniel
  17. */
  18. public class GeoCodeQuery {
  19. @Override
  20. public int hashCode() {
  21. final int prime = 31;
  22. int result = 1;
  23. result = prime * result + ((country == null) ? 0 : country.hashCode());
  24. result = prime * result + ((desc == null) ? 0 : desc.hashCode());
  25. result = prime * result + ((lang == null) ? 0 : lang.hashCode());
  26. result = prime * result + ((locn == null) ? 0 : locn.hashCode());
  27. result = prime * result + (reqGeometry ? 1231 : 1237);
  28. result = prime * result + (reqLocn ? 1231 : 1237);
  29. result = prime * result + (reqOnlyCity ? 1231 : 1237);
  30. result = prime * result + (reqOnlyCountry ? 1231 : 1237);
  31. result = prime * result
  32. + ((timezone == null) ? 0 : timezone.hashCode());
  33. result = prime * result + ((type == null) ? 0 : type.hashCode());
  34. return result;
  35. }
  36. @Override
  37. public boolean equals(Object obj) {
  38. if (this == obj)
  39. return true;
  40. if (obj == null)
  41. return false;
  42. if (getClass() != obj.getClass())
  43. return false;
  44. GeoCodeQuery other = (GeoCodeQuery) obj;
  45. if (country == null) {
  46. if (other.country != null)
  47. return false;
  48. } else if (!country.equals(other.country))
  49. return false;
  50. if (desc == null) {
  51. if (other.desc != null)
  52. return false;
  53. } else if (!desc.equals(other.desc))
  54. return false;
  55. if (lang == null) {
  56. if (other.lang != null)
  57. return false;
  58. } else if (!lang.equals(other.lang))
  59. return false;
  60. if (locn == null) {
  61. if (other.locn != null)
  62. return false;
  63. } else if (!locn.equals(other.locn))
  64. return false;
  65. if (reqGeometry != other.reqGeometry)
  66. return false;
  67. if (reqLocn != other.reqLocn)
  68. return false;
  69. if (reqOnlyCity != other.reqOnlyCity)
  70. return false;
  71. if (reqOnlyCountry != other.reqOnlyCountry)
  72. return false;
  73. if (timezone == null) {
  74. if (other.timezone != null)
  75. return false;
  76. } else if (!timezone.equals(other.timezone))
  77. return false;
  78. if (type == null) {
  79. if (other.type != null)
  80. return false;
  81. } else if (!type.equals(other.type))
  82. return false;
  83. return true;
  84. }
  85. /**
  86. * If true, the query results must include latitude/longitude.
  87. */
  88. public boolean reqLocn;
  89. /**
  90. * If true, the query results must include shape geometry.
  91. */
  92. public boolean reqGeometry;
  93. /**
  94. * If true, the query results need only specify country and city (and the search may be simplified/shortened accordingly).
  95. */
  96. public boolean reqOnlyCity;
  97. /**
  98. * If true, the query results need only specify country (and the search may be simplified/shortened accordingly).
  99. */
  100. public boolean reqOnlyCountry;
  101. @Override
  102. public String toString() {
  103. return "GeoCodeQuery["+InternalUtils.or(desc, city, country, locn, timezone)+"]";
  104. }
  105. /**
  106. * Create a blank query. You must set _some_ properties before using it!
  107. */
  108. public GeoCodeQuery() {
  109. }
  110. public GeoCodeQuery(String desc) {
  111. this.desc = desc;
  112. }
  113. /**
  114. * Near/in this place
  115. * @param locn
  116. */
  117. public GeoCodeQuery(IPlace place) {
  118. setLocation(place.getCentroid());
  119. if (locn==null) {
  120. desc = place.getName();
  121. }
  122. country = place.getCountryCode();
  123. bbox = place.getBoundingBox();
  124. }
  125. /**
  126. * Free form text description.
  127. */
  128. public String desc;
  129. /**
  130. * Latitude / longitude coordinates.
  131. */
  132. public Location locn;
  133. /**
  134. * @return the bounding box of this Place. Can be null if unknown.
  135. */
  136. public BoundingBox bbox;
  137. /**
  138. * Must use {@link ISO3166} codes.
  139. * This is a hint at the country to which the place belongs -- it can be wrong.
  140. */
  141. public String country;
  142. public String city;
  143. /**
  144. * Must use {@link ISO639} codes.
  145. * This is a hint at the language used in the description -- it can be wrong.
  146. */
  147. public String lang;
  148. /**
  149. * Can use human labels e.g. "London" or "Pacific Standard Time (US & Canada)", or GMT offsets, e.g. "+0100"
  150. * There are many quasi-formats: UTC-20, GMT+0100, GMT+1, PST, EST which it would be nice to support.
  151. */
  152. public String timezone;
  153. /**
  154. * Type of place wanted. Values are: {@link IPlace#TYPE_CITY}, {@link IPlace#TYPE_COUNTRY}.
  155. */
  156. public String type;
  157. public String getCountryCode() {
  158. return country;
  159. }
  160. public BoundingBox getBoundingBox() {
  161. return bbox;
  162. }
  163. public boolean isEmpty() {
  164. return (desc==null || desc.isEmpty())
  165. && locn==null && bbox==null
  166. && city==null && country==null
  167. && (timezone==null || lang==null);
  168. }
  169. public GeoCodeQuery setReqLocn(boolean reqLocn) {
  170. this.reqLocn = reqLocn;
  171. return this;
  172. }
  173. public GeoCodeQuery setLocation(Location locn) {
  174. this.locn = locn;
  175. return this;
  176. }
  177. /**
  178. * Convenience for {@link #setLocation(Location)}
  179. * @param lat
  180. * @param lng
  181. * @return
  182. */
  183. public GeoCodeQuery setLatitudeLongitude(double lat, double lng) {
  184. setLocation(new Location(lat, lng));
  185. return this;
  186. }
  187. }